← Back to team overview

openerp-dev-web team mailing list archive

[Merge] lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3

 

Ashvin Rathod (OpenERP) has proposed merging lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3.

Requested reviews:
  OpenERP R&D Team (openerp-dev)
Related bugs:
  #615522 Report Of Invoice  : Payment Term + Due date not printed
  https://bugs.launchpad.net/bugs/615522
  #649029 [sale] incoterm field poorly implemented [direct sql / not translatable]
  https://bugs.launchpad.net/bugs/649029
  #656378 [trunk] general ledger -
  https://bugs.launchpad.net/bugs/656378
  #672553 opening entries from chart of account doesn't use context
  https://bugs.launchpad.net/bugs/672553
  #674480 [6.0 RC2] incorrect creation of Accounting Journals is some localizations prevents multiple charts from being installed
  https://bugs.launchpad.net/bugs/674480
  #675494 [Trunk] - If you delete an invoice entry, invoice still exists
  https://bugs.launchpad.net/bugs/675494
  #681398 sale access right
  https://bugs.launchpad.net/bugs/681398
  #689536 [6.0] partner layout salesman/salesteam issue
  https://bugs.launchpad.net/bugs/689536
  #690326 [6.0RC1] View mode "tree,form,search" in several window actions
  https://bugs.launchpad.net/bugs/690326
  #690753 [6.0] and [5.x] account_analytic_line must not be deleted if the journal etc is deleted
  https://bugs.launchpad.net/bugs/690753
  #691072 [6.0RC1][TRUNK][account_voucher] Wrong definition of field 'company_id' in 'account_voucher_line' object
  https://bugs.launchpad.net/bugs/691072
  #692986 [6.0] hr_payroll_account hr_payroll_account_view.xml - required fields block opening form
  https://bugs.launchpad.net/bugs/692986
  #694833 Salary Structure deduction percentage limitation
  https://bugs.launchpad.net/bugs/694833
  #695960 [6.0RC1][hr_timesheet]Problems printing timesheet reports
  https://bugs.launchpad.net/bugs/695960
  #696914 [6.0 RC2] account bank statement - usability
  https://bugs.launchpad.net/bugs/696914
  #697673 Wrong column title in timesheet view
  https://bugs.launchpad.net/bugs/697673
  #697989 Failed to install module multi_company
  https://bugs.launchpad.net/bugs/697989
  #701410 shouldn't see employee's categories in simplify view
  https://bugs.launchpad.net/bugs/701410
  #701683 [6.0 rc2] Setup/upgrade/run fails for init:module account_analytic_plans
  https://bugs.launchpad.net/bugs/701683
  #702318 Default period and account in invoices line for multi-company doesn't work
  https://bugs.launchpad.net/bugs/702318
  #705675 Error creating a DTA
  https://bugs.launchpad.net/bugs/705675
  #707398 [6.0] Account_payment: "Select Invoices to Pay" button on payment order not working
  https://bugs.launchpad.net/bugs/707398
  #707404 [trunk][account] useless variable in button_confirm_bank
  https://bugs.launchpad.net/bugs/707404
  #711886 [6.0 trunk] account : period selection not working for BS and PL legal reports 
  https://bugs.launchpad.net/bugs/711886
  #713562 [6.0] account - demo data - all periods have "special = true"
  https://bugs.launchpad.net/bugs/713562
  #713772 Cannot specify RFC in the accounting options
  https://bugs.launchpad.net/bugs/713772
  #714860 analytic account - Wrong demo data and account type must be come in tree view
  https://bugs.launchpad.net/bugs/714860
  #715470 [PS] sale margin module :  wrong computation
  https://bugs.launchpad.net/bugs/715470
  #715695 Multi-Company Environment :Configuration of consolidated type of account is not possible due to the _check_type constraints.
  https://bugs.launchpad.net/bugs/715695

For more details, see:
https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-dev-addons3-ara/+merge/49376

Hello,

[FIX]: https://bugs.launchpad.net/openobject-addons/+bug/713772
       Cannot specify RFC in the accounting options

