1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 15:19:42 +02:00

i18n page strings

This commit is contained in:
McMatts 2022-03-04 13:07:11 -05:00
parent 4ab48cc67d
commit 59dc6ea991
29 changed files with 125 additions and 107 deletions

View file

@ -20,6 +20,7 @@ export default Route.extend(AuthenticatedRouteMixin, {
iconSvc: service('icon'),
localStorage: service(),
labelSvc: service('label'),
i18n: service(),
beforeModel() {
if (this.get('appMeta.setupMode')) {
@ -72,6 +73,6 @@ export default Route.extend(AuthenticatedRouteMixin, {
},
activate() {
this.get('browser').setTitle('Spaces');
this.get('browser').setTitle(this.i18n.localize('spaces'));
}
});