From d846432de7672d860fe6bef19a3afb0f3b0ef16d Mon Sep 17 00:00:00 2001 From: "psi (Open ERP)" Date: Tue, 11 Jan 2011 16:26:56 +0530 Subject: [PATCH] [IMP, ADD] account: Improve the constraint string and add same into po and pot files bzr revid: psi@tinyerp.co.in-20110111105656-t8gcuxeevde9a432 --- addons/account/account.py | 16 ++++++++-------- addons/account/i18n/account.pot | 12 ++++++++++++ addons/account/i18n/ar.po | 12 ++++++++++++ addons/account/i18n/bg.po | 12 ++++++++++++ addons/account/i18n/br.po | 12 ++++++++++++ addons/account/i18n/bs.po | 12 ++++++++++++ addons/account/i18n/ca.po | 12 ++++++++++++ addons/account/i18n/cs.po | 12 ++++++++++++ addons/account/i18n/da.po | 12 ++++++++++++ addons/account/i18n/de.po | 12 ++++++++++++ addons/account/i18n/el.po | 12 ++++++++++++ addons/account/i18n/en_US.po | 12 ++++++++++++ addons/account/i18n/es.po | 12 ++++++++++++ addons/account/i18n/es_AR.po | 12 ++++++++++++ addons/account/i18n/es_EC.po | 12 ++++++++++++ addons/account/i18n/et.po | 12 ++++++++++++ addons/account/i18n/eu.po | 12 ++++++++++++ addons/account/i18n/fa.po | 12 ++++++++++++ addons/account/i18n/fi.po | 12 ++++++++++++ addons/account/i18n/fr.po | 12 ++++++++++++ addons/account/i18n/fr_BE.po | 12 ++++++++++++ addons/account/i18n/gl.po | 12 ++++++++++++ addons/account/i18n/gu.po | 12 ++++++++++++ addons/account/i18n/he.po | 12 ++++++++++++ addons/account/i18n/hi.po | 12 ++++++++++++ addons/account/i18n/hr.po | 12 ++++++++++++ addons/account/i18n/hu.po | 12 ++++++++++++ addons/account/i18n/id.po | 12 ++++++++++++ addons/account/i18n/it.po | 12 ++++++++++++ addons/account/i18n/kab.po | 12 ++++++++++++ addons/account/i18n/ko.po | 12 ++++++++++++ addons/account/i18n/lt.po | 12 ++++++++++++ addons/account/i18n/lv.po | 12 ++++++++++++ addons/account/i18n/mn.po | 12 ++++++++++++ addons/account/i18n/nb.po | 12 ++++++++++++ addons/account/i18n/nl.po | 12 ++++++++++++ addons/account/i18n/nl_BE.po | 12 ++++++++++++ addons/account/i18n/oc.po | 12 ++++++++++++ addons/account/i18n/pl.po | 12 ++++++++++++ addons/account/i18n/pt.po | 12 ++++++++++++ addons/account/i18n/pt_BR.po | 12 ++++++++++++ addons/account/i18n/ro.po | 12 ++++++++++++ addons/account/i18n/ru.po | 12 ++++++++++++ addons/account/i18n/si.po | 12 ++++++++++++ addons/account/i18n/sk.po | 12 ++++++++++++ addons/account/i18n/sl.po | 12 ++++++++++++ addons/account/i18n/sq.po | 12 ++++++++++++ addons/account/i18n/sr.po | 12 ++++++++++++ addons/account/i18n/sr@latin.po | 12 ++++++++++++ addons/account/i18n/sv.po | 12 ++++++++++++ addons/account/i18n/ta.po | 12 ++++++++++++ addons/account/i18n/te.po | 12 ++++++++++++ addons/account/i18n/th.po | 12 ++++++++++++ addons/account/i18n/tlh.po | 12 ++++++++++++ addons/account/i18n/tr.po | 12 ++++++++++++ addons/account/i18n/ug.po | 12 ++++++++++++ addons/account/i18n/uk.po | 12 ++++++++++++ addons/account/i18n/vi.po | 12 ++++++++++++ addons/account/i18n/zh_CN.po | 12 ++++++++++++ addons/account/i18n/zh_HK.po | 12 ++++++++++++ addons/account/i18n/zh_TW.po | 12 ++++++++++++ 61 files changed, 728 insertions(+), 8 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index 3587a1e5424..5826aedb7e6 100755 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -418,11 +418,11 @@ class account_account(osv.osv): c_ids = s_ids ids = child_ids return True - + def _check_type(self, cr, uid, ids, context=None): if context is None: - context = {} - accounts = self.browse(cr, uid, ids, context=context) + context = {} + accounts = self.browse(cr, uid, ids, context=context) for account in accounts: if account.child_id and account.type != 'view': return False @@ -430,7 +430,7 @@ class account_account(osv.osv): _constraints = [ (_check_recursion, 'Error ! You can not create recursive accounts.', ['parent_id']), - (_check_type, 'You cannot create a account! \nMake sure if the account has children then it should be type "View"! ', ['type']), + (_check_type, 'You cannot create an account! \nMake sure if the account has children then it should be type "View"! ', ['type']), ] _sql_constraints = [ ('code_company_uniq', 'unique (code,company_id)', 'The code of the account must be unique per company !') @@ -2307,8 +2307,8 @@ class account_account_template(osv.osv): def _check_type(self, cr, uid, ids, context=None): if context is None: - context = {} - accounts = self.browse(cr, uid, ids, context=context) + context = {} + accounts = self.browse(cr, uid, ids, context=context) for account in accounts: if account.parent_id and account.parent_id.type != 'view': return False @@ -2317,8 +2317,8 @@ class account_account_template(osv.osv): _check_recursion = check_cycle _constraints = [ (_check_recursion, 'Error ! You can not create recursive account templates.', ['parent_id']), - (_check_type, 'You cannot create a account template! \nMake sure if the account template has parent then it should be type "View"! ', ['type']), - + (_check_type, 'You cannot create an account template! \nMake sure if the account template has parent then it should be type "View"! ', ['type']), + ] def name_get(self, cr, uid, ids, context=None): diff --git a/addons/account/i18n/account.pot b/addons/account/i18n/account.pot index fa3b88855df..ab5256a2e36 100755 --- a/addons/account/i18n/account.pot +++ b/addons/account/i18n/account.pot @@ -3914,6 +3914,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -8689,6 +8695,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 52a192674ae..a0170949099 100755 --- a/addons/account/i18n/ar.po +++ b/addons/account/i18n/ar.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9172,6 +9178,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index 36ecb9c89d7..1d801a5406c 100755 --- a/addons/account/i18n/bg.po +++ b/addons/account/i18n/bg.po @@ -4111,6 +4111,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Грешка! Не могат да бъдат създавани рекурсивни сметки." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9208,6 +9214,12 @@ msgstr "Редове на фактура" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index fe82dcedffa..cdca042e401 100755 --- a/addons/account/i18n/br.po +++ b/addons/account/i18n/br.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 48dc7bcb5cc..7070894de7d 100755 --- a/addons/account/i18n/bs.po +++ b/addons/account/i18n/bs.po @@ -4122,6 +4122,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Greška: ne mogu se praviti rekurzivni nalozi." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9231,6 +9237,12 @@ msgstr "Retci fakture" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index 8a3a215c499..ff1c416a37f 100755 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.po @@ -4140,6 +4140,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Error! No es poden crear comptes recursius." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9269,6 +9275,12 @@ msgstr "Línies de factura" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 45a04c656ec..3b3c7aa6da3 100755 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9169,6 +9175,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index d468282d183..acd8700dcf8 100755 --- a/addons/account/i18n/da.po +++ b/addons/account/i18n/da.po @@ -4109,6 +4109,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9189,6 +9195,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index d2ca221f235..b07595246b1 100755 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -4344,6 +4344,12 @@ msgstr "Saldo auf Basis Kassenbuch" msgid "Error ! You can not create recursive accounts." msgstr "Fehler! Sie können keine rekursiven Konten definieren." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9833,6 +9839,12 @@ msgstr "Rechnungszeilen" msgid "Error ! You can not create recursive account templates." msgstr "Fehler ! Rekursive Finanzkontenvorlagen sind nicht erlaubt" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index f7cfc5bad6d..eaf5ce9998b 100755 --- a/addons/account/i18n/el.po +++ b/addons/account/i18n/el.po @@ -4171,6 +4171,12 @@ msgid "Error ! You can not create recursive accounts." msgstr "" "Σφάλμα! Δεν μπορείτε να χρησιμοποιήσετε επαναλαμβανόμενους λογαριασμούς." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9301,6 +9307,12 @@ msgstr "Γραμμές Τιμολογίου" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index a2f53c48d6f..e00148d85da 100644 --- a/addons/account/i18n/en_US.po +++ b/addons/account/i18n/en_US.po @@ -4099,6 +4099,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9174,6 +9180,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 65c54860f47..41d55402145 100755 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -4314,6 +4314,12 @@ msgstr "Saldo de cierre basado en la caja." msgid "Error ! You can not create recursive accounts." msgstr "¡Error! No se pueden crear cuentas recursivas." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9697,6 +9703,12 @@ msgstr "Líneas de factura" msgid "Error ! You can not create recursive account templates." msgstr "¡Error! No puede crear plantillas de cuentas recursivas." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index be08b6f5cef..f7d9ed79b69 100755 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_AR.po @@ -4140,6 +4140,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Error! No se pueden crear cuentas recursivas." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9273,6 +9279,12 @@ msgstr "Líneas de la factura" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index 46caa89e9e2..17bab26b39b 100755 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -4278,6 +4278,12 @@ msgstr "Closing balance based on cashBox" msgid "Error ! You can not create recursive accounts." msgstr "¡Error! No se pueden crear cuentas recursivas." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9599,6 +9605,12 @@ msgstr "Detalle de factura" msgid "Error ! You can not create recursive account templates." msgstr "Error ! You can not create recursive account templates." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index ce22c5b884c..4d24a777690 100755 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Viga! Sa ei saa luua rekursiivseid kontosid." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "Arve read" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index 74be2d4d0ac..0787ec7acce 100755 --- a/addons/account/i18n/eu.po +++ b/addons/account/i18n/eu.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index 444d70aaf13..ae678f38cd8 100755 --- a/addons/account/i18n/fa.po +++ b/addons/account/i18n/fa.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index a5dc44c128d..54a7f3780d0 100755 --- a/addons/account/i18n/fi.po +++ b/addons/account/i18n/fi.po @@ -4126,6 +4126,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Virhe! et voi luoda rekursiivisia tilejä" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9241,6 +9247,12 @@ msgstr "Laskurivit" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index a088d656330..7f38b9ba0e4 100755 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -4376,6 +4376,12 @@ msgstr "Solde de clôture basé sur la caisse" msgid "Error ! You can not create recursive accounts." msgstr "Erreur ! Vous ne pouvez pas créer de comptes récursifs." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9822,6 +9828,12 @@ msgstr "Lignes de facture" msgid "Error ! You can not create recursive account templates." msgstr "Erreur ! Vous ne pouvez pas créer de modèles de compte récursifs" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index 13dda07f29e..514ea7f88c4 100644 --- a/addons/account/i18n/fr_BE.po +++ b/addons/account/i18n/fr_BE.po @@ -4097,6 +4097,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9173,6 +9179,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index 4b7d0ec8e6a..9fc646d5c5d 100755 --- a/addons/account/i18n/gl.po +++ b/addons/account/i18n/gl.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index 52ebac1f607..7a6a33c81bb 100755 --- a/addons/account/i18n/gu.po +++ b/addons/account/i18n/gu.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index d4ea82cd3fa..d892d43e5f8 100755 --- a/addons/account/i18n/he.po +++ b/addons/account/i18n/he.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 0da82b44ce6..b08d8c25e1a 100755 --- a/addons/account/i18n/hi.po +++ b/addons/account/i18n/hi.po @@ -4096,6 +4096,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9171,6 +9177,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 6d96757fbe2..7798e538c40 100755 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -4108,6 +4108,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Greška ! Ne možete kreirati rekurzivna konta." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9201,6 +9207,12 @@ msgstr "Retci računa" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index 0000d585242..de7b63bf470 100755 --- a/addons/account/i18n/hu.po +++ b/addons/account/i18n/hu.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Hiba! Nem lehet létrehozni rekurzív számlákat." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9176,6 +9182,12 @@ msgstr "Tételek" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index 8a7eebb5b24..de9eea425c4 100755 --- a/addons/account/i18n/id.po +++ b/addons/account/i18n/id.po @@ -4097,6 +4097,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9176,6 +9182,12 @@ msgstr "Detail Invoice" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/it.po b/addons/account/i18n/it.po index 6ac15ef50be..66af4ee5dc0 100755 --- a/addons/account/i18n/it.po +++ b/addons/account/i18n/it.po @@ -4282,6 +4282,12 @@ msgstr "Bilancio di chiusura basato sulla cassa." msgid "Error ! You can not create recursive accounts." msgstr "Errore! Non puoi creare conti ricorsivi" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9452,6 +9458,12 @@ msgstr "Righe Fattura" msgid "Error ! You can not create recursive account templates." msgstr "Errore! Non puoi creare un modello di conto ricorsivo" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 0c2f7071512..f869e82c3ba 100755 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index 54caec5fcf3..31d1b97a685 100755 --- a/addons/account/i18n/ko.po +++ b/addons/account/i18n/ko.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 025ac345d5a..73363dcd74a 100755 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -4116,6 +4116,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Klaida! Negalima sukurti rekursyvių sąskaitų." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9219,6 +9225,12 @@ msgstr "Sąskaitos faktūros eilutės" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index 0a7cc1aaea4..9627d06d4e1 100755 --- a/addons/account/i18n/lv.po +++ b/addons/account/i18n/lv.po @@ -4102,6 +4102,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9182,6 +9188,12 @@ msgstr "Rēķina Rindas" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index cc7eb88798b..6303736c40f 100755 --- a/addons/account/i18n/mn.po +++ b/addons/account/i18n/mn.po @@ -4191,6 +4191,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Алдаа ! Та цикл хэлбэрийн данс үүсгэх боломжтой." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9363,6 +9369,12 @@ msgstr "Нэхэмжлэлийн мөр" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index a9f919adf3c..ca1819a3b32 100755 --- a/addons/account/i18n/nb.po +++ b/addons/account/i18n/nb.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 7f04264d1fe..87bdbb48282 100755 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -4207,6 +4207,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Fout ! U kunt geen recursieve rekeningen aanmaken." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9337,6 +9343,12 @@ msgstr "Factuurregels" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index b210fccfe04..f807d70037c 100755 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.po @@ -4116,6 +4116,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9203,6 +9209,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index 721b73e2048..bbbca8986ba 100755 --- a/addons/account/i18n/oc.po +++ b/addons/account/i18n/oc.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index ee4f0b77c27..70e000dacca 100755 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -4224,6 +4224,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Błąd ! Nie możesz tworzyć kont rekurencyjnych." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9466,6 +9472,12 @@ msgstr "Pozycje faktury" msgid "Error ! You can not create recursive account templates." msgstr "Błąd ! Nie możesz tworzyć rekurencyjnego szablonu kont." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index ba79dd42a10..102e9a84fec 100755 --- a/addons/account/i18n/pt.po +++ b/addons/account/i18n/pt.po @@ -4175,6 +4175,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Erro! Não pode criar contas recursivas" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9319,6 +9325,12 @@ msgstr "Linhas de factura" msgid "Error ! You can not create recursive account templates." msgstr "Erro! Não pode criar modelos de conta recursivamente." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index f713826f819..8d39b527700 100755 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/i18n/pt_BR.po @@ -4253,6 +4253,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Erro ! Você não pode criar contas recursivas" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9381,6 +9387,12 @@ msgstr "Linhas da fatura" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 18244ea76cb..9b15721decf 100755 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -4131,6 +4131,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Eroare ! Nu puteţi crea conturi recursive." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9254,6 +9260,12 @@ msgstr "Poziţii factură" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index 181b141a877..f2d484a4f18 100755 --- a/addons/account/i18n/ru.po +++ b/addons/account/i18n/ru.po @@ -4126,6 +4126,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Ошибка! Вы не можете создать рекурсивные счета." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9224,6 +9230,12 @@ msgstr "Позиции счета" msgid "Error ! You can not create recursive account templates." msgstr "Ошибка ! Нельзя создать рекурсивные шаблоны счетов." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index b823280c4fc..10da3cd4866 100755 --- a/addons/account/i18n/si.po +++ b/addons/account/i18n/si.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index 6c1f187d4eb..bfa6f25733b 100755 --- a/addons/account/i18n/sk.po +++ b/addons/account/i18n/sk.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9173,6 +9179,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 0723ce3150c..2a43930cc7c 100755 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -4105,6 +4105,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Napaka! Ne morete krerati rekurzivnih kontov." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9193,6 +9199,12 @@ msgstr "Postavke računa" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index a5b1d7c1cb6..06ed727ed03 100755 --- a/addons/account/i18n/sq.po +++ b/addons/account/i18n/sq.po @@ -4105,6 +4105,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9186,6 +9192,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index 0a9e23c1785..a1629ec50ec 100755 --- a/addons/account/i18n/sr.po +++ b/addons/account/i18n/sr.po @@ -4124,6 +4124,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Greška ! Ne možete kreirati rekurzivna konta" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9232,6 +9238,12 @@ msgstr "Stavke računa" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index c42170ad1fc..ee24d261c14 100755 --- a/addons/account/i18n/sr@latin.po +++ b/addons/account/i18n/sr@latin.po @@ -4124,6 +4124,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "Greška ! Ne možete kreirati rekurzivna konta" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9232,6 +9238,12 @@ msgstr "Stavke računa" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index df49b188584..c1268d6c967 100755 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -4169,6 +4169,12 @@ msgstr "Utgående balans på kassalåda" msgid "Error ! You can not create recursive accounts." msgstr "Fel! Du kan inte skapa rekursiva konton." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9306,6 +9312,12 @@ msgstr "Fakturarader" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index b039699fbef..87a70c17d82 100755 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index 01a107c39b8..1dc36533954 100755 --- a/addons/account/i18n/te.po +++ b/addons/account/i18n/te.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index b01832c7588..2d30ec1f837 100755 --- a/addons/account/i18n/th.po +++ b/addons/account/i18n/th.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index 14028d4f5cc..733a7a730d4 100755 --- a/addons/account/i18n/tlh.po +++ b/addons/account/i18n/tlh.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9169,6 +9175,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 6d8280c01c6..8aa2e48dfe9 100755 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -4213,6 +4213,12 @@ msgstr "Closing balance based on cashBox" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9470,6 +9476,12 @@ msgstr "Fatura Kalemleri" msgid "Error ! You can not create recursive account templates." msgstr "Error ! You can not create recursive account templates." +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index 2c3053d058a..cf88a9430e5 100755 --- a/addons/account/i18n/ug.po +++ b/addons/account/i18n/ug.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 4e8f030d1f5..ccc0883f317 100755 --- a/addons/account/i18n/uk.po +++ b/addons/account/i18n/uk.po @@ -4096,6 +4096,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9175,6 +9181,12 @@ msgstr "Рядки інвойса" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 8aa9698622a..7811bc0b9eb 100755 --- a/addons/account/i18n/vi.po +++ b/addons/account/i18n/vi.po @@ -4242,6 +4242,12 @@ msgstr "Closing balance based on cashBox" msgid "Error ! You can not create recursive accounts." msgstr "Lỗi ! Bạn không thể tạo các tài khoản đệ quy." +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9560,6 +9566,12 @@ msgstr "Invoice Lines" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/zh_CN.po b/addons/account/i18n/zh_CN.po index da6137fe397..e454aa04844 100755 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/i18n/zh_CN.po @@ -4099,6 +4099,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "错误!你不能创建递归的科目" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9178,6 +9184,12 @@ msgstr "发票行" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 9c9fe8a6664..85e56c4b3a2 100755 --- a/addons/account/i18n/zh_HK.po +++ b/addons/account/i18n/zh_HK.po @@ -4095,6 +4095,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9170,6 +9176,12 @@ msgstr "" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring" diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index e1c7fecf110..87c383a3a1c 100755 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/i18n/zh_TW.po @@ -4094,6 +4094,12 @@ msgstr "" msgid "Error ! You can not create recursive accounts." msgstr "" +#. module: account +#: constraint:account.account:0 +msgid "You cannot create an account! \n" +"Make sure if the account has children then it should be type \"View\"!" +msgstr "" + #. module: account #: view:account.subscription.generate:0 #: model:ir.actions.act_window,name:account.action_account_subscription_generate @@ -9169,6 +9175,12 @@ msgstr "发票行" msgid "Error ! You can not create recursive account templates." msgstr "" +#. module: account +#: constraint:account.account.template:0 +msgid "You cannot create an account template! \n" +"Make sure if the account template has parent then it should be type \"View\"! " +msgstr "" + #. module: account #: view:account.subscription:0 msgid "Recurring"