Skip to content

Commit 67d635e

Browse files
authored
Merge pull request #29497 from nextcloud/rakekniven-patch-1
Fixed grammar for "trash bin"
2 parents 8f11481 + 7729a01 commit 67d635e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

apps/files_trashbin/js/files_trashbin.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_trashbin/js/files_trashbin.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/files_trashbin/src/app.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ OCA.Trashbin.App = {
103103
fileList._removeCallback.bind(fileList, [filename]),
104104
function() {
105105
fileList.showFileBusyState(tr, false)
106-
OC.Notification.show(t('files_trashbin', 'Error while restoring file from trashbin'))
106+
OC.Notification.show(t('files_trashbin', 'Error while restoring file from trash bin'))
107107
}
108108
)
109109
},
@@ -133,7 +133,7 @@ OCA.Trashbin.App = {
133133
fileList._removeCallback.bind(fileList, [filename]),
134134
function() {
135135
fileList.showFileBusyState(tr, false)
136-
OC.Notification.show(t('files_trashbin', 'Error while removing file from trashbin'))
136+
OC.Notification.show(t('files_trashbin', 'Error while removing file from trash bin'))
137137
}
138138
)
139139
},

apps/files_trashbin/src/filelist.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@
197197
self.fileMultiSelectMenu.toggleLoading('restore', false)
198198
},
199199
function() {
200-
OC.Notification.show(t('files_trashbin', 'Error while restoring files from trashbin'))
200+
OC.Notification.show(t('files_trashbin', 'Error while restoring files from trash bin'))
201201
}
202202
)
203203
},
@@ -220,7 +220,7 @@
220220
self.setFiles([])
221221
},
222222
function() {
223-
OC.Notification.show(t('files_trashbin', 'Error while emptying trashbin'))
223+
OC.Notification.show(t('files_trashbin', 'Error while emptying trash bin'))
224224
}
225225
)
226226
} else {
@@ -238,7 +238,7 @@
238238
self.fileMultiSelectMenu.toggleLoading('delete', false)
239239
},
240240
function() {
241-
OC.Notification.show(t('files_trashbin', 'Error while removing files from trashbin'))
241+
OC.Notification.show(t('files_trashbin', 'Error while removing files from trash bin'))
242242
}
243243
)
244244
}

0 commit comments

Comments
 (0)