mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 10:50:50 +08:00
Reorganize key names
See [flarum/core #265](https://github.com/flarum/core/issues/265). - Adjusts key names to three-tier namespacing. - Extracts previously unextracted strings.
This commit is contained in:
parent
ae7baa1e7f
commit
93ec8bf255
|
@ -6,7 +6,7 @@ app.initializers.add('lock', () => {
|
|||
extend(PermissionGrid.prototype, 'moderateItems', items => {
|
||||
items.add('lock', {
|
||||
icon: 'lock',
|
||||
label: 'Lock discussions',
|
||||
label: app.translator.trans('flarum-lock.admin.permissions.lock_discussions_label'),
|
||||
permission: 'discussion.lock'
|
||||
}, 95);
|
||||
});
|
||||
|
|
|
@ -7,7 +7,7 @@ export default function addLockBadge() {
|
|||
if (this.isLocked()) {
|
||||
badges.add('locked', Badge.component({
|
||||
type: 'locked',
|
||||
label: app.translator.trans('flarum-lock.forum.locked'),
|
||||
label: app.translator.trans('flarum-lock.forum.badge.locked'),
|
||||
icon: 'lock'
|
||||
}));
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ export default function addLockControl() {
|
|||
extend(DiscussionControls, 'moderationControls', function(items, discussion) {
|
||||
if (discussion.canLock()) {
|
||||
items.add('lock', Button.component({
|
||||
children: app.translator.trans(discussion.isLocked() ? 'flarum-lock.forum.unlock' : 'flarum-lock.forum.lock'),
|
||||
children: app.translator.trans(discussion.isLocked() ? 'flarum-lock.forum.discussion_controls.unlock' : 'flarum-lock.forum.discussion_controls.lock'),
|
||||
icon: 'lock',
|
||||
onclick: this.lockAction.bind(discussion)
|
||||
}));
|
||||
|
|
|
@ -12,6 +12,6 @@ export default class DiscussionLockedNotification extends Notification {
|
|||
}
|
||||
|
||||
content() {
|
||||
return app.translator.trans('flarum-lock.forum.discussion_locked_notification', {user: this.props.notification.sender()});
|
||||
return app.translator.trans('flarum-lock.forum.notifications.discussion_locked_text', {user: this.props.notification.sender()});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ export default class DiscussionLockedPost extends EventPost {
|
|||
|
||||
descriptionKey() {
|
||||
return this.props.post.content().locked
|
||||
? 'flarum-lock.forum.discussion_locked_post'
|
||||
: 'flarum-lock.forum.discussion_unlocked_post';
|
||||
? 'flarum-lock.forum.post_stream.discussion_locked_post'
|
||||
: 'flarum-lock.forum.post_stream.discussion_unlocked_post';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ app.initializers.add('flarum-lock', () => {
|
|||
items.add('discussionLocked', {
|
||||
name: 'discussionLocked',
|
||||
icon: 'lock',
|
||||
label: app.translator.trans('flarum-lock.forum.notify_discussion_locked')
|
||||
label: app.translator.trans('flarum-lock.forum.settings.notify_discussion_locked_label')
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user