mirror of
https://github.com/flarum/framework.git
synced 2025-05-23 15:19:56 +08:00
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:
@ -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;
|
||||
|
Reference in New Issue
Block a user