1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-08-02 20:15:26 +02:00

i18n section types

This commit is contained in:
McMatts 2022-03-10 12:10:39 -05:00
parent bca7794c00
commit f735ae1278
11 changed files with 61 additions and 44 deletions

View file

@ -17,13 +17,14 @@ import Component from '@ember/component';
export default Component.extend({
appMeta: service(),
sectionSvc: service('section'),
i18n: service(),
isDirty: false,
waiting: false,
diagram: '',
diagramXML: '',
title: '',
readyToSave: false,
previewButtonCaption: 'Preview',
previewButtonCaption: '',
flowCallback: null,
editorId: computed('page', function () {
let page = this.get('page');
@ -40,6 +41,8 @@ export default Component.extend({
didInsertElement() {
this._super(...arguments);
this.previewButtonCaption = this.i18n.localize('preview');
schedule('afterRender', () => {
this.setupEditor();
});
@ -125,7 +128,7 @@ export default Component.extend({
action: 'export',
format: 'xmlpng',
xml: this.get('diagramXML'),
spin: 'Updating'
spin: this.i18n.localize('updating')
}
), '*');
},