');
+ li.click(function(event){
+ li.empty();
+ var input=$('');
+ li.append(input);
+ input.focus();
+ input.css('width',button.innerWidth());
+ button.parent().data('preventHide',true);
+ input.keypress(function(event) {
+ if(event.keyCode == 13) {
+ event.preventDefault();
+ event.stopPropagation();
+ var value = $(this).val();
+ var exists = false;
+ $.each(options,function(index, item) {
+ if ($(item).val() == value || $(item).text() == value) {
+ exists = true;
+ return false;
+ }
+ });
+ if (exists) {
+ return false;
+ }
+ var li=$(this).parent();
+ var val = $(this).val()
+ var select=button.parent().next();
+ if(typeof settings.createCallback === 'function') {
+ var response = settings.createCallback(select, val);
+ console.log('response', response);
+ if(response === false) {
+ return false;
+ } else if(typeof response !== 'undefined') {
+ val = response;
+ }
+ }
+ if(settings.singleSelect) {
+ $.each(select.find('option:selected'), function() {
+ $(this).removeAttr('selected');
+ });
+ }
+ $(this).remove();
+ li.text('+ '+settings.createText);
+ li.before(createItem(this));
+ var option=$('');
+ option.text($(this).val()).val(val).attr('selected', 'selected');
+ select.append(option);
+ li.prev().children('input').prop('checked', true).trigger('change');
+ button.parent().data('preventHide',false);
+ button.children('span').first().text(settings.labels.length > 0
+ ? settings.labels.join(', ')
+ : settings.title);
+ if(self.menuDirection === 'up') {
+ var list = li.parent();
+ list.css('top', list.position().top-li.outerHeight());
+ }
+ }
+ });
+ input.blur(function() {
+ event.preventDefault();
+ event.stopPropagation();
+ $(this).remove();
+ li.text('+ '+settings.createText);
+ setTimeout(function(){
+ button.parent().data('preventHide',false);
+ },100);
+ });
+ });
+ list.append(li);
+ }
+ var pos=button.position();
+ if($(document).height() > button.offset().top+button.outerHeight() + list.children().length * button.height()) {
+ list.css('top',pos.top+button.outerHeight()-5);
+ list.css('left',pos.left+3);
+ list.css('width',(button.outerWidth()-2)+'px');
+ list.addClass('down');
+ button.addClass('down');
+ list.slideDown();
+ } else {
+ list.css('top', pos.top - list.height());
+ list.css('left', pos.left+3);
+ list.css('width',(button.outerWidth()-2)+'px');
+ list.detach().insertBefore($(this));
+ list.addClass('up');
+ button.addClass('up');
+ list.fadeIn();
+ self.menuDirection = 'up';
+ }
+ list.click(function(event) {
+ event.stopPropagation();
+ });
+ });
+ $(window).click(function() {
+ if(!button.parent().data('preventHide')) {
+ // How can I save the effect in a var?
+ if(self.menuDirection === 'down') {
+ button.parent().children('ul').slideUp(400,function() {
+ button.parent().children('ul').remove();
+ button.removeClass('active').removeClass('down');
+ });
+ } else {
+ button.parent().children('ul').fadeOut(400,function() {
+ button.parent().children('ul').remove();
+ button.removeClass('active').removeClass('up');
+ });
+ }
+ }
+ });
+
+ return span;
+ };
+})( jQuery );
\ No newline at end of file
diff --git a/l10n/ar.php b/l10n/ar.php
index dac1bad8..87bd56b1 100644
--- a/l10n/ar.php
+++ b/l10n/ar.php
@@ -8,6 +8,7 @@
"No file was uploaded" => "لم يتم ترفيع أي من الملفات",
"Missing a temporary folder" => "المجلد المؤقت غير موجود",
"Contacts" => "المعارف",
+"Upload too large" => "حجم الترفيع أعلى من المسموح",
"Download" => "انزال",
"Edit" => "تعديل",
"Delete" => "حذف",
@@ -24,8 +25,6 @@
"Contact" => "معرفه",
"Settings" => "اعدادات",
"Import" => "إدخال",
-"Export" => "تصدير المعلومات",
-"Back" => "رجوع",
"Groups" => "مجموعات",
"Close" => "اغلق",
"Title" => "عنوان",
@@ -36,22 +35,23 @@
"Email" => "البريد الالكتروني",
"Address" => "عنوان",
"Preferred" => "مفضل",
+"City" => "المدينة",
+"Country" => "البلد",
+"Share" => "شارك",
+"Export" => "تصدير المعلومات",
"Add Contact" => "أضف شخص ",
"Download contact" => "انزال المعرفه",
"Delete contact" => "امحي المعرفه",
"Type" => "نوع",
"PO Box" => "العنوان البريدي",
"Extended" => "إضافة",
-"City" => "المدينة",
"Region" => "المنطقة",
"Zipcode" => "رقم المنطقة",
-"Country" => "البلد",
"Addressbook" => "كتاب العناوين",
"more info" => "مزيد من المعلومات",
"Primary address (Kontact et al)" => "العنوان الرئيسي (جهات الإتصال)",
"iOS/OS X" => "ط ن ت/ ن ت 10",
"Addressbooks" => "كتب العناوين",
-"Share" => "شارك",
"New Address Book" => "كتاب عناوين جديد",
"Name" => "اسم",
"Save" => "حفظ"
diff --git a/l10n/bg_BG.php b/l10n/bg_BG.php
index e46b3918..4e569044 100644
--- a/l10n/bg_BG.php
+++ b/l10n/bg_BG.php
@@ -7,13 +7,13 @@
"No file was uploaded" => "Фахлът не бе качен",
"Missing a temporary folder" => "Липсва временната папка",
"Error" => "Грешка",
+"Upload Error" => "Грешка при качване",
"Download" => "Изтегляне",
"Delete" => "Изтриване",
"Cancel" => "Отказ",
"Work" => "Работа",
"Other" => "Друго",
"Import" => "Внасяне",
-"Export" => "Изнасяне",
"Groups" => "Групи",
"Title" => "Заглавие",
"Birthday" => "Роджен ден",
@@ -21,5 +21,6 @@
"Email" => "Е-поща",
"Address" => "Адрес",
"Share" => "Споделяне",
+"Export" => "Изнасяне",
"Save" => "Запис"
);
diff --git a/l10n/ca.php b/l10n/ca.php
index 058841be..a73c9950 100644
--- a/l10n/ca.php
+++ b/l10n/ca.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Error en afegir grup",
"Error removing from group." => "Error en eliminar del grup",
"There was an error opening a mail composer." => "S'ha produït un error en obrir un redactor de correus electrónics.",
+"Not all files uploaded. Retrying..." => "No s'han pujat tots els fitxers. Es reintenta...",
+"Something went wrong with the upload, please retry." => "Alguna cosa ha fallat en la pujada, intenteu-ho de nou.",
+"Error" => "Error",
+"Importing..." => "Important...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes",
+"Upload Error" => "Error en la pujada",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor.",
+"Upload too large" => "La pujada és massa gran",
+"Pending" => "Pendent",
"Add group" => "Afegeix grup",
"No files selected for upload." => "No s'han seleccionat fitxers per a la pujada.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor.",
"Edit profile picture" => "Edita la fotografia de perfil",
"Error loading profile picture." => "Error en carregar la imatge de perfil.",
"Enter name" => "Escriviu un nom",
"Enter description" => "Escriviu una descripció",
"Select addressbook" => "Selecciona la llibreta d'adreces",
"The address book name cannot be empty." => "El nom de la llibreta d'adreces no pot ser buit.",
-"Error" => "Error",
"Is this correct?" => "És correcte?",
"There was an unknown error when trying to delete this contact" => "S'ha produït un error en intentar esborrat aquest contacte",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Heu marcat eliminar alguns contactes, però encara no s'han eliminat. Espereu mentre s'esborren.",
@@ -138,17 +145,15 @@
"HomePage" => "Pàgina d'inici",
"New Group" => "Grup nou",
"Settings" => "Configuració",
-"Share" => "Comparteix",
"Import" => "Importa",
"Import into:" => "Importa a:",
-"Export" => "Exporta",
+"OK" => "D'acord",
"(De-)select all" => "(Des-)selecciona'ls tots",
"New Contact" => "Contate nou",
-"Back" => "Enrera",
"Download Contact" => "Baixa contacte",
-"Delete Contact" => "Elimina contacte",
"Groups" => "Grups",
"Favorite" => "Preferits",
+"Delete Contact" => "Elimina contacte",
"Close" => "Tanca",
"Keyboard shortcuts" => "Dreceres de teclat",
"Navigation" => "Navegació",
@@ -174,6 +179,7 @@
"Additional names" => "Noms addicionals",
"Last name" => "Cognom",
"Nickname" => "Sobrenom",
+"Enter nickname" => "Escriviu el sobrenom",
"Title" => "Títol",
"Organization" => "Organització",
"Birthday" => "Aniversari",
@@ -197,17 +203,22 @@
"View on map" => "Visualitza al mapa",
"Delete address" => "Elimina l'adreça",
"1 Main Street" => "Carrer major, 1",
+"Street address" => "Adreça",
"12345" => "12123",
+"Postal code" => "Codi postal",
"Your city" => "Ciutat",
+"City" => "Ciutat",
"Some region" => "Comarca",
"Your country" => "País",
+"Country" => "País",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Elimina IM",
+"Share" => "Comparteix",
+"Export" => "Exporta",
"Add Contact" => "Afegeix un contacte",
"Drop photo to upload" => "Elimina la foto a carregar",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma",
"Edit name details" => "Edita detalls del nom",
-"Enter nickname" => "Escriviu el sobrenom",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Separeu els grups amb comes",
@@ -222,16 +233,12 @@
"Edit address" => "Edita l'adreça",
"Type" => "Tipus",
"PO Box" => "Adreça postal",
-"Street address" => "Adreça",
"Street and number" => "Carrer i número",
"Extended" => "Addicional",
"Apartment number etc." => "Número d'apartament, etc.",
-"City" => "Ciutat",
"Region" => "Comarca",
"E.g. state or province" => "p. ex. Estat o província ",
"Zipcode" => "Codi postal",
-"Postal code" => "Codi postal",
-"Country" => "País",
"Addressbook" => "Llibreta d'adreces",
"Hon. prefixes" => "Prefix honorífic:",
"Miss" => "Srta",
diff --git a/l10n/cs_CZ.php b/l10n/cs_CZ.php
index 4b3db98b..e4d23354 100644
--- a/l10n/cs_CZ.php
+++ b/l10n/cs_CZ.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Kontakt není v této skupině.",
"Contacts are not in this group." => "Kontakty nejsou v této skupině.",
"A group named {group} already exists" => "Skupina s názvem {group} již existuje",
+"You can drag groups to\narrange them as you like." => "Můžete přesouvat skupiny, pro\nsnadné seřazení dle vašich potřeb.",
"All" => "Vše",
"Favorites" => "Oblíbené",
"Shared by {owner}" => "Sdílí {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Chyba při přidávání do skupiny",
"Error removing from group." => "Chyba při odebírání ze skupiny",
"There was an error opening a mail composer." => "Nastala chyba při otevírání editoru emalů.",
+"Deleting done. Click here to cancel reloading." => "Mazání dokončeno. Klikněte zde pro zrušení přenačtení.",
+"Add address book" => "Přidat knihu adres",
+"Import done. Click here to cancel reloading." => "Import dokončen. Klikněte zde pro zrušení přenačtení.",
+"Not all files uploaded. Retrying..." => "Všechny soubory nebyly odeslány. Opakuji...",
+"Something went wrong with the upload, please retry." => "Něco se stalo špatně s odesílaným souborem, zkuste jej, prosím, odeslat znovu.",
+"Error" => "Chyba",
+"Importing from {filename}..." => "Importuji z {filename}...",
+"{success} imported, {failed} failed." => "{success} importováno, {failed} selhalo.",
+"Importing..." => "Importuji...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů",
+"Upload Error" => "Chyba odesílání",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Soubor, který se pokoušíte odeslat, přesahuje maximální povolenou velikost.",
+"Upload too large" => "Odesílaný soubor je příliš velký",
+"Pending" => "Nevyřízené",
"Add group" => "Přidat skupinu",
"No files selected for upload." => "Žádné soubory nebyly vybrány k nahrání.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Soubor, který se pokoušíte odeslat, přesahuje maximální povolenou velikost.",
"Edit profile picture" => "Upravit obrázek profilu",
"Error loading profile picture." => "Chyba při načítání obrázku profilu.",
"Enter name" => "Zadejte jméno",
"Enter description" => "Zadejte popis",
"Select addressbook" => "Vybrat knihu adres",
"The address book name cannot be empty." => "Název knihy adres nemůže být prázdný.",
-"Error" => "Chyba",
"Is this correct?" => "Je to správně?",
"There was an unknown error when trying to delete this contact" => "Nastala neznámá chyba při mazání tohoto kontaktu",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Některé kontakty jsou označeny ke smazání, ale nejsou smazány. Počkejte, prosím, na dokončení operace.",
@@ -138,17 +151,18 @@
"HomePage" => "Domovská stránka",
"New Group" => "Nová skupina",
"Settings" => "Nastavení",
-"Share" => "Sdílet",
+"Address books" => "Knihy adres",
"Import" => "Importovat",
+"Select files to import" => "Vybrat soubory pro import",
+"Select files" => "Vybrat soubory",
"Import into:" => "Importovat do:",
-"Export" => "Exportovat",
+"OK" => "OK",
"(De-)select all" => "Vybrat (odznačit) vše",
"New Contact" => "Nový kontakt",
-"Back" => "Zpět",
"Download Contact" => "Stáhnout kontakt",
-"Delete Contact" => "Smazat kontakt",
"Groups" => "Skupiny",
"Favorite" => "Oblíbit",
+"Delete Contact" => "Smazat kontakt",
"Close" => "Zavřít",
"Keyboard shortcuts" => "Klávesové zkratky",
"Navigation" => "Navigace",
@@ -174,6 +188,7 @@
"Additional names" => "Další jména",
"Last name" => "Příjmení",
"Nickname" => "Přezdívka",
+"Enter nickname" => "Zadejte přezdívku",
"Title" => "Název",
"Organization" => "Organizace",
"Birthday" => "Narozeniny",
@@ -197,17 +212,23 @@
"View on map" => "Zobrazit na mapě",
"Delete address" => "Smazat adresu",
"1 Main Street" => "1 Hlavní ulice",
+"Street address" => "Ulice",
"12345" => "12345",
+"Postal code" => "Směrovací číslo",
"Your city" => "Vaše město",
+"City" => "Město",
"Some region" => "Nějaký region",
"Your country" => "Váše země",
+"Country" => "Země",
"Instant Messenger" => "Komunikátor",
"Delete IM" => "Smazat komunikátor",
+"Share" => "Sdílet",
+"Export" => "Exportovat",
+"CardDAV link" => "Odkaz CardDAV",
"Add Contact" => "Přidat kontakt",
"Drop photo to upload" => "Přetáhněte sem fotku pro nahrání",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formát vlastní, křestní jméno, celé jméno, obráceně, nebo obráceně oddělené čárkami",
"Edit name details" => "Upravit podrobnosti jména",
-"Enter nickname" => "Zadejte přezdívku",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd. mm. yyyy",
"Separate groups with commas" => "Oddělte skupiny čárkami",
@@ -222,16 +243,12 @@
"Edit address" => "Upravit adresu",
"Type" => "Typ",
"PO Box" => "PO box",
-"Street address" => "Ulice",
"Street and number" => "Ulice a číslo",
"Extended" => "Rozšířené",
"Apartment number etc." => "Číslo bytu atd.",
-"City" => "Město",
"Region" => "Kraj",
"E.g. state or province" => "Např. stát nebo provincie",
"Zipcode" => "PSČ",
-"Postal code" => "Směrovací číslo",
-"Country" => "Země",
"Addressbook" => "Kniha adres",
"Hon. prefixes" => "Tituly před jménem",
"Miss" => "Slečna",
diff --git a/l10n/da.php b/l10n/da.php
index 28962fcc..e9666e5e 100644
--- a/l10n/da.php
+++ b/l10n/da.php
@@ -41,13 +41,20 @@
"No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.",
"Contacts" => "Kontaktpersoner",
"Select photo" => "Vælg foto",
-"No files selected for upload." => "Der er ikke valgt nogen filer at uploade.",
+"Not all files uploaded. Retrying..." => "Nogle filer blev ikke uploadet. Forsøger igen...",
+"Something went wrong with the upload, please retry." => "Der opstod en fejl under upload. Forsøg igen.",
+"Error" => "Fejl",
+"Importing..." => "Importerer...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke uploade din fil - det er enten en mappe eller en fil med et indhold på 0 bytes.",
+"Upload Error" => "Fejl i upload",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Dr.",
+"Upload too large" => "Upload er for stor",
+"Pending" => "Afventer",
+"No files selected for upload." => "Der er ikke valgt nogen filer at uploade.",
"Error loading profile picture." => "Fejl ved indlæsning af profilbillede",
"Enter name" => "Indtast navn",
"Enter description" => "Indtast beskrivelse",
"The address book name cannot be empty." => "Adressebogens navn kan ikke være tomt.",
-"Error" => "Fejl",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Nogle kontakter er markeret til sletning, men er endnu ikke slettet. Vent venligst på, at de bliver slettet.",
"Result: " => "Resultat:",
" imported, " => " importeret ",
@@ -100,8 +107,7 @@
"There was an error deleting this contact." => "Der opstod en fejl ved sletning af denne kontakt.",
"Settings" => "Indstillinger",
"Import" => "Importer",
-"Export" => "Exporter",
-"Back" => "Tilbage",
+"OK" => "OK",
"Groups" => "Grupper",
"Close" => "Luk",
"Keyboard shortcuts" => "Tastaturgenveje",
@@ -123,6 +129,7 @@
"Select photo from ownCloud" => "Vælg foto fra ownCloud",
"Additional names" => "Mellemnavne",
"Nickname" => "Kaldenavn",
+"Enter nickname" => "Indtast kaldenavn",
"Title" => "Titel",
"Organization" => "Organisation",
"Birthday" => "Fødselsdag",
@@ -141,13 +148,18 @@
"Delete phone number" => "Slet telefonnummer",
"Go to web site" => "Gå til web site",
"View on map" => "Vis på kort",
+"Street address" => "Gade",
+"Postal code" => "Postnummer",
+"City" => "By",
+"Country" => "Land",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Slet IM",
+"Share" => "Del",
+"Export" => "Exporter",
"Add Contact" => "Tilføj kontaktperson",
"Drop photo to upload" => "Drop foto for at uploade",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formatter som valgfrit, fuldt navn, efternavn først eller efternavn først med komma",
"Edit name details" => "Rediger navnedetaljer.",
-"Enter nickname" => "Indtast kaldenavn",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-åååå",
"Separate groups with commas" => "Opdel gruppenavne med kommaer",
@@ -162,16 +174,12 @@
"Edit address" => "Rediger adresse",
"Type" => "Type",
"PO Box" => "Postboks",
-"Street address" => "Gade",
"Street and number" => "Gade og nummer",
"Extended" => "Udvidet",
"Apartment number etc." => "Etage, side osv.",
-"City" => "By",
"Region" => "Region",
"E.g. state or province" => "F.eks. stat eller provins",
"Zipcode" => "Postnummer",
-"Postal code" => "Postnummer",
-"Country" => "Land",
"Addressbook" => "Adressebog",
"Hon. prefixes" => "Foranstillede titler",
"Miss" => "Frøken",
@@ -203,7 +211,6 @@
"Primary address (Kontact et al)" => "Primær adresse (Kontak m. fl.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressebøger",
-"Share" => "Del",
"New Address Book" => "Ny adressebog",
"Name" => "Navn",
"Description" => "Beskrivelse",
diff --git a/l10n/de.php b/l10n/de.php
index 6e5c6eb1..17c8f68f 100644
--- a/l10n/de.php
+++ b/l10n/de.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Kontakt ist nicht in dieser Gruppe.",
"Contacts are not in this group." => "Kontakte sind nicht in dieser Gruppe.",
"A group named {group} already exists" => "Eine Gruppe mit dem Namen {group} existiert bereits.",
+"You can drag groups to\narrange them as you like." => "Per \"Drag & Drop\" kannst Du Gruppen nach Deinen Wünschen anordnen.",
"All" => "Alle",
"Favorites" => "Favoriten",
"Shared by {owner}" => "Geteilt von {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Fehler beim Hinzufügen zur Gruppe.",
"Error removing from group." => "Fehler beim Entfernen aus Gruppe.",
"There was an error opening a mail composer." => "Fehler beim Öffnen des Mail-Editors",
+"Deleting done. Click here to cancel reloading." => "Gelöscht. Klicke hier, um das Neuladen abzubrechen",
+"Add address book" => "Adressbuch hinzufügen",
+"Import done. Click here to cancel reloading." => "Import abgeschlossen. Klicken Sie hier, um das Neuladen abzubrechen",
+"Not all files uploaded. Retrying..." => "Es wurden nicht alle Dateien hochgeladen. Versuche erneut...",
+"Something went wrong with the upload, please retry." => "Beim Hochladen ist etwas schiefgegangen. Bitte versuche es erneut.",
+"Error" => "Fehler",
+"Importing from {filename}..." => "Importiere von {filename}",
+"{success} imported, {failed} failed." => "{success} importiert, {failed} fehlgeschlagen.",
+"Importing..." => "Importiere...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.",
+"Upload Error" => "Fehler beim Hochladen",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Du hochladen möchtest, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
+"Upload too large" => "Der Upload ist zu groß",
+"Pending" => "Ausstehend",
"Add group" => "Gruppe hinzufügen",
"No files selected for upload." => "Keine Datei(en) zum Hochladen ausgewählt.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Du hochladen möchtest, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
"Edit profile picture" => "Profilbild bearbeiten",
"Error loading profile picture." => "Fehler beim Laden des Profilbildes.",
"Enter name" => "Name eingeben",
"Enter description" => "Beschreibung eingeben",
"Select addressbook" => "Adressbuch auswählen",
"The address book name cannot be empty." => "Der Name des Adressbuches darf nicht leer sein.",
-"Error" => "Fehler",
"Is this correct?" => "Ist dies korrekt?",
"There was an unknown error when trying to delete this contact" => "Es ist ein unbekannter Fehler beim Löschen des Kontakts aufgetreten.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Einige zum Löschen vorgemerkte Kontakte wurden noch nicht gelöscht. Bitte warten.",
@@ -138,17 +151,18 @@
"HomePage" => "Startseite",
"New Group" => "Neue Gruppe",
"Settings" => "Einstellungen",
-"Share" => "Teilen",
+"Address books" => "Adressbücher",
"Import" => "Importieren",
+"Select files to import" => "Dateien für den Import auswählen",
+"Select files" => "Dateien auswählen",
"Import into:" => "Importieren nach:",
-"Export" => "Exportieren",
+"OK" => "OK",
"(De-)select all" => "Alle (nicht) auswählen",
"New Contact" => "Neuer Kontakt",
-"Back" => "Zurück",
"Download Contact" => "Kontakt herunterladen",
-"Delete Contact" => "Kontakt löschen",
"Groups" => "Gruppen",
"Favorite" => "Favorit",
+"Delete Contact" => "Kontakt löschen",
"Close" => "Schließen",
"Keyboard shortcuts" => "Tastaturbefehle",
"Navigation" => "Navigation",
@@ -174,6 +188,7 @@
"Additional names" => "Zusätzliche Namen",
"Last name" => "Nachname",
"Nickname" => "Spitzname",
+"Enter nickname" => "Spitzname angeben",
"Title" => "Titel",
"Organization" => "Organisation",
"Birthday" => "Geburtstag",
@@ -197,17 +212,23 @@
"View on map" => "Auf der Karte zeigen",
"Delete address" => "Adresse löschen",
"1 Main Street" => "Musterstraße 1",
+"Street address" => "Straßenanschrift",
"12345" => "12345",
+"Postal code" => "Postleitzahl",
"Your city" => "Deine Stadt",
+"City" => "Stadt",
"Some region" => "Eine Region",
"Your country" => "Dein Land",
+"Country" => "Land",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "IM löschen",
+"Share" => "Teilen",
+"Export" => "Exportieren",
+"CardDAV link" => "CardDAV Verbindung",
"Add Contact" => "Kontakt hinzufügen",
"Drop photo to upload" => "Ziehe ein Foto hierher, um es hochzuladen",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format benutzerdefiniert, Kurzname, voller Name, Rückwärts oder Rückwärts mit Komma",
"Edit name details" => "Name ändern",
-"Enter nickname" => "Spitzname angeben",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd.mm.yyyy",
"Separate groups with commas" => "Gruppen mit Komma getrennt",
@@ -222,16 +243,12 @@
"Edit address" => "Adresse ändern",
"Type" => "Typ",
"PO Box" => "Postfach",
-"Street address" => "Straßenanschrift",
"Street and number" => "Straße und Hausnummer",
"Extended" => "Erweitert",
"Apartment number etc." => "Wohnungsnummer usw.",
-"City" => "Stadt",
"Region" => "Region",
"E.g. state or province" => "Z.B. Staat oder Bezirk",
"Zipcode" => "Postleitzahl",
-"Postal code" => "Postleitzahl",
-"Country" => "Land",
"Addressbook" => "Adressbuch",
"Hon. prefixes" => "Höflichkeitspräfixe",
"Miss" => "Frau",
diff --git a/l10n/de_DE.php b/l10n/de_DE.php
index 9c4292a6..24a3b872 100644
--- a/l10n/de_DE.php
+++ b/l10n/de_DE.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Kontakt ist nicht in der Gruppe.",
"Contacts are not in this group." => "Kontakte sind nicht in der Gruppe.",
"A group named {group} already exists" => "Eine Gruppe mit dem Namen {group} ist schon vorhanden.",
+"You can drag groups to\narrange them as you like." => "Per \"Drag & Drop\" können Sie Gruppen nach Ihren Wünschen anordnen.",
"All" => "Alle",
"Favorites" => "Favoriten",
"Shared by {owner}" => "Geteilt von {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Fehler beim Hinzufügen zur Gruppe.",
"Error removing from group." => "Fehler beim Löschen aus der Gruppe.",
"There was an error opening a mail composer." => "Fehler beim Öffnen des Mail-Editors",
+"Deleting done. Click here to cancel reloading." => "Gelöscht. Klicken Sie hier, um das Neuladen abzubrechen",
+"Add address book" => "Adressbuch hinzufügen",
+"Import done. Click here to cancel reloading." => "Import abgeschlossen. Klicke hier, um das Neuladen abzubrechen",
+"Not all files uploaded. Retrying..." => "Es wurden nicht alle Dateien hochgeladen. Versuche erneut...",
+"Something went wrong with the upload, please retry." => "Beim Hochladen ist etwas schiefgegangen. Bitte versuchen Sie es erneut.",
+"Error" => "Fehler",
+"Importing from {filename}..." => "Importiere von {filename}",
+"{success} imported, {failed} failed." => "{success} importiert, {failed} fehlgeschlagen.",
+"Importing..." => "Importiere...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes groß ist.",
+"Upload Error" => "Fehler beim Hochladen",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
+"Upload too large" => "Der Upload ist zu groß",
+"Pending" => "Ausstehend",
"Add group" => "Fügen Sie eine Gruppe hinzu",
"No files selected for upload." => "Keine Datei(en) zum Hochladen ausgewählt.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
"Edit profile picture" => "Profilbild bearbeiten",
"Error loading profile picture." => "Fehler beim Laden des Profilbildes.",
"Enter name" => "Name eingeben",
"Enter description" => "Beschreibung eingeben",
"Select addressbook" => "Adressbuch wählen",
"The address book name cannot be empty." => "Der Name des Adressbuches darf nicht leer sein.",
-"Error" => "Fehler",
"Is this correct?" => "Ist das richtig?",
"There was an unknown error when trying to delete this contact" => "Beim Löschen des Kontakts trat ein unbekannten Fehler auf.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Einige zum Löschen vorgemerkte Kontakte wurden noch nicht gelöscht. Bitte warten.",
@@ -138,17 +151,18 @@
"HomePage" => "Internetseite",
"New Group" => "Neue Gruppe",
"Settings" => "Einstellungen",
-"Share" => "Teilen",
+"Address books" => "Adressbücher",
"Import" => "Importieren",
+"Select files to import" => "Dateien für den Import auswählen",
+"Select files" => "Dateien auswählen",
"Import into:" => "Importiere in:",
-"Export" => "Exportieren",
+"OK" => "OK",
"(De-)select all" => "Alle (ab-)wählen",
"New Contact" => "Neuer Kontakt",
-"Back" => "Zurück",
"Download Contact" => "Kontakt herunterladen",
-"Delete Contact" => "Kontakt löschen",
"Groups" => "Gruppen",
"Favorite" => "Favorit",
+"Delete Contact" => "Kontakt löschen",
"Close" => "Schließen",
"Keyboard shortcuts" => "Tastaturbefehle",
"Navigation" => "Navigation",
@@ -174,6 +188,7 @@
"Additional names" => "Zusätzliche Namen",
"Last name" => "Nachname",
"Nickname" => "Spitzname",
+"Enter nickname" => "Spitzname angeben",
"Title" => "Titel",
"Organization" => "Organisation",
"Birthday" => "Geburtstag",
@@ -197,17 +212,23 @@
"View on map" => "Auf der Karte zeigen",
"Delete address" => "Lösche Adresse",
"1 Main Street" => "Hauptstraße 1",
+"Street address" => "Straßenanschrift",
"12345" => "12345",
+"Postal code" => "Postleitzahl",
"Your city" => "Ihre Stadt",
+"City" => "Stadt",
"Some region" => "Eine Region",
"Your country" => "Ihr Land",
+"Country" => "Land",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "IM löschen",
+"Share" => "Teilen",
+"Export" => "Exportieren",
+"CardDAV link" => "CardDAV Verbindung",
"Add Contact" => "Kontakt hinzufügen",
"Drop photo to upload" => "Ziehen Sie ein Foto hierher, um es hochzuladen",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format benutzerdefiniert, Kurzname, voller Name, Rückwärts oder Rückwärts mit Komma",
"Edit name details" => "Name ändern",
-"Enter nickname" => "Spitzname angeben",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd.mm.yyyy",
"Separate groups with commas" => "Gruppen mit Komma getrennt",
@@ -222,16 +243,12 @@
"Edit address" => "Adresse ändern",
"Type" => "Typ",
"PO Box" => "Postfach",
-"Street address" => "Straßenanschrift",
"Street and number" => "Straße und Hausnummer",
"Extended" => "Erweitert",
"Apartment number etc." => "Wohnungsnummer usw.",
-"City" => "Stadt",
"Region" => "Region",
"E.g. state or province" => "Z.B. Staat oder Bezirk",
"Zipcode" => "Postleitzahl",
-"Postal code" => "Postleitzahl",
-"Country" => "Land",
"Addressbook" => "Adressbuch",
"Hon. prefixes" => "Höflichkeitspräfixe",
"Miss" => "Frau",
diff --git a/l10n/el.php b/l10n/el.php
index 54816eb9..a0c9d3ca 100644
--- a/l10n/el.php
+++ b/l10n/el.php
@@ -52,16 +52,23 @@
"Error adding to group." => "Σφάλμα κατά την προσθήκη σε ομάδα.",
"Error removing from group." => "Σφάλμα κατά την αφαίρεση από ομάδα.",
"There was an error opening a mail composer." => "Υπήρχε ένα σφάλμα στο άνοιγμα μίας σύνθεσης μηνύματος.",
+"Not all files uploaded. Retrying..." => "Δεν μεταφορτώθηκαν όλα τα αρχεία. Προσπάθεια ξανά...",
+"Something went wrong with the upload, please retry." => "Κάτι πήγε στραβά με την μεταφόρτωση, παρακαλώ προσπαθήστε ξανά.",
+"Error" => "Σφάλμα",
+"Importing..." => "Γίνεται εισαγωγή...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes",
+"Upload Error" => "Σφάλμα Αποστολής",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server.",
+"Upload too large" => "Πολύ μεγάλο αρχείο προς αποστολή",
+"Pending" => "Εκκρεμεί",
"Add group" => "Προσθήκη ομάδας",
"No files selected for upload." => "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server.",
"Edit profile picture" => "Επεξεργασία εικόνας προφίλ",
"Error loading profile picture." => "Σφάλμα στην φόρτωση εικόνας προφίλ.",
"Enter name" => "Εισαγωγή ονόματος",
"Enter description" => "Εισαγωγή περιγραφής",
"Select addressbook" => "Επιλογή βιβλίου επαφών",
"The address book name cannot be empty." => "Το όνομα του βιβλίου διευθύνσεων δεν πρέπει να είναι κενό.",
-"Error" => "Σφάλμα",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Κάποιες επαφές σημειώθηκαν προς διαγραφή,δεν έχουν διαγραφεί ακόμα. Παρακαλώ περιμένετε μέχρι να διαγραφούν.",
"Result: " => "Αποτέλεσμα: ",
" imported, " => " εισάγεται,",
@@ -117,14 +124,12 @@
"Contact not found." => "Δεν βρέθηκε επαφή.",
"New Group" => "Νέα Ομάδα",
"Settings" => "Ρυθμίσεις",
-"Share" => "Μοιράσου",
"Import" => "Εισαγωγή",
"Import into:" => "Εισαγωγή από:",
-"Export" => "Εξαγωγή",
+"OK" => "ΟΚ",
"New Contact" => "Νέα επαφή",
-"Back" => "Επιστροφή",
-"Delete Contact" => "Διαγραφή επαφής",
"Groups" => "Ομάδες",
+"Delete Contact" => "Διαγραφή επαφής",
"Close" => "Κλείσιμο ",
"Keyboard shortcuts" => "Συντομεύσεις πλητρολογίου",
"Navigation" => "Πλοήγηση",
@@ -149,6 +154,7 @@
"Additional names" => "Επιπλέον ονόματα",
"Last name" => "Επώνυμο",
"Nickname" => "Παρατσούκλι",
+"Enter nickname" => "Εισάγετε παρατσούκλι",
"Title" => "Τίτλος",
"Organization" => "Οργανισμός",
"Birthday" => "Γενέθλια",
@@ -170,16 +176,21 @@
"Delete URL" => "Διαγραφή URL",
"View on map" => "Προβολή στο χάρτη",
"Delete address" => "Διαγραφή διεύθυνσης",
+"Street address" => "Διεύθυνση οδού",
"12345" => "12345",
+"Postal code" => "Ταχυδρομικός Κωδικός",
"Your city" => "Η πόλη σας",
+"City" => "Πόλη",
"Your country" => "Η χώρα σας",
+"Country" => "Χώρα",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Διαγραφή IM",
+"Share" => "Μοιράσου",
+"Export" => "Εξαγωγή",
"Add Contact" => "Προσθήκη επαφής",
"Drop photo to upload" => "Ρίξε μια φωτογραφία για ανέβασμα",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα",
"Edit name details" => "Αλλάξτε τις λεπτομέρειες ονόματος",
-"Enter nickname" => "Εισάγετε παρατσούκλι",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "ΗΗ-ΜΜ-ΕΕΕΕ",
"Separate groups with commas" => "Διαχώρισε τις ομάδες με κόμμα ",
@@ -194,16 +205,12 @@
"Edit address" => "Επεξεργασία διεύθυνσης",
"Type" => "Τύπος",
"PO Box" => "Ταχ. Θυρίδα",
-"Street address" => "Διεύθυνση οδού",
"Street and number" => "Οδός και αριθμός",
"Extended" => "Εκτεταμένη",
"Apartment number etc." => "Αριθμός διαμερίσματος",
-"City" => "Πόλη",
"Region" => "Περιοχή",
"E.g. state or province" => "Π.χ. Πολιτεία ή επαρχεία",
"Zipcode" => "Τ.Κ.",
-"Postal code" => "Ταχυδρομικός Κωδικός",
-"Country" => "Χώρα",
"Addressbook" => "Βιβλίο διευθύνσεων",
"Hon. prefixes" => "προθέματα",
"Miss" => "Δις",
diff --git a/l10n/eo.php b/l10n/eo.php
index c7390fbe..821ae318 100644
--- a/l10n/eo.php
+++ b/l10n/eo.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Eraro dum aldono al grupo.",
"Error removing from group." => "Eraro dum forigo el grupo.",
"There was an error opening a mail composer." => "Eraro okazis dum malfermo de retpoŝtomesaĝoredaktilo.",
+"Not all files uploaded. Retrying..." => "Ne ĉiuj dosieroj alŝutiĝis. Reprovante...",
+"Something went wrong with the upload, please retry." => "Io malsukcesis dum alŝuto, bonvolu reprovi.",
+"Error" => "Eraro",
+"Importing..." => "Enportante...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn",
+"Upload Error" => "Eraro dum alŝuto",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "La dosiero, kiun vi provas alŝuti, transpasas la maksimuman grandon por dosieraj alŝutoj en ĉi tiu servilo.",
+"Upload too large" => "Alŝuto tro larĝa",
+"Pending" => "Traktotaj",
"Add group" => "Aldoni grupon",
"No files selected for upload." => "Neniu dosiero elektita por alŝuto.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "La dosiero, kiun vi provas alŝuti, transpasas la maksimuman grandon por dosieraj alŝutoj en ĉi tiu servilo.",
"Edit profile picture" => "Redakti profilbildon",
"Error loading profile picture." => "Eraro dum ŝargado de profila bildo.",
"Enter name" => "Enigu nomon",
"Enter description" => "Enigu priskribon",
"Select addressbook" => "Elekti adresaron",
"The address book name cannot be empty." => "La nomo de la adresaro ne povas esti malplena.",
-"Error" => "Eraro",
"Is this correct?" => "Ĉu ĉi tio ĝustas?",
"There was an unknown error when trying to delete this contact" => "Nekonata eraro okazis dum provo forigi ĉi tiun kontakton",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Iuj kontaktoj estas markitaj por forigo, sed ankoraŭ ne forigitaj. Bonvolu atendi ĝis ili foriĝos.",
@@ -138,17 +145,15 @@
"HomePage" => "Hejmpaĝo",
"New Group" => "Nova grupo",
"Settings" => "Agordo",
-"Share" => "Kunhavigi",
"Import" => "Enporti",
"Import into:" => "Enporti en:",
-"Export" => "Elporti",
+"OK" => "Akcepti",
"(De-)select all" => "(Mal)elekti ĉion",
"New Contact" => "Nova kontakto",
-"Back" => "Antaŭen",
"Download Contact" => "Elŝuti kontakton",
-"Delete Contact" => "Forigi kontakton",
"Groups" => "Grupoj",
"Favorite" => "Favorato",
+"Delete Contact" => "Forigi kontakton",
"Close" => "Fermi",
"Keyboard shortcuts" => "Fulmoklavoj",
"Navigation" => "Navigado",
@@ -174,6 +179,7 @@
"Additional names" => "Pliaj nomoj",
"Last name" => "Familia nomo",
"Nickname" => "Kromnomo",
+"Enter nickname" => "Enigu kromnomon",
"Title" => "Titolo",
"Organization" => "Organizaĵo",
"Birthday" => "Naskiĝotago",
@@ -197,17 +203,22 @@
"View on map" => "Vidi en mapo",
"Delete address" => "Forigi adreson",
"1 Main Street" => "1 Ĉefa Strato",
+"Street address" => "Stratadreso",
"12345" => "12345",
+"Postal code" => "Poŝtkodo",
"Your city" => "Via urbo",
+"City" => "Urbo",
"Some region" => "Iu regiono",
"Your country" => "Via lando",
+"Country" => "Lando",
"Instant Messenger" => "Tujmesaĝilo",
"Delete IM" => "Forigi tujmesaĝadon",
+"Share" => "Kunhavigi",
+"Export" => "Elporti",
"Add Contact" => "Aldoni kontakton",
"Drop photo to upload" => "Demeti foton por alŝuti",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Propra formo, Mallonga nomo, Longa nomo, Inversa aŭ Inversa kun komo",
"Edit name details" => "Redakti detalojn de nomo",
-"Enter nickname" => "Enigu kromnomon",
"http://www.somesite.com" => "http://www.iuejo.com",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "Disigi grupojn per komoj",
@@ -222,16 +233,12 @@
"Edit address" => "Redakti adreson",
"Type" => "Tipo",
"PO Box" => "Abonkesto",
-"Street address" => "Stratadreso",
"Street and number" => "Strato kaj numero",
"Extended" => "Etendita",
"Apartment number etc." => "Apartamenta numero, ktp.",
-"City" => "Urbo",
"Region" => "Regiono",
"E.g. state or province" => "Ekz.: subŝtato aŭ provinco",
"Zipcode" => "Poŝtokodo",
-"Postal code" => "Poŝtkodo",
-"Country" => "Lando",
"Addressbook" => "Adresaro",
"Hon. prefixes" => "Honoraj antaŭmetaĵoj",
"Miss" => "f-ino",
diff --git a/l10n/es.php b/l10n/es.php
index bd644f18..90441895 100644
--- a/l10n/es.php
+++ b/l10n/es.php
@@ -17,7 +17,7 @@
"Couldn't find vCard for %d." => "No se pudo encontra la vCard para %d",
"Information about vCard is incorrect. Please reload the page: " => "La información sobre la vCard es incorrecta. Por favor, recarga la página:",
"Something went FUBAR. " => "Plof. Algo ha fallado.",
-"Cannot save property of type \"%s\" as array" => "No se puede guardar la propiedad del tipo \"%s\" como un array",
+"Cannot save property of type \"%s\" as array" => "No se puede guardar la propiedad del tipo \"%s\" como un arreglo",
"Missing IM parameter." => "Falta un parámetro del MI.",
"Unknown IM: " => "MI desconocido:",
"No contact ID was submitted." => "No se ha mandado ninguna ID de contacto.",
@@ -35,6 +35,7 @@
"Error cropping image" => "Fallo al cortar el tamaño de la foto",
"Error creating temporary image" => "Fallo al crear la foto temporal",
"Error finding image: " => "Fallo al encontrar la imagen",
+"Key is not set for: " => "Clave no establecida para:",
"Value is not set for: " => "Valor no establecido para:",
"Could not set preference: " => "No se pudo establecer la preferencia:",
"Error uploading contacts to storage." => "Error al subir contactos al almacenamiento.",
@@ -54,6 +55,7 @@
"Contact is not in this group." => "El contacto no se encuentra en este grupo.",
"Contacts are not in this group." => "Los contactos no se encuentran en este grupo.",
"A group named {group} already exists" => "Un grupo llamado {group} ya existe.",
+"You can drag groups to\narrange them as you like." => "Puede arrastrar grupos para\narreglarlos como usted quiera.",
"All" => "Todos",
"Favorites" => "Favoritos",
"Shared by {owner}" => "Compartido por {owner}",
@@ -65,16 +67,23 @@
"Network or server error. Please inform administrator." => "Error en la red o en el servidor. Por favor informe al administrador.",
"Error adding to group." => "Error al añadir al grupo.",
"Error removing from group." => "Error al remover del grupo.",
+"Not all files uploaded. Retrying..." => "No se han podido subir todos los archivos. Reintentando...",
+"Something went wrong with the upload, please retry." => "Algo ha ido mal con la subida, por favor, reintentelo.",
+"Error" => "Fallo",
+"Importing..." => "Importando...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Imposible subir su archivo, es un directorio o tiene 0 bytes",
+"Upload Error" => "Error de subida",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fichero que quieres subir excede el tamaño máximo permitido en este servidor.",
+"Upload too large" => "bida demasido grande",
+"Pending" => "Pendientes",
"Add group" => "Añadir grupo",
"No files selected for upload." => "No hay ficheros seleccionados para subir",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fichero que quieres subir excede el tamaño máximo permitido en este servidor.",
"Edit profile picture" => "Editar imagen de perfil.",
"Error loading profile picture." => "Error cargando la imagen del perfil.",
"Enter name" => "Introducir nombre",
"Enter description" => "Introducir descripción",
"Select addressbook" => "Seleccionar contactos",
"The address book name cannot be empty." => "El nombre de la libreta de direcciones no puede estar vacio.",
-"Error" => "Fallo",
"Is this correct?" => "¿Es esto correcto?",
"There was an unknown error when trying to delete this contact" => "Hubo un error desconocido al tratar de eliminar este contacto",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Algunos contactos están marcados para su eliminación, pero no eliminados todavía. Por favor, espere a que sean eliminados.",
@@ -136,17 +145,15 @@
"HomePage" => "Página de inicio",
"New Group" => "Nuevo grupo",
"Settings" => "Configuración",
-"Share" => "Compartir",
"Import" => "Importar",
"Import into:" => "Importar hacia:",
-"Export" => "Exportar",
+"OK" => "Aceptar",
"(De-)select all" => "Seleccionar todos",
"New Contact" => "Nuevo contacto",
-"Back" => "Atrás",
"Download Contact" => "Descargar contacto",
-"Delete Contact" => "Eliminar contacto",
"Groups" => "Grupos",
"Favorite" => "Favorito",
+"Delete Contact" => "Eliminar contacto",
"Close" => "Cierra.",
"Keyboard shortcuts" => "Atajos de teclado",
"Navigation" => "Navegación",
@@ -172,6 +179,7 @@
"Additional names" => "Nombres adicionales",
"Last name" => "Apellido",
"Nickname" => "Alias",
+"Enter nickname" => "Introduce un alias",
"Title" => "Título",
"Organization" => "Organización",
"Birthday" => "Cumpleaños",
@@ -195,17 +203,22 @@
"View on map" => "Ver en el mapa",
"Delete address" => "Eliminar dirección",
"1 Main Street" => "1 Calle Principal",
+"Street address" => "Calle",
"12345" => "12345",
+"Postal code" => "Código postal",
"Your city" => "Su ciudad",
+"City" => "Ciudad",
"Some region" => "Alguna región",
"Your country" => "Su país",
+"Country" => "País",
"Instant Messenger" => "Mensajero instantáneo",
"Delete IM" => "Eliminar IM",
+"Share" => "Compartir",
+"Export" => "Exportar",
"Add Contact" => "Añadir contacto",
"Drop photo to upload" => "Suelta una foto para subirla",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, nombre abreviado, nombre completo, al revés o al revés con coma",
"Edit name details" => "Editar los detalles del nombre",
-"Enter nickname" => "Introduce un alias",
"http://www.somesite.com" => "http://www.unsitio.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Separa los grupos con comas",
@@ -220,16 +233,12 @@
"Edit address" => "Editar dirección",
"Type" => "Tipo",
"PO Box" => "Código postal",
-"Street address" => "Calle",
"Street and number" => "Calle y número",
"Extended" => "Extendido",
"Apartment number etc." => "Número del apartamento, etc.",
-"City" => "Ciudad",
"Region" => "Región",
"E.g. state or province" => "Ej: región o provincia",
"Zipcode" => "Código postal",
-"Postal code" => "Código postal",
-"Country" => "País",
"Addressbook" => "Libreta de direcciones",
"Hon. prefixes" => "Prefijos honoríficos",
"Miss" => "Srta",
diff --git a/l10n/es_AR.php b/l10n/es_AR.php
index 925c41fe..550aea5d 100644
--- a/l10n/es_AR.php
+++ b/l10n/es_AR.php
@@ -1,7 +1,11 @@
"Error al (des)activar la agenda con direcciones.",
+"Error (de)activating addressbook." => "Error al (des)activar la agenda.",
"id is not set." => "La ID no fue asignada.",
"Cannot update addressbook with an empty name." => "No se puede actualizar una libreta de direcciones sin nombre.",
+"No category name given." => "No se a dado un nombre a la categoría.",
+"Error adding group." => "Error al añadir grupo",
+"Group ID missing from request." => "ID de grupo faltante en la solicitud.",
+"Contact ID missing from request." => "ID de contacto faltante en la solicitud.",
"No ID provided" => "No fue proporcionada una ID",
"Error setting checksum." => "Error al establecer la suma de verificación -checksum-.",
"No categories selected for deletion." => "No se seleccionaron categorías para borrar.",
@@ -10,8 +14,10 @@
"element name is not set." => "el nombre del elemento no fue asignado.",
"checksum is not set." => "la suma de comprobación no fue asignada.",
"Information about vCard is incorrect. Please reload the page." => "La información sobre la vCard es incorrecta. Por favor, cargá nuevamente la página",
+"Couldn't find vCard for %d." => "No se pudo encontrar vCard para %d",
"Information about vCard is incorrect. Please reload the page: " => "La información sobre la vCard es incorrecta. Por favor, recargá la página:",
"Something went FUBAR. " => "Hubo un error irreparable.",
+"Cannot save property of type \"%s\" as array" => "No se puede guardar la propiedad del tipo \"%s\" como un arreglo",
"Missing IM parameter." => "Falta un parámetro del MI.",
"Unknown IM: " => "MI desconocido:",
"No contact ID was submitted." => "No se mandó ninguna ID de contacto.",
@@ -29,6 +35,9 @@
"Error cropping image" => "Error al recortar la imagen",
"Error creating temporary image" => "Error al crear una imagen temporal",
"Error finding image: " => "Error al encontrar la imagen",
+"Key is not set for: " => "La clave no esta asignada para:",
+"Value is not set for: " => "El valor no esta asignado para:",
+"Could not set preference: " => "No se pudo asignar la preferencia:",
"Error uploading contacts to storage." => "Error al subir contactos al almacenamiento.",
"There is no error, the file uploaded with success" => "No hay errores, el archivo fue subido con éxito",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El archivo subido excede el valor 'upload_max_filesize' del archivo de configuración php.ini",
@@ -40,16 +49,52 @@
"Couldn't load temporary image: " => "No se pudo cargar la imagen temporal",
"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido",
"Contacts" => "Contactos",
-"A group named {group} already exists" => "Un grupo llamado {grupo} ya existe",
+"Contact is already in this group." => "El contacto ya se encuentra en este grupo",
+"Contacts are already in this group." => "Los contactos ya se encuentran en este grupo",
+"Couldn't get contact list." => "No se pudo obtener la lista de contactos.",
+"Contact is not in this group." => "El contacto no se encuentra en este grupo.",
+"Contacts are not in this group." => "Los contactos ya se encuentran en este grupo. ",
+"A group named {group} already exists" => "Un grupo llamado {grup} ya existe",
+"You can drag groups to\narrange them as you like." => "Podés arrastrar los grupos para \narreglarlos como quieras.",
+"All" => "Todos",
+"Favorites" => "Favoritos",
+"Shared by {owner}" => "Compartidos por {owner}",
+"Indexing contacts" => "Indexando contactos",
+"Add to..." => "Añadir a...",
+"Remove from..." => "Borrar de...",
+"Add group..." => "Añadir grupo",
"Select photo" => "Seleccionar una imagen",
-"No files selected for upload." => "No hay archivos seleccionados para subir",
+"Network or server error. Please inform administrator." => "Error en la red o en el servidor. Por favor informe al administrador.",
+"Error adding to group." => "Error al añadir al grupo.",
+"Error removing from group." => "Error al quitar del grupo.",
+"There was an error opening a mail composer." => "Hubo un error al abrir el escritor de correo electrónico",
+"Deleting done. Click here to cancel reloading." => "Borrado completo. Click para cancerla la recarga. ",
+"Add address book" => "Añadir agenda",
+"Import done. Click here to cancel reloading." => "Importación completo. Click para cancerla la recarga. ",
+"Not all files uploaded. Retrying..." => "No fue posible subir todos los archivos. Reintentando...",
+"Something went wrong with the upload, please retry." => "Algo salió mal durante la subida. Por favor, intentalo nuevamente.",
+"Error" => "Error",
+"Importing from {filename}..." => "Importando de {filename}...",
+"{success} imported, {failed} failed." => "{success} importados, {failed} fallidos.",
+"Importing..." => "Importando...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes",
+"Upload Error" => "Error al subir",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El archivo que querés subir supera el tamaño máximo permitido en este servidor.",
+"Upload too large" => "El tamaño del archivo que querés subir es demasiado grande",
+"Pending" => "Pendientes",
+"Add group" => "Agregar grupo",
+"No files selected for upload." => "No hay archivos seleccionados para subir",
+"Edit profile picture" => "Editar foto de perfil",
"Error loading profile picture." => "Error al cargar la imagen del perfil.",
"Enter name" => "Escribir nombre",
"Enter description" => "Escribir descripción",
-"The address book name cannot be empty." => "El nombre de la libreta de direcciones no puede estar vacío.",
-"Error" => "Error",
+"Select addressbook" => "Seleccionar agenda",
+"The address book name cannot be empty." => "El nombre de la agenda no puede estar vacío.",
+"Is this correct?" => "¿Es esto correcto?",
+"There was an unknown error when trying to delete this contact" => "Hubo un error desconocido tratando de borrar este contacto",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Algunos contactos fuero marcados para ser borrados, pero no fueron borrados todavía. Esperá que lo sean.",
+"Click to undo deletion of {num} contacts" => "Click para deshacer el borrado de {num} contactos",
+"Cancelled deletion of {num}" => "Cancelado el borrado de {num}",
"Result: " => "Resultado:",
" imported, " => "Importado.",
" failed." => "error.",
@@ -92,6 +137,7 @@
"Internet" => "Internet",
"Friends" => "Amigos",
"Family" => "Familia",
+"There was an error deleting properties for this contact." => "Hubo un error al borrar las propiedades de este contacto",
"{name}'s Birthday" => "Cumpleaños de {name}",
"Contact" => "Contacto",
"You do not have the permissions to add contacts to this addressbook." => "No tenés permisos para agregar contactos a esta agenda.",
@@ -101,10 +147,22 @@
"Could not find the Addressbook with ID: " => "No fue posible encontrar la agenda con ID:",
"You do not have the permissions to delete this contact." => "No tenés permisos para borrar este contacto.",
"There was an error deleting this contact." => "Hubo un error mientras se borraba este contacto.",
+"Contact not found." => "No se pudo encontrar el contacto",
+"HomePage" => "Pagina de inicio",
+"New Group" => "Nuevo grupo",
"Settings" => "Configuración",
+"Address books" => "Agendas",
"Import" => "Importar",
-"Export" => "Exportar",
+"Select files to import" => "Seleccionar archivos para importar",
+"Select files" => "Seleccionar archivos",
+"Import into:" => "Importar a:",
+"OK" => "Aceptar",
+"(De-)select all" => "(De)selecionar todos",
+"New Contact" => "Nuevo contato",
+"Download Contact" => "Descargar contacto",
"Groups" => "Grupos",
+"Favorite" => "Favorito",
+"Delete Contact" => "Borrar contacto",
"Close" => "cerrar",
"Keyboard shortcuts" => "Atajos de teclado",
"Navigation" => "Navegación",
@@ -118,38 +176,59 @@
"Add new contact" => "Agregar un nuevo contacto",
"Add new addressbook" => "Agregar nueva agenda",
"Delete current contact" => "Borrar el contacto seleccionado",
+"
You have no contacts in your addressbook.
Add a new contact or import existing contacts from a VCF file.
" => "
No tenes contactos en tu agenda.
Agregá un nuevo contacto o importalo desde un contacto existente en un archivo VCF.
",
"Add contact" => "Agregar contacto",
+"Compose mail" => "Escribir un correo",
+"Delete group" => "Borrar grupo",
"Delete current photo" => "Eliminar imagen actual",
"Edit current photo" => "Editar imagen actual",
"Upload new photo" => "Subir nueva imagen",
"Select photo from ownCloud" => "Seleccionar imagen desde ownCloud",
+"First name" => "Nombre",
"Additional names" => "Segundo nombre",
+"Last name" => "Apellido",
"Nickname" => "Sobrenombre",
+"Enter nickname" => "Escribí un sobrenombre",
"Title" => "Título",
"Organization" => "Organización",
"Birthday" => "Cumpleaños",
+"Notes go here..." => "Las notas van aquí",
"Add" => "Agregar",
"Phone" => "Teléfono",
-"Email" => "e-mail",
+"Email" => "Correo Electrónico",
"Instant Messaging" => "Mensajería instantánea",
"Address" => "Dirección",
"Note" => "Nota",
"Web site" => "Página web",
"Preferred" => "Preferido",
-"Please specify a valid email address." => "Por favor, escribí una dirección de e-mail válida.",
-"Mail to address" => "Enviar por e-mail a la dirección",
+"Please specify a valid email address." => "Por favor, escribí una dirección de correo electrónico válida.",
+"someone@example.com" => "alguien@ejemplo.com",
+"Mail to address" => "Enviar por correo electrónico a la dirección",
"Delete email address" => "Eliminar dirección de correo electrónico",
"Enter phone number" => "Escribí un número de teléfono",
"Delete phone number" => "Eliminar número de teléfono",
"Go to web site" => "Ir al sitio web",
+"Delete URL" => "Borrar URL",
"View on map" => "Ver en el mapa",
+"Delete address" => "Borrar dirección",
+"1 Main Street" => "Calle principal 1",
+"Street address" => "Calle de la dirección",
+"12345" => "12345",
+"Postal code" => "Código postal",
+"Your city" => "Tu ciudad",
+"City" => "Ciudad",
+"Some region" => "Alguna región",
+"Your country" => "Tu país",
+"Country" => "País",
"Instant Messenger" => "Mensajero instantáneo",
"Delete IM" => "Eliminar IM",
+"Share" => "Compartir",
+"Export" => "Exportar",
+"CardDAV link" => "Enlace a CardDAV",
"Add Contact" => "Agregar contacto",
"Drop photo to upload" => "Arrastrá y soltá una imagen para subirla",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, nombre abreviado, nombre completo, invertido, o invertido con coma",
"Edit name details" => "Editar los detalles del nombre",
-"Enter nickname" => "Escribí un sobrenombre",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Separá los grupos con comas",
@@ -164,16 +243,12 @@
"Edit address" => "Editar dirección",
"Type" => "Tipo",
"PO Box" => "Código postal",
-"Street address" => "Calle de la dirección",
"Street and number" => "Calle y número",
"Extended" => "Extendido",
"Apartment number etc." => "Número de departamento, etc.",
-"City" => "Ciudad",
"Region" => "Provincia",
"E.g. state or province" => "Eg. provincia o estado",
"Zipcode" => "Código postal",
-"Postal code" => "Código postal",
-"Country" => "País",
"Addressbook" => "Agenda",
"Hon. prefixes" => "Prefijos honoríficos",
"Miss" => "Srta.",
@@ -196,7 +271,7 @@
"Import a contacts file" => "Importar archivo de contactos",
"Please choose the addressbook" => "Elegí la agenda",
"create a new addressbook" => "crear una nueva agenda",
-"Name of new addressbook" => "Nombre de la nueva agenda",
+"Name of new addressbook" => "Nombre de la agenda nueva",
"Importing contacts" => "Importando contactos",
"
You have no contacts in your addressbook.
You can import VCF files by dragging them to the contacts list and either drop them on an addressbook to import into it, or on an empty spot to create a new addressbook and import into that. You can also import by clicking on the import button at the bottom of the list.
" => "
No tenés contactos en tu agenda.
Podés importar archivos VCF arrastrando los contactos a la agenda. También podés realizar la importación haciendo click en el botón de Importar, en la parte inferior de la lista.
",
"Select Address Books" => "Seleccionar agendas",
@@ -205,7 +280,6 @@
"Primary address (Kontact et al)" => "Dirección primaria (Kontact y semejantes)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Agendas",
-"Share" => "Compartir",
"New Address Book" => "Nueva agenda",
"Name" => "Nombre",
"Description" => "Descripción",
diff --git a/l10n/et_EE.php b/l10n/et_EE.php
index 585601e2..ce5bc4d5 100644
--- a/l10n/et_EE.php
+++ b/l10n/et_EE.php
@@ -66,16 +66,23 @@
"Error adding to group." => "Viga gruppi lisamisel.",
"Error removing from group." => "Viga grupist eemaldamisel.",
"There was an error opening a mail composer." => "Meiliprogrammi avamisel tekkis viga.",
+"Not all files uploaded. Retrying..." => "Kõiki faile ei laetud üles. Proovime uuesti...",
+"Something went wrong with the upload, please retry." => "Midagi läks üleslaadimisega valesti, palun proovi uuesti.",
+"Error" => "Viga",
+"Importing..." => "Importimine...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Faili ei saa üles laadida, kuna see on kaust või selle suurus on 0 baiti",
+"Upload Error" => "Üleslaadimise viga",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail , mida sa proovid üles laadida ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi.",
+"Upload too large" => "Üleslaadimine on liiga suur",
+"Pending" => "Ootel",
"Add group" => "Lisa grupp",
"No files selected for upload." => "Üleslaadimiseks pole faile valitud.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail , mida sa proovid üles laadida ületab sinu serveri poolt määratud maksimaalse üleslaadimise limiidi.",
"Edit profile picture" => "Muuda profiili pilti",
"Error loading profile picture." => "Viga profiilipildi laadimisel",
"Enter name" => "Sisesta nimi",
"Enter description" => "Sisesta kirjeldus",
"Select addressbook" => "Vali aadressiraamat",
"The address book name cannot be empty." => "Aadressiraamatu nimi ei saa olla tühi.",
-"Error" => "Viga",
"Is this correct?" => "Kas see on õige?",
"There was an unknown error when trying to delete this contact" => "Selle kontakti kustutamisel tekkis viga",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Mõned kontaktid on märgitud kustutamiseks, aga pole veel kustutatud. Palun oota, kuni need kustutatakse.",
@@ -137,17 +144,15 @@
"HomePage" => "Koduleht",
"New Group" => "Uus grupp",
"Settings" => "Seaded",
-"Share" => "Jaga",
"Import" => "Impordi",
"Import into:" => "Impordi:",
-"Export" => "Ekspordi",
+"OK" => "OK",
"(De-)select all" => "(Ära) vali kõik",
"New Contact" => "Uus kontakt",
-"Back" => "Tagasi",
"Download Contact" => "Lae kontakt alla",
-"Delete Contact" => "Kustuta kontakt",
"Groups" => "Grupid",
"Favorite" => "Lemmik",
+"Delete Contact" => "Kustuta kontakt",
"Close" => "Sule",
"Keyboard shortcuts" => "Klvaiatuuri otseteed",
"Navigation" => "Navigeerimine",
@@ -173,6 +178,7 @@
"Additional names" => "Lisanimed",
"Last name" => "Perekonnanimi",
"Nickname" => "Hüüdnimi",
+"Enter nickname" => "Sisesta hüüdnimi",
"Title" => "Pealkiri",
"Organization" => "Organisatsioon",
"Birthday" => "Sünnipäev",
@@ -196,17 +202,22 @@
"View on map" => "Vaata kaardil",
"Delete address" => "Kustuta aadress",
"1 Main Street" => "Peatänav 1",
+"Street address" => "Tänava aadress",
"12345" => "12345",
+"Postal code" => "Postiindeks",
"Your city" => "Sinu linn",
+"City" => "Linn",
"Some region" => "Mingi regioon",
"Your country" => "Sinu riik",
+"Country" => "Riik",
"Instant Messenger" => "Kiirsõnum",
"Delete IM" => "Kustuta IM",
+"Share" => "Jaga",
+"Export" => "Ekspordi",
"Add Contact" => "Lisa kontakt",
"Drop photo to upload" => "Lohista üleslaetav foto siia",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Kohandatud vorming, Lühike nimi, Täielik nimi, vastupidine või vastupidine komadega",
"Edit name details" => "Muuda nime üksikasju",
-"Enter nickname" => "Sisesta hüüdnimi",
"http://www.somesite.com" => "http://www.mingisait.ee",
"dd-mm-yyyy" => "dd.mm.yyyy",
"Separate groups with commas" => "Eralda grupid komadega",
@@ -221,16 +232,12 @@
"Edit address" => "Muuda aadressi",
"Type" => "Tüüp",
"PO Box" => "Postkontori postkast",
-"Street address" => "Tänava aadress",
"Street and number" => "Tänav ja number",
"Extended" => "Laiendatud",
"Apartment number etc." => "Korteri nr jne.",
-"City" => "Linn",
"Region" => "Piirkond",
"E.g. state or province" => "Näiteks maakond või piirkond",
"Zipcode" => "Postiindeks",
-"Postal code" => "Postiindeks",
-"Country" => "Riik",
"Addressbook" => "Aadressiraamat",
"Hon. prefixes" => "Eesliited",
"Miss" => "Preili",
diff --git a/l10n/eu.php b/l10n/eu.php
index facde0aa..e0484e9a 100644
--- a/l10n/eu.php
+++ b/l10n/eu.php
@@ -66,16 +66,23 @@
"Error adding to group." => "Errore bat izan da taldera gehitzean.",
"Error removing from group." => "Errore bat izan da taldetik kentzean.",
"There was an error opening a mail composer." => "Errore bat izan da posta editorea abiaraztean.",
+"Not all files uploaded. Retrying..." => "Fitxategi guztiak ez dira igo. Berriz saiatzen...",
+"Something went wrong with the upload, please retry." => "Zerbait gaizki joan da igotzean, mesedez saiatu berriz.",
+"Error" => "Errorea",
+"Importing..." => "Inportatzen",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Ezin izan da zure fitxategia igo karpeta bat delako edo 0 byte dituelako",
+"Upload Error" => "Igotzeak huts egin du",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Igo nahi duzun fitxategia zerbitzariak onartzen duen tamaina baino handiagoa da.",
+"Upload too large" => "Igoera handiegia da",
+"Pending" => "Zain",
"Add group" => "Gehitu taldea",
"No files selected for upload." => "Ez duzu igotzeko fitxategirik hautatu.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Igo nahi duzun fitxategia zerbitzariak onartzen duen tamaina baino handiagoa da.",
"Edit profile picture" => "Editatu profilaren argazkia",
"Error loading profile picture." => "Errorea profilaren irudia kargatzean.",
"Enter name" => "Sartu izena",
"Enter description" => "Sartu deskribapena",
"Select addressbook" => "Hautatu helbide-liburua",
"The address book name cannot be empty." => "Helbide-liburuaren izena ezin da hutsik egon.",
-"Error" => "Errorea",
"Is this correct?" => "Hau zuzena al da?",
"There was an unknown error when trying to delete this contact" => "Errore ezezagun bat izan da kontaktu hau ezabatzeko orduan",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Kontaktu batzuk ezabatzeko markatuta daude, baina oraindik ez dira ezabatu. Mesedez itxoin ezabatu arte.",
@@ -138,14 +145,13 @@
"Settings" => "Ezarpenak",
"Import" => "Inportatu",
"Import into:" => "Inportatu hemen:",
-"Export" => "Exportatu",
+"OK" => "Ados",
"(De-)select all" => "(Ez-)Hautatu dena",
"New Contact" => "Kontaktu berria",
-"Back" => "Atzera",
"Download Contact" => "Deskargatu kontaktua",
-"Delete Contact" => "Ezabatu kontaktua",
"Groups" => "Taldeak",
"Favorite" => "Gogokoa",
+"Delete Contact" => "Ezabatu kontaktua",
"Close" => "Itxi",
"Keyboard shortcuts" => "Teklatuaren lasterbideak",
"Navigation" => "Nabigazioa",
@@ -171,6 +177,7 @@
"Additional names" => "Tarteko izenak",
"Last name" => "Abizena",
"Nickname" => "Ezizena",
+"Enter nickname" => "Sartu ezizena",
"Title" => "Izenburua",
"Organization" => "Erakundea",
"Birthday" => "Jaioteguna",
@@ -192,15 +199,20 @@
"Delete URL" => "Ezabatu URLa",
"View on map" => "Ikusi mapan",
"Delete address" => "Ezabatu helbidea",
+"Street address" => "Kalearen helbidea",
"12345" => "12345",
+"Postal code" => "Posta kodea",
"Your city" => "Zure hiria",
+"City" => "Hiria",
"Your country" => "Zure herrialdea",
+"Country" => "Herrialdea",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Ezabatu BM",
+"Share" => "Partekatu",
+"Export" => "Exportatu",
"Add Contact" => "Gehitu kontaktua",
"Drop photo to upload" => "Askatu argazkia igotzeko",
"Edit name details" => "Editatu izenaren zehaztasunak",
-"Enter nickname" => "Sartu ezizena",
"http://www.somesite.com" => "http://www.webgunea.com",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "Banatu taldeak komekin",
@@ -215,16 +227,12 @@
"Edit address" => "Editatu helbidea",
"Type" => "Mota",
"PO Box" => "Posta kutxa",
-"Street address" => "Kalearen helbidea",
"Street and number" => "Kalea eta zenbakia",
"Extended" => "Hedatua",
"Apartment number etc." => "Etxe zenbakia eab.",
-"City" => "Hiria",
"Region" => "Eskualdea",
"E.g. state or province" => "adb. estatu edo herrialdea",
"Zipcode" => "Posta kodea",
-"Postal code" => "Posta kodea",
-"Country" => "Herrialdea",
"Addressbook" => "Helbide-liburua",
"Hon. prefixes" => "Ohorezko aurrizkiak",
"Given name" => "Izena",
@@ -242,7 +250,6 @@
"Primary address (Kontact et al)" => "Helbide nagusia",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Helbide Liburuak",
-"Share" => "Partekatu",
"New Address Book" => "Helbide-liburu berria",
"Name" => "Izena",
"Description" => "Deskribapena",
diff --git a/l10n/fa.php b/l10n/fa.php
index 81ed7d34..cb56cff0 100644
--- a/l10n/fa.php
+++ b/l10n/fa.php
@@ -39,9 +39,13 @@
"No file was uploaded. Unknown error" => "هیچ فایلی آپلود نشد.خطای ناشناس",
"Contacts" => "اشخاص",
"Select photo" => "تصویر را انتخاب کنید",
-"No files selected for upload." => "هیچ فایلی برای آپلود انتخاب نشده است",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "حجم فایل بسیار بیشتر از حجم تنظیم شده در تنظیمات سرور است",
"Error" => "خطا",
+"Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد",
+"Upload Error" => "خطا در بار گذاری",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "حجم فایل بسیار بیشتر از حجم تنظیم شده در تنظیمات سرور است",
+"Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)",
+"Pending" => "در انتظار",
+"No files selected for upload." => "هیچ فایلی برای آپلود انتخاب نشده است",
"Result: " => "نتیجه:",
" imported, " => "وارد شد،",
" failed." => "ناموفق",
@@ -65,8 +69,7 @@
"Contact" => "اشخاص",
"Settings" => "تنظیمات",
"Import" => "وارد کردن",
-"Export" => "خروجی گرفتن",
-"Back" => "بازگشت",
+"OK" => "باشه",
"Groups" => "گروه ها",
"Close" => "بستن",
"Add contact" => "افزودن اطلاعات شخص مورد نظر",
@@ -76,6 +79,7 @@
"Select photo from ownCloud" => "انتخاب یک تصویر از ابر های شما",
"Additional names" => "نام های دیگر",
"Nickname" => "نام مستعار",
+"Enter nickname" => "یک نام مستعار وارد کنید",
"Title" => "عنوان",
"Organization" => "نهاد(ارگان)",
"Birthday" => "روزتولد",
@@ -91,11 +95,14 @@
"Enter phone number" => "شماره تلفن راوارد کنید",
"Delete phone number" => "پاک کردن شماره تلفن",
"View on map" => "دیدن روی نقشه",
+"City" => "شهر",
+"Country" => "کشور",
+"Share" => "اشتراکگزاری",
+"Export" => "خروجی گرفتن",
"Add Contact" => "افزودن اطلاعات شخص مورد نظر",
"Drop photo to upload" => "تصویر را به اینجا بکشید تا بار گذازی شود",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Short name, Full name, Reverse or Reverse with comma",
"Edit name details" => "ویرایش نام جزئیات",
-"Enter nickname" => "یک نام مستعار وارد کنید",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "جدا کردن گروه ها به وسیله درنگ نما",
"Edit groups" => "ویرایش گروه ها",
@@ -110,10 +117,8 @@
"Type" => "نوع",
"PO Box" => "صندوق پستی",
"Extended" => "تمدید شده",
-"City" => "شهر",
"Region" => "ناحیه",
"Zipcode" => "کد پستی",
-"Country" => "کشور",
"Addressbook" => "کتابچه ی نشانی ها",
"Hon. prefixes" => "پیشوند های محترمانه",
"Miss" => "خانم",
@@ -143,7 +148,6 @@
"Primary address (Kontact et al)" => "نشانی اولیه",
"iOS/OS X" => "iOS/OS X ",
"Addressbooks" => "کتابچه ی نشانی ها",
-"Share" => "اشتراکگزاری",
"New Address Book" => "کتابچه نشانه های جدید",
"Name" => "نام",
"Save" => "ذخیره سازی"
diff --git a/l10n/fi_FI.php b/l10n/fi_FI.php
index 79c6e031..4cc18108 100644
--- a/l10n/fi_FI.php
+++ b/l10n/fi_FI.php
@@ -52,16 +52,23 @@
"Network or server error. Please inform administrator." => "Verkko- tai palvelinvirhe. Ilmoita asiasta ylläpitäjälle.",
"Error adding to group." => "Virhe ryhmään lisättäessä.",
"Error removing from group." => "Virhe poistettaessa ryhmästä.",
+"Not all files uploaded. Retrying..." => "Kaikkia tiedostoja ei lähetetty. Yritetään uudelleen...",
+"Something went wrong with the upload, please retry." => "Jokin meni vikaan lähettäessä. Yritä uudelleen.",
+"Error" => "Virhe",
+"Importing..." => "Tuodaan...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio.",
+"Upload Error" => "Lähetysvirhe",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Tiedosto, jota yrität ladata ylittää suurimman sallitun koon tällä palvelimella.",
+"Upload too large" => "Lähetettävä tiedosto on liian suuri",
+"Pending" => "Odottaa",
"Add group" => "Lisää ryhmä",
"No files selected for upload." => "Tiedostoja ei ole valittu lähetettäväksi.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Tiedosto, jota yrität ladata ylittää suurimman sallitun koon tällä palvelimella.",
"Edit profile picture" => "Muokkaa profiilikuvaa",
"Error loading profile picture." => "Virhe profiilikuvaa ladatessa.",
"Enter name" => "Anna nimi",
"Enter description" => "Anna kuvaus",
"Select addressbook" => "Valitse osoitekirja",
"The address book name cannot be empty." => "Osoitekirjan nimi ei voi olla tyhjä",
-"Error" => "Virhe",
"Is this correct?" => "Onko tämä oikein?",
"There was an unknown error when trying to delete this contact" => "Tätä yhteystietoa poistaessa tapahtui tuntematon virhe",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Jotkin yhteystiedot on merkitty poistettaviksi, mutta niitä ei ole vielä poistettu. Odota hetki, että kyseiset yhteystiedot poistetaan.",
@@ -119,16 +126,14 @@
"Contact not found." => "Yhteystietoja ei löytynyt.",
"New Group" => "Uusi ryhmä",
"Settings" => "Asetukset",
-"Share" => "Jaa",
"Import" => "Tuo",
-"Export" => "Vie",
+"OK" => "OK",
"(De-)select all" => "Valitse kaikki tai poista kaikki valinnat",
"New Contact" => "Uusi yhteystieto",
-"Back" => "Takaisin",
"Download Contact" => "Lataa yhteystieto",
-"Delete Contact" => "Poista yhteystieto",
"Groups" => "Ryhmät",
"Favorite" => "Suosikki",
+"Delete Contact" => "Poista yhteystieto",
"Close" => "Sulje",
"Keyboard shortcuts" => "Pikanäppäimet",
"Navigation" => "Suunnistus",
@@ -153,6 +158,7 @@
"Additional names" => "Lisänimet",
"Last name" => "Sukunimi",
"Nickname" => "Kutsumanimi",
+"Enter nickname" => "Anna kutsumanimi",
"Title" => "Otsikko",
"Organization" => "Organisaatio",
"Birthday" => "Syntymäpäivä",
@@ -173,14 +179,19 @@
"Go to web site" => "Siirry verkkosivulle",
"View on map" => "Näytä kartalla",
"Delete address" => "Poista osoite",
+"Street address" => "Katuosoite",
"12345" => "12345",
+"Postal code" => "Postinumero",
+"City" => "Paikkakunta",
+"Country" => "Maa",
"Instant Messenger" => "Pikaviestin",
"Delete IM" => "Poista IM",
+"Share" => "Jaa",
+"Export" => "Vie",
"Add Contact" => "Lisää yhteystieto",
"Drop photo to upload" => "Ladataksesi pudota kuva",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Itsemääritelty muoto, lyhyt nimi, pitkä nimi, vastakkainen tai vastakkainen pilkun kanssa",
"Edit name details" => "Muokkaa nimitietoja",
-"Enter nickname" => "Anna kutsumanimi",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "pp-kk-vvvv",
"Separate groups with commas" => "Erota ryhmät pilkuilla",
@@ -195,16 +206,12 @@
"Edit address" => "Muokkaa osoitetta",
"Type" => "Tyyppi",
"PO Box" => "Postilokero",
-"Street address" => "Katuosoite",
"Street and number" => "Katu ja numero",
"Extended" => "Laajennettu",
"Apartment number etc." => "Asunnon numero jne.",
-"City" => "Paikkakunta",
"Region" => "Alue",
"E.g. state or province" => "Esim. maakunta tai alue",
"Zipcode" => "Postinumero",
-"Postal code" => "Postinumero",
-"Country" => "Maa",
"Addressbook" => "Osoitekirja",
"Hon. prefixes" => "Kunnianarvoisa etuliite",
"Miss" => "Neiti",
diff --git a/l10n/fr.php b/l10n/fr.php
index 311a8609..64861d64 100644
--- a/l10n/fr.php
+++ b/l10n/fr.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Erreur lors de l'ajout au groupe.",
"Error removing from group." => "Erreur lors du retrait du groupe.",
"There was an error opening a mail composer." => "Une erreur s'est produite lors de l’ouverture d'un outil de composition email.",
+"Not all files uploaded. Retrying..." => "Tous les fichiers n'ont pas pu être téléversés. Nouvel essai…",
+"Something went wrong with the upload, please retry." => "Une erreur s'est produite pendant le téléversement, veuillez réessayer.",
+"Error" => "Erreur",
+"Importing..." => "Import en cours…",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de téléverser votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle",
+"Upload Error" => "Erreur lors du téléversement",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Le fichier que vous tentez de charger dépasse la taille maximum de fichier autorisée sur ce serveur.",
+"Upload too large" => "Téléversement trop volumineux",
+"Pending" => "En attente",
"Add group" => "Ajouter un groupe",
"No files selected for upload." => "Aucun fichiers choisis pour être chargés",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Le fichier que vous tentez de charger dépasse la taille maximum de fichier autorisée sur ce serveur.",
"Edit profile picture" => "Éditer l'image de profil",
"Error loading profile picture." => "Erreur pendant le chargement de la photo de profil.",
"Enter name" => "Saisissez le nom",
"Enter description" => "Saisissez une description",
"Select addressbook" => "Sélection d'un carnet d'adresses",
"The address book name cannot be empty." => "Le nom du carnet d'adresses ne peut être vide.",
-"Error" => "Erreur",
"Is this correct?" => "Est-ce correct ?",
"There was an unknown error when trying to delete this contact" => "Une erreur inconnue s'est produite lors de la tentative de suppression du contact",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Certains contacts sont marqués pour être supprimés, mais ne le sont pas encore. Veuillez attendre que l'opération se termine.",
@@ -138,17 +145,15 @@
"HomePage" => "Page d'Accueil",
"New Group" => "Nouveau Groupe",
"Settings" => "Paramètres",
-"Share" => "Partager",
"Import" => "Importer",
"Import into:" => "Importer dans :",
-"Export" => "Exporter",
+"OK" => "OK",
"(De-)select all" => "(Dé-)sélectionner tout",
"New Contact" => "Nouveau Contact",
-"Back" => "Retour",
"Download Contact" => "Télécharger le Contact",
-"Delete Contact" => "Supprimer le Contact",
"Groups" => "Groupes",
"Favorite" => "Favoris",
+"Delete Contact" => "Supprimer le Contact",
"Close" => "Fermer",
"Keyboard shortcuts" => "Raccourcis clavier",
"Navigation" => "Navigation",
@@ -174,6 +179,7 @@
"Additional names" => "Nom supplémentaires",
"Last name" => "Nom",
"Nickname" => "Surnom",
+"Enter nickname" => "Entrer un surnom",
"Title" => "Titre",
"Organization" => "Société",
"Birthday" => "Anniversaire",
@@ -197,17 +203,22 @@
"View on map" => "Voir sur une carte",
"Delete address" => "Effacer l'adresse",
"1 Main Street" => "1 Rue Principale",
+"Street address" => "Adresse postale",
"12345" => "12345",
+"Postal code" => "Code postal",
"Your city" => "Votre Ville",
+"City" => "Ville",
"Some region" => "Une Région",
"Your country" => "Votre Pays",
+"Country" => "Pays",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Supprimer la messagerie instantanée",
+"Share" => "Partager",
+"Export" => "Exporter",
"Add Contact" => "Ajouter un Contact",
"Drop photo to upload" => "Glisser une photo pour l'envoi",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule",
"Edit name details" => "Editer les noms",
-"Enter nickname" => "Entrer un surnom",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "jj-mm-aaaa",
"Separate groups with commas" => "Séparer les groupes avec des virgules",
@@ -222,16 +233,12 @@
"Edit address" => "Editer l'adresse",
"Type" => "Type",
"PO Box" => "Boîte postale",
-"Street address" => "Adresse postale",
"Street and number" => "Rue et numéro",
"Extended" => "Étendu",
"Apartment number etc." => "Numéro d'appartement, etc.",
-"City" => "Ville",
"Region" => "Région",
"E.g. state or province" => "Ex: état ou province",
"Zipcode" => "Code postal",
-"Postal code" => "Code postal",
-"Country" => "Pays",
"Addressbook" => "Carnet d'adresses",
"Hon. prefixes" => "Préfixe hon.",
"Miss" => "Mlle",
diff --git a/l10n/gl.php b/l10n/gl.php
index 1cc508cd..7ed57204 100644
--- a/l10n/gl.php
+++ b/l10n/gl.php
@@ -41,13 +41,20 @@
"No file was uploaded. Unknown error" => "Non se subiu ningún ficheiro. Erro descoñecido.",
"Contacts" => "Contactos",
"Select photo" => "Seleccione fotografía",
-"No files selected for upload." => "Sen ficheiros escollidos para subir.",
+"Not all files uploaded. Retrying..." => "Non se subiron todos os ficheiros. Intentándoo de novo...",
+"Something went wrong with the upload, please retry." => "Algo fallou na subida de ficheiros. Inténtao de novo.",
+"Error" => "Erro",
+"Importing..." => "Importando...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Non se puido subir o ficheiro pois ou é un directorio ou ten 0 bytes",
+"Upload Error" => "Erro na subida",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O ficheiro que tenta subir supera o tamaño máximo permitido neste servidor.",
+"Upload too large" => "Subida demasiado grande",
+"Pending" => "Pendentes",
+"No files selected for upload." => "Sen ficheiros escollidos para subir.",
"Error loading profile picture." => "Erro ao cargar a imaxe de perfil.",
"Enter name" => "Indique o nome",
"Enter description" => "Introducir a descrición",
"The address book name cannot be empty." => "Non se pode deixar baleiro o nome do caderno de enderezos.",
-"Error" => "Erro",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Algúns contactos están marcados para ser eliminados máis aínda non se eliminaron. Espera a que se eliminen.",
"Result: " => "Resultado: ",
" imported, " => " importado, ",
@@ -102,8 +109,7 @@
"There was an error deleting this contact." => "Houbo un erro eliminando este contacto.",
"Settings" => "Preferencias",
"Import" => "Importar",
-"Export" => "Exportar",
-"Back" => "Atrás",
+"OK" => "Aceptar",
"Groups" => "Grupos",
"Close" => "Pechar",
"Keyboard shortcuts" => "Atallos de teclado",
@@ -125,6 +131,7 @@
"Select photo from ownCloud" => "Escoller foto desde ownCloud",
"Additional names" => "Nomes adicionais",
"Nickname" => "Alcume",
+"Enter nickname" => "Introduza o alcume",
"Title" => "Título",
"Organization" => "Organización",
"Birthday" => "Aniversario",
@@ -143,13 +150,18 @@
"Delete phone number" => "Borrar número de teléfono",
"Go to web site" => "Ir ao sitio web",
"View on map" => "Ver no mapa",
+"Street address" => "Enderezo da rúa",
+"Postal code" => "Código Postal",
+"City" => "Cidade",
+"Country" => "País",
"Instant Messenger" => "Mensaxería instantánea",
"Delete IM" => "Eliminar o MI",
+"Share" => "Compartir",
+"Export" => "Exportar",
"Add Contact" => "Engadir contacto",
"Drop photo to upload" => "Solte a foto a subir",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, Nome corto, Nome completo, Inverso ou Inverso con coma",
"Edit name details" => "Editar detalles do nome",
-"Enter nickname" => "Introduza o alcume",
"http://www.somesite.com" => "http://www.unhaligazon.net",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Separe grupos con comas",
@@ -164,16 +176,12 @@
"Edit address" => "Editar o enderezo",
"Type" => "Escribir",
"PO Box" => "Apartado de correos",
-"Street address" => "Enderezo da rúa",
"Street and number" => "Rúa e número",
"Extended" => "Ampliado",
"Apartment number etc." => "Número de apartamento etc.",
-"City" => "Cidade",
"Region" => "Autonomía",
"E.g. state or province" => "P.ex estado ou provincia",
"Zipcode" => "Código postal",
-"Postal code" => "Código Postal",
-"Country" => "País",
"Addressbook" => "Caderno de enderezos",
"Hon. prefixes" => "Prefixos honoríficos",
"Miss" => "Srta",
@@ -205,7 +213,6 @@
"Primary address (Kontact et al)" => "Enderezo primario (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Caderno de enderezos",
-"Share" => "Compartir",
"New Address Book" => "Novo caderno de enderezos",
"Name" => "Nome",
"Description" => "Descrición",
diff --git a/l10n/he.php b/l10n/he.php
index 7c9fcc25..bda96ce8 100644
--- a/l10n/he.php
+++ b/l10n/he.php
@@ -33,6 +33,10 @@
"Missing a temporary folder" => "תקיה זמנית חסרה",
"Contacts" => "אנשי קשר",
"Error" => "שגיאה",
+"Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים",
+"Upload Error" => "שגיאת העלאה",
+"Upload too large" => "העלאה גדולה מידי",
+"Pending" => "ממתין",
"Download" => "הורדה",
"Edit" => "עריכה",
"Delete" => "מחיקה",
@@ -52,8 +56,7 @@
"Contact" => "איש קשר",
"Settings" => "הגדרות",
"Import" => "יבא",
-"Export" => "יצוא",
-"Back" => "אחורה",
+"OK" => "אישור",
"Groups" => "קבוצות",
"Close" => "סגירה",
"Add contact" => "הוסף איש קשר",
@@ -63,6 +66,7 @@
"Select photo from ownCloud" => "בחר תמונה מ ownCloud",
"Additional names" => "שמות נוספים",
"Nickname" => "כינוי",
+"Enter nickname" => "הכנס כינוי",
"Title" => "כותרת",
"Organization" => "ארגון",
"Birthday" => "יום הולדת",
@@ -78,10 +82,13 @@
"Enter phone number" => "הכנס מספר טלפון",
"Delete phone number" => "מחק מספר טלפון",
"View on map" => "ראה במפה",
+"City" => "עיר",
+"Country" => "מדינה",
+"Share" => "שתף",
+"Export" => "יצוא",
"Add Contact" => "הוספת איש קשר",
"Drop photo to upload" => "גרור ושחרר תמונה בשביל להעלות",
"Edit name details" => "ערוך פרטי שם",
-"Enter nickname" => "הכנס כינוי",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "הפרד קבוצות עם פסיקים",
"Edit groups" => "ערוך קבוצות",
@@ -95,10 +102,8 @@
"Type" => "סוג",
"PO Box" => "תא דואר",
"Extended" => "מורחב",
-"City" => "עיר",
"Region" => "אזור",
"Zipcode" => "מיקוד",
-"Country" => "מדינה",
"Addressbook" => "פנקס כתובות",
"Hon. prefixes" => "קידומות שם",
"Miss" => "גב'",
@@ -128,7 +133,6 @@
"Primary address (Kontact et al)" => "כתובת ראשית",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "פנקסי כתובות",
-"Share" => "שתף",
"New Address Book" => "פנקס כתובות חדש",
"Name" => "שם",
"Save" => "שמירה"
diff --git a/l10n/hr.php b/l10n/hr.php
index e3e3defa..e1b95723 100644
--- a/l10n/hr.php
+++ b/l10n/hr.php
@@ -29,6 +29,10 @@
"Missing a temporary folder" => "Nedostaje privremeni direktorij",
"Contacts" => "Kontakti",
"Error" => "Greška",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij",
+"Upload Error" => "Pogreška pri slanju",
+"Upload too large" => "Prijenos je preobiman",
+"Pending" => "U tijeku",
"Download" => "Preuzimanje",
"Edit" => "Uredi",
"Delete" => "Obriši",
@@ -59,8 +63,6 @@
"Contact" => "Kontakt",
"Settings" => "Postavke",
"Import" => "Uvezi",
-"Export" => "Izvoz",
-"Back" => "Natrag",
"Groups" => "Grupe",
"Close" => "Zatvori",
"Add contact" => "Dodaj kontakt",
@@ -69,6 +71,7 @@
"Upload new photo" => "Učitaj novu sliku",
"Additional names" => "sredenje ime",
"Nickname" => "Nadimak",
+"Enter nickname" => "Unesi nadimank",
"Title" => "Naslov",
"Organization" => "Organizacija",
"Birthday" => "Rođendan",
@@ -83,10 +86,13 @@
"Enter phone number" => "Unesi broj telefona",
"Delete phone number" => "Izbriši broj telefona",
"View on map" => "Prikaži na karti",
+"City" => "Grad",
+"Country" => "Država",
+"Share" => "Podijeli",
+"Export" => "Izvoz",
"Add Contact" => "Dodaj kontakt",
"Drop photo to upload" => "Dovucite fotografiju za slanje",
"Edit name details" => "Uredi detalje imena",
-"Enter nickname" => "Unesi nadimank",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Razdvoji grupe sa zarezom",
@@ -101,17 +107,14 @@
"Type" => "Tip",
"PO Box" => "Poštanski Pretinac",
"Extended" => "Prošireno",
-"City" => "Grad",
"Region" => "Regija",
"Zipcode" => "Poštanski broj",
-"Country" => "Država",
"Addressbook" => "Adresar",
"Given name" => "Ime",
"Family name" => "Prezime",
"more info" => "više informacija",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adresari",
-"Share" => "Podijeli",
"New Address Book" => "Novi adresar",
"Name" => "Ime",
"Save" => "Spremi"
diff --git a/l10n/hu_HU.php b/l10n/hu_HU.php
index fed9907a..1695ab37 100644
--- a/l10n/hu_HU.php
+++ b/l10n/hu_HU.php
@@ -39,9 +39,13 @@
"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba",
"Contacts" => "Kapcsolatok",
"Select photo" => "Fotó kiválasztása",
-"No files selected for upload." => "Nincs kiválasztva feltöltendő fájl",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő fájl mérete meghaladja a megengedett mértéket",
"Error" => "Hiba",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű",
+"Upload Error" => "Feltöltési hiba",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő fájl mérete meghaladja a megengedett mértéket",
+"Upload too large" => "A feltöltési méret túl nagy",
+"Pending" => "Folyamatban",
+"No files selected for upload." => "Nincs kiválasztva feltöltendő fájl",
"Result: " => "Eredmény: ",
" imported, " => " beimportálva, ",
" failed." => " sikertelen",
@@ -65,8 +69,7 @@
"Contact" => "Kapcsolat",
"Settings" => "Beállítások",
"Import" => "Import",
-"Export" => "Exportálás",
-"Back" => "Vissza",
+"OK" => "OK",
"Groups" => "Csoportok",
"Close" => "Bezár",
"Add contact" => "Kapcsolat hozzáadása",
@@ -76,6 +79,7 @@
"Select photo from ownCloud" => "Kép kiválasztása ownCloud-ból",
"Additional names" => "További nevek",
"Nickname" => "Becenév",
+"Enter nickname" => "Becenév megadása",
"Title" => "Felirat",
"Organization" => "Szervezet",
"Birthday" => "Születésnap",
@@ -91,11 +95,14 @@
"Enter phone number" => "Adja meg a telefonszámot",
"Delete phone number" => "Telefonszám törlése",
"View on map" => "Megtekintés a térképen",
+"City" => "Város",
+"Country" => "Ország",
+"Share" => "Megosztás",
+"Export" => "Exportálás",
"Add Contact" => "Kapcsolat hozzáadása",
"Drop photo to upload" => "Húzza ide a feltöltendő képet",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formátum egyedi, Rövid név, Teljes név, Visszafelé vagy Visszafelé vesszővel",
"Edit name details" => "Név részleteinek szerkesztése",
-"Enter nickname" => "Becenév megadása",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "Vesszővel válassza el a csoportokat",
"Edit groups" => "Csoportok szerkesztése",
@@ -110,10 +117,8 @@
"Type" => "Típus",
"PO Box" => "Postafiók",
"Extended" => "Kiterjesztett",
-"City" => "Város",
"Region" => "Megye",
"Zipcode" => "Irányítószám",
-"Country" => "Ország",
"Addressbook" => "Címlista",
"Hon. prefixes" => "Előtag",
"Miss" => "Miss",
@@ -143,7 +148,6 @@
"Primary address (Kontact et al)" => "Elsődleges cím",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Címlisták",
-"Share" => "Megosztás",
"New Address Book" => "Új címlista",
"Name" => "Név",
"Save" => "Mentés"
diff --git a/l10n/ia.php b/l10n/ia.php
index c68f0ecc..234e38ef 100644
--- a/l10n/ia.php
+++ b/l10n/ia.php
@@ -7,6 +7,7 @@
"No file was uploaded" => "Nulle file esseva incargate.",
"Missing a temporary folder" => "Manca un dossier temporari",
"Contacts" => "Contactos",
+"Upload too large" => "Incargamento troppo longe",
"Download" => "Discargar",
"Edit" => "Modificar",
"Delete" => "Deler",
@@ -25,8 +26,6 @@
"Contact" => "Contacto",
"Settings" => "Configurationes",
"Import" => "Importar",
-"Export" => "Exportar",
-"Back" => "Retro",
"Groups" => "Gruppos",
"Close" => "Clauder",
"Add contact" => "Adder adressario",
@@ -36,6 +35,7 @@
"Select photo from ownCloud" => "Seliger photo ex ownCloud",
"Additional names" => "Nomines additional",
"Nickname" => "Pseudonymo",
+"Enter nickname" => "Inserer pseudonymo",
"Title" => "Titulo",
"Organization" => "Organisation",
"Birthday" => "Anniversario",
@@ -49,8 +49,11 @@
"Enter phone number" => "Entrar un numero de telephono",
"Delete phone number" => "Deler numero de telephono",
"View on map" => "Vider in un carta",
+"City" => "Citate",
+"Country" => "Pais",
+"Share" => "Compartir",
+"Export" => "Exportar",
"Add Contact" => "Adder contacto",
-"Enter nickname" => "Inserer pseudonymo",
"Edit groups" => "Modificar gruppos",
"Enter email address" => "Entrar un adresse de e-posta",
"Add notes here." => "Adder notas hic",
@@ -61,10 +64,8 @@
"Type" => "Typo",
"PO Box" => "Cassa postal",
"Extended" => "Extendite",
-"City" => "Citate",
"Region" => "Region",
"Zipcode" => "Codice postal",
-"Country" => "Pais",
"Addressbook" => "Adressario",
"Hon. prefixes" => "Prefixos honorific",
"Miss" => "Senioretta",
@@ -81,7 +82,6 @@
"more info" => "plus info",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressarios",
-"Share" => "Compartir",
"New Address Book" => "Nove adressario",
"Name" => "Nomine",
"Save" => "Salveguardar"
diff --git a/l10n/id.php b/l10n/id.php
index ddbca0a2..1708307c 100644
--- a/l10n/id.php
+++ b/l10n/id.php
@@ -10,6 +10,10 @@
"Missing a temporary folder" => "Kehilangan folder temporer",
"Contacts" => "kontak",
"Error" => "kesalahan",
+"Importing..." => "mengimpor...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte",
+"Upload Error" => "Terjadi Galat Pengunggahan",
+"Pending" => "Menunggu",
"Download" => "unduh",
"Edit" => "ubah",
"Delete" => "hapus",
@@ -29,11 +33,10 @@
"Contact" => "kontak",
"Settings" => "pengaturan",
"Import" => "impor",
-"Export" => "ekspor",
-"Back" => "Kembali",
"Groups" => "grup",
"Close" => "tutup",
"Nickname" => "nama panggilan",
+"Enter nickname" => "masukkan nama panggilan",
"Organization" => "organisasi",
"Birthday" => "tanggal lahir",
"Add" => "tambah",
@@ -41,24 +44,24 @@
"Email" => "surel",
"Address" => "alamat",
"Preferred" => "disarankan",
+"City" => "kota",
+"Country" => "negara",
+"Share" => "berbagi",
+"Export" => "ekspor",
"Add Contact" => "tambah kontak",
"Edit name details" => "ubah detail nama",
-"Enter nickname" => "masukkan nama panggilan",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "pisahkan grup dengan tanda koma",
"Download contact" => "unduk kontak",
"Delete contact" => "hapus kontak",
"Type" => "tipe",
"PO Box" => "PO box",
-"City" => "kota",
"Region" => "daerah",
"Zipcode" => "kodepos",
-"Country" => "negara",
"Addressbook" => "buku alamat",
"more info" => "lebih lanjut",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "buku alamat",
-"Share" => "berbagi",
"Name" => "nama",
"Save" => "simpan"
);
diff --git a/l10n/is.php b/l10n/is.php
new file mode 100644
index 00000000..bc39ffe0
--- /dev/null
+++ b/l10n/is.php
@@ -0,0 +1,3 @@
+ "Bæta"
+);
diff --git a/l10n/it.php b/l10n/it.php
index f464a347..a3d0347e 100644
--- a/l10n/it.php
+++ b/l10n/it.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Il contatto non è in questo gruppo.",
"Contacts are not in this group." => "I contatti non sono in questo gruppo.",
"A group named {group} already exists" => "Un gruppo con nome {group} esiste già",
+"You can drag groups to\narrange them as you like." => "Puoi trascinare i gruppi per\norganizzarli come preferisci.",
"All" => "Tutti",
"Favorites" => "Preferiti",
"Shared by {owner}" => "Condiviso da {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Errore durante l'aggiunta al gruppo.",
"Error removing from group." => "Errore durante la rimozione dal gruppo.",
"There was an error opening a mail composer." => "Si è verificato un errore durante l'apertura del compositore.",
+"Deleting done. Click here to cancel reloading." => "Eliminazione completata. Fai clic qui per annullare il ricaricamento.",
+"Add address book" => "Aggiungi rubrica",
+"Import done. Click here to cancel reloading." => "Importazione completata. Fai clic qui per annullare il ricaricamento.",
+"Not all files uploaded. Retrying..." => "Non tutti i file sono stati caricati. Riprovo...",
+"Something went wrong with the upload, please retry." => "Qualcosa non ha funzionato durante il caricamento. Prova ancora.",
+"Error" => "Errore",
+"Importing from {filename}..." => "Importazione da {filename} in corso...",
+"{success} imported, {failed} failed." => "{success} importati, {failed} non riusciti.",
+"Importing..." => "Importazione in corso...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile caricare il file poiché è una cartella o ha una dimensione di 0 byte",
+"Upload Error" => "Errore di caricamento",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server.",
+"Upload too large" => "Caricamento troppo grande",
+"Pending" => "In corso",
"Add group" => "Aggiungi gruppo",
"No files selected for upload." => "Nessun file selezionato per l'invio",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server.",
"Edit profile picture" => "Modifica l'immagine del profilo",
"Error loading profile picture." => "Errore durante il caricamento dell'immagine di profilo.",
"Enter name" => "Inserisci il nome",
"Enter description" => "Inserisci una descrizione",
"Select addressbook" => "Seleziona rubrica",
"The address book name cannot be empty." => "Il nome della rubrica non può essere vuoto.",
-"Error" => "Errore",
"Is this correct?" => "È corretto?",
"There was an unknown error when trying to delete this contact" => "Si è verificato un errore durante il tentativo di eliminare il contatto.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alcuni contatti sono marcati per l'eliminazione, ma non sono stati ancora rimossi. Attendi fino al completamento dell'operazione.",
@@ -138,17 +151,18 @@
"HomePage" => "Pagina principale",
"New Group" => "Nuovo gruppo",
"Settings" => "Impostazioni",
-"Share" => "Condividi",
+"Address books" => "Rubriche",
"Import" => "Importa",
+"Select files to import" => "Seleziona i file da importare",
+"Select files" => "Seleziona i file",
"Import into:" => "Importa in:",
-"Export" => "Esporta",
+"OK" => "OK",
"(De-)select all" => "(De)seleziona tutto",
"New Contact" => "Nuovo contatto",
-"Back" => "Indietro",
"Download Contact" => "Scarica contatto",
-"Delete Contact" => "Elimina contatto",
"Groups" => "Gruppi",
"Favorite" => "Preferito",
+"Delete Contact" => "Elimina contatto",
"Close" => "Chiudi",
"Keyboard shortcuts" => "Scorciatoie da tastiera",
"Navigation" => "Navigazione",
@@ -174,6 +188,7 @@
"Additional names" => "Nomi aggiuntivi",
"Last name" => "Cognome",
"Nickname" => "Pseudonimo",
+"Enter nickname" => "Inserisci pseudonimo",
"Title" => "Titolo",
"Organization" => "Organizzazione",
"Birthday" => "Compleanno",
@@ -197,17 +212,23 @@
"View on map" => "Visualizza sulla mappa",
"Delete address" => "Elimina indirizzo",
"1 Main Street" => "Via principale 1",
+"Street address" => "Indirizzo",
"12345" => "12345",
+"Postal code" => "CAP",
"Your city" => "La tua città",
+"City" => "Città",
"Some region" => "Una regione",
"Your country" => "Il tuo paese",
+"Country" => "Stato",
"Instant Messenger" => "Client di messaggistica istantanea",
"Delete IM" => "Elimina IM",
+"Share" => "Condividi",
+"Export" => "Esporta",
+"CardDAV link" => "Collegamento CardDav",
"Add Contact" => "Aggiungi contatto",
"Drop photo to upload" => "Rilascia una foto da inviare",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola",
"Edit name details" => "Modifica dettagli del nome",
-"Enter nickname" => "Inserisci pseudonimo",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "gg-mm-aaaa",
"Separate groups with commas" => "Separa i gruppi con virgole",
@@ -222,16 +243,12 @@
"Edit address" => "Modifica indirizzo",
"Type" => "Tipo",
"PO Box" => "Casella postale",
-"Street address" => "Indirizzo",
"Street and number" => "Via e numero",
"Extended" => "Esteso",
"Apartment number etc." => "Numero appartamento ecc.",
-"City" => "Città",
"Region" => "Regione",
"E.g. state or province" => "Ad es. stato o provincia",
"Zipcode" => "CAP",
-"Postal code" => "CAP",
-"Country" => "Stato",
"Addressbook" => "Rubrica",
"Hon. prefixes" => "Prefissi onorifici",
"Miss" => "Sig.na",
diff --git a/l10n/ja_JP.php b/l10n/ja_JP.php
index 3338aa72..0473df82 100644
--- a/l10n/ja_JP.php
+++ b/l10n/ja_JP.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "連絡先はこのグループに存在しません。",
"Contacts are not in this group." => "連絡先はこのグループに存在しません。",
"A group named {group} already exists" => "{group} のグループはすでに存在します",
+"You can drag groups to\narrange them as you like." => "グループをドラックすることで好きな\nように並べ替えることができます。",
"All" => "すべて",
"Favorites" => "お気に入り",
"Shared by {owner}" => "{owner} と共有中",
@@ -67,16 +68,28 @@
"Error adding to group." => "グループに追加エラー。",
"Error removing from group." => "グループから削除エラー。",
"There was an error opening a mail composer." => "メールコンポーザの起動エラーが発生しました。",
+"Deleting done. Click here to cancel reloading." => "削除完了。再読込みをキャンセルする場合はここをクリック。",
+"Add address book" => "アドレスブックを追加",
+"Import done. Click here to cancel reloading." => "インポート完了。再読込みをキャンセルする場合はここをクリック。",
+"Not all files uploaded. Retrying..." => "ファイルがアップロード出来ませんでした。再実行中...。",
+"Something went wrong with the upload, please retry." => "アップロード中に不具合が発生しました、再実行してください。",
+"Error" => "エラー",
+"Importing from {filename}..." => "{filename} からインポート中...",
+"{success} imported, {failed} failed." => "{success} をインポート、{failed} は失敗しました。",
+"Importing..." => "インポート中...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません",
+"Upload Error" => "アップロードエラー",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、このサーバの最大ファイルアップロードサイズを超えています。",
+"Upload too large" => "アップロードには大きすぎます。",
+"Pending" => "中断",
"Add group" => "グループを追加",
"No files selected for upload." => "アップロードするファイルが選択されていません。",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、このサーバの最大ファイルアップロードサイズを超えています。",
"Edit profile picture" => "プロフィール写真を編集",
"Error loading profile picture." => "プロファイルの画像の読み込みエラー",
"Enter name" => "名前を入力",
"Enter description" => "説明を入力してください",
"Select addressbook" => "アドレスブックを選択",
"The address book name cannot be empty." => "アドレス帳名は空に出来ません。",
-"Error" => "エラー",
"Is this correct?" => "これは正しいですか?",
"There was an unknown error when trying to delete this contact" => "この連絡先の削除時に不明なエラーが発生しました",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "いくつかの連絡先が削除対象としてマークされていますが、まだ削除されていません。削除するまでお待ちください。",
@@ -138,17 +151,18 @@
"HomePage" => "ホームページ",
"New Group" => "新しいグループ",
"Settings" => "設定",
-"Share" => "共有",
+"Address books" => "アドレスブック",
"Import" => "インポート",
+"Select files to import" => "インポートするファイルを選択",
+"Select files" => "ファイルを選択",
"Import into:" => "インポート情報:",
-"Export" => "エクスポート",
+"OK" => "OK",
"(De-)select all" => "すべての選択を解除",
"New Contact" => "新しい連絡先",
-"Back" => "戻る",
"Download Contact" => "連絡先をダウンロード",
-"Delete Contact" => "連絡先を削除",
"Groups" => "グループ",
"Favorite" => "お気に入り",
+"Delete Contact" => "連絡先を削除",
"Close" => "閉じる",
"Keyboard shortcuts" => "キーボードショートカット",
"Navigation" => "ナビゲーション",
@@ -174,6 +188,7 @@
"Additional names" => "ミドルネーム",
"Last name" => "姓",
"Nickname" => "ニックネーム",
+"Enter nickname" => "ニックネームを入力",
"Title" => "タイトル",
"Organization" => "所属",
"Birthday" => "誕生日",
@@ -197,17 +212,23 @@
"View on map" => "地図で表示",
"Delete address" => "住所を削除",
"1 Main Street" => "番地",
+"Street address" => "住所1",
"12345" => "12345",
+"Postal code" => "郵便番号",
"Your city" => "市",
+"City" => "都市",
"Some region" => "都道府県",
"Your country" => "国",
+"Country" => "国名",
"Instant Messenger" => "インスタントメッセンジャー",
"Delete IM" => "IMを削除",
+"Share" => "共有",
+"Export" => "エクスポート",
+"CardDAV link" => "CardDAVリンク",
"Add Contact" => "連絡先の追加",
"Drop photo to upload" => "写真をドロップしてアップロード",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "編集フォーマット、ショートネーム、フルネーム、逆順、カンマ区切りの逆順",
"Edit name details" => "名前の詳細を編集",
-"Enter nickname" => "ニックネームを入力",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "コンマでグループを分割",
@@ -222,16 +243,12 @@
"Edit address" => "住所を編集",
"Type" => "種類",
"PO Box" => "私書箱",
-"Street address" => "住所1",
"Street and number" => "番地",
"Extended" => "住所2",
"Apartment number etc." => "アパート名等",
-"City" => "都市",
"Region" => "都道府県",
"E.g. state or province" => "例:東京都、大阪府",
"Zipcode" => "郵便番号",
-"Postal code" => "郵便番号",
-"Country" => "国名",
"Addressbook" => "アドレス帳",
"Hon. prefixes" => "敬称",
"Miss" => "Miss",
diff --git a/l10n/ka_GE.php b/l10n/ka_GE.php
index 98bc1e5d..c2b4e5c0 100644
--- a/l10n/ka_GE.php
+++ b/l10n/ka_GE.php
@@ -8,6 +8,10 @@
"Missing a temporary folder" => "დროებითი საქაღალდე არ არსებობს",
"Contacts" => "კონტაქტები",
"Error" => "შეცდომა",
+"Unable to upload your file as it is a directory or has 0 bytes" => "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს",
+"Upload Error" => "შეცდომა ატვირთვისას",
+"Upload too large" => "ასატვირთი ფაილი ძალიან დიდია",
+"Pending" => "მოცდის რეჟიმში",
"Download" => "ჩამოტვირთვა",
"Edit" => "რედაქტირება",
"Delete" => "წაშლა",
@@ -26,7 +30,6 @@
"Contact" => "კონტაქტი",
"Settings" => "პარამეტრები",
"Import" => "იმპორტი",
-"Export" => "ექსპორტი",
"Groups" => "ჯგუფები",
"Close" => "დახურვა",
"Add contact" => "კონტაქტის დამატება",
@@ -43,6 +46,10 @@
"Email" => "იმეილი",
"Address" => "მისამართი",
"Note" => "შენიშვნა",
+"City" => "ქალაქი",
+"Country" => "ქვეყანა",
+"Share" => "გაზიარება",
+"Export" => "ექსპორტი",
"Add Contact" => "კონტაქტის დამატება",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Edit groups" => "ჯგუფების რედაქტირება",
@@ -54,10 +61,8 @@
"Type" => "ტიპი",
"PO Box" => "PO ყუთი",
"Extended" => "Extended",
-"City" => "ქალაქი",
"Region" => "რეგიონი",
"Zipcode" => "Zip კოდი",
-"Country" => "ქვეყანა",
"Addressbook" => "მისამარტების ზიგნი",
"Miss" => "მისის",
"Ms" => "მის",
@@ -67,7 +72,6 @@
"Primary address (Kontact et al)" => "პირველადი მისამართი (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "მისამართის წიგნები",
-"Share" => "გაზიარება",
"New Address Book" => "ახალი მისამართების წიგნი",
"Name" => "სახელი",
"Save" => "შენახვა"
diff --git a/l10n/ko.php b/l10n/ko.php
index 160dbc12..317d066b 100644
--- a/l10n/ko.php
+++ b/l10n/ko.php
@@ -1,76 +1,122 @@
"주소록을 (비)활성화하는 데 실패했습니다.",
-"id is not set." => "아이디가 설정되어 있지 않습니다. ",
-"Cannot update addressbook with an empty name." => "주소록에 이름란이 비어있으면 업데이트를 할 수 없습니다. ",
-"No ID provided" => "제공되는 아이디 없음",
-"Error setting checksum." => "오류 검사합계 설정",
-"No categories selected for deletion." => "삭제 카테고리를 선택하지 않았습니다. ",
+"id is not set." => "ID가 설정되어 있지 않습니다. ",
+"Cannot update addressbook with an empty name." => "주소록 이름이 비어 있으면 업데이트할 수 없습니다.",
+"No category name given." => "분류 이름이 입력되지 않았습니다.",
+"Error adding group." => "그룹을 추가하는 중 오류가 발생하였습니다.",
+"Group ID missing from request." => "요청에 그룹 ID가 누락되었습니다.",
+"Contact ID missing from request." => "요청에 연락처 ID가 누락되었습니다.",
+"No ID provided" => "ID가 지정되지 않았음",
+"Error setting checksum." => "체크섬을 설정하는 중 오류가 발생하였습니다.",
+"No categories selected for deletion." => "삭제할 분류를 선택하지 않았습니다. ",
"No address books found." => "주소록을 찾을 수 없습니다.",
"No contacts found." => "연락처를 찾을 수 없습니다.",
-"element name is not set." => "element 이름이 설정되지 않았습니다.",
+"element name is not set." => "원소 이름이 설정되지 않았습니다.",
"checksum is not set." => "체크섬이 설정되지 않았습니다.",
"Information about vCard is incorrect. Please reload the page." => "vCard 정보가 올바르지 않습니다. 페이지를 새로 고치십시오.",
-"Information about vCard is incorrect. Please reload the page: " => " vCard에 대한 정보가 잘못되었습니다. 페이지를 다시 로드하세요:",
-"Something went FUBAR. " => "무언가가 FUBAR로 감.",
-"Missing IM parameter." => "IM 매개 변수 분실.",
-"Unknown IM: " => "알려지지 않은 IM:",
-"No contact ID was submitted." => "접속 아이디가 기입되지 않았습니다.",
-"Error reading contact photo." => "사진 읽기 오류",
+"Couldn't find vCard for %d." => "%d의 vCard를 찾을 수 없습니다.",
+"Information about vCard is incorrect. Please reload the page: " => " vCard 정보가 올바르지 않습니다. 페이지를 새로 고치십시오:",
+"Something went FUBAR. " => "알 수 없는 오류가 발생하였습니다.",
+"Cannot save property of type \"%s\" as array" => "\"%s\" 형식의 속성을 배열로 저장할 수 없습니다",
+"Missing IM parameter." => "IM 매개 변수가 없습니다.",
+"Unknown IM: " => "알 수 없는 IM:",
+"No contact ID was submitted." => "연락처 ID가 지정되지 않았습니다.",
+"Error reading contact photo." => "연락처 사진을 불러올 수 없습니다.",
"Error saving temporary file." => "임시 파일을 저장하는 동안 오류가 발생했습니다. ",
-"The loading photo is not valid." => "로딩 사진이 유효하지 않습니다. ",
-"Contact ID is missing." => "접속 아이디가 없습니다. ",
-"No photo path was submitted." => "사진 경로가 제출되지 않았습니다. ",
-"File doesn't exist:" => "파일이 존재하지 않습니다. ",
-"Error loading image." => "로딩 이미지 오류입니다.",
-"Error getting contact object." => "연락처 개체를 가져오는 중 오류가 발생했습니다. ",
+"The loading photo is not valid." => "로딩 사진이 올바르지 않습니다. ",
+"Contact ID is missing." => "연락처 ID가 없습니다. ",
+"No photo path was submitted." => "사진 경로가 지정되지 않았습니다. ",
+"File doesn't exist:" => "파일이 존재하지 않습니다:",
+"Error loading image." => "그림을 불러올 수 없습니다.",
+"Error getting contact object." => "연락처 객체를 가져오는 중 오류가 발생했습니다. ",
"Error getting PHOTO property." => "사진 속성을 가져오는 중 오류가 발생했습니다. ",
"Error saving contact." => "연락처 저장 중 오류가 발생했습니다.",
-"Error resizing image" => "이미지 크기 조정 중 오류가 발생했습니다.",
-"Error cropping image" => "이미지를 자르던 중 오류가 발생했습니다.",
-"Error creating temporary image" => "임시 이미지를 생성 중 오류가 발생했습니다.",
-"Error finding image: " => "이미지를 찾던 중 오류가 발생했습니다:",
-"Error uploading contacts to storage." => "스토리지 에러 업로드 연락처.",
-"There is no error, the file uploaded with success" => "오류없이 파일업로드 성공.",
-"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "php.ini 형식으로 업로드 된 이 파일은 MAX_FILE_SIZE를 초과하였다.",
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "HTML형식으로 업로드 된 이 파일은 MAX_FILE_SIZE를 초과하였다.",
-"The uploaded file was only partially uploaded" => "이 업로드된 파일은 부분적으로만 업로드 되었습니다.",
-"No file was uploaded" => "파일이 업로드 되어있지 않습니다",
-"Missing a temporary folder" => "임시 폴더 분실",
-"Couldn't save temporary image: " => "임시 이미지를 저장할 수 없습니다:",
-"Couldn't load temporary image: " => "임시 이미지를 불러올 수 없습니다. ",
-"No file was uploaded. Unknown error" => "파일이 업로드 되지 않았습니다. 알 수 없는 오류.",
+"Error resizing image" => "그림 크기 조절 오류",
+"Error cropping image" => "그림 자르기 오류",
+"Error creating temporary image" => "임시 그림 생성 오류",
+"Error finding image: " => "그림 검색 오류:",
+"Key is not set for: " => "키가 설정되지 않음:",
+"Value is not set for: " => "값이 설정되지 않음:",
+"Could not set preference: " => "우선 순위를 설정할 수 없음:",
+"Error uploading contacts to storage." => "연락처를 저장소에 업로드하는 중 오류가 발생하였습니다.",
+"There is no error, the file uploaded with success" => "파일 업로드에 성공하였습니다.",
+"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "업로드한 파일 크기가 php.ini의 upload_max_filesize보다 큼",
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "업로드한 파일 크기가 HTML 폼의 MAX_FILE_SIZE보다 큼",
+"The uploaded file was only partially uploaded" => "파일의 일부분만 업로드됨",
+"No file was uploaded" => "파일이 업로드되지 않았음",
+"Missing a temporary folder" => "임시 폴더가 없음",
+"Couldn't save temporary image: " => "임시 그림을 저장할 수 없음:",
+"Couldn't load temporary image: " => "임시 그림을 불러올 수 없음:",
+"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
"Contacts" => "연락처",
+"Contact is already in this group." => "이 그룹에 연락처가 이미 존재합니다.",
+"Contacts are already in this group." => "이 그룹에 연락처가 이미 존재합니다.",
+"Couldn't get contact list." => "연락처 목록을 가져올 수 없습니다.",
+"Contact is not in this group." => "연락처가 이 그룹에 없습니다.",
+"Contacts are not in this group." => "연락처가 이 그룹에 없습니다.",
+"A group named {group} already exists" => "그룹 {group}이(가) 이미 존재함",
+"You can drag groups to\narrange them as you like." => "원하는 대로 그룹을 드래그하여\n정리할 수 있습니다.",
+"All" => "모두",
+"Favorites" => "즐겨찾기",
+"Shared by {owner}" => "{owner} 님이 공유함",
+"Indexing contacts" => "연락처 인덱스 작성 중",
+"Add to..." => "다음에 추가...",
+"Remove from..." => "다음에서 삭제...",
+"Add group..." => "그룹 추가...",
"Select photo" => "사진 선택",
-"No files selected for upload." => "업로드를 위한 파일이 선택되지 않았습니다. ",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일은 이 서버 파일 업로드 최대 용량을 초과 합니다. ",
-"Error loading profile picture." => "프로필 사진 로딩 에러",
-"Enter name" => "이름을 입력",
-"Enter description" => "설명을 입력",
-"The address book name cannot be empty." => "주소록 이름은 비워둘 수 없습니다.",
+"Network or server error. Please inform administrator." => "네트워크 및 서버 오류입니다. 관리자에게 알려 주십시오.",
+"Error adding to group." => "그룹에 추가하는 중 오류가 발생하였습니다.",
+"Error removing from group." => "그룹에서 삭제하는 중 오류가 발생하였습니다.",
+"There was an error opening a mail composer." => "메일 작성기를 여는 중 오류가 발생하였습니다.",
+"Deleting done. Click here to cancel reloading." => "삭제가 완료되었습니다. 새로 고침을 취소하려면 누르십시오.",
+"Add address book" => "주소록 추가",
+"Import done. Click here to cancel reloading." => "가져오기가 완료되었습니다. 새로 고침을 취소하려면 누르십시오.",
+"Not all files uploaded. Retrying..." => "모든 파일이 업로드되지 않았습니다. 다시 시도하는 중...",
+"Something went wrong with the upload, please retry." => "업로드 중 오류가 발생하였습니다. 다시 시도해 주십시오.",
"Error" => "오류",
-"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "일부 연락처가 삭제 표시 되었으나 아직 삭제되지 않았습니다. 삭제가 끝날 때 까지 기다려 주세요.",
-"Result: " => "결과:",
-" imported, " => "불러오기,",
-" failed." => "실패.",
-"Displayname cannot be empty." => "디스플레이 이름은 비워둘 수 없습니다. ",
-"Show CardDav link" => "CardDav 링크를 표시",
-"Show read-only VCF link" => "읽기전용 VCF 링크 표시",
+"Importing from {filename}..." => "{filename}에서 가져오는 중...",
+"{success} imported, {failed} failed." => "항목 {success}개를 가져왔으며, {failed}개는 실패하였습니다.",
+"Importing..." => "가져오는 중...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "디렉터리 및 빈 파일은 업로드할 수 없습니다",
+"Upload Error" => "업로드 오류",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "업로드할 파일이 서버의 최대 업로드 파일 크기를 초과합니다.",
+"Upload too large" => "업로드한 파일이 너무 큼",
+"Pending" => "대기 중",
+"Add group" => "그룹 추가",
+"No files selected for upload." => "업로드할 파일이 선택되지 않았습니다.",
+"Edit profile picture" => "프로필 사진 편집",
+"Error loading profile picture." => "프로필 사진을 불러오는 중 오류가 발생하였습니다.",
+"Enter name" => "이름 입력",
+"Enter description" => "설명 입력",
+"Select addressbook" => "주소록 선택",
+"The address book name cannot be empty." => "주소록 이름을 비워둘 수 없습니다.",
+"Is this correct?" => "이 정보가 정확합니까?",
+"There was an unknown error when trying to delete this contact" => "이 연락처를 삭제할 때 알 수 없는 오류가 발생하였습니다",
+"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "일부 연락처가 삭제하기로 표시되었지만 아직 삭제되지 않았습니다. 삭제하는 동안 잠시 기다려 주십시오.",
+"Click to undo deletion of {num} contacts" => "연락처 {num}개 삭제를 취소하려면 누르십시오",
+"Cancelled deletion of {num}" => "{num} 개의 삭제를 캔슬했습니다",
+"Result: " => "결과: ",
+" imported, " => "개 항목 가져옴,",
+" failed." => "개 항목 가져오기 실패.",
+"Displayname cannot be empty." => "표시 이름을 입력해야 합니다.",
+"Show CardDav link" => "CardDAV 링크 표시",
+"Show read-only VCF link" => "읽기 전용 VCF 링크 표시",
"Download" => "다운로드",
"Edit" => "편집",
"Delete" => "삭제",
"Cancel" => "취소",
-"More..." => "더...",
-"Less..." => "그외...",
-"You do not have the permissions to read this addressbook." => "당신은 이 주소록을 읽기 위한 권한이 없습니다.",
-"You do not have the permissions to update this addressbook." => "당신은 이 주소록을 업데이트하기 위한 권한이 없습니다.",
-"There was an error updating the addressbook." => "주소록을 업데이트 하는중에 에러가 발생하였습니다.",
-"You do not have the permissions to delete this addressbook." => "당신은 이 주소록을 삭제하기 위한 권한이 없습니다.",
-"There was an error deleting this addressbook." => "이 주소록을 제거하는데 에러가 발생하였습니다.",
+"More..." => "더 보기...",
+"Less..." => "덜 보기...",
+"You do not have the permissions to read this addressbook." => "이 주소록을 읽을 수 있는 권한이 없습니다.",
+"You do not have the permissions to update this addressbook." => "이 주소록을 업데이트할 수 있는 권한이 없습니다.",
+"There was an error updating the addressbook." => "주소록을 업데이트하는 중 오류가 발생하였습니다.",
+"You do not have the permissions to delete this addressbook." => "이 주소록을 삭제할 수 있는 권한이 없습니다.",
+"There was an error deleting this addressbook." => "이 주소록을 삭제하는 중 오류가 발생하였습니다.",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
-"GoogleTalk" => "GoogleTalk",
+"GoogleTalk" => "Google 토크",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
@@ -79,112 +125,141 @@
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "직장",
-"Home" => "자택",
-"Other" => "그 외",
+"Home" => "가정",
+"Other" => "기타",
"Mobile" => "휴대폰",
-"Text" => "문자 번호",
-"Voice" => "음성 번호",
-"Message" => "메세지",
-"Fax" => "팩스 번호",
-"Video" => "영상 번호",
+"Text" => "TTY TDD",
+"Voice" => "음성 사서함",
+"Message" => "메시지",
+"Fax" => "팩스",
+"Video" => "화상 전화",
"Pager" => "호출기",
"Internet" => "인터넷",
-"Friends" => "친구들",
+"Friends" => "친구",
"Family" => "가족",
-"{name}'s Birthday" => "{이름}의 생일",
+"There was an error deleting properties for this contact." => "이 연락처의 속성을 삭제하는 중 오류가 발생하였습니다.",
+"{name}'s Birthday" => "{name}의 생일",
"Contact" => "연락처",
-"You do not have the permissions to add contacts to this addressbook." => "당신은 이 주소록에 연락처를 추가하기 위한 권한이 없습니다.",
-"Could not find the vCard with ID." => "ID와 vCard를 찾을수 없습니다.",
-"You do not have the permissions to edit this contact." => "당신은 연락처를 수정할 권한이 없습니다. ",
-"Could not find the vCard with ID: " => "ID와 vCard를 찾을수 없습니다.",
-"Could not find the Addressbook with ID: " => "ID와 주소록을 찾을 수 없습니다.",
-"You do not have the permissions to delete this contact." => "당신은 연락처를 삭제할 권한이 없습니다. ",
-"There was an error deleting this contact." => "이 연락처를 삭제하는데 에러가 발생하였습니다.",
+"You do not have the permissions to add contacts to this addressbook." => "이 주소록에 연락처를 추가할 수 있는 권한이 없습니다.",
+"Could not find the vCard with ID." => "ID로 vCard를 찾을 수 없습니다.",
+"You do not have the permissions to edit this contact." => "이 연락처를 수정할 수 있는 권한이 없습니다.",
+"Could not find the vCard with ID: " => "다음 ID의 vCard를 찾을 수 없습니다:",
+"Could not find the Addressbook with ID: " => "다음 ID의 주소록 찾을 수 없습니다:",
+"You do not have the permissions to delete this contact." => "이 연락처를 삭제할 수 있는 권한이 없습니다.",
+"There was an error deleting this contact." => "이 연락처를 삭제하는 중 오류가 발생하였습니다.",
+"Contact not found." => "연락처를 찾을 수 없습니다.",
+"HomePage" => "홈 페이지",
+"New Group" => "새 그룹",
"Settings" => "설정",
-"Import" => "입력",
-"Export" => "내보내기",
-"Back" => "뒤로",
+"Address books" => "주소록",
+"Import" => "가져오기",
+"Select files to import" => "가져올 파일 선택",
+"Select files" => "파일 선택",
+"Import into:" => "다음으로 가져오기:",
+"OK" => "확인",
+"(De-)select all" => "전체 선택(해제)",
+"New Contact" => "새 연락처",
+"Download Contact" => "연락처 다운로드",
"Groups" => "그룹",
+"Favorite" => "즐겨찾기",
+"Delete Contact" => "연락처 삭제",
"Close" => "닫기",
-"Keyboard shortcuts" => "단축키",
-"Navigation" => "네비게이션",
-"Next contact in list" => "목록에서의 다음 연락처",
-"Previous contact in list" => "목록에서의 이전 연락처",
-"Expand/collapse current addressbook" => "현재 주소록을 확장/축소",
+"Keyboard shortcuts" => "키보드 단축키",
+"Navigation" => "탐색",
+"Next contact in list" => "목록의 다음 연락처",
+"Previous contact in list" => "목록의 이전 연락처",
+"Expand/collapse current addressbook" => "현재 주소록 펴기/접기",
"Next addressbook" => "다음 주소록",
"Previous addressbook" => "이전 주소록",
-"Actions" => "작업",
+"Actions" => "동작",
"Refresh contacts list" => "연락처 목록 새로 고침",
-"Add new contact" => "새로운 연락처 추가",
-"Add new addressbook" => "새로운 주소록 추가",
+"Add new contact" => "새 연락처 추가",
+"Add new addressbook" => "새 주소록 추가",
"Delete current contact" => "현재 연락처 삭제",
+"
You have no contacts in your addressbook.
Add a new contact or import existing contacts from a VCF file.
" => "
주소록에 연락처가 없습니다.
새 연락처를 추가하거나 VCF 파일에서 연락처를 가져올 수 있습니다.
",
"Add contact" => "연락처 추가",
+"Compose mail" => "메일 작성",
+"Delete group" => "그룹 삭제",
"Delete current photo" => "현재 사진 삭제",
"Edit current photo" => "현재 사진 편집",
"Upload new photo" => "새로운 사진 업로드",
"Select photo from ownCloud" => "ownCloud에서 사진 선택",
+"First name" => "이름",
"Additional names" => "추가 이름",
+"Last name" => "성",
"Nickname" => "별명",
-"Title" => "제목",
+"Enter nickname" => "별명 입력",
+"Title" => "직위",
"Organization" => "조직",
"Birthday" => "생일",
+"Notes go here..." => "메모를 입력하십시오...",
"Add" => "추가",
-"Phone" => "전화 번호",
-"Email" => "전자 우편",
-"Instant Messaging" => "인스턴트 메세지",
+"Phone" => "전화번호",
+"Email" => "이메일",
+"Instant Messaging" => "인스턴트 메시징",
"Address" => "주소",
-"Note" => "노트",
+"Note" => "메모",
"Web site" => "웹 사이트",
"Preferred" => "선호함",
-"Please specify a valid email address." => "올바른 이메일 주소를 입력하세요.",
-"Mail to address" => "이메일 주소",
-"Delete email address" => "이메일 주소 삭제",
+"Please specify a valid email address." => "올바른 이메일 주소를 입력하십시오.",
+"someone@example.com" => "someone@example.com",
+"Mail to address" => "메일 보내기",
+"Delete email address" => "메일 주소 삭제",
"Enter phone number" => "전화번호 입력",
"Delete phone number" => "전화번호 삭제",
-"Go to web site" => "웹 사이트로 가기",
-"View on map" => "지도에서 보기",
+"Go to web site" => "웹 사이트로 이동",
+"Delete URL" => "URL 삭제",
+"View on map" => "지도에 표시",
+"Delete address" => "주소 삭제",
+"1 Main Street" => "종로 1",
+"Street address" => "거리 주소",
+"12345" => "12345",
+"Postal code" => "우편번호",
+"Your city" => "도시",
+"City" => "도시",
+"Some region" => "지역",
+"Your country" => "국가",
+"Country" => "국가",
"Instant Messenger" => "인스턴트 메신저",
"Delete IM" => "IM 삭제",
+"Share" => "공유",
+"Export" => "내보내기",
+"CardDAV link" => "CardDAV 링크",
"Add Contact" => "연락처 추가",
-"Drop photo to upload" => "Drop photo to upload",
-"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Short name, Full name, Reverse or Reverse with comma",
-"Edit name details" => "이름 세부사항을 편집합니다. ",
-"Enter nickname" => "별명 입력",
+"Drop photo to upload" => "사진을 끌어다 놓아서 업로드",
+"Format custom, Short name, Full name, Reverse or Reverse with comma" => "사용자 정의 형식,짧은 이름,이름 성,성 이름 및 쉼표로 구분된 성 이름",
+"Edit name details" => "이름 정보 편집",
"http://www.somesite.com" => "http://www.somesite.com",
-"dd-mm-yyyy" => "일-월-년",
+"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "쉼표로 그룹 구분",
"Edit groups" => "그룹 편집",
-"Enter email address" => "이메일 주소 입력",
-"Edit address details" => "상세 주소 수정",
-"Add notes here." => "여기에 노트 추가.",
-"Add field" => "파일 추가",
+"Enter email address" => "메일 주소 입력",
+"Edit address details" => "자세한 정보 편집",
+"Add notes here." => "여기에 메모를 추가하십시오.",
+"Add field" => "항목 추가",
"Download contact" => "연락처 다운로드",
"Delete contact" => "연락처 삭제",
-"The temporary image has been removed from cache." => "임시 이미지가 캐시에서 제거 되었습니다. ",
-"Edit address" => "주소 수정",
+"The temporary image has been removed from cache." => "임시 그림이 캐시에서 삭제되었습니다. ",
+"Edit address" => "주소 편집",
"Type" => "종류",
"PO Box" => "사서함",
-"Street address" => "번지",
-"Street and number" => "거리와 번호",
-"Extended" => "확장",
-"Apartment number etc." => "아파트 호수 그 외.",
-"City" => "도시",
+"Street and number" => "거리 이름 및 번지",
+"Extended" => "주소 2",
+"Apartment number etc." => "아파트 호수 등",
"Region" => "지역",
-"E.g. state or province" => "예를 들어 구 또는 도",
-"Zipcode" => "우편 번호",
-"Postal code" => "우편 번호",
-"Country" => "국가",
+"E.g. state or province" => "예: 주 또는 도",
+"Zipcode" => "우편번호",
"Addressbook" => "주소록",
-"Hon. prefixes" => "Hon. prefixes",
+"Hon. prefixes" => "존칭 접두사",
"Miss" => "Miss",
"Ms" => "Ms",
"Mr" => "Mr",
"Sir" => "Sir",
"Mrs" => "Mrs",
-"Dr" => "Dr",
-"Given name" => "Given name",
+"Dr" => "박사",
+"Given name" => "이름",
"Family name" => "성",
-"Hon. suffixes" => "Hon. suffixes",
+"Hon. suffixes" => "존칭 접미사",
"J.D." => "J.D.",
"M.D." => "M.D.",
"D.O." => "D.O.",
@@ -193,21 +268,20 @@
"Esq." => "Esq.",
"Jr." => "Jr.",
"Sn." => "Sn.",
-"Import a contacts file" => "연락처 파일 입력",
-"Please choose the addressbook" => "주소록을 선택해 주세요.",
+"Import a contacts file" => "연락처 파일 가져오기",
+"Please choose the addressbook" => "주소록 선택",
"create a new addressbook" => "새 주소록 만들기",
"Name of new addressbook" => "새 주소록 이름",
-"Importing contacts" => "연락처 입력",
-"
You have no contacts in your addressbook.
You can import VCF files by dragging them to the contacts list and either drop them on an addressbook to import into it, or on an empty spot to create a new addressbook and import into that. You can also import by clicking on the import button at the bottom of the list.
" => "
당신의 주소록에 연락처가 없습니다.
연락처 리스트에 드래그앤 드롭 함으로써 주소록에 VCF 파일을 가져올 수 있습니다, or on an empty spot to create a new addressbook and import into that. 당신은 리스트 상단에 위치한 가져오기 버튼을 누름으로써 가져올수 있습니다.
",
+"Importing contacts" => "연락처 가져오기",
+"
You have no contacts in your addressbook.
You can import VCF files by dragging them to the contacts list and either drop them on an addressbook to import into it, or on an empty spot to create a new addressbook and import into that. You can also import by clicking on the import button at the bottom of the list.
" => "
현재 주소록에 연락처가 없습니다.
주소록 상의 연락처 목록에 VCF 파일을 끌어다 놓아서 업로드하거나, 주소록 목록의 빈 곳에 끌어다 놓으면 주소록을 만들어서 업로드합니다. 목록 아래쪽의 가져오기 단추를 눌러서 가져올 수 있습니다.
",
"Select Address Books" => "주소록 선택",
-"CardDAV syncing addresses" => "CardDAV 주소 동기화",
+"CardDAV syncing addresses" => "CardDAV 동기화 주소",
"more info" => "더 많은 정보",
-"Primary address (Kontact et al)" => "기본 주소 (Kontact et al)",
+"Primary address (Kontact et al)" => "주 주소(Kontact 등)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "주소록",
-"Share" => "공유",
-"New Address Book" => "새 주소록",
+"New Address Book" => "새로운 주소록",
"Name" => "이름",
-"Description" => "종류",
+"Description" => "설명",
"Save" => "저장"
);
diff --git a/l10n/ku_IQ.php b/l10n/ku_IQ.php
index 99b7907f..dcadb05e 100644
--- a/l10n/ku_IQ.php
+++ b/l10n/ku_IQ.php
@@ -1,15 +1,16 @@
"پهڕگهکه ههبوون نیه:",
"Error" => "ههڵه",
+"Importing..." => "دههێنرێت...",
"Download" => "داگرتن",
"Settings" => "دهستكاری",
"Import" => "هێنان",
-"Export" => "ههناردن",
"Close" => "داخستن",
"Title" => "ناونیشان",
"Add" => "زیادکردن",
"Email" => "ئیمهیل",
"Address" => "ناونیشان",
+"Export" => "ههناردن",
"Name" => "ناو",
"Save" => "پاشکهوتکردن"
);
diff --git a/l10n/lb.php b/l10n/lb.php
index 2377d819..f5118af6 100644
--- a/l10n/lb.php
+++ b/l10n/lb.php
@@ -22,6 +22,8 @@
"Missing a temporary folder" => "Et feelt en temporären Dossier",
"Contacts" => "Kontakter",
"Error" => "Fehler",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.",
+"Upload Error" => "Fehler beim eroplueden",
"Result: " => "Resultat: ",
" imported, " => " importéiert, ",
"Download" => "Download",
@@ -43,12 +45,11 @@
"Contact" => "Kontakt",
"Settings" => "Astellungen",
"Import" => "Import",
-"Export" => "Export",
-"Back" => "Zeréck",
"Groups" => "Gruppen",
"Close" => "Zoumaachen",
"Additional names" => "Weider Nimm",
"Nickname" => "Spëtznumm",
+"Enter nickname" => "Gëff e Spëtznumm an",
"Title" => "Titel",
"Organization" => "Firma",
"Birthday" => "Gebuertsdag",
@@ -60,8 +61,11 @@
"Enter phone number" => "Telefonsnummer aginn",
"Delete phone number" => "Telefonsnummer läschen",
"View on map" => "Op da Kaart uweisen",
+"City" => "Staat",
+"Country" => "Land",
+"Share" => "Deelen",
+"Export" => "Export",
"Add Contact" => "Kontakt bäisetzen",
-"Enter nickname" => "Gëff e Spëtznumm an",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Edit groups" => "Gruppen editéieren",
"Edit address details" => "Adress Detailer editéieren",
@@ -70,10 +74,8 @@
"Type" => "Typ",
"PO Box" => "Postleetzuel",
"Extended" => "Erweidert",
-"City" => "Staat",
"Region" => "Regioun",
"Zipcode" => "Postleetzuel",
-"Country" => "Land",
"Addressbook" => "Adressbuch",
"Mr" => "M",
"Sir" => "Sir",
@@ -86,7 +88,6 @@
"Sn." => "Sn.",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressbicher ",
-"Share" => "Deelen",
"New Address Book" => "Neit Adressbuch",
"Name" => "Numm",
"Save" => "Späicheren"
diff --git a/l10n/lt_LT.php b/l10n/lt_LT.php
index 42ba9821..6671a155 100644
--- a/l10n/lt_LT.php
+++ b/l10n/lt_LT.php
@@ -15,6 +15,11 @@
"Missing a temporary folder" => "Nėra laikinojo katalogo",
"Contacts" => "Kontaktai",
"Error" => "Klaida",
+"Importing..." => "Importuojama...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas",
+"Upload Error" => "Įkėlimo klaida",
+"Upload too large" => "Įkėlimui failas per didelis",
+"Pending" => "Laukiantis",
"Download" => "Atsisiųsti",
"Edit" => "Keisti",
"Delete" => "Trinti",
@@ -33,11 +38,11 @@
"Contact" => "Kontaktas",
"Settings" => "Nustatymai",
"Import" => "Importuoti",
-"Export" => "Eksportuoti",
-"Back" => "Atgal",
+"OK" => "Gerai",
"Groups" => "Grupės",
"Close" => "Užverti",
"Nickname" => "Slapyvardis",
+"Enter nickname" => "Įveskite slapyvardį",
"Title" => "Pavadinimas",
"Organization" => "Organizacija",
"Birthday" => "Gimtadienis",
@@ -45,19 +50,19 @@
"Phone" => "Telefonas",
"Email" => "El. paštas",
"Address" => "Adresas",
+"City" => "Miestas",
+"Country" => "Šalis",
+"Share" => "Dalintis",
+"Export" => "Eksportuoti",
"Add Contact" => "Pridėti kontaktą",
-"Enter nickname" => "Įveskite slapyvardį",
"Download contact" => "Atsisųsti kontaktą",
"Delete contact" => "Ištrinti kontaktą",
"Type" => "Tipas",
"PO Box" => "Pašto dėžutė",
-"City" => "Miestas",
"Region" => "Regionas",
"Zipcode" => "Pašto indeksas",
-"Country" => "Šalis",
"Addressbook" => "Adresų knyga",
"Addressbooks" => "Adresų knygos",
-"Share" => "Dalintis",
"New Address Book" => "Nauja adresų knyga",
"Name" => "Pavadinimas",
"Save" => "Išsaugoti"
diff --git a/l10n/lv.php b/l10n/lv.php
index 3f409a3e..5ced3a31 100644
--- a/l10n/lv.php
+++ b/l10n/lv.php
@@ -3,6 +3,10 @@
"No file was uploaded" => "Neviens fails netika augšuplādēts",
"Missing a temporary folder" => "Trūkst pagaidu mapes",
"Error" => "Kļūme",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nav iespējams augšuplādēt jūsu failu, jo tāds jau eksistē vai arī failam nav izmēra (0 baiti)",
+"Upload Error" => "Augšuplādēšanas laikā radās kļūda",
+"Upload too large" => "Fails ir par lielu lai to augšuplādetu",
+"Pending" => "Gaida savu kārtu",
"Download" => "Lejuplādēt",
"Delete" => "Izdzēst",
"Other" => "Cits",
diff --git a/l10n/mk.php b/l10n/mk.php
index 4951da7e..85a215cf 100644
--- a/l10n/mk.php
+++ b/l10n/mk.php
@@ -39,9 +39,13 @@
"No file was uploaded. Unknown error" => "Ниту еден фајл не се вчита. Непозната грешка",
"Contacts" => "Контакти",
"Select photo" => "Одбери фотографија",
-"No files selected for upload." => "Ниту еден фајл не е избран за вчитување.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеката која се обидувате да ја префрлите ја надминува максималната големина дефинирана за пренос на овој сервер.",
"Error" => "Грешка",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти",
+"Upload Error" => "Грешка при преземање",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеката која се обидувате да ја префрлите ја надминува максималната големина дефинирана за пренос на овој сервер.",
+"Upload too large" => "Фајлот кој се вчитува е преголем",
+"Pending" => "Чека",
+"No files selected for upload." => "Ниту еден фајл не е избран за вчитување.",
"Result: " => "Резултат: ",
" imported, " => "увезено,",
" failed." => "неуспешно.",
@@ -65,8 +69,7 @@
"Contact" => "Контакт",
"Settings" => "Параметри",
"Import" => "Внеси",
-"Export" => "Извези",
-"Back" => "Назад",
+"OK" => "Во ред",
"Groups" => "Групи",
"Close" => "Затвои",
"Add contact" => "Додади контакт",
@@ -76,6 +79,7 @@
"Select photo from ownCloud" => "Изберете фотографија од ownCloud",
"Additional names" => "Дополнителни имиња",
"Nickname" => "Прекар",
+"Enter nickname" => "Внеси прекар",
"Title" => "Наслов",
"Organization" => "Организација",
"Birthday" => "Роденден",
@@ -91,11 +95,14 @@
"Enter phone number" => "Внесете телефонски број",
"Delete phone number" => "Избриши телефонски број",
"View on map" => "Погледајте на мапа",
+"City" => "Град",
+"Country" => "Држава",
+"Share" => "Сподели",
+"Export" => "Извези",
"Add Contact" => "Додади контакт",
"Drop photo to upload" => "Довлечкај фотографија за да се подигне",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Прилагоден формат, кратко име, цело име, обратно или обратно со запирка",
"Edit name details" => "Уреди детали за име",
-"Enter nickname" => "Внеси прекар",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Одвоете ги групите со запирка",
"Edit groups" => "Уреди групи",
@@ -110,10 +117,8 @@
"Type" => "Тип",
"PO Box" => "Поштенски фах",
"Extended" => "Дополнително",
-"City" => "Град",
"Region" => "Регион",
"Zipcode" => "Поштенски код",
-"Country" => "Држава",
"Addressbook" => "Адресар",
"Hon. prefixes" => "Префикси за титула",
"Miss" => "Г-ца",
@@ -143,7 +148,6 @@
"Primary address (Kontact et al)" => "Примарна адреса",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Адресари",
-"Share" => "Сподели",
"New Address Book" => "Нов адресар",
"Name" => "Име",
"Save" => "Сними"
diff --git a/l10n/ms_MY.php b/l10n/ms_MY.php
index 69c6c45d..49cc5129 100644
--- a/l10n/ms_MY.php
+++ b/l10n/ms_MY.php
@@ -39,11 +39,15 @@
"No file was uploaded. Unknown error" => "Tiada fail dimuatnaik. Ralat tidak diketahui.",
"Contacts" => "Hubungan-hubungan",
"Select photo" => "Pilih foto",
-"No files selected for upload." => "Tiada fail dipilih untuk muatnaik.",
+"Error" => "Ralat",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes",
+"Upload Error" => "Muat naik ralat",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang ingin dimuatnaik melebihi saiz yang dibenarkan.",
+"Upload too large" => "Muatnaik terlalu besar",
+"Pending" => "Dalam proses",
+"No files selected for upload." => "Tiada fail dipilih untuk muatnaik.",
"Enter name" => "Masukkan nama",
"Enter description" => "Masukkan keterangan",
-"Error" => "Ralat",
"Result: " => "Hasil: ",
" imported, " => " import, ",
" failed." => " gagal.",
@@ -68,8 +72,7 @@
"Contact" => "Hubungan",
"Settings" => "Tetapan",
"Import" => "Import",
-"Export" => "Export",
-"Back" => "Kembali",
+"OK" => "OK",
"Groups" => "Kumpulan",
"Close" => "Tutup",
"Next addressbook" => "Buku alamat seterusnya",
@@ -81,6 +84,7 @@
"Select photo from ownCloud" => "Pilih foto dari ownCloud",
"Additional names" => "Nama tambahan",
"Nickname" => "Nama Samaran",
+"Enter nickname" => "Masukkan nama samaran",
"Organization" => "Organisasi",
"Birthday" => "Hari lahir",
"Add" => "Tambah",
@@ -95,11 +99,14 @@
"Enter phone number" => "Masukkan nombor telefon",
"Delete phone number" => "Padam nombor telefon",
"View on map" => "Lihat pada peta",
+"City" => "bandar",
+"Country" => "Negara",
+"Share" => "Kongsi",
+"Export" => "Export",
"Add Contact" => "Tambah kenalan",
"Drop photo to upload" => "Letak foto disini untuk muatnaik",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format bebas, Nama pendek, Nama penuh, Unduran dengan koma",
"Edit name details" => "Ubah butiran nama",
-"Enter nickname" => "Masukkan nama samaran",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Asingkan kumpulan dengan koma",
"Edit groups" => "Ubah kumpulan",
@@ -114,10 +121,8 @@
"Type" => "Jenis",
"PO Box" => "Peti surat",
"Extended" => "Sambungan",
-"City" => "bandar",
"Region" => "Wilayah",
"Zipcode" => "Poskod",
-"Country" => "Negara",
"Addressbook" => "Buku alamat",
"Hon. prefixes" => "Awalan nama",
"Miss" => "Cik",
@@ -148,7 +153,6 @@
"Primary address (Kontact et al)" => "Alamat utama",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Senarai Buku Alamat",
-"Share" => "Kongsi",
"New Address Book" => "Buku Alamat Baru",
"Name" => "Nama",
"Description" => "Keterangan",
diff --git a/l10n/nb_NO.php b/l10n/nb_NO.php
index 3f9fd9f0..11b0e4d2 100644
--- a/l10n/nb_NO.php
+++ b/l10n/nb_NO.php
@@ -38,9 +38,14 @@
"No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.",
"Contacts" => "Kontakter",
"Select photo" => "Velg bilde",
-"No files selected for upload." => "Ingen filer valgt for opplasting.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du prøver å laste opp er for stor.",
"Error" => "Feil",
+"Importing..." => "Importerer...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes",
+"Upload Error" => "Opplasting feilet",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du prøver å laste opp er for stor.",
+"Upload too large" => "Filen er for stor",
+"Pending" => "Ventende",
+"No files selected for upload." => "Ingen filer valgt for opplasting.",
"Result: " => "Resultat:",
" imported, " => "importert,",
" failed." => "feilet.",
@@ -72,8 +77,7 @@
"There was an error deleting this contact." => "Det oppstod en feil ved sletting av denne kontakten",
"Settings" => "Innstillinger",
"Import" => "Importer",
-"Export" => "Eksporter",
-"Back" => "Tilbake",
+"OK" => "OK",
"Groups" => "Grupper",
"Close" => "Lukk",
"Keyboard shortcuts" => "Tastatur snarveier",
@@ -91,6 +95,7 @@
"Select photo from ownCloud" => "Velg bilde fra ownCloud",
"Additional names" => "Ev. mellomnavn",
"Nickname" => "Kallenavn",
+"Enter nickname" => "Skriv inn kallenavn",
"Title" => "Tittel",
"Organization" => "Organisasjon",
"Birthday" => "Bursdag",
@@ -107,10 +112,13 @@
"Enter phone number" => "Skriv inn telefonnummer",
"Delete phone number" => "Fjern telefonnummer",
"View on map" => "Se på kart",
+"City" => "By",
+"Country" => "Land",
+"Share" => "Del",
+"Export" => "Eksporter",
"Add Contact" => "Ny kontakt",
"Drop photo to upload" => "Dra bilder hit for å laste opp",
"Edit name details" => "Endre detaljer rundt navn",
-"Enter nickname" => "Skriv inn kallenavn",
"http://www.somesite.com" => "http://www.domene.no",
"dd-mm-yyyy" => "dd-mm-åååå",
"Separate groups with commas" => "Skill gruppene med komma",
@@ -126,10 +134,8 @@
"Type" => "Type",
"PO Box" => "Postboks",
"Extended" => "Utvidet",
-"City" => "By",
"Region" => "Området",
"Zipcode" => "Postnummer",
-"Country" => "Land",
"Addressbook" => "Adressebok",
"Hon. prefixes" => "Ærestitler",
"Miss" => "Frøken",
@@ -152,7 +158,6 @@
"Primary address (Kontact et al)" => "Primær adresse (kontakt osv)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressebøker",
-"Share" => "Del",
"New Address Book" => "Ny adressebok",
"Name" => "Navn",
"Save" => "Lagre"
diff --git a/l10n/nl.php b/l10n/nl.php
index 575b8ba4..951d8973 100644
--- a/l10n/nl.php
+++ b/l10n/nl.php
@@ -67,15 +67,22 @@
"Error adding to group." => "Fout bij het toevoegen aan de groep.",
"Error removing from group." => "Fout bij het verwijderen uit de groep.",
"There was an error opening a mail composer." => "Er is iets misgegaan tijdens het openen van een email programma.",
-"No files selected for upload." => "Geen bestanden geselecteerd voor upload.",
+"Not all files uploaded. Retrying..." => "Nog niet alle bestanden zijn ge-upload. Nogmaals proberen...",
+"Something went wrong with the upload, please retry." => "Er is iets fout gegaan met het uploaden. Probeer het nog eens.",
+"Error" => "Fout",
+"Importing..." => "Importeren...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Het lukt niet om uw bestand te uploaded, omdat het een folder of 0 bytes is",
+"Upload Error" => "Upload fout",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Het bestand dat u probeert te uploaden overschrijdt de maximale bestand grootte voor bestand uploads voor deze server.",
+"Upload too large" => "Upload is te groot",
+"Pending" => "In behandeling",
+"No files selected for upload." => "Geen bestanden geselecteerd voor upload.",
"Edit profile picture" => "Bewerk profielafbeelding",
"Error loading profile picture." => "Fout profiel plaatje kan niet worden geladen.",
"Enter name" => "Naam",
"Enter description" => "Beschrijving",
"Select addressbook" => "Kies een adresboek",
"The address book name cannot be empty." => "De naam van het adresboek mag niet leeg zijn.",
-"Error" => "Fout",
"Is this correct?" => "Is dit correct?",
"There was an unknown error when trying to delete this contact" => "Er is een onbekende fout opgetreden bij het verwijderen van deze contactpersoon",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Enkele contacten zijn gemarkeerd om verwijderd te worden, maar zijn nog niet verwijderd. Wacht totdat ze zijn verwijderd.",
@@ -137,17 +144,15 @@
"HomePage" => "HomePage",
"New Group" => "Nieuwe Groep",
"Settings" => "Instellingen",
-"Share" => "Deel",
"Import" => "Importeer",
"Import into:" => "Importeer naar:",
-"Export" => "Exporteer",
+"OK" => "OK",
"(De-)select all" => "(De-)selecteer alle",
"New Contact" => "Nieuw Contact",
-"Back" => "Terug",
"Download Contact" => "Download Contact",
-"Delete Contact" => "Verwijder Contact",
"Groups" => "Groepen",
"Favorite" => "Favoriet",
+"Delete Contact" => "Verwijder Contact",
"Close" => "Sluiten",
"Keyboard shortcuts" => "Sneltoetsen",
"Navigation" => "Navigatie",
@@ -173,6 +178,7 @@
"Additional names" => "Extra namen",
"Last name" => "Achternaam",
"Nickname" => "Roepnaam",
+"Enter nickname" => "Voer roepnaam in",
"Title" => "Titel",
"Organization" => "Organisatie",
"Birthday" => "Verjaardag",
@@ -195,14 +201,19 @@
"Delete URL" => "Verwijder URL",
"View on map" => "Bekijk op een kaart",
"Delete address" => "Verwijder adres",
+"Street address" => "Adres",
"12345" => "12345",
+"Postal code" => "Postcode",
+"City" => "Stad",
+"Country" => "Land",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Verwijder IM",
+"Share" => "Deel",
+"Export" => "Exporteer",
"Add Contact" => "Contact toevoegen",
"Drop photo to upload" => "Verwijder foto uit upload",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formateer aangepast, Korte naam, Volledige naam, Achteruit of Achteruit met komma",
"Edit name details" => "Wijzig naam gegevens",
-"Enter nickname" => "Voer roepnaam in",
"http://www.somesite.com" => "http://www.willekeurigesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Gebruik komma bij meerder groepen",
@@ -217,16 +228,12 @@
"Edit address" => "Wijzig adres",
"Type" => "Type",
"PO Box" => "Postbus",
-"Street address" => "Adres",
"Street and number" => "Straat en nummer",
"Extended" => "Uitgebreide",
"Apartment number etc." => "Apartement nummer",
-"City" => "Stad",
"Region" => "Regio",
"E.g. state or province" => "Provincie",
"Zipcode" => "Postcode",
-"Postal code" => "Postcode",
-"Country" => "Land",
"Addressbook" => "Adresboek",
"Hon. prefixes" => "Hon. prefixes",
"Miss" => "Mw",
diff --git a/l10n/nn_NO.php b/l10n/nn_NO.php
index 3e93480b..26160faf 100644
--- a/l10n/nn_NO.php
+++ b/l10n/nn_NO.php
@@ -9,6 +9,7 @@
"Missing a temporary folder" => "Manglar ei mellombels mappe",
"Contacts" => "Kotaktar",
"Error" => "Feil",
+"Upload too large" => "For stor opplasting",
"Download" => "Last ned",
"Edit" => "Endra",
"Delete" => "Slett",
@@ -25,8 +26,6 @@
"Contact" => "Kontakt",
"Settings" => "Innstillingar",
"Import" => "Importer",
-"Export" => "Eksporter",
-"Back" => "Tilbake",
"Groups" => "Grupper",
"Close" => "Lukk",
"Title" => "Tittel",
@@ -37,16 +36,17 @@
"Email" => "Epost",
"Address" => "Adresse",
"Preferred" => "Føretrekt",
+"City" => "Stad",
+"Country" => "Land",
+"Export" => "Eksporter",
"Add Contact" => "Legg til kontakt",
"Download contact" => "Last ned kontakt",
"Delete contact" => "Slett kontakt",
"Type" => "Skriv",
"PO Box" => "Postboks",
"Extended" => "Utvida",
-"City" => "Stad",
"Region" => "Region/fylke",
"Zipcode" => "Postnummer",
-"Country" => "Land",
"Addressbook" => "Adressebok",
"Addressbooks" => "Adressebøker",
"New Address Book" => "Ny adressebok",
diff --git a/l10n/oc.php b/l10n/oc.php
index 3aabc476..b27773d6 100644
--- a/l10n/oc.php
+++ b/l10n/oc.php
@@ -8,6 +8,10 @@
"Missing a temporary folder" => "Un dorsièr temporari manca",
"Contacts" => "Contactes",
"Error" => "Error",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet.",
+"Upload Error" => "Error d'amontcargar",
+"Upload too large" => "Amontcargament tròp gròs",
+"Pending" => "Al esperar",
"Download" => "Avalcarga",
"Edit" => "Editar",
"Delete" => "Escafa",
@@ -16,16 +20,17 @@
"Other" => "Autres",
"Settings" => "Configuracion",
"Import" => "Importa",
-"Export" => "Exporta",
+"OK" => "D'accòrdi",
"Groups" => "Grops",
"Title" => "Títol",
"Birthday" => "Anniversari",
"Add" => "Ajusta",
"Email" => "Corrièl",
+"Share" => "Parteja",
+"Export" => "Exporta",
"more info" => "mai d'entresenhes",
"Primary address (Kontact et al)" => "Adreiças primarias (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
-"Share" => "Parteja",
"Name" => "Nom",
"Save" => "Enregistra"
);
diff --git a/l10n/pl.php b/l10n/pl.php
index 370f77ca..05eb78b8 100644
--- a/l10n/pl.php
+++ b/l10n/pl.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Błąd dodania do grupy.",
"Error removing from group." => "Błąd usunięcia z grupy.",
"There was an error opening a mail composer." => "Wystąpił błąd podczas otwierania edytora.",
+"Not all files uploaded. Retrying..." => "Nie wszystkie pliki załadowane. Ponowna próba...",
+"Something went wrong with the upload, please retry." => "Coś poszło nie tak z ładowanie, proszę spróbować ponownie.",
+"Error" => "Błąd",
+"Importing..." => "Importowanie...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nie można przesłać pliku, ponieważ to jest katalog lub ma 0 bajtów",
+"Upload Error" => "Błąd ładowania",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Plik, który próbujesz wysłać przekracza maksymalny rozmiar pliku przekazywania na tym serwerze.",
+"Upload too large" => "Załadunek za duży",
+"Pending" => "W toku",
"Add group" => "Dodaj drupę",
"No files selected for upload." => "Żadne pliki nie zostały zaznaczone do wysłania.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Plik, który próbujesz wysłać przekracza maksymalny rozmiar pliku przekazywania na tym serwerze.",
"Edit profile picture" => "Edytuj zdjęcie profilu",
"Error loading profile picture." => "Błąd wczytywania zdjęcia profilu.",
"Enter name" => "Wpisz nazwę",
"Enter description" => "Wprowadź opis",
"Select addressbook" => "Wybierz książkę adresową",
"The address book name cannot be empty." => "Nazwa książki adresowej nie może być pusta.",
-"Error" => "Błąd",
"Is this correct?" => "Jest to prawidłowe?",
"There was an unknown error when trying to delete this contact" => "Wystąpił nieznany błąd podczas próby usunięcia tego kontaktu",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Niektóre kontakty są zaznaczone do usunięcia, ale nie są usunięte jeszcze. Proszę czekać na ich usunięcie.",
@@ -138,17 +145,15 @@
"HomePage" => "Strona domowa",
"New Group" => "Nowa grupa",
"Settings" => "Ustawienia",
-"Share" => "Udostępnij",
"Import" => "Import",
"Import into:" => "Importuj do:",
-"Export" => "Export",
+"OK" => "OK",
"(De-)select all" => "Odznacz wszystkie",
"New Contact" => "Nowy kontakt",
-"Back" => "Wróć",
"Download Contact" => "Pobierz kontakt",
-"Delete Contact" => "Usuń kontakt",
"Groups" => "Grupy",
"Favorite" => "Ulubione",
+"Delete Contact" => "Usuń kontakt",
"Close" => "Zamknij",
"Keyboard shortcuts" => "Skróty klawiatury",
"Navigation" => "Nawigacja",
@@ -174,6 +179,7 @@
"Additional names" => "Dodatkowe nazwy",
"Last name" => "Nazwisko",
"Nickname" => "Nazwa",
+"Enter nickname" => "Wpisz nazwę",
"Title" => "Tytuł",
"Organization" => "Organizacja",
"Birthday" => "Urodziny",
@@ -197,17 +203,22 @@
"View on map" => "Zobacz na mapie",
"Delete address" => "Usuń adres",
"1 Main Street" => "1 główna ulica",
+"Street address" => "Ulica",
"12345" => "12345",
+"Postal code" => "Kod pocztowy",
"Your city" => "Twoje miasto",
+"City" => "Miasto",
"Some region" => "Region",
"Your country" => "Twoje państwo",
+"Country" => "Kraj",
"Instant Messenger" => "Komunikator",
"Delete IM" => "Usuń Komunikator",
+"Share" => "Udostępnij",
+"Export" => "Export",
"Add Contact" => "Dodaj kontakt",
"Drop photo to upload" => "Upuść fotografię aby załadować",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format niestandardowy, krótkie nazwy, imię i nazwisko, Odwracać lub Odwrócić z przecinkiem",
"Edit name details" => "Edytuj szczegóły nazwy",
-"Enter nickname" => "Wpisz nazwę",
"http://www.somesite.com" => "http://www.jakasstrona.pl",
"dd-mm-yyyy" => "dd-mm-rrrr",
"Separate groups with commas" => "Oddziel grupy przecinkami",
@@ -222,16 +233,12 @@
"Edit address" => "Edytuj adres",
"Type" => "Typ",
"PO Box" => "Skrzynka pocztowa",
-"Street address" => "Ulica",
"Street and number" => "Ulica i numer",
"Extended" => "Rozszerzony",
"Apartment number etc." => "Numer lokalu",
-"City" => "Miasto",
"Region" => "Region",
"E.g. state or province" => "Np. stanu lub prowincji",
"Zipcode" => "Kod pocztowy",
-"Postal code" => "Kod pocztowy",
-"Country" => "Kraj",
"Addressbook" => "Książka adresowa",
"Hon. prefixes" => "Prefiksy Hon.",
"Miss" => "Panna",
diff --git a/l10n/pt_BR.php b/l10n/pt_BR.php
index a4588e7a..c9b57027 100644
--- a/l10n/pt_BR.php
+++ b/l10n/pt_BR.php
@@ -54,13 +54,20 @@
"Shared by {owner}" => "Compartilhado por {owner}",
"Add group..." => "Adicionar grupo...",
"Select photo" => "Selecione foto",
-"No files selected for upload." => "Nenhum arquivo selecionado para carregar.",
+"Not all files uploaded. Retrying..." => "Nem todos os arquivos foram enviados. Tentando novamente...",
+"Something went wrong with the upload, please retry." => "Algo errado ocorreu com o envio, por favor tente novamente.",
+"Error" => "Erro",
+"Importing..." => "Importando...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Incapaz de enviar seu arquivo pois ele é um diretório, ou ele tem 0 bytes",
+"Upload Error" => "Erro de Upload",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O arquivo que você está tentando carregar excede o tamanho máximo para este servidor.",
+"Upload too large" => "Upload muito grande",
+"Pending" => "Pendente",
+"No files selected for upload." => "Nenhum arquivo selecionado para carregar.",
"Error loading profile picture." => "Erro ao carregar imagem de perfil.",
"Enter name" => "Digite o nome",
"Enter description" => "Digite a descrição",
"The address book name cannot be empty." => "O nome da agenda não pode ficar em branco.",
-"Error" => "Erro",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alguns contatos foram marcados para remoção, mas não foram removidos ainda. Por favor aguarde a remoção desses contatos.",
"Result: " => "Resultado:",
" imported, " => "importado,",
@@ -114,10 +121,8 @@
"You do not have the permissions to delete this contact." => "Você não tem permissão para remover esse contato.",
"There was an error deleting this contact." => "Houve um erro ao remover esse contato.",
"Settings" => "Ajustes",
-"Share" => "Compartilhar",
"Import" => "Importar",
-"Export" => "Exportar",
-"Back" => "Voltar",
+"OK" => "OK",
"Groups" => "Grupos",
"Close" => "Fechar.",
"Keyboard shortcuts" => "Atalhos do teclado",
@@ -139,6 +144,7 @@
"Select photo from ownCloud" => "Selecionar foto do OwnCloud",
"Additional names" => "Segundo Nome",
"Nickname" => "Apelido",
+"Enter nickname" => "Digite o apelido",
"Title" => "Título",
"Organization" => "Organização",
"Birthday" => "Aniversário",
@@ -157,13 +163,18 @@
"Delete phone number" => "Remover número de telefone",
"Go to web site" => "Ir para web site",
"View on map" => "Visualizar no mapa",
+"Street address" => "Endereço da rua",
+"Postal code" => "Código postal",
+"City" => "Cidade",
+"Country" => "País",
"Instant Messenger" => "Mensageiro Instantâneo",
"Delete IM" => "Delete IM",
+"Share" => "Compartilhar",
+"Export" => "Exportar",
"Add Contact" => "Adicionar Contato",
"Drop photo to upload" => "Arraste a foto para ser carregada",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, Nome curto, Nome completo, Inverter ou Inverter com vírgula",
"Edit name details" => "Editar detalhes do nome",
-"Enter nickname" => "Digite o apelido",
"http://www.somesite.com" => "http://www.qualquersite.com",
"dd-mm-yyyy" => "dd-mm-aaaa",
"Separate groups with commas" => "Separe grupos por virgula",
@@ -178,16 +189,12 @@
"Edit address" => "Editar endereço",
"Type" => "Digite",
"PO Box" => "Caixa Postal",
-"Street address" => "Endereço da rua",
"Street and number" => "Logradouro e número",
"Extended" => "Estendido",
"Apartment number etc." => "Número do apartamento, etc.",
-"City" => "Cidade",
"Region" => "Região",
"E.g. state or province" => "Estado ou província",
"Zipcode" => "CEP",
-"Postal code" => "Código postal",
-"Country" => "País",
"Addressbook" => "Agenda de Endereço",
"Hon. prefixes" => "Exmo. Prefixos ",
"Miss" => "Senhorita",
diff --git a/l10n/pt_PT.php b/l10n/pt_PT.php
index 84e10426..78216ec2 100644
--- a/l10n/pt_PT.php
+++ b/l10n/pt_PT.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "O contacto não está neste grupo",
"Contacts are not in this group." => "Os contactos não estão neste grupo",
"A group named {group} already exists" => "Um grupo com o nome {group} já existe",
+"You can drag groups to\narrange them as you like." => "Pode arrastar grupos para\ncolocá-los como desejar.",
"All" => "Todos",
"Favorites" => "Favoritos",
"Shared by {owner}" => "Partilhado por {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Erro a adicionar ao grupo.",
"Error removing from group." => "Erro a remover do grupo.",
"There was an error opening a mail composer." => "Houve um erro a abrir o editor de e-mail.",
+"Deleting done. Click here to cancel reloading." => "A eliminação foi concluída com sucesso. Clique aqui para cancelar o refrescamento.",
+"Add address book" => "Adicionar livro de endereços.",
+"Import done. Click here to cancel reloading." => "Importação concluída com sucesso. Clique aqui para cancelar o refrescamento.",
+"Not all files uploaded. Retrying..." => "Nem todos os ficheiros foram enviados. A tentar de novo...",
+"Something went wrong with the upload, please retry." => "Algo correu mal ao enviar, por favor tente de novo.",
+"Error" => "Erro",
+"Importing from {filename}..." => "A importar de {filename}...",
+"{success} imported, {failed} failed." => "{sucess} importados, {failed} não importados.",
+"Importing..." => "A importar...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes",
+"Upload Error" => "Erro no envio",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O tamanho do ficheiro que está a tentar carregar ultrapassa o limite máximo definido para ficheiros no servidor.",
+"Upload too large" => "Upload muito grande",
+"Pending" => "Pendente",
"Add group" => "Adicionar grupo",
"No files selected for upload." => "Nenhum ficheiro seleccionado para enviar.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O tamanho do ficheiro que está a tentar carregar ultrapassa o limite máximo definido para ficheiros no servidor.",
"Edit profile picture" => "Editar a fotografia de perfil.",
"Error loading profile picture." => "Erro ao carregar imagem de perfil.",
"Enter name" => "Introduzir nome",
"Enter description" => "Introduzir descrição",
"Select addressbook" => "Selecionar livro de endereços",
"The address book name cannot be empty." => "O nome do livro de endereços não pode estar vazio.",
-"Error" => "Erro",
"Is this correct?" => "Isto está correcto?",
"There was an unknown error when trying to delete this contact" => "Houve um erro desconhecido enquanto tentava eliminar este contacto.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alguns contactos forma marcados para apagar, mas ainda não foram apagados. Por favor espere que ele sejam apagados.",
@@ -138,17 +151,18 @@
"HomePage" => "Página Inicial",
"New Group" => "Novo Grupo",
"Settings" => "Configurações",
-"Share" => "Partilhar",
+"Address books" => "Livro de endereços.",
"Import" => "Importar",
+"Select files to import" => "Seleccione ficheiros para importar.",
+"Select files" => "Seleccione os ficheiros.",
"Import into:" => "Importar para:",
-"Export" => "Exportar",
+"OK" => "OK",
"(De-)select all" => "(Des)seleccionar todos",
"New Contact" => "Novo Contacto",
-"Back" => "Voltar",
"Download Contact" => "Transferir o contacto",
-"Delete Contact" => "Eliminar o Contacto",
"Groups" => "Grupos",
"Favorite" => "Favorito",
+"Delete Contact" => "Eliminar o Contacto",
"Close" => "Fechar",
"Keyboard shortcuts" => "Atalhos de teclado",
"Navigation" => "Navegação",
@@ -174,6 +188,7 @@
"Additional names" => "Nomes adicionais",
"Last name" => "Ultimo Nome",
"Nickname" => "Alcunha",
+"Enter nickname" => "Introduza alcunha",
"Title" => "Titulo ",
"Organization" => "Organização",
"Birthday" => "Aniversário",
@@ -197,17 +212,23 @@
"View on map" => "Ver no mapa",
"Delete address" => "Eliminar endereço",
"1 Main Street" => "1 Rua Princial",
+"Street address" => "Endereço da Rua",
"12345" => "12345",
+"Postal code" => "Código Postal",
"Your city" => "Cidade",
+"City" => "Cidade",
"Some region" => "Região (Distrito)",
"Your country" => "País",
+"Country" => "País",
"Instant Messenger" => "Mensageiro instantâneo",
"Delete IM" => "Apagar mensageiro instantâneo (IM)",
+"Share" => "Partilhar",
+"Export" => "Exportar",
+"CardDAV link" => "Link CardDAV",
"Add Contact" => "Adicionar Contacto",
"Drop photo to upload" => "Arraste e solte fotos para carregar",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formate personalizado, Nome curto, Nome completo, Reverso ou Reverso com virgula",
"Edit name details" => "Editar detalhes do nome",
-"Enter nickname" => "Introduza alcunha",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-aaaa",
"Separate groups with commas" => "Separe os grupos usando virgulas",
@@ -222,16 +243,12 @@
"Edit address" => "Editar endereço",
"Type" => "Tipo",
"PO Box" => "Apartado",
-"Street address" => "Endereço da Rua",
"Street and number" => "Rua e número",
"Extended" => "Extendido",
"Apartment number etc." => "Número de Apartamento, etc.",
-"City" => "Cidade",
"Region" => "Região",
"E.g. state or province" => "Por Ex. Estado ou província",
"Zipcode" => "Código Postal",
-"Postal code" => "Código Postal",
-"Country" => "País",
"Addressbook" => "Livro de endereços",
"Hon. prefixes" => "Prefixos honoráveis",
"Miss" => "Menina",
diff --git a/l10n/ro.php b/l10n/ro.php
index 2a6e8839..abde4bd3 100644
--- a/l10n/ro.php
+++ b/l10n/ro.php
@@ -27,9 +27,14 @@
"Missing a temporary folder" => "Lipsește un director temporar",
"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută",
"Contacts" => "Contacte",
+"Error" => "Eroare",
+"Importing..." => "Se importă...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.",
+"Upload Error" => "Eroare la încărcare",
+"Upload too large" => "Fișierul încărcat este prea mare",
+"Pending" => "În așteptare",
"Enter name" => "Specifică nume",
"Enter description" => "Specifică descriere",
-"Error" => "Eroare",
"Result: " => "Rezultat:",
" imported, " => "importat,",
"Show CardDav link" => "Arată legătură CardDav",
@@ -53,8 +58,7 @@
"Contact" => "Contact",
"Settings" => "Setări",
"Import" => "Importă",
-"Export" => "Exportă",
-"Back" => "Înapoi",
+"OK" => "OK",
"Groups" => "Grupuri",
"Close" => "Închide",
"Keyboard shortcuts" => "Scurtături din tastatură",
@@ -70,6 +74,7 @@
"Upload new photo" => "Încarcă poză nouă",
"Select photo from ownCloud" => "Selectează poză din ownCloud",
"Nickname" => "Pseudonim",
+"Enter nickname" => "Introdu pseudonim",
"Title" => "Titlu",
"Organization" => "Organizație",
"Birthday" => "Zi de naștere",
@@ -87,9 +92,14 @@
"Delete phone number" => "Șterge numărul de telefon",
"Go to web site" => "Vizitează site-ul",
"View on map" => "Vezi pe hartă",
+"Street address" => "Adresa",
+"Postal code" => "Codul poștal",
+"City" => "Oraș",
+"Country" => "Țară",
+"Share" => "Partajează",
+"Export" => "Exportă",
"Add Contact" => "Adaugă contact",
"Edit name details" => "Introdu detalii despre nume",
-"Enter nickname" => "Introdu pseudonim",
"dd-mm-yyyy" => "zz-ll-aaaa",
"Separate groups with commas" => "Separă grupurile cu virgule",
"Edit groups" => "Editează grupuri",
@@ -103,16 +113,12 @@
"Edit address" => "Editeză adresă",
"Type" => "Tip",
"PO Box" => "CP",
-"Street address" => "Adresa",
"Street and number" => "Stradă și număr",
"Extended" => "Extins",
"Apartment number etc." => "Apartament etc.",
-"City" => "Oraș",
"Region" => "Regiune",
"E.g. state or province" => "Ex. județ sau provincie",
"Zipcode" => "Cod poștal",
-"Postal code" => "Codul poștal",
-"Country" => "Țară",
"Addressbook" => "Agendă",
"Ms" => "Dna.",
"Mr" => "Dl.",
@@ -124,7 +130,6 @@
"Primary address (Kontact et al)" => "Adresa primară (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Agende",
-"Share" => "Partajează",
"New Address Book" => "Agendă nouă",
"Name" => "Nume",
"Description" => "Descriere",
diff --git a/l10n/ru.php b/l10n/ru.php
index 8eccac2c..6ac22d7a 100644
--- a/l10n/ru.php
+++ b/l10n/ru.php
@@ -41,15 +41,22 @@
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
"Contacts" => "Контакты",
"Select photo" => "Выберите фото",
+"Not all files uploaded. Retrying..." => "Не все файлы были загружены. Повторяю...",
+"Something went wrong with the upload, please retry." => "В процессе загрузки что-то пошло не так, пожалуйста загрузите повторно.",
+"Error" => "Ошибка",
+"Importing..." => "Импортирую...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Файл не был загружен: его размер 0 байт либо это не файл, а директория.",
+"Upload Error" => "Ошибка при загрузке",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Файл, который вы пытаетесь загрузить превышать максимальный размер загружаемых файлов на этом сервере.",
+"Upload too large" => "Файл слишком велик",
+"Pending" => "Ожидание",
"Add group" => "Добавить группу",
"No files selected for upload." => "Нет выбранных файлов для загрузки.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Файл, который вы пытаетесь загрузить превышать максимальный размер загружаемых файлов на этом сервере.",
"Edit profile picture" => "Редактировать изображение профиля",
"Error loading profile picture." => "Ошибка загрузки изображения профиля.",
"Enter name" => "Введите имя",
"Enter description" => "Ввдите описание",
"The address book name cannot be empty." => "Имя адресной книги не может быть пустым.",
-"Error" => "Ошибка",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Некоторые контакты помечены на удаление, но ещё не удалены. Подождите, пока они удаляются.",
"Result: " => "Результат:",
" imported, " => "импортировано, ",
@@ -104,11 +111,10 @@
"There was an error deleting this contact." => "Ошибка при удалении контакта.",
"Settings" => "Настройки",
"Import" => "Импорт",
-"Export" => "Экспорт",
+"OK" => "ОК",
"New Contact" => "Новый контакт",
-"Back" => "Назад",
-"Delete Contact" => "Удалить контакт",
"Groups" => "Группы",
+"Delete Contact" => "Удалить контакт",
"Close" => "Закрыть",
"Keyboard shortcuts" => "Горячие клавиши",
"Navigation" => "Навигация",
@@ -129,6 +135,7 @@
"Select photo from ownCloud" => "Выбрать фотографию из ownCloud",
"Additional names" => "Отчество",
"Nickname" => "Псевдоним",
+"Enter nickname" => "Введите псевдоним",
"Title" => "Заголовок",
"Organization" => "Организация",
"Birthday" => "День рождения",
@@ -148,13 +155,18 @@
"Go to web site" => "Перейти на веб-сайт",
"Delete URL" => "Удалить URL",
"View on map" => "Показать на карте",
+"Street address" => "Улица",
+"Postal code" => "Почтовый индекс",
+"City" => "Город",
+"Country" => "Страна",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Удалить IM",
+"Share" => "Опубликовать",
+"Export" => "Экспорт",
"Add Contact" => "Добавить Контакт",
"Drop photo to upload" => "Перетяните фотографии для загрузки",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Формат Краткое имя, Полное имя",
"Edit name details" => "Изменить детали имени",
-"Enter nickname" => "Введите псевдоним",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Разделить группы запятыми",
@@ -169,16 +181,12 @@
"Edit address" => "Редактировать адрес",
"Type" => "Тип",
"PO Box" => "АО",
-"Street address" => "Улица",
"Street and number" => "Улица и дом",
"Extended" => "Расширенный",
"Apartment number etc." => "Номер квартиры и т.д.",
-"City" => "Город",
"Region" => "Область",
"E.g. state or province" => "Например, область или район",
"Zipcode" => "Почтовый индекс",
-"Postal code" => "Почтовый индекс",
-"Country" => "Страна",
"Addressbook" => "Адресная книга",
"Hon. prefixes" => "Префикс имени",
"Miss" => "Мисс",
@@ -210,7 +218,6 @@
"Primary address (Kontact et al)" => "Первичный адрес (Kontact и др.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Адресные книги",
-"Share" => "Опубликовать",
"New Address Book" => "Новая адресная книга",
"Name" => "Имя",
"Description" => "Описание",
diff --git a/l10n/ru_RU.php b/l10n/ru_RU.php
index 3af63b12..2195564b 100644
--- a/l10n/ru_RU.php
+++ b/l10n/ru_RU.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Ошибка добавления в группу.",
"Error removing from group." => "Ошибка удаления из группы.",
"There was an error opening a mail composer." => "Произошла ошибка при открытии окна составления сообщения.",
+"Not all files uploaded. Retrying..." => "Не все файлы загружены. Попробуйте снова..",
+"Something went wrong with the upload, please retry." => "Что-то пошло не так при загрузке, пожалуйста, попробуйте снова.",
+"Error" => "Ошибка",
+"Importing..." => "Импортирование...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить Ваш файл, так как он является каталогом или его размер составляет 0 байт.",
+"Upload Error" => "Ошибка загрузки",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Размер загружаемого Вами файла превышает максимально допустимый для загрузки на данный сервер.",
+"Upload too large" => "Загрузка слишком велика",
+"Pending" => "Ожидание",
"Add group" => "Добавить группу",
"No files selected for upload." => "Не выбрано файлов для загрузки.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Размер загружаемого Вами файла превышает максимально допустимый для загрузки на данный сервер.",
"Edit profile picture" => "Добавить изображение к профилю",
"Error loading profile picture." => "Ошибка при загрузке картинки профиля.",
"Enter name" => "Ввод имени",
"Enter description" => "Ввод описания",
"Select addressbook" => "Выбрать адресную книгу",
"The address book name cannot be empty." => "Имя адресной книги не должно быть пустым.",
-"Error" => "Ошибка",
"Is this correct?" => "Это верно?",
"There was an unknown error when trying to delete this contact" => "Возникла неизвестная ошибка при попытке удалить этот контакт",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Некоторые контакты отмечены для удаления, но еще не удалены. Пожалуйста, подождите пока они будут удалены.",
@@ -138,17 +145,15 @@
"HomePage" => "Домашняя страница",
"New Group" => "Новая группа",
"Settings" => "Настройки",
-"Share" => "Сделать общим",
"Import" => "Импортировать",
"Import into:" => "Импортировать в:",
-"Export" => "Экспортировать",
+"OK" => "OK",
"(De-)select all" => "Отметить(снять отметку) все",
"New Contact" => "Новый контакт",
-"Back" => "Назад",
"Download Contact" => "Загрузить контакт",
-"Delete Contact" => "Удалить контакт",
"Groups" => "Группы",
"Favorite" => "Избранный",
+"Delete Contact" => "Удалить контакт",
"Close" => "Закрыть",
"Keyboard shortcuts" => "Комбинации клавиш",
"Navigation" => "Навигация",
@@ -174,6 +179,7 @@
"Additional names" => "Дополнительные имена",
"Last name" => "Фамилия",
"Nickname" => "Имя",
+"Enter nickname" => "Введите имя",
"Title" => "Название",
"Organization" => "Организация",
"Birthday" => "День рождения",
@@ -197,17 +203,22 @@
"View on map" => "Посмотреть на карте",
"Delete address" => "Удалить адрес",
"1 Main Street" => "1 главная улица",
+"Street address" => "Улица",
"12345" => "12345",
+"Postal code" => "Почтовый код",
"Your city" => "Ваш город",
+"City" => "Город",
"Some region" => "Регион",
"Your country" => "Ваша страна",
+"Country" => "Страна",
"Instant Messenger" => "Служба обмена мгновенными сообщениями",
"Delete IM" => "Удалить IM",
+"Share" => "Сделать общим",
+"Export" => "Экспортировать",
"Add Contact" => "Добавить контакт",
"Drop photo to upload" => "Перетащите фотографию для загрузки",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Пользовательский формат, сокращенное имя, полное имя, обратный порядок или обратный порядок с запятыми",
"Edit name details" => "Редактировать детали имени",
-"Enter nickname" => "Введите имя",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "дд-мм-гггг",
"Separate groups with commas" => "Разделите группы запятыми",
@@ -222,16 +233,12 @@
"Edit address" => "Редактировать адрес",
"Type" => "Тип",
"PO Box" => "Почтовый ящик",
-"Street address" => "Улица",
"Street and number" => "Улица и номер",
"Extended" => "Расширенный",
"Apartment number etc." => "Квартира и т.д.",
-"City" => "Город",
"Region" => "Регион (область)",
"E.g. state or province" => "Напр., штат или область",
"Zipcode" => "Индекс",
-"Postal code" => "Почтовый код",
-"Country" => "Страна",
"Addressbook" => "Адресная книга",
"Hon. prefixes" => "Почетные префиксы",
"Miss" => "мисс",
diff --git a/l10n/si_LK.php b/l10n/si_LK.php
index 3a5e1c4f..db094b54 100644
--- a/l10n/si_LK.php
+++ b/l10n/si_LK.php
@@ -30,11 +30,14 @@
"Couldn't save temporary image: " => "තාවකාලික රූපය සුරැකීමට නොහැකි විය",
"No file was uploaded. Unknown error" => "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්",
"Contacts" => "සබඳතා",
-"No files selected for upload." => "උඩුගත කිරීමට ගොනු තෝරා නැත",
+"Error" => "දෝෂයක්",
+"Importing..." => "ආයාත කරමින් පවති...",
+"Upload Error" => "උඩුගත කිරීමේ දෝෂයක්",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "ඔබ උඩුගත කිරීමට තැත් කරන ගොනුව, සේවාදායකයාට උඩුගත කළ හැකි උපරිම ගොනු විශාලත්වයට වඩා වැඩිය",
+"Upload too large" => "උඩුගත කිරීම විශාල වැඩිය",
+"No files selected for upload." => "උඩුගත කිරීමට ගොනු තෝරා නැත",
"Enter name" => "නම දෙන්න",
"Enter description" => "විස්තරය දෙන්න",
-"Error" => "දෝෂයක්",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "සමහර සම්බන්ධතා මකන ලෙස ලකුණු කොට ඇත. කරුණාකර ඒවා මැකෙන තෙක් සිටින්න",
"Result: " => "ප්රතිඵලය:",
" imported, " => "ආයාත කරන ලදී,",
@@ -69,7 +72,7 @@
"There was an error deleting this contact." => "මෙම සම්බන්ධතාව මැකීමේදී දෝෂයක් ඇති විය",
"Settings" => "සිටුවම්",
"Import" => "ආයාත කරන්න",
-"Export" => "නිර්යාත කරන්න",
+"OK" => "හරි",
"Groups" => "කණ්ඩායම්",
"Close" => "වසන්න",
"Next addressbook" => "මෙයට පසු ලිපින පොත",
@@ -80,6 +83,7 @@
"Upload new photo" => "නව ඡායාරූපයක් උඩුගත කරන්න",
"Additional names" => "වෙනත් නම්",
"Nickname" => "පටබැඳි නම",
+"Enter nickname" => "පටබැඳි නම ඇතුලත් කරන්න",
"Title" => "මාතෘකාව",
"Organization" => "ආයතනය",
"Birthday" => "උපන් දිනය",
@@ -97,10 +101,13 @@
"Delete phone number" => "දුරකථන අංකය මකන්න",
"Go to web site" => "වෙබ් අඩවියට යන්න",
"View on map" => "සිතියමේ පෙන්වන්න",
+"City" => "නගරය",
+"Country" => "රට",
+"Share" => "බෙදා හදා ගන්න",
+"Export" => "නිර්යාත කරන්න",
"Add Contact" => "සබඳතාවක් එක් කරන්න",
"Drop photo to upload" => "උඩුගත කිරීමට මෙතැනට දමන්න",
"Edit name details" => "නමේ විස්තර සංස්කරණය කරන්න",
-"Enter nickname" => "පටබැඳි නම ඇතුලත් කරන්න",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "දිදි-මාමා-වවවව",
"Separate groups with commas" => "කණ්ඩායම් කොමා භාවිතයෙන් වෙන් කරන්න",
@@ -115,10 +122,8 @@
"Type" => "වර්ගය",
"PO Box" => "තැ.පෙ.",
"Extended" => "දීඝී කිරීම",
-"City" => "නගරය",
"Region" => "කළාපය",
"Zipcode" => "තැපැල් කේතය",
-"Country" => "රට",
"Addressbook" => "ලිපින පොත",
"Hon. prefixes" => "ගෞරවාන්විත නාම",
"Given name" => "දී ඇති නම",
@@ -132,7 +137,6 @@
"Primary address (Kontact et al)" => "ප්රාථමික ලිපිනය(හැම විටම සම්බන්ධ කරගත හැක)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "ලිපින පොත්",
-"Share" => "බෙදා හදා ගන්න",
"New Address Book" => "නව ලිපින පොතක් ",
"Name" => "නම",
"Description" => "විස්තරය",
diff --git a/l10n/sk_SK.php b/l10n/sk_SK.php
index 8597acf3..3a39de53 100644
--- a/l10n/sk_SK.php
+++ b/l10n/sk_SK.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Kontakt nie je v danej skupine.",
"Contacts are not in this group." => "Kontakty nie sú v danej skupine.",
"A group named {group} already exists" => "Skupina pomenovaná ako {group} už existuje.",
+"You can drag groups to\narrange them as you like." => "Potiahnutím a pustením môžete \nusporiadať skupiny podľa ľúbosti.",
"All" => "Všetky",
"Favorites" => "Obľúbené",
"Shared by {owner}" => "Zdieľané cez {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Chyba pri pridávaní do skupiny.",
"Error removing from group." => "Chyba pri odstraňovaní zo skupiny.",
"There was an error opening a mail composer." => "Vyskytla sa chyba pri otváraní nástroja na tvorbu pošty.",
+"Deleting done. Click here to cancel reloading." => "Odstraňovanie dokončené. Kliknite sem pre zrušenie obnovenia.",
+"Add address book" => "Pridať adresár kontaktov",
+"Import done. Click here to cancel reloading." => "Importovanie dokončené. Kliknite sem pre zrušenie obnovenia.",
+"Not all files uploaded. Retrying..." => "Všetky súbory neboli odoslané. Opakujem...",
+"Something went wrong with the upload, please retry." => "Stalo sa niečo zlé s odosielaným súborom, skúste ho prosím odoslať znovu.",
+"Error" => "Chyba",
+"Importing from {filename}..." => "Importujem z {filename}...",
+"{success} imported, {failed} failed." => "{success} importované, {failed} zlyhané.",
+"Importing..." => "Importujem...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Nedá sa odoslať Váš súbor, pretože je to adresár, alebo je jeho veľkosť 0 bajtov",
+"Upload Error" => "Chyba odosielania",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť.",
+"Upload too large" => "Nahrávanie je príliš veľké",
+"Pending" => "Prebieha",
"Add group" => "Pridať skupinu",
"No files selected for upload." => "Žiadne súbory neboli vybrané k nahratiu",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť.",
"Edit profile picture" => "Upraviť profilový avatar",
"Error loading profile picture." => "Chyba pri nahrávaní profilového obrázku.",
"Enter name" => "Zadaj meno",
"Enter description" => "Zadať popis",
"Select addressbook" => "Vybrať adresný zoznam",
"The address book name cannot be empty." => "Názov adresára nemôže byť prázdny.",
-"Error" => "Chyba",
"Is this correct?" => "Je to správne?",
"There was an unknown error when trying to delete this contact" => "Vyskytla sa neznáma chyba pri odstraňovaní daného kontaktu.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Počkajte prosím do skončenia mazania kontaktov označených na mazanie.",
@@ -138,17 +151,18 @@
"HomePage" => "Domovská stránka",
"New Group" => "Nová skupina",
"Settings" => "Nastavenia",
-"Share" => "Zdieľať",
+"Address books" => "Adresáre kontaktov",
"Import" => "Importovať",
+"Select files to import" => "Vybrať súbory pre import",
+"Select files" => "Vybrať súbory",
"Import into:" => "Importovať do:",
-"Export" => "Export",
+"OK" => "OK",
"(De-)select all" => "(Ne-)vybrať všetky",
"New Contact" => "Nový kontakt",
-"Back" => "Späť",
"Download Contact" => "Stiahnuť kontakt",
-"Delete Contact" => "Odstrániť kontakt",
"Groups" => "Skupiny",
"Favorite" => "Obľúbené",
+"Delete Contact" => "Odstrániť kontakt",
"Close" => "Zatvoriť",
"Keyboard shortcuts" => "Klávesové skratky",
"Navigation" => "Navigácia",
@@ -174,6 +188,7 @@
"Additional names" => "Ďalšie mená",
"Last name" => "Priezvisko",
"Nickname" => "Prezývka",
+"Enter nickname" => "Zadajte prezývku",
"Title" => "Nadpis",
"Organization" => "Organizácia",
"Birthday" => "Narodeniny",
@@ -197,17 +212,23 @@
"View on map" => "Zobraziť na mape",
"Delete address" => "Odstrániť adresu",
"1 Main Street" => "1 Hlavná Ulica",
+"Street address" => "Ulica",
"12345" => "12345",
+"Postal code" => "PSČ",
"Your city" => "Vaše mesto",
+"City" => "Mesto",
"Some region" => "Nejaký región",
"Your country" => "Vaša krajina",
+"Country" => "Krajina",
"Instant Messenger" => "Okamžité správy IM",
"Delete IM" => "Zmazať IM",
+"Share" => "Zdieľať",
+"Export" => "Export",
+"CardDAV link" => "CardDAV odkaz",
"Add Contact" => "Pridať Kontakt.",
"Drop photo to upload" => "Pretiahnite sem fotku pre nahratie",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formát vlastný, krátke meno, celé meno, obrátené alebo obrátené s čiarkami",
"Edit name details" => "Upraviť podrobnosti mena",
-"Enter nickname" => "Zadajte prezývku",
"http://www.somesite.com" => "http://www.stranka.sk",
"dd-mm-yyyy" => "dd. mm. yyyy",
"Separate groups with commas" => "Oddelte skupiny čiarkami",
@@ -222,16 +243,12 @@
"Edit address" => "Upraviť adresu",
"Type" => "Typ",
"PO Box" => "PO Box",
-"Street address" => "Ulica",
"Street and number" => "Ulica a číslo",
"Extended" => "Rozšírené",
"Apartment number etc." => "Číslo bytu a pod.",
-"City" => "Mesto",
"Region" => "Región",
"E.g. state or province" => "Napr. štát alebo provincia",
"Zipcode" => "PSČ",
-"Postal code" => "PSČ",
-"Country" => "Krajina",
"Addressbook" => "Adresár",
"Hon. prefixes" => "Tituly pred",
"Miss" => "Slečna",
diff --git a/l10n/sl.php b/l10n/sl.php
index 8f745fd9..326f392d 100644
--- a/l10n/sl.php
+++ b/l10n/sl.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Stik ni v tej skupini",
"Contacts are not in this group." => "Stiki niso v tej skupini.",
"A group named {group} already exists" => "Skupina z imenom {group} že obstaja.",
+"You can drag groups to\narrange them as you like." => "Skupine lahko z vlečenjem\nrazporedite po vaših željah.",
"All" => "Vsi",
"Favorites" => "Priljubljene",
"Shared by {owner}" => "V souporabo dal {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Napaka pri dodajanju v skupino.",
"Error removing from group." => "Napaka pri odstranjevanju iz skupine.",
"There was an error opening a mail composer." => "Med odpiranjem sestavljalnika pošte je prišlo do napake.",
+"Deleting done. Click here to cancel reloading." => "Izbris je končan. Če želite preklicati ponovno nalaganje, kliknite sem.",
+"Add address book" => "Dodaj imenik",
+"Import done. Click here to cancel reloading." => "Uvoz je končan. Če želite preklicati ponovno nalaganje, kliknite sem.",
+"Not all files uploaded. Retrying..." => "Vse datoteke niso bile poslane. Poskus bo ponovljen ...",
+"Something went wrong with the upload, please retry." => "Med nalaganjem je prišlo do napake. Poskusite znova.",
+"Error" => "Napaka",
+"Importing from {filename}..." => "Uvažam iz {filename}...",
+"{success} imported, {failed} failed." => "{success} uvoženih, {failed} spodletelih.",
+"Importing..." => "Uvažanje ...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov.",
+"Upload Error" => "Napaka med nalaganjem",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za pošiljanje na tem strežniku.",
+"Upload too large" => "Datoteke za pošiljanje so prevelike",
+"Pending" => "V čakanju ...",
"Add group" => "Dodaj skupino",
"No files selected for upload." => "Ni izbrane datoteke za nalaganje.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za pošiljanje na tem strežniku.",
"Edit profile picture" => "Uredi fotografijo profila",
"Error loading profile picture." => "Napaka med nalaganjem slike profila.",
"Enter name" => "Vnesi ime",
"Enter description" => "Vnesi opis",
"Select addressbook" => "Izberite imenik",
"The address book name cannot be empty." => "Imenika mora imeti določeno ime.",
-"Error" => "Napaka",
"Is this correct?" => "Ali je to pravilno?",
"There was an unknown error when trying to delete this contact" => "Med poskusom izbrisa tega stika je prišlo do neznane napake.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Nekateri stiki so označeni za izbris, vendar še niso izbrisani. Počakajte na izbris.",
@@ -138,17 +151,18 @@
"HomePage" => "Domača stran",
"New Group" => "Nova skupina",
"Settings" => "Nastavitve",
-"Share" => "Souporaba",
+"Address books" => "Imeniki",
"Import" => "Uvozi",
+"Select files to import" => "Izberite datoteke za uvoz",
+"Select files" => "Izberi datoteke",
"Import into:" => "Uvozi v:",
-"Export" => "Izvozi",
+"OK" => "V redu",
"(De-)select all" => "(Od-)izberi vse",
"New Contact" => "Nov stik",
-"Back" => "Nazaj",
"Download Contact" => "Prenesi stik",
-"Delete Contact" => "Izbriši stik",
"Groups" => "Skupine",
"Favorite" => "Priljubljen",
+"Delete Contact" => "Izbriši stik",
"Close" => "Zapri",
"Keyboard shortcuts" => "Bližnjice na tipkovnici",
"Navigation" => "Krmarjenje",
@@ -174,6 +188,7 @@
"Additional names" => "Druga imena",
"Last name" => "Priimek",
"Nickname" => "Vzdevek",
+"Enter nickname" => "Vnos vzdevka",
"Title" => "Ime",
"Organization" => "Ustanova",
"Birthday" => "Rojstni dan",
@@ -197,17 +212,23 @@
"View on map" => "Pokaži na zemljevidu",
"Delete address" => "Izbriši imenik",
"1 Main Street" => "1 Glavna ulica",
+"Street address" => "Naslov ulice",
"12345" => "12345",
+"Postal code" => "Poštna številka",
"Your city" => "Vaše mesto",
+"City" => "Mesto",
"Some region" => "Neka regija",
"Your country" => "Vaša država",
+"Country" => "Država",
"Instant Messenger" => "Hipni sporočilnik",
"Delete IM" => "Izbriši IM",
+"Share" => "Souporaba",
+"Export" => "Izvozi",
+"CardDAV link" => "CardDAV povezava",
"Add Contact" => "Dodaj stik",
"Drop photo to upload" => "Spustite sliko tukaj, da bi jo poslali na strežnik",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format po meri, Kratko ime, Polno ime, Obratno ali Obratno z vejico",
"Edit name details" => "Uredi podrobnosti imena",
-"Enter nickname" => "Vnos vzdevka",
"http://www.somesite.com" => "http://www.spletnastran.si",
"dd-mm-yyyy" => "dd. mm. yyyy",
"Separate groups with commas" => "Skupine ločite z vejicami",
@@ -222,16 +243,12 @@
"Edit address" => "Uredi naslov",
"Type" => "Vrsta",
"PO Box" => "Poštni predal",
-"Street address" => "Naslov ulice",
"Street and number" => "Ulica in štelika",
"Extended" => "Razširjeno",
"Apartment number etc." => "Številka stanovanja itd.",
-"City" => "Mesto",
"Region" => "Regija",
"E.g. state or province" => "Npr. dežela ali pokrajina",
"Zipcode" => "Poštna številka",
-"Postal code" => "Poštna številka",
-"Country" => "Država",
"Addressbook" => "Imenik",
"Hon. prefixes" => "Predpone",
"Miss" => "gdč.",
diff --git a/l10n/sr.php b/l10n/sr.php
index 2ebd3f8a..7962513d 100644
--- a/l10n/sr.php
+++ b/l10n/sr.php
@@ -9,6 +9,10 @@
"Missing a temporary folder" => "Недостаје привремена фасцикла",
"Contacts" => "Контакти",
"Error" => "Грешка",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова",
+"Upload Error" => "Грешка при отпремању",
+"Upload too large" => "Датотека је превелика",
+"Pending" => "На чекању",
"Download" => "Преузимање",
"Edit" => "Уреди",
"Delete" => "Обриши",
@@ -25,8 +29,6 @@
"Contact" => "Контакт",
"Settings" => "Подешавања",
"Import" => "Увези",
-"Export" => "Извези",
-"Back" => "Назад",
"Groups" => "Групе",
"Close" => "Затвори",
"Title" => "Наслов",
@@ -37,19 +39,20 @@
"Email" => "Е-маил",
"Address" => "Адреса",
"Preferred" => "Пожељан",
+"City" => "Град",
+"Country" => "Земља",
+"Share" => "Дељење",
+"Export" => "Извези",
"Add Contact" => "Додај контакт",
"Download contact" => "Преузми контакт",
"Delete contact" => "Обриши контакт",
"Type" => "Тип",
"PO Box" => "Поштански број",
"Extended" => "Прошири",
-"City" => "Град",
"Region" => "Регија",
"Zipcode" => "Зип код",
-"Country" => "Земља",
"Addressbook" => "Адресар",
"Addressbooks" => "Адресар",
-"Share" => "Дељење",
"New Address Book" => "Нови адресар",
"Name" => "Име",
"Save" => "Сними"
diff --git a/l10n/sr@latin.php b/l10n/sr@latin.php
index 3e70929f..b4ec46a1 100644
--- a/l10n/sr@latin.php
+++ b/l10n/sr@latin.php
@@ -6,6 +6,7 @@
"The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!",
"No file was uploaded" => "Nijedan fajl nije poslat",
"Missing a temporary folder" => "Nedostaje privremena fascikla",
+"Upload too large" => "Pošiljka je prevelika",
"Download" => "Preuzmi",
"Edit" => "Uredi",
"Delete" => "Obriši",
@@ -28,13 +29,13 @@
"Phone" => "Telefon",
"Email" => "E-mail",
"Address" => "Adresa",
+"City" => "Grad",
+"Country" => "Zemlja",
"Add Contact" => "Dodaj kontakt",
"PO Box" => "Poštanski broj",
"Extended" => "Proširi",
-"City" => "Grad",
"Region" => "Regija",
"Zipcode" => "Zip kod",
-"Country" => "Zemlja",
"Name" => "Ime",
"Save" => "Snimi"
);
diff --git a/l10n/sv.php b/l10n/sv.php
index dab7bf57..7981153d 100644
--- a/l10n/sv.php
+++ b/l10n/sv.php
@@ -55,6 +55,7 @@
"Contact is not in this group." => "Kontakten är inte i denna grupp.",
"Contacts are not in this group." => "Kontakterna är inte i denna grupp.",
"A group named {group} already exists" => "En grupp men namnet {group} finns redan",
+"You can drag groups to\narrange them as you like." => "Du kan dra grupper för att\nordna dem som du vill.",
"All" => "Alla",
"Favorites" => "Favoriter",
"Shared by {owner}" => "Delad av {owner}",
@@ -67,16 +68,28 @@
"Error adding to group." => "Fel vid tillägg i grupp.",
"Error removing from group." => "Fel vid radering från grupp.",
"There was an error opening a mail composer." => "Fel uppstod när e-postklient skulle öppnas.",
+"Deleting done. Click here to cancel reloading." => "Radering klar. Klicka här för att avbryta omläsning.",
+"Add address book" => "Lägg till adressbok",
+"Import done. Click here to cancel reloading." => "Import klar. Klicka här för att avbryta omläsning.",
+"Not all files uploaded. Retrying..." => "Alla filer är inte uppladdade. Försöker igen...",
+"Something went wrong with the upload, please retry." => "Något gick fel med uppladdningen, försök igen.",
+"Error" => "Fel",
+"Importing from {filename}..." => "Importerar från {filename}...",
+"{success} imported, {failed} failed." => "{success} importerad, {failed} misslyckades.",
+"Importing..." => "Importerar...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Kan inte ladda upp din fil eftersom det är en katalog eller har 0 bytes",
+"Upload Error" => "Fel vid uppladdning",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server.",
+"Upload too large" => "För stor uppladdning",
+"Pending" => "Väntar",
"Add group" => "Lägg till grupp",
"No files selected for upload." => "Inga filer valda för uppladdning",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server.",
"Edit profile picture" => "Anpassa profilbild",
"Error loading profile picture." => "Fel vid hämtning av profilbild.",
"Enter name" => "Ange namn",
"Enter description" => "Ange beskrivning",
"Select addressbook" => "Välj adressbok",
"The address book name cannot be empty." => "Adressbokens namn kan inte vara tomt.",
-"Error" => "Fel",
"Is this correct?" => "Är detta korrekt?",
"There was an unknown error when trying to delete this contact" => "Okänt fel uppstod när denna kontakt skulle raderas",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Vissa kontakter är markerade för radering, men är inte raderade än. Vänta tills dom är raderade.",
@@ -138,17 +151,18 @@
"HomePage" => "Hemsida",
"New Group" => "Ny grupp",
"Settings" => "Inställningar",
-"Share" => "Dela",
+"Address books" => "Adressböcker",
"Import" => "Importera",
+"Select files to import" => "Välj filer för import",
+"Select files" => "Välj filer",
"Import into:" => "Importera till:",
-"Export" => "Exportera",
+"OK" => "OK",
"(De-)select all" => "(Av-)markera alla",
"New Contact" => "Ny kontakt",
-"Back" => "Tillbaka",
"Download Contact" => "Ladda ner kontakt",
-"Delete Contact" => "Radera kontakt",
"Groups" => "Grupper",
"Favorite" => "Favorit",
+"Delete Contact" => "Radera kontakt",
"Close" => "Stäng",
"Keyboard shortcuts" => "Kortkommandon",
"Navigation" => "Navigering",
@@ -174,6 +188,7 @@
"Additional names" => "Mellannamn",
"Last name" => "Efternamn",
"Nickname" => "Smeknamn",
+"Enter nickname" => "Ange smeknamn",
"Title" => "Titel",
"Organization" => "Organisation",
"Birthday" => "Födelsedag",
@@ -197,17 +212,23 @@
"View on map" => "Visa på karta",
"Delete address" => "Radera adress",
"1 Main Street" => "1 Main Street",
+"Street address" => "Gatuadress",
"12345" => "12345",
+"Postal code" => "Postnummer",
"Your city" => "Din stad",
+"City" => "Stad",
"Some region" => "En region",
"Your country" => "Ditt land",
+"Country" => "Land",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Radera IM",
+"Share" => "Dela",
+"Export" => "Exportera",
+"CardDAV link" => "CardDAV-länk",
"Add Contact" => "Lägg till kontakt",
"Drop photo to upload" => "Släpp foto för att ladda upp",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => " anpassad, korta namn, hela namn, bakåt eller bakåt med komma",
"Edit name details" => "Redigera detaljer för namn",
-"Enter nickname" => "Ange smeknamn",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-åååå",
"Separate groups with commas" => "Separera grupperna med kommatecken",
@@ -222,16 +243,12 @@
"Edit address" => "Editera adress",
"Type" => "Typ",
"PO Box" => "Postbox",
-"Street address" => "Gatuadress",
"Street and number" => "Gata och nummer",
"Extended" => "Utökad",
"Apartment number etc." => "Lägenhetsnummer",
-"City" => "Stad",
"Region" => "Län",
"E.g. state or province" => "T.ex. stat eller provins",
"Zipcode" => "Postnummer",
-"Postal code" => "Postnummer",
-"Country" => "Land",
"Addressbook" => "Adressbok",
"Hon. prefixes" => "Ledande titlar",
"Miss" => "Fröken",
diff --git a/l10n/ta_LK.php b/l10n/ta_LK.php
index 8de63c03..f5680daf 100644
--- a/l10n/ta_LK.php
+++ b/l10n/ta_LK.php
@@ -67,16 +67,20 @@
"Error adding to group." => "குழுவில் சேர்ப்பதில் வழு.",
"Error removing from group." => "குழுவிலிருந்து அகற்றுவதிலிருந்து வழு.",
"There was an error opening a mail composer." => "மின்னஞ்சல் செய்தியாக்குகையை திறப்பதில் வழு.",
+"Error" => "வழு",
+"Unable to upload your file as it is a directory or has 0 bytes" => "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை",
+"Upload Error" => "பதிவேற்றல் வழு",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்பானது இந்த சேவையகத்தில் பதிவேற்றக்கூடிய கோப்பின் ஆகக்கூடிய அளவைவிட கூடியது. ",
+"Upload too large" => "பதிவேற்றல் மிகப்பெரியது",
+"Pending" => "நிலுவையிலுள்ள",
"Add group" => "குழுவில் சேர்க்க",
"No files selected for upload." => "பதிவேற்றுவதற்கு கோப்புகள் தெரிவுசெய்யப்படவில்லை",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "நீங்கள் பதிவேற்ற முயற்சிக்கும் கோப்பானது இந்த சேவையகத்தில் பதிவேற்றக்கூடிய கோப்பின் ஆகக்கூடிய அளவைவிட கூடியது. ",
"Edit profile picture" => "விபரக்கோவை படத்தை தொகுக்க ",
"Error loading profile picture." => "விபரக்கோவை படத்தை ஏற்றுவதில் வழு",
"Enter name" => "பெயரை நுழைக்க ",
"Enter description" => "விபரிப்புக்களை நுழைக்க",
"Select addressbook" => "முகவரி புத்தகத்தை தெரிவுசெய்க",
"The address book name cannot be empty." => "முகவரிப் புத்தகத்தின் பெயர் வெறுமையாக இருக்கமுடியாது.",
-"Error" => "வழு",
"Is this correct?" => "இது சரியா?",
"There was an unknown error when trying to delete this contact" => "இந்த தொடர்பை நீக்கும் போது தெரியாத வழு ஏற்பட்டது",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "சில தொடர்புகள் அழிப்பதற்காக அடையாளப்படுத்தப்பட்டுள்ளது, ஆனால் இன்னும் அழிக்கவில்லை. தயவுசெய்து அது அழியும் வரை காத்திருக்கவும்.",
@@ -138,17 +142,15 @@
"HomePage" => "தொடக்க பக்கம்",
"New Group" => "புதிய குழு",
"Settings" => "அமைப்புகள்",
-"Share" => "பகிர்வு",
"Import" => "இறக்குமதி",
"Import into:" => "இதற்கு இறக்குமதி செய்க:",
-"Export" => "ஏற்றுமதி",
+"OK" => "சரி ",
"(De-)select all" => "எல்லாவற்றையும் தெரிவுசெய்க (செய்யாதிக-)",
"New Contact" => "புதிய தொடர்பு",
-"Back" => "பின்னுக்கு",
"Download Contact" => "தொடர்பை பதிவிறக்குக",
-"Delete Contact" => "தொடர்பை நீக்குக",
"Groups" => "குழுக்கள்",
"Favorite" => "விருப்பமான",
+"Delete Contact" => "தொடர்பை நீக்குக",
"Close" => "மூடுக",
"Keyboard shortcuts" => "விசைப்பலகை குறுக்குவழிகள்",
"Navigation" => "வழிசெலுத்தல்",
@@ -174,6 +176,7 @@
"Additional names" => "மேலதிக பெயர்கள்",
"Last name" => "கடைசிப் பெயர்",
"Nickname" => "பட்டப்பெயர்",
+"Enter nickname" => "பட்டப்பெயரை நுழைக்க",
"Title" => "தலைப்பு",
"Organization" => "நிறுவனம்",
"Birthday" => "பிறந்த நாள்",
@@ -197,17 +200,22 @@
"View on map" => "வரைப்படத்தில் காண்க",
"Delete address" => "முகவரியை நீக்குக",
"1 Main Street" => "1 பிரதான பாதை",
+"Street address" => "வீதி முகவரி",
"12345" => "12345",
+"Postal code" => "தபால் குறியீடு",
"Your city" => "உங்களுடைய நகரம்",
+"City" => "நகரம்",
"Some region" => "சில பிரதேசம்",
"Your country" => "உங்களுடைய நாடு",
+"Country" => "நாடு",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "IM ஐ நீக்குக",
+"Share" => "பகிர்வு",
+"Export" => "ஏற்றுமதி",
"Add Contact" => "தொடர்புகளை சேர்க்க",
"Drop photo to upload" => "பதிவேற்றுவதற்கான படத்தை விடுக",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "தனிப்பயன் வடிவமைப்பு, சுருக்கப் பெயர், முழுப்பெயர், எதிர் அல்லது காற்புள்ளியினால் பின்னோக்கு",
"Edit name details" => "பெயர் விபரங்களை தொகுக்க ",
-"Enter nickname" => "பட்டப்பெயரை நுழைக்க",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "குழுக்களை காற்புள்ளியினால் வேறாக்குக",
@@ -222,16 +230,12 @@
"Edit address" => "முகவரியை தொகுக்க",
"Type" => "வகை",
"PO Box" => "PO பெட்டி",
-"Street address" => "வீதி முகவரி",
"Street and number" => "வீதி மற்றும் இலக்கம்",
"Extended" => "விஸ்த்தரிக்கப்பட்ட",
"Apartment number etc." => "அபாட்மென்ட் இலக்கம் உதாரணம்.",
-"City" => "நகரம்",
"Region" => "பிரதேசம்",
"E.g. state or province" => "உதாரணம் . மாநிலம் அல்லது மாகாணம்",
"Zipcode" => "தபால் இலக்கம்",
-"Postal code" => "தபால் குறியீடு",
-"Country" => "நாடு",
"Addressbook" => "முகவரி புத்தகம்",
"Hon. prefixes" => "Hon. முன்னொட்டுகள்",
"Miss" => "செல்வி",
diff --git a/l10n/th_TH.php b/l10n/th_TH.php
index 3b8a2b00..a01525df 100644
--- a/l10n/th_TH.php
+++ b/l10n/th_TH.php
@@ -67,16 +67,23 @@
"Error adding to group." => "เกิดข้อผิดพลาดในการเพิ่มเข้าไปยังกลุ่ม",
"Error removing from group." => "เกิดข้อผิดพลาดในการลบออกจากกลุ่ม",
"There was an error opening a mail composer." => "เกิดข้อผิดพลาดในการระหว่างการเปิดหน้าเครื่องมือเขียนอีเมล",
+"Not all files uploaded. Retrying..." => "ไม่ใช่ไฟล์ทั้งหมดที่จะถูกอัพโหลด กำลังลองใหม่...",
+"Something went wrong with the upload, please retry." => "เกิดข้อผิดพลาดบางประการในการอัพโหลด, กรุณาลองใหม่อีกครั้ง",
+"Error" => "พบข้อผิดพลาด",
+"Importing..." => "กำลังนำเข้าข้อมูล...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่ หรือ มีขนาดไฟล์ 0 ไบต์",
+"Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณกำลังพยายามที่จะอัพโหลดมีขนาดเกินจำนวนสูงสุดที่สามารถอัพโหลดได้สำหรับเซิร์ฟเวอร์นี้",
+"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",
+"Pending" => "อยู่ระหว่างดำเนินการ",
"Add group" => "เพิ่มกลุ่ม",
"No files selected for upload." => "ยังไม่ได้เลือกไฟล์ำสำหรับอัพโหลด",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณกำลังพยายามที่จะอัพโหลดมีขนาดเกินจำนวนสูงสุดที่สามารถอัพโหลดได้สำหรับเซิร์ฟเวอร์นี้",
"Edit profile picture" => "แก้ไขรูปภาพหน้าโปรไฟล์",
"Error loading profile picture." => "เกิดข้อผิดพลาดในการโหลดรูปภาพประจำตัว",
"Enter name" => "กรอกชื่อ",
"Enter description" => "กรอกคำอธิบาย",
"Select addressbook" => "เลือกสมุดบันทึกที่อยู่",
"The address book name cannot be empty." => "ชื่อของสมุดบันทึกที่อยู่ไม่สามารถเว้นว่างได้",
-"Error" => "พบข้อผิดพลาด",
"Is this correct?" => "คุณแน่ใจแล้วหรือว่าถูกต้อง?",
"There was an unknown error when trying to delete this contact" => "เกิดข้อผิดพลาดบางประการที่ไม่ทราบสาเหตุ ในระหว่างการลบรายชื่อผู้ติดต่อนี้",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "ข้อมูลผู้ติดต่อบางรายการได้ถูกทำเครื่องหมายสำหรับลบทิ้งเอาไว้, แต่ยังไม่ได้ถูกลบทิ้ง, กรุณารอให้รายการดังกล่าวถูกลบทิ้งเสียก่อน",
@@ -138,17 +145,15 @@
"HomePage" => "หน้าแรก",
"New Group" => "สร้างกลุ่มใหม่",
"Settings" => "ตั้งค่า",
-"Share" => "แชร์",
"Import" => "นำเข้า",
"Import into:" => "นำเข้าข้อมูลไปไว้ที่:",
-"Export" => "ส่งออก",
+"OK" => "ตกลง",
"(De-)select all" => "ยกเลิกการเลือกทั้งหมด",
"New Contact" => "สร้างรายชื่อผู้ติดต่อใหม่",
-"Back" => "ย้อนกลับ",
"Download Contact" => "ดาวน์โหลดรายชื่อผู้ติดต่อ",
-"Delete Contact" => "ลบรายชื่อผู้ติดต่อ",
"Groups" => "กลุ่ม",
"Favorite" => "รายการโปรด",
+"Delete Contact" => "ลบรายชื่อผู้ติดต่อ",
"Close" => "ปิด",
"Keyboard shortcuts" => "ปุ่มลัด",
"Navigation" => "ระบบเมนู",
@@ -174,6 +179,7 @@
"Additional names" => "ชื่ออื่นๆ",
"Last name" => "นามสกุลจริง",
"Nickname" => "ชื่อเล่น",
+"Enter nickname" => "กรอกชื่อเล่น",
"Title" => "ชื่อ",
"Organization" => "หน่วยงาน",
"Birthday" => "วันเกิด",
@@ -197,17 +203,22 @@
"View on map" => "ดูบนแผนที่",
"Delete address" => "ลบที่อยู่",
"1 Main Street" => "ถนนสายหลัก",
+"Street address" => "ที่อยู่",
"12345" => "12345",
+"Postal code" => "รหัสไปรษณีย์",
"Your city" => "ชื่อเมือง",
+"City" => "เมือง",
"Some region" => "ย่าน",
"Your country" => "ประเทศของคุณ",
+"Country" => "ประเทศ",
"Instant Messenger" => "โปรแกรมรับส่งข้อความ",
"Delete IM" => "ลบ IM",
+"Share" => "แชร์",
+"Export" => "ส่งออก",
"Add Contact" => "เพิ่มรายชื่อผู้ติดต่อใหม่",
"Drop photo to upload" => "วางรูปภาพที่ต้องการอัพโหลด",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "กำหนดรูปแบบของชื่อย่อ, ชื่อจริง, ย้อนค่ากลัีบด้วยคอมม่าเอง",
"Edit name details" => "แก้ไขรายละเอียดของชื่อ",
-"Enter nickname" => "กรอกชื่อเล่น",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "คั่นระหว่างรายชื่อกลุ่มด้วยเครื่องหมายจุลภาีคหรือคอมม่า",
@@ -222,16 +233,12 @@
"Edit address" => "แก้ไขที่อยู่",
"Type" => "ประเภท",
"PO Box" => "ตู้ ปณ.",
-"Street address" => "ที่อยู่",
"Street and number" => "ถนนและหมายเลข",
"Extended" => "เพิ่ม",
"Apartment number etc." => "หมายเลขอพาร์ทเมนต์ ฯลฯ",
-"City" => "เมือง",
"Region" => "ภูมิภาค",
"E.g. state or province" => "เช่น รัฐ หรือ จังหวัด",
"Zipcode" => "รหัสไปรษณีย์",
-"Postal code" => "รหัสไปรษณีย์",
-"Country" => "ประเทศ",
"Addressbook" => "สมุดบันทึกที่อยู่",
"Hon. prefixes" => "คำนำหน้าชื่อคนรัก",
"Miss" => "นางสาว",
diff --git a/l10n/tr.php b/l10n/tr.php
index 499d2d35..4a6b0d2b 100644
--- a/l10n/tr.php
+++ b/l10n/tr.php
@@ -41,13 +41,18 @@
"No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata",
"Contacts" => "Kişiler",
"Select photo" => "Fotograf seç",
-"No files selected for upload." => "Yükleme için dosya seçilmedi.",
+"Error" => "Hata",
+"Importing..." => "İçeri aktarılıyor...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi",
+"Upload Error" => "Yükleme Hatası",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosya sunucudaki dosya yükleme maksimum boyutunu aşmaktadır. ",
+"Upload too large" => "Yükleme çok büyük",
+"Pending" => "Bekliyor",
+"No files selected for upload." => "Yükleme için dosya seçilmedi.",
"Error loading profile picture." => "Profil resmi yüklenirken hata oluştu.",
"Enter name" => "İsim giriniz",
"Enter description" => "Tanım giriniz",
"The address book name cannot be empty." => "Adres defterinde adı boş olamaz.",
-"Error" => "Hata",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Bazı kişiler silinmek için işaretlendi, hala silinmedi. Silinmesi için bekleyin.",
"Result: " => "Sonuç: ",
" imported, " => " içe aktarıldı, ",
@@ -100,11 +105,9 @@
"You do not have the permissions to delete this contact." => "Bu kişiyi silmek için yetkiniz yok.",
"There was an error deleting this contact." => "Kişi silinirken hata oluştu.",
"Settings" => "Ayarlar",
-"Share" => "Paylaş",
"Import" => "İçe aktar",
-"Export" => "Dışa aktar",
+"OK" => "OK",
"New Contact" => "Yeni Kişi",
-"Back" => "Geri",
"Groups" => "Gruplar",
"Close" => "Kapat",
"Keyboard shortcuts" => "Klavye kısayolları",
@@ -126,6 +129,7 @@
"Select photo from ownCloud" => "ownCloud'dan bir fotoğraf seç",
"Additional names" => "İlave isimler",
"Nickname" => "Takma ad",
+"Enter nickname" => "Takma adı girin",
"Title" => "Başlık",
"Organization" => "Organizasyon",
"Birthday" => "Doğum günü",
@@ -144,13 +148,18 @@
"Delete phone number" => "Telefon numarasını sil",
"Go to web site" => "Web sitesine git",
"View on map" => "Haritada gör",
+"Street address" => "Sokak adresi",
+"Postal code" => "Posta kodu",
+"City" => "Şehir",
+"Country" => "Ülke",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "IM Sil",
+"Share" => "Paylaş",
+"Export" => "Dışa aktar",
"Add Contact" => "Kişi Ekle",
"Drop photo to upload" => "Fotoğrafı yüklenmesi için bırakın",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Biçin özel, Kısa isim, Tam isim, Ters veya noktalı ters",
"Edit name details" => "İsim detaylarını düzenle",
-"Enter nickname" => "Takma adı girin",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "gg-aa-yyyy",
"Separate groups with commas" => "Grupları birbirinden virgülle ayırın",
@@ -165,16 +174,12 @@
"Edit address" => "Adresi düzenle",
"Type" => "Tür",
"PO Box" => "Posta Kutusu",
-"Street address" => "Sokak adresi",
"Street and number" => "Sokak ve Numara",
"Extended" => "Uzatılmış",
"Apartment number etc." => "Apartman numarası vb.",
-"City" => "Şehir",
"Region" => "Bölge",
"E.g. state or province" => "Örn. eyalet veya il",
"Zipcode" => "Posta kodu",
-"Postal code" => "Posta kodu",
-"Country" => "Ülke",
"Addressbook" => "Adres defteri",
"Hon. prefixes" => "Kısaltmalar",
"Miss" => "Bayan",
diff --git a/l10n/uk.php b/l10n/uk.php
index ecb0dcf5..3ac98b1f 100644
--- a/l10n/uk.php
+++ b/l10n/uk.php
@@ -67,16 +67,22 @@
"Error adding to group." => "Помилка при додаванні у групу.",
"Error removing from group." => "Помилка при видаленні з групи.",
"There was an error opening a mail composer." => "Виникла помилка при відкриванні поштової програми.",
+"Not all files uploaded. Retrying..." => "Не всі файли завантажено. Повторна спроба...",
+"Error" => "Помилка",
+"Importing..." => "Імпортування...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт",
+"Upload Error" => "Помилка завантаження",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Файл, який Ви намагаєтесь завантажити перевищує максимальний розмір файлу, що дозволено завантажувати на даний сервер.",
+"Upload too large" => "Файл занадто великий",
+"Pending" => "Очікування",
"Add group" => "Додати групу",
"No files selected for upload." => "Не обрано файлів для завантаження.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Файл, який Ви намагаєтесь завантажити перевищує максимальний розмір файлу, що дозволено завантажувати на даний сервер.",
"Edit profile picture" => "Редагувати зображення облікового запису",
"Error loading profile picture." => "Помилка при завантаженні зображення облікового запису.",
"Enter name" => "Введіть ім'я",
"Enter description" => "Введіть опис",
"Select addressbook" => "Обрати адресну книгу",
"The address book name cannot be empty." => "Ім'я адресної книги не може бути порожнім.",
-"Error" => "Помилка",
"Is this correct?" => "Це вірно?",
"There was an unknown error when trying to delete this contact" => "Виникла невідома помилка при спробі видалити цей контакт",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Деякі контакти помічено для видалення, але ще не видалені. Будь ласка, зачекайте, доки вони будуть видалені.",
@@ -138,17 +144,15 @@
"HomePage" => "Домашня Сторінка",
"New Group" => "Нова група",
"Settings" => "Налаштування",
-"Share" => "Поділитися",
"Import" => "Імпорт",
"Import into:" => "Імпортувати в:",
-"Export" => "Експорт",
+"OK" => "OK",
"(De-)select all" => "(Відміна) виділення усіх",
"New Contact" => "Новий контакт",
-"Back" => "Назад",
"Download Contact" => "Завантажити контакт",
-"Delete Contact" => "Видалити контакт",
"Groups" => "Групи",
"Favorite" => "Улюблений",
+"Delete Contact" => "Видалити контакт",
"Close" => "Закрити",
"Keyboard shortcuts" => "Сполучення клавіш",
"Navigation" => "Навігація",
@@ -174,6 +178,7 @@
"Additional names" => "Додаткові імена",
"Last name" => "Прізвище",
"Nickname" => "Прізвисько",
+"Enter nickname" => "Ввести прізвисько",
"Title" => "Назва",
"Organization" => "Організація",
"Birthday" => "День народження",
@@ -197,17 +202,22 @@
"View on map" => "Переглянути на карті",
"Delete address" => "Видалити адресу",
"1 Main Street" => "1 Головна вулиця",
+"Street address" => "Адреса",
"12345" => "12345",
+"Postal code" => "Поштовий індекс",
"Your city" => "Ваше місто",
+"City" => "Місто",
"Some region" => "Деякий регіон",
"Your country" => "Ваша країна",
+"Country" => "Країна",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "Видалити IM",
+"Share" => "Поділитися",
+"Export" => "Експорт",
"Add Contact" => "Додати контакт",
"Drop photo to upload" => "Піднесіть фото для завантаження",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Short name, Full name, Reverse or Reverse with comma",
"Edit name details" => "Редагувати деталі",
-"Enter nickname" => "Ввести прізвисько",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "дд-мм-рррр",
"Separate groups with commas" => "Відділяйте групи комами",
@@ -222,16 +232,12 @@
"Edit address" => "Редагувати адреси",
"Type" => "Тип",
"PO Box" => "Поштова скринька",
-"Street address" => "Адреса",
"Street and number" => "Вулиця та номер будинку",
"Extended" => "Розширено",
"Apartment number etc." => "Номер квартири та ін.",
-"City" => "Місто",
"Region" => "Регіон",
"E.g. state or province" => "Область чи район",
"Zipcode" => "Поштовий індекс",
-"Postal code" => "Поштовий індекс",
-"Country" => "Країна",
"Addressbook" => "Адресна книга",
"Hon. prefixes" => "Високоповажні префікси",
"Miss" => "Miss",
diff --git a/l10n/vi.php b/l10n/vi.php
index bb8ce9bf..b77d2518 100644
--- a/l10n/vi.php
+++ b/l10n/vi.php
@@ -67,16 +67,23 @@
"Error adding to group." => "Lỗi thêm vào nhóm.",
"Error removing from group." => "Lỗi xóa khỏi nhóm.",
"There was an error opening a mail composer." => "Lỗi mở phần soạn email.",
+"Not all files uploaded. Retrying..." => "Tất cả các tập tin không được tải lên .Đang thử lại...",
+"Something went wrong with the upload, please retry." => "Một cái gì đó đã sai khi tải lên ,hãy thử lại.",
+"Error" => "Lỗi",
+"Importing..." => "Đang nhập vào...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "Không thể tải lên tập tin của bạn ,nó như là một thư mục hoặc có 0 byte",
+"Upload Error" => "Lỗi tải lên",
+"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang cố gắng tải lên vượt quá kích thước tối đa cho tập tin tải lên trên máy chủ.",
+"Upload too large" => "Tập tin tải lên quá lớn",
+"Pending" => "Đang chờ",
"Add group" => "Thêm nhóm",
"No files selected for upload." => "Không có tập tin nào được chọn để tải lên.",
-"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang cố gắng tải lên vượt quá kích thước tối đa cho tập tin tải lên trên máy chủ.",
"Edit profile picture" => "Chỉnh sửa hồ sơ ảnh",
"Error loading profile picture." => "Lỗi khi tải lên hồ sơ hình ảnh.",
"Enter name" => "Nhập tên",
"Enter description" => "Nhập mô tả",
"Select addressbook" => "Thêm danh bạ",
"The address book name cannot be empty." => "Tên Danh bạ không thể để trống .",
-"Error" => "Lỗi",
"Is this correct?" => "Bạn có chắc điều này là đúng không?",
"There was an unknown error when trying to delete this contact" => "Có một lỗi không xác định khi cố gắng để xóa địa chỉ liên hệ này",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Một số địa chỉ liên lạc được đánh dấu để xóa, nhưng chưa bị xóa . Hãy đợi đến khi họ xóa.",
@@ -138,17 +145,15 @@
"HomePage" => "Trang chủ",
"New Group" => "Nhóm mới",
"Settings" => "Tùy chỉnh",
-"Share" => "Chia sẻ",
"Import" => "Nhập",
"Import into:" => "Nhập vào :",
-"Export" => "Xuất ra",
+"OK" => "Chấp nhận",
"(De-)select all" => "(Hủy) chọn tất cả",
"New Contact" => "Liên lạc mới",
-"Back" => "Trở lại",
"Download Contact" => "Tải liên lạc",
-"Delete Contact" => "Xóa liên lạc",
"Groups" => "Nhóm",
"Favorite" => "Ưu thích",
+"Delete Contact" => "Xóa liên lạc",
"Close" => "Đóng",
"Keyboard shortcuts" => "Phím tắt",
"Navigation" => "Navigation",
@@ -174,6 +179,7 @@
"Additional names" => "Tên bổ sung",
"Last name" => "Họ",
"Nickname" => "Biệt danh",
+"Enter nickname" => "Nhập nickname",
"Title" => "Tiêu đề",
"Organization" => "Tổ chức",
"Birthday" => "Ngày sinh nhật",
@@ -197,17 +203,22 @@
"View on map" => "Xem trên bản đồ",
"Delete address" => "Xóa địa chỉ",
"1 Main Street" => "Địa chỉ 1",
+"Street address" => "Địa chỉ nhà",
"12345" => "12345",
+"Postal code" => "Mã bưu chính",
"Your city" => "Thành phố",
+"City" => "Thành phố",
"Some region" => "Khu vực",
"Your country" => "Quốc gia",
+"Country" => "Quốc gia",
"Instant Messenger" => "Tin nhắn khẩn cấp",
"Delete IM" => "Xóa IM",
+"Share" => "Chia sẻ",
+"Export" => "Xuất ra",
"Add Contact" => "Thêm liên lạc",
"Drop photo to upload" => "Kéo và thả hình ảnh để tải lên",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Định dạng tùy chỉnh, Tên viết tắt, Tên đầy đủ, hoặc đảo ngược với dấu phẩy",
"Edit name details" => "Chỉnh sửa chi tiết tên",
-"Enter nickname" => "Nhập nickname",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "Phân cách bởi dấu phẩy",
@@ -222,16 +233,12 @@
"Edit address" => "Sửa địa chỉ",
"Type" => "Loại",
"PO Box" => "Hòm thư bưu điện",
-"Street address" => "Địa chỉ nhà",
"Street and number" => "Số nhà",
"Extended" => "Mở rộng",
"Apartment number etc." => "Số nhà",
-"City" => "Thành phố",
"Region" => "Vùng/miền",
"E.g. state or province" => "Vd tiểu bang hoặc tỉnh thành",
"Zipcode" => "Mã bưu điện",
-"Postal code" => "Mã bưu chính",
-"Country" => "Quốc gia",
"Addressbook" => "Sổ địa chỉ",
"Hon. prefixes" => "Tiền tố",
"Miss" => "Cô",
diff --git a/l10n/zh_CN.GB2312.php b/l10n/zh_CN.GB2312.php
index a88fab07..03a5209b 100644
--- a/l10n/zh_CN.GB2312.php
+++ b/l10n/zh_CN.GB2312.php
@@ -41,13 +41,20 @@
"No file was uploaded. Unknown error" => "没有上传文件。未知错误",
"Contacts" => "联系人",
"Select photo" => "选择相片",
-"No files selected for upload." => "未选择要上传的文件。",
+"Not all files uploaded. Retrying..." => "有文件未上传。重试中...",
+"Something went wrong with the upload, please retry." => "上传出错,请重试。",
+"Error" => "出错",
+"Importing..." => "导入中...",
+"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件",
+"Upload Error" => "上传错误",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "您试图上传的文件超出了此服务器允许的上传文件最大尺寸。",
+"Upload too large" => "上传过大",
+"Pending" => "等待中",
+"No files selected for upload." => "未选择要上传的文件。",
"Error loading profile picture." => "加载档案相片出错。",
"Enter name" => "输入名称",
"Enter description" => "输入描述",
"The address book name cannot be empty." => "地址薄名称不能为空。",
-"Error" => "出错",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "一些联系人标记为删除,但尚未删除。请等待它们被删除。",
"Result: " => "结果:",
" imported, " => "已导入,",
@@ -100,7 +107,7 @@
"There was an error deleting this contact." => "删除联系人出错。",
"Settings" => "设置",
"Import" => "导入",
-"Export" => "导出",
+"OK" => "好",
"Groups" => "群组",
"Close" => "关闭",
"Keyboard shortcuts" => "热键",
@@ -122,6 +129,7 @@
"Select photo from ownCloud" => "从 ownCloud 选择相片",
"Additional names" => "中间名",
"Nickname" => "昵称",
+"Enter nickname" => "输入昵称",
"Title" => "标题",
"Organization" => "组织",
"Birthday" => "生日",
@@ -140,13 +148,18 @@
"Delete phone number" => "删除电话号码",
"Go to web site" => "访问网站",
"View on map" => "查看地图",
+"Street address" => "街道地址",
+"Postal code" => "邮编",
+"City" => "城市",
+"Country" => "国家",
"Instant Messenger" => "即时通讯",
"Delete IM" => "删除即时通讯",
+"Share" => "分享",
+"Export" => "导出",
"Add Contact" => "添加联系人",
"Drop photo to upload" => "拖拽相片上传",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "格式自定义,短名称,全名,分隔或用逗号分隔",
"Edit name details" => "编辑名称细节",
-"Enter nickname" => "输入昵称",
"http://www.somesite.com" => "http://www.somesite.com",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "用逗号分隔群组",
@@ -161,16 +174,12 @@
"Edit address" => "编辑地址",
"Type" => "类型",
"PO Box" => "信箱",
-"Street address" => "街道地址",
"Street and number" => "街道和门牌号",
"Extended" => "扩展",
"Apartment number etc." => "公寓号等。",
-"City" => "城市",
"Region" => "地区",
"E.g. state or province" => "例如,州或省",
"Zipcode" => "邮编",
-"Postal code" => "邮编",
-"Country" => "国家",
"Addressbook" => "地址薄",
"Hon. prefixes" => "荣誉头衔",
"Miss" => "小姐",
@@ -202,7 +211,6 @@
"Primary address (Kontact et al)" => "主要地址 (Kontact 等)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "地址薄",
-"Share" => "分享",
"New Address Book" => "新地址薄",
"Name" => "名称",
"Description" => "描述",
diff --git a/l10n/zh_CN.php b/l10n/zh_CN.php
index b76f4e5f..fc330cd2 100644
--- a/l10n/zh_CN.php
+++ b/l10n/zh_CN.php
@@ -2,6 +2,10 @@
"Error (de)activating addressbook." => "(取消)激活地址簿错误。",
"id is not set." => "没有设置 id。",
"Cannot update addressbook with an empty name." => "无法使用一个空名称更新地址簿",
+"No category name given." => "未指定类别名称。",
+"Error adding group." => "添加分组错误。",
+"Group ID missing from request." => "请求缺少分组ID。",
+"Contact ID missing from request." => "请求缺少联系人ID。",
"No ID provided" => "未提供 ID",
"Error setting checksum." => "设置校验值错误。",
"No categories selected for deletion." => "未选中要删除的分类。",
@@ -29,6 +33,7 @@
"Error cropping image" => "裁切图像时出错",
"Error creating temporary image" => "创建临时图像时出错",
"Error finding image: " => "查找图像时出错: ",
+"Could not set preference: " => "无法设定偏好:",
"Error uploading contacts to storage." => "上传联系人到存储空间时出错",
"There is no error, the file uploaded with success" => "文件上传成功,没有错误发生",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "上传的文件长度超出了 php.ini 中 upload_max_filesize 的限制",
@@ -40,14 +45,29 @@
"Couldn't load temporary image: " => "无法加载临时图像: ",
"No file was uploaded. Unknown error" => "没有文件被上传。未知错误",
"Contacts" => "联系人",
+"Couldn't get contact list." => "无法获取联系人列表。",
+"Contact is not in this group." => "联系人不在此分组中。",
+"A group named {group} already exists" => "分组{group}已存在。",
+"All" => "全部",
+"Indexing contacts" => "正在索引联系人",
+"Add to..." => "添加到……",
+"Add group..." => "添加分组……",
"Select photo" => "选择图片",
-"No files selected for upload." => "没有选择文件以上传",
+"Not all files uploaded. Retrying..." => "仍有文件未上传,重试中",
+"Something went wrong with the upload, please retry." => "上传中出现些问题,请重试。",
+"Error" => "错误",
+"Importing..." => "导入中",
+"Unable to upload your file as it is a directory or has 0 bytes" => "无法上传您的文件,文件夹或者空文件",
+"Upload Error" => "上传错误",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "您试图上传的文件超出了该服务器的最大文件限制",
+"Upload too large" => "上传文件过大",
+"Pending" => "等待",
+"Add group" => "添加分组",
+"No files selected for upload." => "没有选择文件以上传",
"Error loading profile picture." => "载入档案图片时出错",
"Enter name" => "输入姓名",
"Enter description" => "输入描述",
"The address book name cannot be empty." => "地址簿名称不能为空",
-"Error" => "错误",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "一些联系人已被标注为删除,但是尚未完成,请稍候。",
"Result: " => "结果: ",
" imported, " => " 已导入, ",
@@ -100,11 +120,19 @@
"Could not find the Addressbook with ID: " => "无法找到地址簿,根据ID:",
"You do not have the permissions to delete this contact." => "你没有权限删除此联系人",
"There was an error deleting this contact." => "删除联系人时出错。",
+"Contact not found." => "找不到联系人。",
+"HomePage" => "主页",
+"New Group" => "新建分组",
"Settings" => "设置",
"Import" => "导入",
-"Export" => "导出",
-"Back" => "返回",
+"Import into:" => "导入至:",
+"OK" => "OK",
+"(De-)select all" => "反选全部",
+"New Contact" => "新建联系人",
+"Download Contact" => "下载联系人",
"Groups" => "分组",
+"Favorite" => "最爱",
+"Delete Contact" => "删除联系人",
"Close" => "关闭",
"Keyboard shortcuts" => "快捷键",
"Navigation" => "导航",
@@ -119,12 +147,17 @@
"Add new addressbook" => "新增地址簿",
"Delete current contact" => "删除当前联系人",
"Add contact" => "添加联系人",
+"Compose mail" => "编写邮件",
+"Delete group" => "删除分组",
"Delete current photo" => "删除当前照片",
"Edit current photo" => "编辑当前照片",
"Upload new photo" => "上传新照片",
"Select photo from ownCloud" => "从 ownCloud 选择照片",
+"First name" => "名",
"Additional names" => "其他名称",
+"Last name" => "姓",
"Nickname" => "昵称",
+"Enter nickname" => "输入昵称",
"Title" => "标题",
"Organization" => "组织",
"Birthday" => "生日",
@@ -137,19 +170,30 @@
"Web site" => "网址",
"Preferred" => "偏好",
"Please specify a valid email address." => "请指定合法的电子邮件地址",
+"someone@example.com" => "someone@example.com",
"Mail to address" => "发送邮件到地址",
"Delete email address" => "删除电子邮件地址",
"Enter phone number" => "输入电话号码",
"Delete phone number" => "删除电话号码",
"Go to web site" => "访问网址",
+"Delete URL" => "删除URL",
"View on map" => "在地图上显示",
+"Delete address" => "删除地址",
+"Street address" => "街道地址",
+"12345" => "12345",
+"Postal code" => "邮政编码",
+"Your city" => "城市",
+"City" => "城市",
+"Your country" => "国家",
+"Country" => "国家",
"Instant Messenger" => "即时通讯",
"Delete IM" => "删除即时通讯工具",
+"Share" => "共享",
+"Export" => "导出",
"Add Contact" => "添加联系人",
"Drop photo to upload" => "拖拽图片进行上传",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "自定义格式,简称,全名,姓在前,姓在前并用逗号分割",
"Edit name details" => "编辑名称详情",
-"Enter nickname" => "输入昵称",
"http://www.somesite.com" => "http://www.wodewangzhan.com",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Separate groups with commas" => "用逗号隔开分组",
@@ -164,16 +208,12 @@
"Edit address" => "编辑地址",
"Type" => "类型",
"PO Box" => "邮箱",
-"Street address" => "街道地址",
"Street and number" => "街道门牌号码",
"Extended" => "扩展",
"Apartment number etc." => "公寓号码",
-"City" => "城市",
"Region" => "地区",
"E.g. state or province" => "例如州或省",
"Zipcode" => "邮编",
-"Postal code" => "邮政编码",
-"Country" => "国家",
"Addressbook" => "地址簿",
"Hon. prefixes" => "荣誉头衔",
"Miss" => "小姐",
@@ -205,7 +245,6 @@
"Primary address (Kontact et al)" => "首选地址 (Kontact 等)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "地址簿",
-"Share" => "共享",
"New Address Book" => "新建地址簿",
"Name" => "姓名",
"Description" => "描述",
diff --git a/l10n/zh_TW.php b/l10n/zh_TW.php
index d2f6143f..8bec72bf 100644
--- a/l10n/zh_TW.php
+++ b/l10n/zh_TW.php
@@ -29,10 +29,13 @@
"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.",
"Contacts" => "通訊錄",
"Select photo" => "選擇相片",
+"Error" => "錯誤",
+"Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0",
+"Upload Error" => "上傳發生錯誤",
+"Upload too large" => "上傳過大",
"Add group" => "新增群組",
"Enter name" => "輸入姓名",
"Enter description" => "輸入描述",
-"Error" => "錯誤",
"Is this correct?" => "是否正確?",
"Download" => "下載",
"Edit" => "編輯",
@@ -71,15 +74,12 @@
"HomePage" => "首頁",
"New Group" => "新群組",
"Settings" => "設定",
-"Share" => "分享",
"Import" => "匯入",
-"Export" => "匯出",
"(De-)select all" => "(反)全選",
"New Contact" => "新聯絡人",
-"Back" => "返回",
-"Delete Contact" => "刪除聯絡人",
"Groups" => "群組",
"Favorite" => "我的最愛",
+"Delete Contact" => "刪除聯絡人",
"Close" => "關閉",
"Add contact" => "新增聯絡人",
"Delete group" => "刪除群組",
@@ -90,6 +90,7 @@
"Additional names" => "額外名",
"Last name" => "姓氏",
"Nickname" => "綽號",
+"Enter nickname" => "輸入綽號",
"Title" => "標題",
"Organization" => "組織",
"Birthday" => "生日",
@@ -106,13 +107,17 @@
"Delete phone number" => "刪除電話號碼",
"Delete URL" => "刪除 URL",
"12345" => "12345",
+"Postal code" => "郵遞區號",
"Your city" => "城市",
+"City" => "城市",
"Your country" => "國家",
+"Country" => "國家",
"Delete IM" => "刪除 IM",
+"Share" => "分享",
+"Export" => "匯出",
"Add Contact" => "添加通訊錄",
"Drop photo to upload" => "使用拖曳來上傳相片",
"Edit name details" => "編輯姓名詳細資訊",
-"Enter nickname" => "輸入綽號",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Separate groups with commas" => "用逗號分隔群組",
"Edit groups" => "編輯群組",
@@ -126,11 +131,8 @@
"Type" => "類型",
"PO Box" => "通訊地址",
"Extended" => "分機",
-"City" => "城市",
"Region" => "地區",
"Zipcode" => "郵遞區號",
-"Postal code" => "郵遞區號",
-"Country" => "國家",
"Addressbook" => "電話簿",
"Miss" => "小姐",
"Ms" => "女士",
diff --git a/lib/addressbook.php b/lib/addressbook.php
index e96b414a..aeaffcd1 100644
--- a/lib/addressbook.php
+++ b/lib/addressbook.php
@@ -59,7 +59,7 @@ class Addressbook {
$stmt = \OCP\DB::prepare( 'SELECT * FROM `*PREFIX*contacts_addressbooks` WHERE `userid` = ? ' . $active_where . ' ORDER BY `displayname`' );
$result = $stmt->execute($values);
if (\OC_DB::isError($result)) {
- \OC_Log::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
+ \OCP\Util::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
return false;
}
} catch(\Exception $e) {
diff --git a/lib/app.php b/lib/app.php
index a6fcb5af..adac3112 100644
--- a/lib/app.php
+++ b/lib/app.php
@@ -34,7 +34,7 @@ class App {
/**
* Properties to index.
*/
- public static $index_properties = array('N', 'FN', 'NICKNAME', 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', 'PHOTO');
+ public static $index_properties = array('N', 'FN', 'NOTE', 'NICKNAME', 'ORG', 'CATEGORIES', 'EMAIL', 'TEL', 'IMPP', 'ADR', 'URL', 'GEO', 'PHOTO');
const THUMBNAIL_PREFIX = 'contact-thumbnail-';
const THUMBNAIL_SIZE = 28;
@@ -278,12 +278,27 @@ class App {
/**
* @brief Get the last modification time.
- * @param OC_VObject|Sabre\VObject\Component|integer $contact
+ * @param OC_VObject|Sabre\VObject\Component|integer|null $contact
* @returns DateTime | null
*/
- public static function lastModified($contact) {
- if(is_numeric($contact)) {
- $card = VCard::find($contact);
+ public static function lastModified($contact = null) {
+ if(is_null($contact)) {
+ // FIXME: This doesn't take shared address books into account.
+ $sql = 'SELECT MAX(`lastmodified`) FROM `oc_contacts_cards`, `oc_contacts_addressbooks` ' .
+ 'WHERE `oc_contacts_cards`.`addressbookid` = `oc_contacts_addressbooks`.`id` AND ' .
+ '`oc_contacts_addressbooks`.`userid` = ?';
+ $stmt = \OCP\DB::prepare($sql);
+ $result = $stmt->execute(array(\OCP\USER::getUser()));
+ if (\OC_DB::isError($result)) {
+ \OC_Log::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OC_Log::ERROR);
+ return null;
+ }
+ $lastModified = $result->fetchOne();
+ if(!is_null($lastModified)) {
+ return new \DateTime('@' . $lastModified);
+ }
+ } else if(is_numeric($contact)) {
+ $card = VCard::find($contact, array('lastmodified'));
return ($card ? new \DateTime('@' . $card['lastmodified']) : null);
} elseif($contact instanceof \OC_VObject || $contact instanceof VObject\Component) {
return isset($contact->REV)
diff --git a/lib/vcard.php b/lib/vcard.php
index 8b94e248..901d193e 100644
--- a/lib/vcard.php
+++ b/lib/vcard.php
@@ -46,18 +46,25 @@ class VCard {
/**
* @brief Returns all cards of an address book
* @param integer $id
+ * @param integer $offset
+ * @param integer $limit
+ * @param array $fields An array of the fields to return. Defaults to all.
* @return array|false
*
* The cards are associative arrays. You'll find the original vCard in
* ['carddata']
*/
- public static function all($id, $start=null, $num=null) {
+ public static function all($id, $offset=null, $limit=null, $fields = array()) {
$result = null;
+ \OCP\Util::writeLog('contacts', __METHOD__.'count fields:' . count($fields), \OCP\Util::DEBUG);
+ $qfields = count($fields) > 0
+ ? '`' . implode('`,`', $fields) . '`'
+ : '*';
if(is_array($id) && count($id)) {
$id_sql = join(',', array_fill(0, count($id), '?'));
- $sql = 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `addressbookid` IN ('.$id_sql.') ORDER BY `fullname`';
+ $sql = 'SELECT ' . $qfields . ' FROM `*PREFIX*contacts_cards` WHERE `addressbookid` IN ('.$id_sql.') ORDER BY `fullname`';
try {
- $stmt = \OCP\DB::prepare($sql, $num, $start);
+ $stmt = \OCP\DB::prepare($sql, $limit, $offset);
$result = $stmt->execute($id);
if (\OC_DB::isError($result)) {
\OC_Log::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
@@ -71,8 +78,8 @@ class VCard {
}
} elseif(is_int($id) || is_string($id)) {
try {
- $sql = 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `addressbookid` = ? ORDER BY `fullname`';
- $stmt = \OCP\DB::prepare($sql, $num, $start);
+ $sql = 'SELECT ' . $qfields . ' FROM `*PREFIX*contacts_cards` WHERE `addressbookid` = ? ORDER BY `fullname`';
+ $stmt = \OCP\DB::prepare($sql, $limit, $limit);
$result = $stmt->execute(array($id));
if (\OC_DB::isError($result)) {
\OC_Log::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
@@ -102,11 +109,15 @@ class VCard {
/**
* @brief Returns a card
* @param integer $id
+ * @param array $fields An array of the fields to return. Defaults to all.
* @return associative array or false.
*/
- public static function find($id) {
+ public static function find($id, $fields = array() ) {
try {
- $stmt = \OCP\DB::prepare( 'SELECT * FROM `*PREFIX*contacts_cards` WHERE `id` = ?' );
+ $qfields = count($fields) > 0
+ ? '`' . implode('`,`', $fields) . '`'
+ : '*';
+ $stmt = \OCP\DB::prepare( 'SELECT ' . $qfields . ' FROM `*PREFIX*contacts_cards` WHERE `id` = ?' );
$result = $stmt->execute(array($id));
if (\OC_DB::isError($result)) {
\OC_Log::write('contacts', __METHOD__. 'DB error: ' . \OC_DB::getErrorMessage($result), \OCP\Util::ERROR);
@@ -486,7 +497,7 @@ class VCard {
$fn = isset($card->FN) ? $card->FN : '';
$now = new \DateTime;
- $card->{'REV'} = $now->format(\DateTime::W3C);
+ $card->REV = $now->format(\DateTime::W3C);
$data = $card->serialize();
$stmt = \OCP\DB::prepare( 'UPDATE `*PREFIX*contacts_cards` SET `fullname` = ?,`carddata` = ?, `lastmodified` = ? WHERE `id` = ?' );
diff --git a/photo.php b/photo.php
index 047a27b8..ad82234d 100644
--- a/photo.php
+++ b/photo.php
@@ -23,6 +23,7 @@ function getStandardImage() {
$id = isset($_GET['id']) ? $_GET['id'] : null;
$etag = null;
$caching = null;
+$max_size = 170;
if(!$id || $id === 'new') {
getStandardImage();
@@ -69,7 +70,6 @@ if (is_null($contact)) {
if($etag) {
OCP\Response::setETagHeader($etag);
}
- $max_size = 200;
if ($image->width() > $max_size || $image->height() > $max_size) {
$image->resize($max_size);
}
diff --git a/templates/contacts.php b/templates/contacts.php
index 85b6d12a..8150f5b9 100644
--- a/templates/contacts.php
+++ b/templates/contacts.php
@@ -25,50 +25,34 @@