Merge pull request #203 from emiliojsf/master

Fix Translation string
pull/204/head
Francis Lachapelle 2016-03-22 15:18:32 -04:00
commit 9975ce8986
3 changed files with 4 additions and 2 deletions

View File

@ -126,6 +126,8 @@
"Name of the Address Book" = "Name of the Address Book";
"Are you sure you want to delete the selected address book?"
= "Are you sure you want to delete the selected address book?";
"Are you sure you want to delete the addressbook \"%{0}\"?"
= "Are you sure you want to delete the addressbook \"%{0}\"?";
"You cannot remove nor unsubscribe from a public addressbook."
= "You cannot remove nor unsubscribe from a public addressbook.";
"You cannot remove nor unsubscribe from your personal addressbook."

View File

@ -96,7 +96,7 @@
});
}
else {
Dialog.confirm(l('Warning'), l('Are you sure you want to delete the addressbook <em>%{0}</em>?',
Dialog.confirm(l('Warning'), l('Are you sure you want to delete the addressbook "%{0}"?',
vm.service.selectedFolder.name),
{ ok: l('Delete') })
.then(function() {

View File

@ -107,7 +107,7 @@
});
}
else {
Dialog.confirm(l('Warning'), l('Are you sure you want to delete the calendar <em>%{0}</em>?', folder.name),
Dialog.confirm(l('Warning'), l('Are you sure you want to delete the calendar "%{0}"?', folder.name),
{ ok: l('Delete') })
.then(function() {
folder.$delete()