1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-05 05:25:27 +02:00

i18n admin strings

This commit is contained in:
McMatts 2022-03-03 19:10:06 -05:00
parent 4ed2b3902c
commit 53297f7627
27 changed files with 99 additions and 58 deletions

View file

@ -18,6 +18,7 @@ export default Route.extend(AuthenticatedRouteMixin, {
orgService: service('organization'),
appMeta: service(),
session: service(),
i18n: service(),
beforeModel() {
if (!this.get("session.isAdmin")) {
@ -42,6 +43,6 @@ export default Route.extend(AuthenticatedRouteMixin, {
},
activate() {
this.get('browser').setTitle('Integrations');
this.get('browser').setTitle(this.i18n.localize('admin_integrations'));
}
});

View file

@ -1,6 +1,6 @@
{{layout/logo-heading
title="Integrations"
desc="Enable and configure third party integrations"
title=(localize 'admin_integrations')
desc=(localize 'admin_integrations_explain')
icon=constants.Icon.Integrations}}
{{customize/integration-settings jira=model.jira trello=model.trello}}