1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-21 14:19:43 +02:00

i18n space strings

This commit is contained in:
McMatts 2022-03-08 12:16:36 -05:00
parent e0805d7131
commit 4885a1b380
9 changed files with 92 additions and 57 deletions

View file

@ -16,10 +16,11 @@ import Component from '@ember/component';
export default Component.extend({
localStorage: service(),
i18n: service(),
showDeleteDialog: false,
showMoveDialog: false,
selectedDocuments: A([]),
selectedCaption: 'document',
selectedCaption: '',
viewDensity: "1",
showAdd: computed('permissions.documentAdd', 'documents', function() {
@ -35,6 +36,11 @@ export default Component.extend({
return _.isEmpty(this.get('categoryFilter')) && this.get('documents').length == this.get("numDocuments");
}),
init() {
this._super(...arguments);
this.selectedCaption = this.i18n.localize('document');
},
didReceiveAttrs() {
this._super(...arguments);
@ -162,7 +168,7 @@ export default Component.extend({
list = _.without(list, documentId);
}
this.set('selectedCaption', list.length > 1 ? 'documents' : 'document');
this.set('selectedCaption', list.length > 1 ? this.i18n.localize('document') : this.i18n.localize('documents'));
this.set('selectedDocuments', A(list));
},