Monotone-Parent: 363fbc819330c41ad2c2027e6eab767f87e0099a

Monotone-Revision: af42c1c664398cffa5afdc484683fb326e291b6e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-08-25T18:12:09
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2008-08-25 18:12:09 +00:00
parent cbcf149606
commit 559f29f702
7 changed files with 24 additions and 6 deletions

View File

@ -109,6 +109,8 @@
"Name of the Address Book" = "Naam van het adresboek";
"Are you sure you want to delete the selected address book?"
= "Weet u zeker dat u het geselecteerde adresboek wilt verwijderen?";
"Are you sure you want to delete the selected contacts?"
= "Weet u zeker dat u de geselecteerde contactpersonen wilt verwijderen?";
"You cannot delete the selected contact(s)"
= "U kunt deze contactpersonen niet verwijderen.";

View File

@ -105,6 +105,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 selected contacts?"
= "Are you sure you want to delete the selected contacts?";
"You don't have the required privileges to perform the operation."
= "You don't have the required privileges to perform the operation.";
"You cannot delete the card of \"%{0}\"."
@ -141,4 +143,4 @@
"SoAccessDeniedException" = "You cannot write to this address book.";
"Forbidden" = "You cannot write to this address book.";
"Invalid Contact" = "The selected contact no longer exists.";
"Unknown Destination Folder" = "The chosen destination address book no longer exists.";
"Unknown Destination Folder" = "The chosen destination address book no longer exists.";

View File

@ -118,6 +118,8 @@
"Name of the Address Book" = "Nom du carnet d'adresses";
"Are you sure you want to delete the selected address book?"
= "Voulez-vous vraiment supprimer le carnet d'adresses sélectionné ?";
"Are you sure you want to delete the selected contacts?"
= "Voulez-vous vraiment supprimer les contacts sélectionnés ?";
"You don't have the required privileges to perform the operation."
= "Vous n'avez pas les privilèges requis pour compléter l'opération.";
"You cannot delete the card of \"%{0}\"."

View File

@ -109,6 +109,8 @@
"Name of the Address Book" = "Adressbuch-Name";
"Are you sure you want to delete the selected address book?"
= "Wollen Sie wirklich das ausgewählte Adressbuch löschen?";
"Are you sure you want to delete the selected contacts?"
= "Wollen Sie wirklich die ausgewählte Karten löschen?";
"You cannot delete the selected contact(s)"
= "Ausgewählte Karten können nicht gelöscht werden.";

View File

@ -129,6 +129,10 @@
"Name of the Address Book" = "Nome della rubrica";
"Are you sure you want to delete the selected address book?"
= "Sei sicuro di voler cancellare la rubrica selezionata?";
"Are you sure you want to delete the selected contacts?"
= "Sei sicuro di voler eliminare i contatti selezionati?";
= "Are you sure you want to delete the selected contacts?";
"Address Book Name" = "Nome della Rubrica";

View File

@ -120,6 +120,8 @@
"Name of the Address Book" = "Nombre de la libreta";
"Are you sure you want to delete the selected address book?"
= "¿Está seguro/a que desea borrar la libreta de direcciones seleccionada?";
"Are you sure you want to delete the selected contacts?"
= "¿Está seguro/a que desea borrar el/los contacto(s) seleccionado(s)?";
"You cannot delete the selected contact(s)"
= "No puede borrar el/los contacto(s) seleccionado(s).";

View File

@ -435,11 +435,15 @@ function onToolbarDeleteSelectedContacts(event) {
var rows = contactsList.getSelectedRowsId();
if (rows.length) {
for (var i = 0; i < rows.length; i++) {
delete cachedContacts[Contact.currentAddressBook + "/" + rows[i]];
var urlstr = (URLForFolderID(Contact.currentAddressBook) + "/"
+ rows[i] + "/delete");
triggerAjaxRequest(urlstr, onContactDeleteEventCallback, rows[i]);
var label = labels["Are you sure you want to delete the selected contacts?"];
if (window.confirm(label)) {
for (var i = 0; i < rows.length; i++) {
delete cachedContacts[Contact.currentAddressBook + "/" + rows[i]];
var urlstr = (URLForFolderID(Contact.currentAddressBook) + "/"
+ rows[i] + "/delete");
triggerAjaxRequest(urlstr, onContactDeleteEventCallback,
rows[i]);
}
}
}
else {