Merge branch 'develop' of https://github.com/vivo-project/Vitro into develop
This commit is contained in:
commit
257f0c4c08
58 changed files with 1112 additions and 700 deletions
|
@ -45,7 +45,7 @@ $(document).ready(function(){
|
|||
if (countAccount == 0){
|
||||
return false;
|
||||
}else{
|
||||
var answer = confirm( 'Are you sure you want to delete ' + ((countAccount > 1) ? 'these accounts' : 'this account') +'?');
|
||||
var answer = confirm( ((countAccount > 1) ? confirm_delete_account_plural : confirm_delete_account_singular) +'?');
|
||||
return answer;
|
||||
}
|
||||
});
|
||||
|
|
|
@ -4,7 +4,7 @@ $(document).ready(function(){
|
|||
|
||||
// Confirmation alert for photo deletion in image upload and individual templates
|
||||
$('#photoUploadDefaultImage a.thumbnail, a.delete-mainImage').click(function(){
|
||||
var answer = confirm('Are you sure you want to delete this photo?');
|
||||
var answer = confirm(i18n_confirmDelete);
|
||||
return answer;
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue