diff --git a/account_financial_report/i18n/es.mo b/account_financial_report/i18n/es.mo index f867c5bc..f6d379f1 100644 Binary files a/account_financial_report/i18n/es.mo and b/account_financial_report/i18n/es.mo differ diff --git a/account_financial_report/i18n/es.po b/account_financial_report/i18n/es.po index 00e6da44..9bd34cbf 100644 --- a/account_financial_report/i18n/es.po +++ b/account_financial_report/i18n/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-10 16:47+0000\n" -"PO-Revision-Date: 2012-08-10 17:35-0400\n" +"POT-Creation-Date: 2012-08-10 22:55+0000\n" +"PO-Revision-Date: 2012-08-10 18:27-0400\n" "Last-Translator: Humberto Arocha \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -132,11 +132,12 @@ msgid "Company Info" msgstr "Información de la Compañía" #. module: account_financial_report +#: code:addons/account_financial_report/report/parser.py:342 #: code:addons/account_financial_report/wizard/wizard.py:185 #: code:addons/account_financial_report/wizard/wizard.py:189 #, python-format msgid "UserError" -msgstr "Error de Usuario" +msgstr "UserError" #. module: account_financial_report #: report:afr.analytic.ledger:0 @@ -219,7 +220,7 @@ msgstr "INICIAL" #. module: account_financial_report #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Error! Usted no puede crear empresas recursiva." +msgstr "¡Error! No se pueden crear compañías recursivas." #. module: account_financial_report #: field:wizard.report,afr_id:0 @@ -318,6 +319,12 @@ msgstr "Cuentas Acreditables" msgid "_Cancel" msgstr "_Cancelar" +#. module: account_financial_report +#: code:addons/account_financial_report/report/parser.py:342 +#, python-format +msgid "The Selected Fiscal Year Does not have Regular Periods" +msgstr "El Ejercicio Fiscal Seleccionado no tiene Períodos Regulares" + #. module: account_financial_report #: report:afr.13cols:0 #: report:afr.5cols:0 diff --git a/account_financial_report/report/parser.py b/account_financial_report/report/parser.py index fe18cea1..e6c653eb 100644 --- a/account_financial_report/report/parser.py +++ b/account_financial_report/report/parser.py @@ -339,7 +339,7 @@ class account_balance(report_sxw.rml_parse): if not form['periods']: form['periods'] = period_obj.search(self.cr, self.uid, [('fiscalyear_id','=',fiscalyear.id),('special','=',False)],order='date_start asc') if not form['periods']: - raise osv.except_osv(_('UserError'),'The Selected Fiscal Year Does not have Regular Periods') + raise osv.except_osv(_('UserError'),_('The Selected Fiscal Year Does not have Regular Periods')) if form['columns'] == 'qtr': period_ids = period_obj.search(self.cr, self.uid, [('fiscalyear_id','=',fiscalyear.id),('special','=',False)],order='date_start asc')