Commit 6f286eb1 authored by Aurel's avatar Aurel

use wf title in key as we can have different title for the same wf state id

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14714 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0eaf1db1
......@@ -98,7 +98,7 @@ for wf in context.portal_workflow.objectValues():\n
if state.title != \'\' :\n
state_var_title = \'%s_title\' % state_var\n
translated_message = context.Localizer.erp5_ui.gettext(state.title.decode(\'utf-8\'), lang=lang).encode(\'utf-8\')\n
key = (lang, state_var_title, state_id)\n
key = (lang, state_var_title, state.title)\n
if not translated_keys.has_key(key):\n
translated_keys[key] = None # mark as translated\n
obj = newTempBase(context, \'temp_translation_%d\' % i,\n
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment