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

i18n admin strings

This commit is contained in:
McMatts 2022-03-03 19:42:37 -05:00
parent 53297f7627
commit 4ab48cc67d
11 changed files with 65 additions and 34 deletions

View file

@ -22,10 +22,13 @@ export default Component.extend(Notifier, Modals, {
subscription: null,
planCloud: false,
planSelfhost: false,
comment: 'Nothing in particular -- just passing through. Please close my Documize account.',
comment: '',
didReceiveAttrs() {
this._super(...arguments);
this.set('comment', this.i18n.localize('close_account'));
this.get('global').getSubscription().then((subs) => {
this.set('subscription', subs);
if (subs.plan === 'Installed') {
@ -41,7 +44,7 @@ export default Component.extend(Notifier, Modals, {
actions: {
saveLicense() {
this.get('global').setLicense(this.get('license')).then(() => {
this.notifySuccess('Saved');
this.notifySuccess(this.i18n.localize('saved'));
window.location.reload();
});
},
@ -55,7 +58,7 @@ export default Component.extend(Notifier, Modals, {
let comment = this.get('comment');
this.get('global').deactivate(comment).then(() => {
this.notifySuccess('Saved');
this.notifySuccess(this.i18n.localize('saved'));
this.modalOpen("#deactivation-confirmation-modal", {"show": true});
});
}