mirror of
https://github.com/flarum/framework.git
synced 2024-11-27 02:48:44 +08:00
Change app.trans
calls to app.translator.trans
calls
This commit is contained in:
parent
ae5f196613
commit
ae7baa1e7f
|
@ -7,7 +7,7 @@ export default function addLockBadge() {
|
|||
if (this.isLocked()) {
|
||||
badges.add('locked', Badge.component({
|
||||
type: 'locked',
|
||||
label: app.trans('flarum-lock.forum.locked'),
|
||||
label: app.translator.trans('flarum-lock.forum.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.trans(discussion.isLocked() ? 'flarum-lock.forum.unlock' : 'flarum-lock.forum.lock'),
|
||||
children: app.translator.trans(discussion.isLocked() ? 'flarum-lock.forum.unlock' : 'flarum-lock.forum.lock'),
|
||||
icon: 'lock',
|
||||
onclick: this.lockAction.bind(discussion)
|
||||
}));
|
||||
|
|
|
@ -12,6 +12,6 @@ export default class DiscussionLockedNotification extends Notification {
|
|||
}
|
||||
|
||||
content() {
|
||||
return app.trans('flarum-lock.forum.discussion_locked_notification', {user: this.props.notification.sender()});
|
||||
return app.translator.trans('flarum-lock.forum.discussion_locked_notification', {user: this.props.notification.sender()});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -23,7 +23,7 @@ app.initializers.add('flarum-lock', () => {
|
|||
items.add('discussionLocked', {
|
||||
name: 'discussionLocked',
|
||||
icon: 'lock',
|
||||
label: app.trans('flarum-lock.forum.notify_discussion_locked')
|
||||
label: app.translator.trans('flarum-lock.forum.notify_discussion_locked')
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user