Merge branch 'fix_3728_with_file_exists_dialog' of github.com:owncloud/core into fix_3728_with_file_exists_dialog

This commit is contained in:
Jörn Friedrich Dreyer 2013-09-19 11:33:34 +02:00
commit 1bba800e47
2 changed files with 3 additions and 3 deletions

View file

@ -169,7 +169,7 @@ OC.Upload = {
},
/**
* TODO checks the list of existing files prior to uploading and shows a simple dialog to choose
* skip all, replace all or choosw which files to keep
* skip all, replace all or choose which files to keep
* @param {array} selection of files to upload
* @param {object} callbacks - object with several callback methods
* @param {function} callbacks.onNoConflicts

View file

@ -499,7 +499,7 @@ var folderDropOptions={
$('#notification').fadeIn();
}
} else {
OC.dialogs.alert(t('Error moving file'), t('core', 'Error'));
OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error'));
}
});
});
@ -537,7 +537,7 @@ var crumbDropOptions={
$('#notification').fadeIn();
}
} else {
OC.dialogs.alert(t('Error moving file'), t('core', 'Error'));
OC.dialogs.alert(t('files', 'Error moving file'), t('files', 'Error'));
}
});
});