Merge pull request #29497 from nextcloud/rakekniven-patch-1

Fixed grammar for "trash bin"
pull/29501/head
Valdnet 2021-11-01 11:12:10 +07:00 committed by GitHub
commit 67d635e099
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -103,7 +103,7 @@ OCA.Trashbin.App = {
fileList._removeCallback.bind(fileList, [filename]),
function() {
fileList.showFileBusyState(tr, false)
OC.Notification.show(t('files_trashbin', 'Error while restoring file from trashbin'))
OC.Notification.show(t('files_trashbin', 'Error while restoring file from trash bin'))
}
)
},
@ -133,7 +133,7 @@ OCA.Trashbin.App = {
fileList._removeCallback.bind(fileList, [filename]),
function() {
fileList.showFileBusyState(tr, false)
OC.Notification.show(t('files_trashbin', 'Error while removing file from trashbin'))
OC.Notification.show(t('files_trashbin', 'Error while removing file from trash bin'))
}
)
},

@ -197,7 +197,7 @@
self.fileMultiSelectMenu.toggleLoading('restore', false)
},
function() {
OC.Notification.show(t('files_trashbin', 'Error while restoring files from trashbin'))
OC.Notification.show(t('files_trashbin', 'Error while restoring files from trash bin'))
}
)
},
@ -220,7 +220,7 @@
self.setFiles([])
},
function() {
OC.Notification.show(t('files_trashbin', 'Error while emptying trashbin'))
OC.Notification.show(t('files_trashbin', 'Error while emptying trash bin'))
}
)
} else {
@ -238,7 +238,7 @@
self.fileMultiSelectMenu.toggleLoading('delete', false)
},
function() {
OC.Notification.show(t('files_trashbin', 'Error while removing files from trashbin'))
OC.Notification.show(t('files_trashbin', 'Error while removing files from trash bin'))
}
)
}