[IMP] website_blog: Blog Title renamed into "Blog Post Title"

bzr revid: chm@openerp.com-20131203154839-mxn84lydinun29kc
This commit is contained in:
Christophe Matthieu 2013-12-03 16:48:39 +01:00
parent bc4a7c81bc
commit d4bfd5b41f
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ class WebsiteBlog(http.Controller):
new_blog_post_id = request.registry['blog.post'].create(
request.cr, request.uid, {
'category_id': category_id,
'name': _("Blog title"),
'name': _("Blog Post Title"),
'content': '',
'website_published': False,
}, context=create_context)