mirror of
https://github.com/flarum/core.git
synced 2025-10-10 22:44:25 +02: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:
@@ -64,7 +64,7 @@ export default class HeaderSecondary extends Component {
|
||||
if (app.forum.attribute('allowSignUp')) {
|
||||
items.add('signUp',
|
||||
Button.component({
|
||||
children: app.trans('core.header_sign_up_link'),
|
||||
children: app.trans('core.forum.header_sign_up_link'),
|
||||
className: 'Button Button--link',
|
||||
onclick: () => app.modal.show(new SignUpModal())
|
||||
}), 10
|
||||
@@ -73,7 +73,7 @@ export default class HeaderSecondary extends Component {
|
||||
|
||||
items.add('logIn',
|
||||
Button.component({
|
||||
children: app.trans('core.header_log_in_link'),
|
||||
children: app.trans('core.forum.header_log_in_link'),
|
||||
className: 'Button Button--link',
|
||||
onclick: () => app.modal.show(new LogInModal())
|
||||
}), 0
|
||||
|
Reference in New Issue
Block a user