Commit 09fcc94a authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

uncapitalise non-first words.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@26945 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 24dc1e3b
......@@ -126,7 +126,7 @@ have id "2". This is probably a bit too stupid. -->\n
</tr>\n
<tr>\n
<td>verifyPortalStatusMessage</td>\n
<td>Object Created.</td>\n
<td>Object created.</td>\n
<td></td>\n
</tr>\n
<!-- then from view mode, view mode doesn\'t create a subobject, but create\n
......@@ -148,7 +148,7 @@ another object of the same type. -->\n
</tr>\n
<tr>\n
<td>verifyPortalStatusMessage</td>\n
<td>Object Created.</td>\n
<td>Object created.</td>\n
<td></td>\n
</tr>\n
\n
......
431
\ No newline at end of file
432
\ No newline at end of file
......@@ -72,7 +72,7 @@ if context.getPortalType() not in allowed_type_list:\n
\n
new_content = parent.newContent(portal_type=context.getPortalType())\n
return context.ERP5Site_redirect(\'%s/%s\' % (new_content.absolute_url(), form_id),\n
keep_items={\'portal_status_message\':Base_translateString("Object Created.")})\n
keep_items={\'portal_status_message\':Base_translateString("Object created.")})\n
</string> </value>
</item>
<item>
......
......@@ -62,7 +62,7 @@ if not allowed_type_list:\n
# newContent will add the first allowed type when we do not specify portal_type=\n
new_object = context.newContent(portal_type=allowed_type_list[0])\n
\n
return context.ERP5Site_redirect(\'%s/view\' % (new_object.absolute_url(), ), keep_items={\'portal_status_message\': Base_translateString("Object Created.")})\n
return context.ERP5Site_redirect(\'%s/view\' % (new_object.absolute_url(), ), keep_items={\'portal_status_message\': Base_translateString("Object created.")})\n
</string> </value>
</item>
<item>
......
751
\ No newline at end of file
752
\ No newline at end of file
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