Merge pull request #436 from nextcloud/fix-translations-dialog

Fix translations of the delete confirmation
This commit is contained in:
Julius Härtl 2018-03-03 15:02:03 +01:00 коммит произвёл GitHub
Родитель ad9ce6cd26 858952a56f
Коммит ee262291ce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}