Commit 23fcd247 authored by Jérome Perrin's avatar Jérome Perrin

change "Saved in ${path}." message to "Saved in ${path} .", to respect

http://www.erp5.org/GuidelinesForNamingConvention


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@23895 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent bf1b59a6
...@@ -161,7 +161,7 @@ class TemplateTool (BaseTool): ...@@ -161,7 +161,7 @@ class TemplateTool (BaseTool):
path = pathname2url(path) path = pathname2url(path)
business_template.export(path=path, local=1) business_template.export(path=path, local=1)
if REQUEST is not None: if REQUEST is not None:
psm = translateString('Saved in ${path}.', psm = translateString('Saved in ${path} .',
mapping={'path':pathname2url(path)}) mapping={'path':pathname2url(path)})
ret_url = '%s/%s?portal_status_message=%s' % \ ret_url = '%s/%s?portal_status_message=%s' % \
(business_template.absolute_url(), (business_template.absolute_url(),
......
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