Fix translations of the delete confirmation

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2018-03-03 14:09:21 +01:00
parent ad9ce6cd26
commit 858952a56f

View File

@@ -123,7 +123,7 @@ app.factory('StackService', function (ApiService, $http, $q) {
var deferred = $q.defer();
var self = this;
OC.dialogs.confirm('Are you sure you want to delete the stack with all of its data?', t('deck', 'Delete'), function(state) {
OC.dialogs.confirm(t('deck', 'Are you sure you want to delete the stack with all of its data?'), t('deck', 'Delete'), function(state) {
if (!state) {
return;
}