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

i18n doc strings

This commit is contained in:
McMatts 2022-03-09 15:20:16 -05:00
parent 371706fb49
commit bca7794c00
9 changed files with 50 additions and 32 deletions

View file

@ -22,6 +22,7 @@ export default Component.extend(Modals, Notifier, {
browserSvc: service('browser'),
appMeta: service(),
session: service(),
i18n: service(),
hasAttachments: notEmpty('files'),
canEdit: computed('permissions.{documentApprove,documentEdit}', 'document.protection', function() {
// Check to see if specific scenarios prevent us from changing doc level attachments.
@ -86,7 +87,7 @@ export default Component.extend(Modals, Notifier, {
});
this.on("queuecomplete", function () {
self.notifySuccess('Uploaded file');
self.notifySuccess(this.i18n.localize('uploaded'));
self.getAttachments();
});
@ -115,7 +116,7 @@ export default Component.extend(Modals, Notifier, {
actions: {
onDelete(attachment) {
this.get('documentService').deleteAttachment(this.get('document.id'), attachment.id).then(() => {
this.notifySuccess('File deleted');
this.notifySuccess(this.i18n.localize('deleted'));
this.getAttachments();
});
}