Thanks,
ara
-- 
https://code.launchpad.net/~openerp-commiter/openobject-addons/trunk-dev-addons3-ara/+merge/49376
Your team OpenERP R&D Team is requested to review the proposed merge of lp:~openerp-commiter/openobject-addons/trunk-dev-addons3-ara into lp:~openerp-dev/openobject-addons/trunk-dev-addons3.
=== modified file 'base_vat/base_vat.py'
--- base_vat/base_vat.py	2011-01-17 20:44:55 +0000
+++ base_vat/base_vat.py	2011-02-11 11:38:50 +0000
@@ -38,7 +38,9 @@
     'nl': 'NL123456782B90', 'pl': 'PL1234567883',
     'pt': 'PT123456789', 'ro': 'RO1234567897',
     'se': 'SE123456789701', 'si': 'SI12345679',
-    'sk': 'SK0012345675', 'el': 'EL12345670'
+    'sk': 'SK0012345675', 'el': 'EL12345670',
+    'mx': 'MXABC123456T1B'
+
             }
 
 def mult_add(i, j):
@@ -1064,6 +1066,17 @@
                 return False
         return True
 
+    def check_vat_mx(self, vat):
+        '''
+        Verificar RFC méxico
+        '''
+        if not 12 <= len(vat) <= 13:
+            return False
+        elif len(vat)==12 and not vat[:3].isalpha() | vat[3:9].isdigit() | vat[-3:].isalnum():
+            return False
+        elif len(vat)==13 and not vat[:4].isalpha() | vat[4:10].isdigit() | vat[-3:].isalnum():
+            return False
+        return True
 res_partner()
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

=== modified file 'base_vat/i18n/ab_AB.po'
--- base_vat/i18n/ab_AB.po	2011-01-14 00:11:01 +0000
+++ base_vat/i18n/ab_AB.po	2011-02-11 11:38:50 +0000
@@ -19,8 +19,7 @@
 
 #. module: base_vat
 #: model:ir.module.module,description:base_vat.module_meta_information
-msgid ""
-"Enable the VAT Number for the partner. Check the validity of that VAT Number."
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/ar.po'
--- base_vat/i18n/ar.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/ar.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/bg.po'
--- base_vat/i18n/bg.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/bg.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/bs.po'
--- base_vat/i18n/bs.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/bs.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/ca.po'
--- base_vat/i18n/ca.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/ca.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/cs.po'
--- base_vat/i18n/cs.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/cs.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/da.po'
--- base_vat/i18n/da.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/da.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/de.po'
--- base_vat/i18n/de.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/de.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "Die UID (Umsatzsteueridentifikationsnummer) ist anscheinend nicht korrekt. "
 "Sie sollten in etwa eine Eingabe vornehmen, wie %s"

=== modified file 'base_vat/i18n/el.po'
--- base_vat/i18n/el.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/el.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "Το ΦΠΑ δεν φαίνεται να είναι σωστό.Θα πρέπει να εισάγετε κάτι σαν %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/en_AU.po'
--- base_vat/i18n/en_AU.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/en_AU.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/es.po'
--- base_vat/i18n/es.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/es.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "El CIF/NIF parece que no sea correcto. Debería haber introducido algo como "
 "esto %s"

=== modified file 'base_vat/i18n/es_AR.po'
--- base_vat/i18n/es_AR.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/es_AR.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/es_EC.po'
--- base_vat/i18n/es_EC.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/es_EC.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "El CIF/NIF parece que no sea correcto. Debería haber introducido algo como "
 "esto %s"

=== modified file 'base_vat/i18n/et.po'
--- base_vat/i18n/et.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/et.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/eu.po'
--- base_vat/i18n/eu.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/eu.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/fi.po'
--- base_vat/i18n/fi.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/fi.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/fr.po'
--- base_vat/i18n/fr.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/fr.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "Le numéro de TVA semble incorrect. Vous devez saisir un numéro de la forme "
 "%s."

=== modified file 'base_vat/i18n/gl.po'
--- base_vat/i18n/gl.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/gl.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/hr.po'
--- base_vat/i18n/hr.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/hr.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/hu.po'
--- base_vat/i18n/hu.po	2011-02-03 04:45:26 +0000
+++ base_vat/i18n/hu.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "Az ÁFA nem tűnik helyesnek. Valami ehhez hasonlót kellett volna megadnia: %s"
 

=== modified file 'base_vat/i18n/id.po'
--- base_vat/i18n/id.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/id.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/it.po'
--- base_vat/i18n/it.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/it.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "La partita IVA non sembra essere corretta. E' necessario inserire un valore "
 "simile a: %s"

