Add "forum" namespacing to previously renamed core keys

- Does not affect "core.deleted_user" global string.
- Corresponding YAML will be sent later w/ more extracted strings.
This commit is contained in:
dcsjapan
2015-10-02 15:54:39 +09:00
parent 4e5b3099f8
commit 0a66229169
38 changed files with 121 additions and 121 deletions

View File

@ -21,8 +21,8 @@ export default class NotificationGrid extends Component {
* @type {Array}
*/
this.methods = [
{name: 'alert', icon: 'bell', label: app.trans('core.settings_notify_by_web_heading')},
{name: 'email', icon: 'envelope-o', label: app.trans('core.settings_notify_by_email_heading')}
{name: 'alert', icon: 'bell', label: app.trans('core.forum.settings_notify_by_web_heading')},
{name: 'email', icon: 'envelope-o', label: app.trans('core.forum.settings_notify_by_email_heading')}
];
/**
@ -182,7 +182,7 @@ export default class NotificationGrid extends Component {
items.add('discussionRenamed', {
name: 'discussionRenamed',
icon: 'pencil',
label: app.trans('core.settings_notify_discussion_renamed_label')
label: app.trans('core.forum.settings_notify_discussion_renamed_label')
});
return items;