[FIX] res_config: made strings in compatibility install wizard translatable

bzr revid: odo@openerp.com-20101216150430-8tg06fpfubdac4py
This commit is contained in:
Olivier Dony 2010-12-16 16:04:30 +01:00
parent 8a57904105
commit a86a432edf
2 changed files with 19 additions and 5 deletions

View File

@ -6,8 +6,8 @@ msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 6.0.0-rc1\n"
"Report-Msgid-Bugs-To: support@openerp.com\n"
"POT-Creation-Date: 2010-12-15 15:05:00+0000\n"
"PO-Revision-Date: 2010-12-15 15:05:00+0000\n"
"POT-Creation-Date: 2010-12-16 15:02:56+0000\n"
"PO-Revision-Date: 2010-12-16 15:02:56+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -2629,6 +2629,14 @@ msgstr ""
msgid "%c - Appropriate date and time representation."
msgstr ""
#. module: base
#: code:addons/base/res/res_config.py:0
#, python-format
msgid "Your database is now fully configured.\n"
"\n"
"Click 'Continue' and enjoy your OpenERP experience..."
msgstr ""
#. module: base
#: selection:base.language.install,lang:0
msgid "Hebrew / עִבְרִי"
@ -5207,6 +5215,12 @@ msgstr ""
msgid "View type: set to 'tree' for a hierarchical tree view, or 'form' for other views"
msgstr ""
#. module: base
#: code:addons/base/res/res_config.py:0
#, python-format
msgid "Click 'Continue' to configure the next addon..."
msgstr ""
#. module: base
#: field:ir.actions.server,record_id:0
msgid "Create Id"

View File

@ -418,9 +418,9 @@ class ir_actions_configuration_wizard(osv.osv_memory):
# if the next one is also an old-style extension, you never know...
if next.note:
return next.note
return "Click 'Continue' to configure the next addon..."
return "Your database is now fully configured.\n\n"\
"Click 'Continue' and enjoy your OpenERP experience..."
return _("Click 'Continue' to configure the next addon...")
return _("Your database is now fully configured.\n\n"\
"Click 'Continue' and enjoy your OpenERP experience...")
_columns = {
'note': fields.text('Next Wizard', readonly=True),