=== modified file 'base_vat/i18n/ko.po'
--- base_vat/i18n/ko.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/ko.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/lt.po'
--- base_vat/i18n/lt.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/lt.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/lv.po'
--- base_vat/i18n/lv.po	2011-01-29 04:56:41 +0000
+++ base_vat/i18n/lv.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "Liekas, ka PVN kods nav pareizs. Napieciešams ievadīt līdzīgi kā: %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/mn.po'
--- base_vat/i18n/mn.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/mn.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "НӨАТ буруу байна. Та %s-тэй ижил зүйлийг оруулах ёстой."
 
 #. module: base_vat

=== modified file 'base_vat/i18n/nb.po'
--- base_vat/i18n/nb.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/nb.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/nl.po'
--- base_vat/i18n/nl.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/nl.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "De BTW lijkt niet correct te zijn. U moet iets invullen zoals dit %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/nl_BE.po'
--- base_vat/i18n/nl_BE.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/nl_BE.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/oc.po'
--- base_vat/i18n/oc.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/oc.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/pl.po'
--- base_vat/i18n/pl.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/pl.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "Numer NIP wygląda na niepoprawny. Powinieneś wprowadzić coś jak: %s. "
 "Wprowadź numer bez kresek i poprzedź go znakami PL. Np. PL2343423123."

=== modified file 'base_vat/i18n/pt.po'
--- base_vat/i18n/pt.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/pt.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "O NIF não parece estar correto. Deve indicar um número do seguinte tipo: %s"
 

=== modified file 'base_vat/i18n/pt_BR.po'
--- base_vat/i18n/pt_BR.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/pt_BR.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "O IVA não parece estar correto. Você deveria preencher algo como %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/ro.po'
--- base_vat/i18n/ro.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/ro.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "TVA-ul nu pare corect. Ar fi trebuit ca valoarea introdusă sa fie de forma %s"
 

=== modified file 'base_vat/i18n/ru.po'
--- base_vat/i18n/ru.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/ru.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "НДС не кажется верным. Вы должны ввести что-то вроде этого: %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sk.po'
--- base_vat/i18n/sk.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sk.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sl.po'
--- base_vat/i18n/sl.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sl.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sq.po'
--- base_vat/i18n/sq.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sq.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sr.po'
--- base_vat/i18n/sr.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sr.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "PDV izgleda da nije korektan. Trebas upisati nesto kao %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sr@xxxxxxxx'
--- base_vat/i18n/sr@xxxxxxxx	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sr@xxxxxxxx	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "PDV izgleda da nije korektan. Trebas upisati nesto kao %s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/sv.po'
--- base_vat/i18n/sv.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/sv.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 "Momskod verkar inte vara korrekt. Den måste vara inskriven i formatet %s"
 

=== modified file 'base_vat/i18n/th.po'
--- base_vat/i18n/th.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/th.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "ภาษีไม่น่าจะถูกต้อง คุณควรจะป้อนบางสิ่งบางอย่างเช่นนี้ % s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/tlh.po'
--- base_vat/i18n/tlh.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/tlh.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/tr.po'
--- base_vat/i18n/tr.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/tr.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/uk.po'
--- base_vat/i18n/uk.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/uk.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/vi.po'
--- base_vat/i18n/vi.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/vi.po	2011-02-11 11:38:50 +0000
@@ -20,9 +20,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat

=== modified file 'base_vat/i18n/zh_CN.po'
--- base_vat/i18n/zh_CN.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/zh_CN.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr "增值税似乎不正确。您的输入应类似于此:%s"
 
 #. module: base_vat

=== modified file 'base_vat/i18n/zh_TW.po'
--- base_vat/i18n/zh_TW.po	2011-02-01 14:25:28 +0000
+++ base_vat/i18n/zh_TW.po	2011-02-11 11:38:50 +0000
@@ -19,9 +19,7 @@
 #. module: base_vat
 #: code:addons/base_vat/base_vat.py:87
 #, python-format
-msgid ""
-"The Vat does not seems to be correct. You should have entered something like "
-"this %s"
+msgid "The Vat does not seems to be correct. You should have entered something like this %s"
 msgstr ""
 
 #. module: base_vat


Follow ups