diff --git a/css/contacts.css b/css/contacts.css index b787167f..864c4972 100644 --- a/css/contacts.css +++ b/css/contacts.css @@ -45,6 +45,8 @@ float: left; width: auto; } +#content input[type="button"]:hover, #content select:hover, #content select:focus, #content select:active, #content input[type="button"]:focus, #content .button:hover, button:hover { background-color:#fff; color:#333; } + #content fieldset, #content div, #content span, #content section { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } @@ -94,7 +96,7 @@ } #groupactions { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; height: 4em; border-bottom: 1px solid #DDDDDD; } -#groupactions > button, .addcontact, .import-upload-button, .doImport { +/*#groupactions > button, .addcontact, .import-upload-button, .doImport { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; @@ -108,7 +110,7 @@ color: #fff; border-right: medium none; margin: .7em 2em; -} +}*/ #grouplist { z-index: 100; } #grouplist h3 .action:not(.starred):not(.checked):not(.favorite) { float: right; display: none; padding: 0; margin: auto; } @@ -136,7 +138,7 @@ dl.form { display: block; width: auto; margin: 0; padding: 0; cursor: normal; } .action, .icon { display: inline-block; - cursor: pointer; + cursor: pointer; background-repeat: no-repeat; } .action:not(.text), .icon:not(.text) { @@ -156,8 +158,9 @@ dl.form { display: block; width: auto; margin: 0; padding: 0; cursor: normal; } .no-svg .delete { background-image:url('%webroot%/core/img/actions/delete.png'); } .no-svg .edit { background-image:url('%webroot%/core/img/actions/rename.png'); } .no-svg .share { background-image:url('%webroot%/core/img/actions/share.png'); } +.no-svg .groups { background-image:url('%webroot%/core/img/actions/shared.png'); } .no-svg .mail { background-image:url('%webroot%/core/img/actions/mail.png'); } -.no-svg .upload { background-image:url('%webroot%/core/img/actions/upload.png'); } +.no-svg .import, .no-svg .upload { background-image:url('%webroot%/core/img/actions/upload.png'); } .no-svg .export, .no-svg .download { background-image:url('%webroot%/core/img/actions/download.png'); } .no-svg .cloud:not { background-image:url('%webroot%/core/img/places/picture.png'); } .no-svg .globe:not { background-image:url('%webroot%/core/img/actions/public.png'); } @@ -171,13 +174,15 @@ dl.form { display: block; width: auto; margin: 0; padding: 0; cursor: normal; } .svg .action.text, .svg .icon.text, .svg .svg.text { background-size: 16px 16px; background-origin: content-box; + background-repeat: no-repeat; } -.svg .add:not(.text) { background-image:url('%webroot%/core/img/actions/add.svg'); } +.svg .add { background-image:url('%webroot%/core/img/actions/add.svg'); } .svg .delete { background-image:url('%webroot%/core/img/actions/delete.svg'); } .svg .edit { background-image:url('%webroot%/core/img/actions/rename.svg'); } .svg .share { background-image:url('%webroot%/core/img/actions/share.svg'); } +.svg .groups { background-image:url('%webroot%/core/img/actions/shared.svg'); } .svg .mail { background-image:url('%webroot%/core/img/actions/mail.svg'); } -.svg .import { background-image:url('%webroot%/core/img/actions/upload.svg'); } +.svg .import,.svg .upload { background-image:url('%webroot%/core/img/actions/upload.svg'); } .svg .export,.svg .download { background-image:url('%webroot%/core/img/actions/download.svg'); } .svg .cloud { background-image:url('%webroot%/core/img/places/picture.svg'); } .svg .globe { background-image:url('%webroot%/core/img/actions/public.svg'); } diff --git a/img/active_star.svg b/img/active_star.svg new file mode 100644 index 00000000..badb81b9 --- /dev/null +++ b/img/active_star.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/img/inactive_star.svg b/img/inactive_star.svg new file mode 100644 index 00000000..f62c6b03 --- /dev/null +++ b/img/inactive_star.svg @@ -0,0 +1,78 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/js/app.js b/js/app.js index c0426598..e5407902 100644 --- a/js/app.js +++ b/js/app.js @@ -731,7 +731,7 @@ OC.Contacts = OC.Contacts || { OCCategories.type = 'contact'; this.bindEvents(); this.$toggleAll.show(); - this.showActions(['addcontact']); + this.showActions(['add']); // Wait 2 mins then check if contacts are indexed. setTimeout(function() { @@ -773,7 +773,7 @@ OC.Contacts = OC.Contacts || { $.each($($('#contactDetailsTemplate').html()), function(idx, node) { if(node.nodeType === Node.ELEMENT_NODE && node.nodeName === 'DIV') { var $tmpl = $(node.innerHTML); - self.detailTemplates[$tmpl.data('element')] = $(node.outerHTML); + self.detailTemplates[$tmpl.data('element')] = $(node); } }); this.$groupListItemTemplate = $('#groupListItemTemplate'); @@ -932,11 +932,15 @@ OC.Contacts = OC.Contacts || { }); $(document).bind('request.contact.setasfavorite', function(e, data) { - var id = parseInt(data.id); console.log('contact', data.id, 'request.contact.setasfavorite'); self.groups.setAsFavorite(data.id, data.state); }); + $(document).bind('request.contact.addtogroup', function(e, data) { + console.log('contact', data.id, 'request.contact.addtogroup'); + self.groups.addTo(data.id, data.groupid); + }); + $(document).bind('request.contact.export', function(e, data) { var id = parseInt(data.id); console.log('contact', data.id, 'request.contact.export'); @@ -1029,7 +1033,7 @@ OC.Contacts = OC.Contacts || { } self.$contactList.show(); self.$toggleAll.show(); - self.showActions(['addcontact']); + self.showActions(['add']); if(result.type === 'category' || result.type === 'fav') { self.contacts.showContacts(result.contacts); } else if(result.type === 'shared') { @@ -1108,9 +1112,9 @@ OC.Contacts = OC.Contacts || { self.buildGroupSelect(); } if(isChecked) { - self.showActions(['addcontact', 'download', 'groups', 'delete', 'favorite']); + self.showActions(['add', 'download', 'groups', 'delete', 'favorite']); } else { - self.showActions(['addcontact']); + self.showActions(['add']); } }); @@ -1119,9 +1123,9 @@ OC.Contacts = OC.Contacts || { if(self.$groups.find('option').length === 1) { self.buildGroupSelect(); } - self.showActions(['addcontact', 'download', 'groups', 'delete', 'favorite']); + self.showActions(['add', 'download', 'groups', 'delete', 'favorite']); } else if(self.contacts.getSelectedContacts().length === 0) { - self.showActions(['addcontact']); + self.showActions(['add']); } }); @@ -1144,7 +1148,7 @@ OC.Contacts = OC.Contacts || { self.setAllChecked(false); self.$toggleAll.prop('checked', false); if(!self.currentid) { - self.showActions(['addcontact']); + self.showActions(['add']); } if($opt.val() === 'add') { // Add new group @@ -1272,23 +1276,6 @@ OC.Contacts = OC.Contacts || { self.openContact($(this).data('id')); }); - $('.addcontact').on('click keydown', function(event) { - if(wrongKey(event)) { - return; - } - console.log('add'); - self.$toggleAll.hide(); - $(this).hide(); - self.currentid = 'new'; - var props = { - favorite: false, - groups: self.groups.categories, - }; - self.tmpcontact = self.contacts.addContact(); - self.$rightContent.prepend(self.tmpcontact); - self.hideActions(); - }); - this.$settings.find('h3').on('click keydown', function(event) { if(wrongKey(event)) { return; @@ -1418,13 +1405,24 @@ OC.Contacts = OC.Contacts || { $list.toggle('slow'); }); - this.$header.on('click keydown', '.back', function(event) { + this.$header.on('click keydown', '.add', function(event) { if(wrongKey(event)) { return; } - console.log('back'); - self.closeContact(self.currentid); - self.$toggleAll.show(); + console.log('add'); + self.$toggleAll.hide(); + $(this).hide(); + self.currentid = 'new'; + // Properties that the contact doesn't know + console.log('addContact, groupid', self.currentgroup) + var groupprops = { + favorite: false, + groups: self.groups.categories, + currentgroup: {id:self.currentgroup, name:self.groups.nameById(self.currentgroup)}, + }; + self.tmpcontact = self.contacts.addContact(groupprops); + self.$rightContent.prepend(self.tmpcontact); + self.hideActions(); }); this.$header.on('click keydown', '.delete', function(event) { @@ -1438,7 +1436,7 @@ OC.Contacts = OC.Contacts || { } else { self.contacts.delayedDelete(self.contacts.getSelectedContacts()); } - self.showActions(['addcontact']); + self.showActions(['add']); }); this.$header.on('click keydown', '.download', function(event) { @@ -1824,7 +1822,7 @@ OC.Contacts = OC.Contacts || { } this.$contactList.removeClass('dim'); delete this.currentid; - this.showActions(['addcontact']); + this.showActions(['add']); this.$groups.find('optgroup,option:not([value="-1"])').remove(); }, openContact: function(id) { @@ -1839,11 +1837,13 @@ OC.Contacts = OC.Contacts || { this.$contactList.addClass('dim'); this.$toggleAll.hide(); this.jumpToContact(this.currentid); - var props = { + // Properties that the contact doesn't know + var groupprops = { favorite: this.groups.isFavorite(this.currentid), groups: this.groups.categories, + currentgroup: {id:this.currentgroup, name:this.groups.nameById(this.currentgroup)}, }; - var $contactelem = this.contacts.showContact(this.currentid, props); + var $contactelem = this.contacts.showContact(this.currentid, groupprops); var self = this; var $contact = $contactelem.find('#contact'); var adjustElems = function() { @@ -2116,7 +2116,12 @@ OC.Contacts = OC.Contacts || { }; (function( $ ) { - + // Support older browsers. From http://www.yelotofu.com/2008/08/jquery-outerhtml/ + jQuery.fn.outerHTML = function(s) { + return s + ? this.before(s).remove() + : jQuery('

').append(this.eq(0).clone()).html(); + }; /** * Object Template * Inspired by micro templating done by e.g. underscore.js @@ -2138,7 +2143,7 @@ OC.Contacts = OC.Contacts || { // From stackoverflow.com/questions/1408289/best-way-to-do-variable-interpolation-in-javascript _build: function(o){ var data = this.$elem.attr('type') === 'text/template' - ? this.$elem.html() : this.$elem.get(0).outerHTML; + ? this.$elem.html() : this.$elem.outerHTML(); return data.replace(/{([^{}]*)}/g, function (a, b) { var r = o[b]; diff --git a/js/contacts.js b/js/contacts.js index 327be3f1..92006244 100644 --- a/js/contacts.js +++ b/js/contacts.js @@ -403,6 +403,20 @@ OC.Contacts = OC.Contacts || {}; self.id = parseInt(jsondata.data.id); self.access.id = parseInt(jsondata.data.aid); self.data = jsondata.data.details; + // Add contact to current group + if(self.groupprops && self.groupprops.currentgroup.name !== 'all' + && self.groupprops.currentgroup.name !== 'fav') { + if(!self.data.CATEGORIES) { + self.data.CATEGORIES = [{value:[self.groupprops.currentgroup.name], parameters:[]}]; + // Save to vCard + self.saveProperty({name:'CATEGORIES', value:self.data.CATEGORIES[0].value.join(',') }); + // Tell OC.Contacts to save in backend + $(document).trigger('request.contact.addtogroup', { + id: self.id, + groupid: self.groupprops.currentgroup.id, + }); + } + } $(document).trigger('status.contact.added', { id: self.id, contact: self, @@ -555,14 +569,15 @@ OC.Contacts = OC.Contacts || {}; * Render the full contact * @return A jquery object to be inserted in the DOM */ - Contact.prototype.renderContact = function(props) { + Contact.prototype.renderContact = function(groupprops) { + this.groupprops = groupprops; var self = this; var n = this.getPreferredValue('N', ['', '', '', '', '']); //console.log('Contact.renderContact', this.data); var values = this.data ? { id: this.id, - favorite:props.favorite ? 'active' : '', + favorite:groupprops.favorite ? 'active' : '', name: this.getPreferredValue('FN', ''), n0: n[0]||'', n1: n[1]||'', n2: n[2]||'', n3: n[3]||'', n4: n[4]||'', nickname: this.getPreferredValue('NICKNAME', ''), @@ -666,6 +681,9 @@ OC.Contacts = OC.Contacts || {}; }); this.$fullelem.find('.favorite').on('click', function () { var state = $(this).hasClass('active'); + if(!this.data) { + return; + } if(state) { $(this).switchClass('active', 'inactive'); } else { @@ -812,7 +830,7 @@ OC.Contacts = OC.Contacts || {}; */ Contact.prototype.renderStandardProperty = function(name, property) { if(!this.detailTemplates[name]) { - console.log('No template for', name); + console.error('No template for', name); return; } var values = property @@ -978,7 +996,7 @@ OC.Contacts = OC.Contacts || {}; if(!dontloadhandlers && this.isEditable()) { this.$photowrapper.on('mouseenter', function(event) { - if($(event.target).is('.favorite')) { + if($(event.target).is('.favorite') || !self.data) { return; } $phototools.slideDown(200); diff --git a/l10n/ar.php b/l10n/ar.php index 87bd56b1..b50c0d60 100644 --- a/l10n/ar.php +++ b/l10n/ar.php @@ -34,6 +34,7 @@ "Phone" => "الهاتف", "Email" => "البريد الالكتروني", "Address" => "عنوان", +"Delete contact" => "امحي المعرفه", "Preferred" => "مفضل", "City" => "المدينة", "Country" => "البلد", @@ -41,7 +42,6 @@ "Export" => "تصدير المعلومات", "Add Contact" => "أضف شخص ", "Download contact" => "انزال المعرفه", -"Delete contact" => "امحي المعرفه", "Type" => "نوع", "PO Box" => "العنوان البريدي", "Extended" => "إضافة", diff --git a/l10n/ca.php b/l10n/ca.php index a73c9950..680cbfcc 100644 --- a/l10n/ca.php +++ b/l10n/ca.php @@ -55,6 +55,7 @@ "Contact is not in this group." => "El contacte no és en aquest grup.", "Contacts are not in this group." => "Els contactes no són en aquest grup.", "A group named {group} already exists" => "Un grup anomenat {group} ja existeix", +"You can drag groups to\narrange them as you like." => "Podeu arrossegar grups per\norganitzar-los com volgueu.", "All" => "Tots", "Favorites" => "Preferits", "Shared by {owner}" => "Compartits per {owner}", @@ -67,9 +68,14 @@ "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.", +"Deleting done. Click here to cancel reloading." => "S'ha eliminat. Feu clic aquí per cancel·lar la recàrrega.", +"Add address book" => "Afegeix llibreta d'adreces", +"Import done. Click here to cancel reloading." => "S'ha importat. Feu clic aquí per cancel·lar la recàrrega.", "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 from {filename}..." => "Important des de {filename}...", +"{success} imported, {failed} failed." => "{success} importat, {failed} fallat.", "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", @@ -145,12 +151,14 @@ "HomePage" => "Pàgina d'inici", "New Group" => "Grup nou", "Settings" => "Configuració", +"Address books" => "Llibretes d'adreces", "Import" => "Importa", +"Select files to import" => "Seleccioneu els fitxers a importar", +"Select files" => "Seleccioneu fitxers", "Import into:" => "Importa a:", "OK" => "D'acord", "(De-)select all" => "(Des-)selecciona'ls tots", "New Contact" => "Contate nou", -"Download Contact" => "Baixa contacte", "Groups" => "Grups", "Favorite" => "Preferits", "Delete Contact" => "Elimina contacte", @@ -181,9 +189,12 @@ "Nickname" => "Sobrenom", "Enter nickname" => "Escriviu el sobrenom", "Title" => "Títol", +"Enter title" => "Escriviu el títol", "Organization" => "Organització", +"Enter organization" => "Escriviu l'organització", "Birthday" => "Aniversari", "Notes go here..." => "Escriviu notes aquí...", +"Export as VCF" => "Exporta com a VCF", "Add" => "Afegeix", "Phone" => "Telèfon", "Email" => "Correu electrònic", @@ -191,6 +202,7 @@ "Address" => "Adreça", "Note" => "Nota", "Web site" => "Adreça web", +"Delete contact" => "Suprimeix el contacte", "Preferred" => "Preferit", "Please specify a valid email address." => "Especifiqueu una adreça de correu electrònic correcta", "someone@example.com" => "algú@exemple.com", @@ -209,12 +221,14 @@ "Your city" => "Ciutat", "City" => "Ciutat", "Some region" => "Comarca", +"State or province" => "Estat o província", "Your country" => "País", "Country" => "País", "Instant Messenger" => "Instant Messenger", "Delete IM" => "Elimina IM", "Share" => "Comparteix", "Export" => "Exporta", +"CardDAV link" => "Enllaç CardDAV", "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", @@ -228,7 +242,6 @@ "Add notes here." => "Afegiu notes aquí.", "Add field" => "Afegeix un camp", "Download contact" => "Baixa el contacte", -"Delete contact" => "Suprimeix el contacte", "The temporary image has been removed from cache." => "La imatge temporal ha estat eliminada de la memòria de cau.", "Edit address" => "Edita l'adreça", "Type" => "Tipus", diff --git a/l10n/cs_CZ.php b/l10n/cs_CZ.php index e4d23354..317db650 100644 --- a/l10n/cs_CZ.php +++ b/l10n/cs_CZ.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "Vybrat (odznačit) vše", "New Contact" => "Nový kontakt", -"Download Contact" => "Stáhnout kontakt", "Groups" => "Skupiny", "Favorite" => "Oblíbit", "Delete Contact" => "Smazat kontakt", @@ -190,9 +189,12 @@ "Nickname" => "Přezdívka", "Enter nickname" => "Zadejte přezdívku", "Title" => "Název", +"Enter title" => "Zadejte název", "Organization" => "Organizace", +"Enter organization" => "Zadejte organizaci", "Birthday" => "Narozeniny", "Notes go here..." => "Sem vložte poznámky...", +"Export as VCF" => "Exportovat jako VCF", "Add" => "Přidat", "Phone" => "Telefon", "Email" => "E-mail", @@ -200,6 +202,7 @@ "Address" => "Adresa", "Note" => "Poznámka", "Web site" => "Webová stránka", +"Delete contact" => "Smazat kontakt", "Preferred" => "Preferované", "Please specify a valid email address." => "Prosím zadejte platnou e-mailovou adresu", "someone@example.com" => "někdo@example.com", @@ -218,6 +221,7 @@ "Your city" => "Vaše město", "City" => "Město", "Some region" => "Nějaký region", +"State or province" => "Stát, či provincie", "Your country" => "Váše země", "Country" => "Země", "Instant Messenger" => "Komunikátor", @@ -238,7 +242,6 @@ "Add notes here." => "Zde přidejte poznámky.", "Add field" => "Přidat pole", "Download contact" => "Stáhnout kontakt", -"Delete contact" => "Smazat kontakt", "The temporary image has been removed from cache." => "Obrázek byl odstraněn z vyrovnávací paměti.", "Edit address" => "Upravit adresu", "Type" => "Typ", diff --git a/l10n/da.php b/l10n/da.php index e9666e5e..c0a8fccd 100644 --- a/l10n/da.php +++ b/l10n/da.php @@ -140,6 +140,7 @@ "Address" => "Adresse", "Note" => "Note", "Web site" => "Hjemmeside", +"Delete contact" => "Slet kontaktperson", "Preferred" => "Foretrukken", "Please specify a valid email address." => "Indtast venligst en gyldig email-adresse.", "Mail to address" => "Send mail til adresse", @@ -169,7 +170,6 @@ "Add notes here." => "Tilføj noter her.", "Add field" => "Tilføj element", "Download contact" => "Download kontaktperson", -"Delete contact" => "Slet kontaktperson", "The temporary image has been removed from cache." => "Det midlertidige billede er ikke længere tilgængeligt.", "Edit address" => "Rediger adresse", "Type" => "Type", diff --git a/l10n/de.php b/l10n/de.php index 17c8f68f..b62c5d90 100644 --- a/l10n/de.php +++ b/l10n/de.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "Alle (nicht) auswählen", "New Contact" => "Neuer Kontakt", -"Download Contact" => "Kontakt herunterladen", "Groups" => "Gruppen", "Favorite" => "Favorit", "Delete Contact" => "Kontakt löschen", @@ -190,7 +189,9 @@ "Nickname" => "Spitzname", "Enter nickname" => "Spitzname angeben", "Title" => "Titel", +"Enter title" => "Titel eingeben", "Organization" => "Organisation", +"Enter organization" => "Organisation eingeben", "Birthday" => "Geburtstag", "Notes go here..." => "Notizen hier hinein...", "Add" => "Hinzufügen", @@ -200,6 +201,7 @@ "Address" => "Adresse", "Note" => "Notiz", "Web site" => "Webseite", +"Delete contact" => "Kontakt löschen", "Preferred" => "Bevorzugt", "Please specify a valid email address." => "Bitte trage eine gültige E-Mail-Adresse ein.", "someone@example.com" => "jemand@beispiel.de", @@ -218,6 +220,7 @@ "Your city" => "Deine Stadt", "City" => "Stadt", "Some region" => "Eine Region", +"State or province" => "Staat oder Provinz", "Your country" => "Dein Land", "Country" => "Land", "Instant Messenger" => "Instant Messenger", @@ -238,7 +241,6 @@ "Add notes here." => "Füge hier Notizen ein.", "Add field" => "Feld hinzufügen", "Download contact" => "Kontakt herunterladen", -"Delete contact" => "Kontakt löschen", "The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.", "Edit address" => "Adresse ändern", "Type" => "Typ", diff --git a/l10n/de_DE.php b/l10n/de_DE.php index 24a3b872..e1d94444 100644 --- a/l10n/de_DE.php +++ b/l10n/de_DE.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "Alle (ab-)wählen", "New Contact" => "Neuer Kontakt", -"Download Contact" => "Kontakt herunterladen", "Groups" => "Gruppen", "Favorite" => "Favorit", "Delete Contact" => "Kontakt löschen", @@ -190,7 +189,9 @@ "Nickname" => "Spitzname", "Enter nickname" => "Spitzname angeben", "Title" => "Titel", +"Enter title" => "Titel eingeben", "Organization" => "Organisation", +"Enter organization" => "Organisation eingeben", "Birthday" => "Geburtstag", "Notes go here..." => "Notizen hier hinein...", "Add" => "Hinzufügen", @@ -200,6 +201,7 @@ "Address" => "Adresse", "Note" => "Notiz", "Web site" => "Webseite", +"Delete contact" => "Kontakt löschen", "Preferred" => "Bevorzugt", "Please specify a valid email address." => "Bitte tragen Sie eine gültige E-Mail-Adresse ein.", "someone@example.com" => "jemand@beispiel.com", @@ -218,6 +220,7 @@ "Your city" => "Ihre Stadt", "City" => "Stadt", "Some region" => "Eine Region", +"State or province" => "Staat oder Provinz", "Your country" => "Ihr Land", "Country" => "Land", "Instant Messenger" => "Instant Messenger", @@ -238,7 +241,6 @@ "Add notes here." => "Fügen Sie hier Notizen ein.", "Add field" => "Feld hinzufügen", "Download contact" => "Kontakt herunterladen", -"Delete contact" => "Kontakt löschen", "The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.", "Edit address" => "Adresse ändern", "Type" => "Typ", diff --git a/l10n/el.php b/l10n/el.php index a0c9d3ca..6341aca7 100644 --- a/l10n/el.php +++ b/l10n/el.php @@ -165,6 +165,7 @@ "Address" => "Διεύθυνση", "Note" => "Σημείωση", "Web site" => "Ιστότοπος", +"Delete contact" => "Διαγραφή επαφής", "Preferred" => "Προτιμώμενο", "Please specify a valid email address." => "Παρακαλώ εισήγαγε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου", "someone@example.com" => "someone@example.com", @@ -200,7 +201,6 @@ "Add notes here." => "Πρόσθεσε τις σημειώσεις εδώ", "Add field" => "Προσθήκη πεδίου", "Download contact" => "Λήψη επαφής", -"Delete contact" => "Διαγραφή επαφής", "The temporary image has been removed from cache." => "Η προσωρινή εικόνα αφαιρέθηκε από την κρυφή μνήμη.", "Edit address" => "Επεξεργασία διεύθυνσης", "Type" => "Τύπος", diff --git a/l10n/eo.php b/l10n/eo.php index 821ae318..67156930 100644 --- a/l10n/eo.php +++ b/l10n/eo.php @@ -150,7 +150,6 @@ "OK" => "Akcepti", "(De-)select all" => "(Mal)elekti ĉion", "New Contact" => "Nova kontakto", -"Download Contact" => "Elŝuti kontakton", "Groups" => "Grupoj", "Favorite" => "Favorato", "Delete Contact" => "Forigi kontakton", @@ -191,6 +190,7 @@ "Address" => "Adreso", "Note" => "Noto", "Web site" => "TTT-ejo", +"Delete contact" => "Forigi kontakton", "Preferred" => "Preferata", "Please specify a valid email address." => "Bonvolu specifi validan retpoŝtadreson.", "someone@example.com" => "iu@example.com", @@ -228,7 +228,6 @@ "Add notes here." => "Aldoni notojn ĉi tie.", "Add field" => "Aldoni kampon", "Download contact" => "Elŝuti kontakton", -"Delete contact" => "Forigi kontakton", "The temporary image has been removed from cache." => "La provizora bildo estas forigita de la kaŝmemoro.", "Edit address" => "Redakti adreson", "Type" => "Tipo", diff --git a/l10n/es.php b/l10n/es.php index 90441895..fff29abb 100644 --- a/l10n/es.php +++ b/l10n/es.php @@ -67,9 +67,15 @@ "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.", +"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. Haga click para cancelar la recarga", +"Add address book" => "Añadir libreta de direcciones", +"Import done. Click here to cancel reloading." => "Importación completa. Haga click para cancerla la recarga. ", "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 from {filename}..." => "Importando desde {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" => "Imposible subir su archivo, es un directorio o tiene 0 bytes", "Upload Error" => "Error de subida", @@ -82,7 +88,7 @@ "Error loading profile picture." => "Error cargando la imagen del perfil.", "Enter name" => "Introducir nombre", "Enter description" => "Introducir descripción", -"Select addressbook" => "Seleccionar contactos", +"Select addressbook" => "Seleccionar libreta de direcciones", "The address book name cannot be empty." => "El nombre de la libreta de direcciones no puede estar vacio.", "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", @@ -145,12 +151,14 @@ "HomePage" => "Página de inicio", "New Group" => "Nuevo grupo", "Settings" => "Configuración", +"Address books" => "Libretas de direcciones", "Import" => "Importar", +"Select files to import" => "Selecionar archivos para importar", +"Select files" => "Selecionar archivos", "Import into:" => "Importar hacia:", "OK" => "Aceptar", "(De-)select all" => "Seleccionar todos", "New Contact" => "Nuevo contacto", -"Download Contact" => "Descargar contacto", "Groups" => "Grupos", "Favorite" => "Favorito", "Delete Contact" => "Eliminar contacto", @@ -159,7 +167,7 @@ "Navigation" => "Navegación", "Next contact in list" => "Siguiente contacto en la lista", "Previous contact in list" => "Anterior contacto en la lista", -"Expand/collapse current addressbook" => "Abrir/Cerrar la agenda", +"Expand/collapse current addressbook" => "Abrir/Cerrar la libreta de direcciones", "Next addressbook" => "Siguiente libreta de direcciones", "Previous addressbook" => "Anterior libreta de direcciones", "Actions" => "Acciones", @@ -181,9 +189,12 @@ "Nickname" => "Alias", "Enter nickname" => "Introduce un alias", "Title" => "Título", +"Enter title" => "Ingrese titulo", "Organization" => "Organización", +"Enter organization" => "Ingrese organización", "Birthday" => "Cumpleaños", "Notes go here..." => "Las notas van acá...", +"Export as VCF" => "Exportar como VCF", "Add" => "Añadir", "Phone" => "Teléfono", "Email" => "Correo electrónico", @@ -191,6 +202,7 @@ "Address" => "Dirección", "Note" => "Nota", "Web site" => "Sitio Web", +"Delete contact" => "Eliminar contacto", "Preferred" => "Preferido", "Please specify a valid email address." => "Por favor especifica una dirección de correo electrónico válida.", "someone@example.com" => "alguien@ejemplo.com", @@ -209,12 +221,14 @@ "Your city" => "Su ciudad", "City" => "Ciudad", "Some region" => "Alguna región", +"State or province" => "Estado o provincia", "Your country" => "Su 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" => "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", @@ -228,7 +242,6 @@ "Add notes here." => "Añade notas aquí.", "Add field" => "Añadir campo", "Download contact" => "Descargar contacto", -"Delete contact" => "Eliminar contacto", "The temporary image has been removed from cache." => "La foto temporal se ha borrado del cache.", "Edit address" => "Editar dirección", "Type" => "Tipo", diff --git a/l10n/es_AR.php b/l10n/es_AR.php index 550aea5d..42c9dc61 100644 --- a/l10n/es_AR.php +++ b/l10n/es_AR.php @@ -68,9 +68,9 @@ "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. ", +"Deleting done. Click here to cancel reloading." => "Borrado completo. Haga 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. ", +"Import done. Click here to cancel reloading." => "Importación completa. Haga 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", @@ -159,7 +159,6 @@ "OK" => "Aceptar", "(De-)select all" => "(De)selecionar todos", "New Contact" => "Nuevo contato", -"Download Contact" => "Descargar contacto", "Groups" => "Grupos", "Favorite" => "Favorito", "Delete Contact" => "Borrar contacto", @@ -190,9 +189,12 @@ "Nickname" => "Sobrenombre", "Enter nickname" => "Escribí un sobrenombre", "Title" => "Título", +"Enter title" => "Ingrese titulo", "Organization" => "Organización", +"Enter organization" => "Ingrese organización", "Birthday" => "Cumpleaños", "Notes go here..." => "Las notas van aquí", +"Export as VCF" => "Exportar como VCF", "Add" => "Agregar", "Phone" => "Teléfono", "Email" => "Correo Electrónico", @@ -200,6 +202,7 @@ "Address" => "Dirección", "Note" => "Nota", "Web site" => "Página web", +"Delete contact" => "Borrar contacto", "Preferred" => "Preferido", "Please specify a valid email address." => "Por favor, escribí una dirección de correo electrónico válida.", "someone@example.com" => "alguien@ejemplo.com", @@ -218,6 +221,7 @@ "Your city" => "Tu ciudad", "City" => "Ciudad", "Some region" => "Alguna región", +"State or province" => "Estado o provincia", "Your country" => "Tu país", "Country" => "País", "Instant Messenger" => "Mensajero instantáneo", @@ -238,7 +242,6 @@ "Add notes here." => "Agregá notas acá.", "Add field" => "Agregar campo", "Download contact" => "Descargar contacto", -"Delete contact" => "Borrar contacto", "The temporary image has been removed from cache." => "La imagen temporal fue borrada de la caché", "Edit address" => "Editar dirección", "Type" => "Tipo", diff --git a/l10n/et_EE.php b/l10n/et_EE.php index ce5bc4d5..377b4426 100644 --- a/l10n/et_EE.php +++ b/l10n/et_EE.php @@ -149,7 +149,6 @@ "OK" => "OK", "(De-)select all" => "(Ära) vali kõik", "New Contact" => "Uus kontakt", -"Download Contact" => "Lae kontakt alla", "Groups" => "Grupid", "Favorite" => "Lemmik", "Delete Contact" => "Kustuta kontakt", @@ -190,6 +189,7 @@ "Address" => "Aadress", "Note" => "Märkus", "Web site" => "Veebisait", +"Delete contact" => "Kustuta kontakt", "Preferred" => "Eelistatud", "Please specify a valid email address." => "Palun sisesta korrektne e-posti aadress.", "someone@example.com" => "someone@example.com", @@ -227,7 +227,6 @@ "Add notes here." => "Lisa märkmed siia.", "Add field" => "Lisa väli", "Download contact" => "Lae kontakt alla", -"Delete contact" => "Kustuta kontakt", "The temporary image has been removed from cache." => "Ajutine pilt on puhvrist eemaldatud.", "Edit address" => "Muuda aadressi", "Type" => "Tüüp", diff --git a/l10n/eu.php b/l10n/eu.php index e0484e9a..948a0eb6 100644 --- a/l10n/eu.php +++ b/l10n/eu.php @@ -66,9 +66,12 @@ "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.", +"Add address book" => "Gehitu helbide-liburua", +"Import done. Click here to cancel reloading." => "Inportatzea eginda. Hemen klikatu birkargatzea uzteko.", "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 from {filename}..." => "Inportatzen {fitxategi-izena}...", "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", @@ -143,12 +146,14 @@ "HomePage" => "WebOrria", "New Group" => "Talde berria", "Settings" => "Ezarpenak", +"Address books" => "Helbide liburuak", "Import" => "Inportatu", +"Select files to import" => "Hautatu inportatzeko fitxategiak", +"Select files" => "Hautatu fitxategiak", "Import into:" => "Inportatu hemen:", "OK" => "Ados", "(De-)select all" => "(Ez-)Hautatu dena", "New Contact" => "Kontaktu berria", -"Download Contact" => "Deskargatu kontaktua", "Groups" => "Taldeak", "Favorite" => "Gogokoa", "Delete Contact" => "Ezabatu kontaktua", @@ -179,9 +184,12 @@ "Nickname" => "Ezizena", "Enter nickname" => "Sartu ezizena", "Title" => "Izenburua", +"Enter title" => "Idatzi titulua", "Organization" => "Erakundea", +"Enter organization" => "Idatzi erakundea", "Birthday" => "Jaioteguna", "Notes go here..." => "Idatzi oharrak hemen...", +"Export as VCF" => "VCF gisa esportatu", "Add" => "Gehitu", "Phone" => "Telefonoa", "Email" => "Eposta", @@ -189,8 +197,10 @@ "Address" => "Helbidea", "Note" => "Oharra", "Web site" => "Web orria", +"Delete contact" => "Ezabatu kontaktua", "Preferred" => "Hobetsia", "Please specify a valid email address." => "Mesedez sartu eposta helbide egoki bat", +"someone@example.com" => "norbait@adibide.com", "Mail to address" => "Bidali helbidera", "Delete email address" => "Ezabatu eposta helbidea", "Enter phone number" => "Sartu telefono zenbakia", @@ -199,17 +209,21 @@ "Delete URL" => "Ezabatu URLa", "View on map" => "Ikusi mapan", "Delete address" => "Ezabatu helbidea", +"1 Main Street" => "Kale nagusia 1", "Street address" => "Kalearen helbidea", "12345" => "12345", "Postal code" => "Posta kodea", "Your city" => "Zure hiria", "City" => "Hiria", +"Some region" => "Eskualde bat", +"State or province" => "Estatu edo probintzia", "Your country" => "Zure herrialdea", "Country" => "Herrialdea", "Instant Messenger" => "Instant Messenger", "Delete IM" => "Ezabatu BM", "Share" => "Partekatu", "Export" => "Exportatu", +"CardDAV link" => "CardDAV lotura", "Add Contact" => "Gehitu kontaktua", "Drop photo to upload" => "Askatu argazkia igotzeko", "Edit name details" => "Editatu izenaren zehaztasunak", @@ -222,7 +236,6 @@ "Add notes here." => "Gehitu oharrak hemen.", "Add field" => "Gehitu eremua", "Download contact" => "Deskargatu kontaktua", -"Delete contact" => "Ezabatu kontaktua", "The temporary image has been removed from cache." => "Aldi bateko irudia cachetik ezabatu da.", "Edit address" => "Editatu helbidea", "Type" => "Mota", diff --git a/l10n/fa.php b/l10n/fa.php index cb56cff0..286b062e 100644 --- a/l10n/fa.php +++ b/l10n/fa.php @@ -88,6 +88,7 @@ "Email" => "نشانی پست الکترنیک", "Address" => "نشانی", "Note" => "یادداشت", +"Delete contact" => "پاک کردن اطلاعات شخص مورد نظر", "Preferred" => "مقدم", "Please specify a valid email address." => "لطفا یک پست الکترونیکی معتبر وارد کنید", "Mail to address" => "به نشانی ارسال شد", @@ -111,7 +112,6 @@ "Add notes here." => "اینجا یادداشت ها را بیافزایید", "Add field" => "اضافه کردن فیلد", "Download contact" => "دانلود مشخصات اشخاص", -"Delete contact" => "پاک کردن اطلاعات شخص مورد نظر", "The temporary image has been removed from cache." => "تصویر موقت از کش پاک شد.", "Edit address" => "ویرایش نشانی", "Type" => "نوع", diff --git a/l10n/fi_FI.php b/l10n/fi_FI.php index 4cc18108..47f25a9e 100644 --- a/l10n/fi_FI.php +++ b/l10n/fi_FI.php @@ -52,9 +52,12 @@ "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ä.", +"Add address book" => "Lisää osoitekirja.", +"Import done. Click here to cancel reloading." => "Tuonti valmistui. Napsauta tästä peruaksesi uudelleen latauksen.", "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", +"{success} imported, {failed} failed." => "{success} tuotu, {failed} epäonnistui.", "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", @@ -126,11 +129,13 @@ "Contact not found." => "Yhteystietoja ei löytynyt.", "New Group" => "Uusi ryhmä", "Settings" => "Asetukset", +"Address books" => "Osoitekirjat", "Import" => "Tuo", +"Select files to import" => "Valitse tuotavat tiedostot", +"Select files" => "Valitse tiedostot", "OK" => "OK", "(De-)select all" => "Valitse kaikki tai poista kaikki valinnat", "New Contact" => "Uusi yhteystieto", -"Download Contact" => "Lataa yhteystieto", "Groups" => "Ryhmät", "Favorite" => "Suosikki", "Delete Contact" => "Poista yhteystieto", @@ -170,6 +175,7 @@ "Address" => "Osoite", "Note" => "Huomio", "Web site" => "Verkkosivu", +"Delete contact" => "Poista yhteystieto", "Preferred" => "Ensisijainen", "Please specify a valid email address." => "Anna kelvollinen sähköpostiosoite.", "Mail to address" => "Lähetä sähköpostia", @@ -188,6 +194,7 @@ "Delete IM" => "Poista IM", "Share" => "Jaa", "Export" => "Vie", +"CardDAV link" => "CardDAV-linkki", "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", @@ -201,7 +208,6 @@ "Add notes here." => "Lisää huomiot tähän.", "Add field" => "Lisää kenttä", "Download contact" => "Lataa yhteystieto", -"Delete contact" => "Poista yhteystieto", "The temporary image has been removed from cache." => "Väliaikainen kuva on poistettu välimuistista.", "Edit address" => "Muokkaa osoitetta", "Type" => "Tyyppi", diff --git a/l10n/fr.php b/l10n/fr.php index 64861d64..45321a41 100644 --- a/l10n/fr.php +++ b/l10n/fr.php @@ -150,7 +150,6 @@ "OK" => "OK", "(De-)select all" => "(Dé-)sélectionner tout", "New Contact" => "Nouveau Contact", -"Download Contact" => "Télécharger le Contact", "Groups" => "Groupes", "Favorite" => "Favoris", "Delete Contact" => "Supprimer le Contact", @@ -191,6 +190,7 @@ "Address" => "Adresse", "Note" => "Note", "Web site" => "Page web", +"Delete contact" => "Supprimer le contact", "Preferred" => "Préféré", "Please specify a valid email address." => "Veuillez entrer une adresse e-mail valide.", "someone@example.com" => "personne@exemple.com", @@ -228,7 +228,6 @@ "Add notes here." => "Ajouter des notes ici.", "Add field" => "Ajouter un champ.", "Download contact" => "Télécharger le contact", -"Delete contact" => "Supprimer le contact", "The temporary image has been removed from cache." => "L'image temporaire a été supprimée du cache.", "Edit address" => "Editer l'adresse", "Type" => "Type", diff --git a/l10n/gl.php b/l10n/gl.php index 7ed57204..54f2c27c 100644 --- a/l10n/gl.php +++ b/l10n/gl.php @@ -142,6 +142,7 @@ "Address" => "Enderezo", "Note" => "Nota", "Web site" => "Sitio web", +"Delete contact" => "Borrar contacto", "Preferred" => "Preferido", "Please specify a valid email address." => "Indica unha dirección de correo electrónico válida.", "Mail to address" => "Enviar correo ao enderezo", @@ -171,7 +172,6 @@ "Add notes here." => "Engadir aquí as notas.", "Add field" => "Engadir campo", "Download contact" => "Descargar contacto", -"Delete contact" => "Borrar contacto", "The temporary image has been removed from cache." => "A imaxe temporal foi eliminada da caché.", "Edit address" => "Editar o enderezo", "Type" => "Escribir", diff --git a/l10n/he.php b/l10n/he.php index bda96ce8..60ddd67c 100644 --- a/l10n/he.php +++ b/l10n/he.php @@ -75,6 +75,7 @@ "Email" => "דואר אלקטרוני", "Address" => "כתובת", "Note" => "הערה", +"Delete contact" => "מחיקת איש קשר", "Preferred" => "מועדף", "Please specify a valid email address." => "אנא הזן כתובת דוא\"ל חוקית", "Mail to address" => "כתובת", @@ -97,7 +98,6 @@ "Add notes here." => "הוסף הערות כאן.", "Add field" => "הוסף שדה", "Download contact" => "הורדת איש קשר", -"Delete contact" => "מחיקת איש קשר", "Edit address" => "ערוך כתובת", "Type" => "סוג", "PO Box" => "תא דואר", diff --git a/l10n/hr.php b/l10n/hr.php index e1b95723..890d7cbf 100644 --- a/l10n/hr.php +++ b/l10n/hr.php @@ -80,6 +80,7 @@ "Email" => "E-mail", "Address" => "Adresa", "Note" => "Bilješka", +"Delete contact" => "Izbriši kontakt", "Preferred" => "Preferirano", "Please specify a valid email address." => "Upiši važeću email adresu.", "Delete email address" => "Izbriši email adresu", @@ -102,7 +103,6 @@ "Add notes here." => "Dodaj bilješke ovdje.", "Add field" => "Dodaj polje", "Download contact" => "Preuzmi kontakt", -"Delete contact" => "Izbriši kontakt", "Edit address" => "Uredi adresu", "Type" => "Tip", "PO Box" => "Poštanski Pretinac", diff --git a/l10n/hu_HU.php b/l10n/hu_HU.php index 1695ab37..0a87d4ab 100644 --- a/l10n/hu_HU.php +++ b/l10n/hu_HU.php @@ -88,6 +88,7 @@ "Email" => "E-mail", "Address" => "Cím", "Note" => "Jegyzet", +"Delete contact" => "Kapcsolat törlése", "Preferred" => "Előnyben részesített", "Please specify a valid email address." => "Adjon meg érvényes email címet", "Mail to address" => "Postai cím", @@ -111,7 +112,6 @@ "Add notes here." => "Megjegyzések", "Add field" => "Mező hozzáadása", "Download contact" => "Kapcsolat letöltése", -"Delete contact" => "Kapcsolat törlése", "The temporary image has been removed from cache." => "Az ideiglenes kép el lett távolítva a gyorsítótárból", "Edit address" => "Cím szerkesztése", "Type" => "Típus", diff --git a/l10n/ia.php b/l10n/ia.php index 234e38ef..dd3ddd4f 100644 --- a/l10n/ia.php +++ b/l10n/ia.php @@ -44,6 +44,7 @@ "Email" => "E-posta", "Address" => "Adresse", "Note" => "Nota", +"Delete contact" => "Deler contacto", "Preferred" => "Preferite", "Delete email address" => "Deler adresse de E-posta", "Enter phone number" => "Entrar un numero de telephono", @@ -59,7 +60,6 @@ "Add notes here." => "Adder notas hic", "Add field" => "Adder campo", "Download contact" => "Discargar contacto", -"Delete contact" => "Deler contacto", "Edit address" => "Modificar adresses", "Type" => "Typo", "PO Box" => "Cassa postal", diff --git a/l10n/id.php b/l10n/id.php index 1708307c..54526745 100644 --- a/l10n/id.php +++ b/l10n/id.php @@ -43,6 +43,7 @@ "Phone" => "telefon", "Email" => "surel", "Address" => "alamat", +"Delete contact" => "hapus kontak", "Preferred" => "disarankan", "City" => "kota", "Country" => "negara", @@ -53,7 +54,6 @@ "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", "Region" => "daerah", diff --git a/l10n/it.php b/l10n/it.php index a3d0347e..b7ae2529 100644 --- a/l10n/it.php +++ b/l10n/it.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "(De)seleziona tutto", "New Contact" => "Nuovo contatto", -"Download Contact" => "Scarica contatto", "Groups" => "Gruppi", "Favorite" => "Preferito", "Delete Contact" => "Elimina contatto", @@ -190,9 +189,12 @@ "Nickname" => "Pseudonimo", "Enter nickname" => "Inserisci pseudonimo", "Title" => "Titolo", +"Enter title" => "Inserisci il titolo", "Organization" => "Organizzazione", +"Enter organization" => "Inserisci l'organizzazione", "Birthday" => "Compleanno", "Notes go here..." => "Le note vanno qui...", +"Export as VCF" => "Esporta come VCF", "Add" => "Aggiungi", "Phone" => "Telefono", "Email" => "Email", @@ -200,6 +202,7 @@ "Address" => "Indirizzo", "Note" => "Nota", "Web site" => "Sito web", +"Delete contact" => "Elimina contatto", "Preferred" => "Preferito", "Please specify a valid email address." => "Specifica un indirizzo email valido", "someone@example.com" => "qualcuno@esempio.com", @@ -218,6 +221,7 @@ "Your city" => "La tua città", "City" => "Città", "Some region" => "Una regione", +"State or province" => "Stato o regione", "Your country" => "Il tuo paese", "Country" => "Stato", "Instant Messenger" => "Client di messaggistica istantanea", @@ -238,7 +242,6 @@ "Add notes here." => "Aggiungi qui le note.", "Add field" => "Aggiungi campo", "Download contact" => "Scarica contatto", -"Delete contact" => "Elimina contatto", "The temporary image has been removed from cache." => "L'immagine temporanea è stata rimossa dalla cache.", "Edit address" => "Modifica indirizzo", "Type" => "Tipo", diff --git a/l10n/ja_JP.php b/l10n/ja_JP.php index 0473df82..f5fb21d6 100644 --- a/l10n/ja_JP.php +++ b/l10n/ja_JP.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "すべての選択を解除", "New Contact" => "新しい連絡先", -"Download Contact" => "連絡先をダウンロード", "Groups" => "グループ", "Favorite" => "お気に入り", "Delete Contact" => "連絡先を削除", @@ -190,9 +189,12 @@ "Nickname" => "ニックネーム", "Enter nickname" => "ニックネームを入力", "Title" => "タイトル", +"Enter title" => "タイトルを入力", "Organization" => "所属", +"Enter organization" => "組織を入力", "Birthday" => "誕生日", "Notes go here..." => "メモはここに...", +"Export as VCF" => "VCFとしてエクスポート", "Add" => "追加", "Phone" => "電話番号", "Email" => "メールアドレス", @@ -200,6 +202,7 @@ "Address" => "住所", "Note" => "メモ", "Web site" => "ウェブサイト", +"Delete contact" => "連絡先の削除", "Preferred" => "推奨", "Please specify a valid email address." => "有効なメールアドレスを指定してください。", "someone@example.com" => "someone@example.com", @@ -218,6 +221,7 @@ "Your city" => "市", "City" => "都市", "Some region" => "都道府県", +"State or province" => "州/県", "Your country" => "国", "Country" => "国名", "Instant Messenger" => "インスタントメッセンジャー", @@ -238,7 +242,6 @@ "Add notes here." => "ここにメモを追加。", "Add field" => "項目を追加", "Download contact" => "連絡先のダウンロード", -"Delete contact" => "連絡先の削除", "The temporary image has been removed from cache." => "一時画像はキャッシュから削除されました。", "Edit address" => "住所を編集", "Type" => "種類", diff --git a/l10n/ka_GE.php b/l10n/ka_GE.php index c2b4e5c0..f054febd 100644 --- a/l10n/ka_GE.php +++ b/l10n/ka_GE.php @@ -46,6 +46,7 @@ "Email" => "იმეილი", "Address" => "მისამართი", "Note" => "შენიშვნა", +"Delete contact" => "კონტაქტის წაშლა", "City" => "ქალაქი", "Country" => "ქვეყანა", "Share" => "გაზიარება", @@ -56,7 +57,6 @@ "Enter email address" => "ჩაწერეთ იმეილ მისამართი", "Add field" => "დაამატე ველი", "Download contact" => "კონტაქტის ჩამოტვირთვა", -"Delete contact" => "კონტაქტის წაშლა", "Edit address" => "მისამართის რედაქტირება", "Type" => "ტიპი", "PO Box" => "PO ყუთი", diff --git a/l10n/ko.php b/l10n/ko.php index 317d066b..2eaeaa64 100644 --- a/l10n/ko.php +++ b/l10n/ko.php @@ -159,7 +159,6 @@ "OK" => "확인", "(De-)select all" => "전체 선택(해제)", "New Contact" => "새 연락처", -"Download Contact" => "연락처 다운로드", "Groups" => "그룹", "Favorite" => "즐겨찾기", "Delete Contact" => "연락처 삭제", @@ -190,7 +189,9 @@ "Nickname" => "별명", "Enter nickname" => "별명 입력", "Title" => "직위", +"Enter title" => "제목 입력", "Organization" => "조직", +"Enter organization" => "조직명 입력", "Birthday" => "생일", "Notes go here..." => "메모를 입력하십시오...", "Add" => "추가", @@ -200,6 +201,7 @@ "Address" => "주소", "Note" => "메모", "Web site" => "웹 사이트", +"Delete contact" => "연락처 삭제", "Preferred" => "선호함", "Please specify a valid email address." => "올바른 이메일 주소를 입력하십시오.", "someone@example.com" => "someone@example.com", @@ -218,6 +220,7 @@ "Your city" => "도시", "City" => "도시", "Some region" => "지역", +"State or province" => "주 또는 도", "Your country" => "국가", "Country" => "국가", "Instant Messenger" => "인스턴트 메신저", @@ -238,7 +241,6 @@ "Add notes here." => "여기에 메모를 추가하십시오.", "Add field" => "항목 추가", "Download contact" => "연락처 다운로드", -"Delete contact" => "연락처 삭제", "The temporary image has been removed from cache." => "임시 그림이 캐시에서 삭제되었습니다. ", "Edit address" => "주소 편집", "Type" => "종류", diff --git a/l10n/lb.php b/l10n/lb.php index f5118af6..ae9788a3 100644 --- a/l10n/lb.php +++ b/l10n/lb.php @@ -58,6 +58,7 @@ "Email" => "Email", "Address" => "Adress", "Note" => "Note", +"Delete contact" => "Kontakt läschen", "Enter phone number" => "Telefonsnummer aginn", "Delete phone number" => "Telefonsnummer läschen", "View on map" => "Op da Kaart uweisen", @@ -70,7 +71,6 @@ "Edit groups" => "Gruppen editéieren", "Edit address details" => "Adress Detailer editéieren", "Download contact" => "Kontakt eroflueden", -"Delete contact" => "Kontakt läschen", "Type" => "Typ", "PO Box" => "Postleetzuel", "Extended" => "Erweidert", diff --git a/l10n/lt_LT.php b/l10n/lt_LT.php index 6671a155..44dbb276 100644 --- a/l10n/lt_LT.php +++ b/l10n/lt_LT.php @@ -50,13 +50,13 @@ "Phone" => "Telefonas", "Email" => "El. paštas", "Address" => "Adresas", +"Delete contact" => "Ištrinti kontaktą", "City" => "Miestas", "Country" => "Šalis", "Share" => "Dalintis", "Export" => "Eksportuoti", "Add Contact" => "Pridėti kontaktą", "Download contact" => "Atsisųsti kontaktą", -"Delete contact" => "Ištrinti kontaktą", "Type" => "Tipas", "PO Box" => "Pašto dėžutė", "Region" => "Regionas", diff --git a/l10n/mk.php b/l10n/mk.php index 85a215cf..b228d5e9 100644 --- a/l10n/mk.php +++ b/l10n/mk.php @@ -88,6 +88,7 @@ "Email" => "Е-пошта", "Address" => "Адреса", "Note" => "Забелешка", +"Delete contact" => "Избриши го контактот", "Preferred" => "Претпочитано", "Please specify a valid email address." => "Ве молам внесете правилна адреса за е-пошта.", "Mail to address" => "Прати порака до адреса", @@ -111,7 +112,6 @@ "Add notes here." => "Внесете забелешки тука.", "Add field" => "Додади поле", "Download contact" => "Преземи го контактот", -"Delete contact" => "Избриши го контактот", "The temporary image has been removed from cache." => "Привремената слика е отстранета од кешот.", "Edit address" => "Уреди адреса", "Type" => "Тип", diff --git a/l10n/ms_MY.php b/l10n/ms_MY.php index 49cc5129..5b411a6e 100644 --- a/l10n/ms_MY.php +++ b/l10n/ms_MY.php @@ -92,6 +92,7 @@ "Email" => "Emel", "Address" => "Alamat", "Note" => "Nota", +"Delete contact" => "Padam hubungan", "Preferred" => "Pilihan", "Please specify a valid email address." => "Berikan alamat emel yang sah.", "Mail to address" => "Hantar ke alamat", @@ -115,7 +116,6 @@ "Add notes here." => "Letak nota disini.", "Add field" => "Letak ruangan", "Download contact" => "Muat turun hubungan", -"Delete contact" => "Padam hubungan", "The temporary image has been removed from cache." => "Imej sementara telah dibuang dari cache.", "Edit address" => "Ubah alamat", "Type" => "Jenis", diff --git a/l10n/nb_NO.php b/l10n/nb_NO.php index 11b0e4d2..e3309aaf 100644 --- a/l10n/nb_NO.php +++ b/l10n/nb_NO.php @@ -105,6 +105,7 @@ "Address" => "Adresse", "Note" => "Notat", "Web site" => "Hjemmeside", +"Delete contact" => "Slett kontakt", "Preferred" => "Foretrukket", "Please specify a valid email address." => "Vennligst angi en gyldig e-postadresse.", "Mail to address" => "Send e-post til adresse", @@ -128,7 +129,6 @@ "Add notes here." => "Legg inn notater her.", "Add field" => "Legg til felt", "Download contact" => "Hend ned kontakten", -"Delete contact" => "Slett kontakt", "The temporary image has been removed from cache." => "Det midlertidige bildet er fjernet fra cache.", "Edit address" => "Endre adresse", "Type" => "Type", diff --git a/l10n/nl.php b/l10n/nl.php index 951d8973..9ff5ffdb 100644 --- a/l10n/nl.php +++ b/l10n/nl.php @@ -149,7 +149,6 @@ "OK" => "OK", "(De-)select all" => "(De-)selecteer alle", "New Contact" => "Nieuw Contact", -"Download Contact" => "Download Contact", "Groups" => "Groepen", "Favorite" => "Favoriet", "Delete Contact" => "Verwijder Contact", @@ -190,6 +189,7 @@ "Address" => "Adres", "Note" => "Notitie", "Web site" => "Website", +"Delete contact" => "Verwijder contact", "Preferred" => "Voorkeur", "Please specify a valid email address." => "Geef een geldig email adres op.", "someone@example.com" => "iemand@voorbeeld.nl", @@ -223,7 +223,6 @@ "Add notes here." => "Voeg notitie toe", "Add field" => "Voeg veld toe", "Download contact" => "Download contact", -"Delete contact" => "Verwijder contact", "The temporary image has been removed from cache." => "Het tijdelijke plaatje is uit de cache verwijderd.", "Edit address" => "Wijzig adres", "Type" => "Type", diff --git a/l10n/nn_NO.php b/l10n/nn_NO.php index 26160faf..4ac4999a 100644 --- a/l10n/nn_NO.php +++ b/l10n/nn_NO.php @@ -35,13 +35,13 @@ "Phone" => "Telefonnummer", "Email" => "Epost", "Address" => "Adresse", +"Delete contact" => "Slett kontakt", "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", diff --git a/l10n/pl.php b/l10n/pl.php index 05eb78b8..b0712c1e 100644 --- a/l10n/pl.php +++ b/l10n/pl.php @@ -55,6 +55,7 @@ "Contact is not in this group." => "Kontakt nie jest w tej grupie.", "Contacts are not in this group." => "Kontakty nie sa w tej grupie.", "A group named {group} already exists" => "Nazwa grupy {group} już istnieje", +"You can drag groups to\narrange them as you like." => "Można przeciągnąć grupy do\naby podzielić je jak chcesz.", "All" => "Wszystkie", "Favorites" => "Ulubione", "Shared by {owner}" => "Udostępnione przez {owner}", @@ -67,9 +68,14 @@ "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.", +"Deleting done. Click here to cancel reloading." => "Usuwanie udane. Kliknij tu aby anulować przeładowanie.", +"Add address book" => "Dodaj książkę adresową", +"Import done. Click here to cancel reloading." => "Importowanie zakończone. Kliknij tu aby anulować przeładowanie.", "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 from {filename}..." => "Importowanie z {filename}...", +"{success} imported, {failed} failed." => "{success} udanych, {failed} nieudanych.", "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", @@ -145,12 +151,14 @@ "HomePage" => "Strona domowa", "New Group" => "Nowa grupa", "Settings" => "Ustawienia", +"Address books" => "Książki adresowe", "Import" => "Import", +"Select files to import" => "Wybierz pliki do importu", +"Select files" => "Wybierz pliki", "Import into:" => "Importuj do:", "OK" => "OK", "(De-)select all" => "Odznacz wszystkie", "New Contact" => "Nowy kontakt", -"Download Contact" => "Pobierz kontakt", "Groups" => "Grupy", "Favorite" => "Ulubione", "Delete Contact" => "Usuń kontakt", @@ -181,9 +189,12 @@ "Nickname" => "Nazwa", "Enter nickname" => "Wpisz nazwę", "Title" => "Tytuł", +"Enter title" => "Wpisz nazwę", "Organization" => "Organizacja", +"Enter organization" => "Wpisz organizację", "Birthday" => "Urodziny", "Notes go here..." => "Notatki kliknij tutaj...", +"Export as VCF" => "Eksportuj jako VCF", "Add" => "Dodaj", "Phone" => "Telefon", "Email" => "E-mail", @@ -191,6 +202,7 @@ "Address" => "Adres", "Note" => "Uwaga", "Web site" => "Strona www", +"Delete contact" => "Usuwa kontakt", "Preferred" => "Preferowane", "Please specify a valid email address." => "Określ prawidłowy adres e-mail.", "someone@example.com" => "twójmail@twojadomena.pl", @@ -209,12 +221,14 @@ "Your city" => "Twoje miasto", "City" => "Miasto", "Some region" => "Region", +"State or province" => "Województwo ", "Your country" => "Twoje państwo", "Country" => "Kraj", "Instant Messenger" => "Komunikator", "Delete IM" => "Usuń Komunikator", "Share" => "Udostępnij", "Export" => "Export", +"CardDAV link" => "Link CardDAV", "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", @@ -228,7 +242,6 @@ "Add notes here." => "Dodaj notatkę tutaj.", "Add field" => "Dodaj pole", "Download contact" => "Pobiera kontakt", -"Delete contact" => "Usuwa kontakt", "The temporary image has been removed from cache." => "Tymczasowy obraz został usunięty z pamięci podręcznej.", "Edit address" => "Edytuj adres", "Type" => "Typ", diff --git a/l10n/pt_BR.php b/l10n/pt_BR.php index c9b57027..c03d01bc 100644 --- a/l10n/pt_BR.php +++ b/l10n/pt_BR.php @@ -155,6 +155,7 @@ "Address" => "Endereço", "Note" => "Nota", "Web site" => "Web site", +"Delete contact" => "Apagar contato", "Preferred" => "Preferido", "Please specify a valid email address." => "Por favor, especifique um email válido.", "Mail to address" => "Correio para endereço", @@ -184,7 +185,6 @@ "Add notes here." => "Adicionar notas", "Add field" => "Adicionar campo", "Download contact" => "Baixar contato", -"Delete contact" => "Apagar contato", "The temporary image has been removed from cache." => "A imagem temporária foi removida cache.", "Edit address" => "Editar endereço", "Type" => "Digite", diff --git a/l10n/pt_PT.php b/l10n/pt_PT.php index 78216ec2..fd864100 100644 --- a/l10n/pt_PT.php +++ b/l10n/pt_PT.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "(Des)seleccionar todos", "New Contact" => "Novo Contacto", -"Download Contact" => "Transferir o contacto", "Groups" => "Grupos", "Favorite" => "Favorito", "Delete Contact" => "Eliminar o Contacto", @@ -200,6 +199,7 @@ "Address" => "Morada", "Note" => "Nota", "Web site" => "Página web", +"Delete contact" => "Apagar contacto", "Preferred" => "Preferido", "Please specify a valid email address." => "Por favor indique um endereço de correio válido", "someone@example.com" => "alguem@exemplo.com", @@ -238,7 +238,6 @@ "Add notes here." => "Insira notas aqui.", "Add field" => "Adicionar campo", "Download contact" => "Transferir contacto", -"Delete contact" => "Apagar contacto", "The temporary image has been removed from cache." => "A imagem temporária foi retirada do cache.", "Edit address" => "Editar endereço", "Type" => "Tipo", diff --git a/l10n/ro.php b/l10n/ro.php index abde4bd3..5795d43a 100644 --- a/l10n/ro.php +++ b/l10n/ro.php @@ -84,6 +84,7 @@ "Address" => "Adresă", "Note" => "Notă", "Web site" => "Site web", +"Delete contact" => "Șterge contact", "Preferred" => "Preferat", "Please specify a valid email address." => "Te rog să specifici un e-mail corect", "Mail to address" => "Trimite mesaj la e-mail", @@ -108,7 +109,6 @@ "Add notes here." => "Adaugă note", "Add field" => "Adaugă câmp", "Download contact" => "Descarcă acest contact", -"Delete contact" => "Șterge contact", "The temporary image has been removed from cache." => "Imaginea temporară a fost eliminată din cache.", "Edit address" => "Editeză adresă", "Type" => "Tip", diff --git a/l10n/ru.php b/l10n/ru.php index 6ac22d7a..764b7bc0 100644 --- a/l10n/ru.php +++ b/l10n/ru.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." => "Категории для удаления не установлены.", @@ -10,8 +14,10 @@ "element name is not set." => "имя элемента не установлено.", "checksum is not set." => "контрольная сумма не установлена.", "Information about vCard is incorrect. Please reload the page." => "Информация о vCard некорректна. Пожалуйста, обновите страницу.", +"Couldn't find vCard for %d." => "Невозможно найти vCard для %d.", "Information about vCard is incorrect. Please reload the page: " => "Информация о vCard не корректна. Перезагрузите страницу: ", "Something went FUBAR. " => "Что-то пошло FUBAR.", +"Cannot save property of type \"%s\" as array" => "Невозможно сохранить свойство типа \"%s\", как массив", "Missing IM parameter." => "Отсутствует параметр IM.", "Unknown IM: " => "Неизвестный IM:", "No contact ID was submitted." => "Нет контакта ID", @@ -29,6 +35,9 @@ "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" => "Загружаемый файл первосходит значение переменной upload_max_filesize, установленно в php.ini", @@ -40,10 +49,33 @@ "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" => "Выберите фото", +"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" => "Ошибка", +"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" => "Ошибка при загрузке", @@ -56,8 +88,13 @@ "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." => "не удалось.", @@ -100,6 +137,7 @@ "Internet" => "Интернет", "Friends" => "Друзья", "Family" => "Семья", +"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." => "У вас нет права создавать контакты в этой адресной книге.", @@ -109,11 +147,20 @@ "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" => "Настройки", +"Address books" => "Адресная книга", "Import" => "Импорт", +"Select files to import" => "Выберите файлы для импорта:", +"Select files" => "Выберите файл", +"Import into:" => "Импорт в", "OK" => "ОК", +"(De-)select all" => "(Отменить) отметить все", "New Contact" => "Новый контакт", "Groups" => "Группы", +"Favorite" => "Избранное", "Delete Contact" => "Удалить контакт", "Close" => "Закрыть", "Keyboard shortcuts" => "Горячие клавиши", @@ -128,17 +175,26 @@ "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" => "Псевдоним", "Enter nickname" => "Введите псевдоним", "Title" => "Заголовок", +"Enter title" => "Введите название", "Organization" => "Организация", +"Enter organization" => "Введите организацию", "Birthday" => "День рождения", +"Notes go here..." => "Здесь будут заметки...", +"Export as VCF" => "Экспорт в VCF", "Add" => "Добавить", "Phone" => "Телефон", "Email" => "Эл. почта", @@ -146,8 +202,10 @@ "Address" => "Адрес", "Note" => "Заметка", "Web site" => "Веб-сайт", +"Delete contact" => "Удалить контакт", "Preferred" => "Предпочитаемый", "Please specify a valid email address." => "Укажите правильный адрес электронной почты.", +"someone@example.com" => "someone@example.com", "Mail to address" => "Написать по адресу", "Delete email address" => "Удалить адрес электронной почты", "Enter phone number" => "Введите номер телефона", @@ -155,14 +213,22 @@ "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" => "Некоторый регион", +"State or province" => "Область или район", +"Your country" => "Ваша страна", "Country" => "Страна", "Instant Messenger" => "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" => "Формат Краткое имя, Полное имя", @@ -176,7 +242,6 @@ "Add notes here." => "Добавьте заметки здесь.", "Add field" => "Добавить поле", "Download contact" => "Скачать контакт", -"Delete contact" => "Удалить контакт", "The temporary image has been removed from cache." => "Временный образ был удален из кэша.", "Edit address" => "Редактировать адрес", "Type" => "Тип", diff --git a/l10n/ru_RU.php b/l10n/ru_RU.php index 2195564b..160ae820 100644 --- a/l10n/ru_RU.php +++ b/l10n/ru_RU.php @@ -150,7 +150,6 @@ "OK" => "OK", "(De-)select all" => "Отметить(снять отметку) все", "New Contact" => "Новый контакт", -"Download Contact" => "Загрузить контакт", "Groups" => "Группы", "Favorite" => "Избранный", "Delete Contact" => "Удалить контакт", @@ -191,6 +190,7 @@ "Address" => "Адрес", "Note" => "Заметки", "Web site" => "Веб-сайт", +"Delete contact" => "Удалить контакт", "Preferred" => "Предпочтительный", "Please specify a valid email address." => "Пожалуйста,укажите действительный email адрес.", "someone@example.com" => "someone@example.com", @@ -228,7 +228,6 @@ "Add notes here." => "Добавить здесь заметок.", "Add field" => "Добавить поле", "Download contact" => "загрузить контакт", -"Delete contact" => "Удалить контакт", "The temporary image has been removed from cache." => "Временное изображение было удалено из кэша.", "Edit address" => "Редактировать адрес", "Type" => "Тип", diff --git a/l10n/si_LK.php b/l10n/si_LK.php index db094b54..0262dcd6 100644 --- a/l10n/si_LK.php +++ b/l10n/si_LK.php @@ -93,6 +93,7 @@ "Address" => "ලිපිනය", "Note" => "නෝට්ටුවක්", "Web site" => "වෙබ් අඩවිය", +"Delete contact" => "සබඳතාව මකන්න", "Preferred" => "රුචි", "Please specify a valid email address." => "වලංගු විද්‍යුත් තැපැල් ලිපිනයක් ලබා දෙන්න", "Mail to address" => "තැපැල් එවිය යුතු ලිපිනය", @@ -117,7 +118,6 @@ "Add notes here." => "මෙතැන නෝට්ටුවක් තබන්න", "Add field" => "ක්ෂේත්‍රයක් එකතු කරන්න", "Download contact" => "සබඳතා බාගත කරන්න", -"Delete contact" => "සබඳතාව මකන්න", "Edit address" => "ලිපිනය සංස්කරණය කරන්න", "Type" => "වර්ගය", "PO Box" => "තැ.පෙ.", diff --git a/l10n/sk_SK.php b/l10n/sk_SK.php index 3a39de53..3d3311e9 100644 --- a/l10n/sk_SK.php +++ b/l10n/sk_SK.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "(Ne-)vybrať všetky", "New Contact" => "Nový kontakt", -"Download Contact" => "Stiahnuť kontakt", "Groups" => "Skupiny", "Favorite" => "Obľúbené", "Delete Contact" => "Odstrániť kontakt", @@ -200,6 +199,7 @@ "Address" => "Adresa", "Note" => "Poznámka", "Web site" => "Web stránka", +"Delete contact" => "Odstrániť kontakt", "Preferred" => "Uprednostňované", "Please specify a valid email address." => "Prosím zadajte platnú e-mailovú adresu.", "someone@example.com" => "niekto@niečo.sk", @@ -238,7 +238,6 @@ "Add notes here." => "Tu môžete pridať poznámky.", "Add field" => "Pridať pole", "Download contact" => "Stiahnuť kontakt", -"Delete contact" => "Odstrániť kontakt", "The temporary image has been removed from cache." => "Dočasný obrázok bol odstránený z cache.", "Edit address" => "Upraviť adresu", "Type" => "Typ", diff --git a/l10n/sl.php b/l10n/sl.php index 326f392d..0881be5f 100644 --- a/l10n/sl.php +++ b/l10n/sl.php @@ -159,7 +159,6 @@ "OK" => "V redu", "(De-)select all" => "(Od-)izberi vse", "New Contact" => "Nov stik", -"Download Contact" => "Prenesi stik", "Groups" => "Skupine", "Favorite" => "Priljubljen", "Delete Contact" => "Izbriši stik", @@ -200,6 +199,7 @@ "Address" => "Naslov", "Note" => "Opomba", "Web site" => "Spletna stran", +"Delete contact" => "Izbriši stik", "Preferred" => "Prednostno", "Please specify a valid email address." => "Navesti je treba veljaven elektronski poštni naslov.", "someone@example.com" => "nekdo@primer.com", @@ -238,7 +238,6 @@ "Add notes here." => "Opombe dodajte tukaj.", "Add field" => "Dodaj polje", "Download contact" => "Prejmi stik", -"Delete contact" => "Izbriši stik", "The temporary image has been removed from cache." => "Začasna slika je odstranjena iz predpomnilnika.", "Edit address" => "Uredi naslov", "Type" => "Vrsta", diff --git a/l10n/sr.php b/l10n/sr.php index 7962513d..a02076b5 100644 --- a/l10n/sr.php +++ b/l10n/sr.php @@ -1,6 +1,8 @@ "Greška u (de)aktiviranju adresara", "No categories selected for deletion." => "Ни једна категорија није означена за брисање.", "Information about vCard is incorrect. Please reload the page." => "Подаци о вКарти су неисправни. Поново учитајте страницу.", +"Error loading image." => "Greška pri učitavanju slika", "There is no error, the file uploaded with success" => "Нема грешке, фајл је успешно послат", "The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Послати фајл превазилази директиву upload_max_filesize из ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Послати фајл превазилази директиву MAX_FILE_SIZE која је наведена у ХТМЛ форми", @@ -31,6 +33,10 @@ "Import" => "Увези", "Groups" => "Групе", "Close" => "Затвори", +"Delete current photo" => "Izbriši trenutnu fotografiju", +"Edit current photo" => "Izmeni trenutnu fotografiju", +"Upload new photo" => "Učitaj novu fotografiju", +"Select photo from ownCloud" => "Izaberi fotografiju sa ownCloud", "Title" => "Наслов", "Organization" => "Организација", "Birthday" => "Рођендан", @@ -38,6 +44,7 @@ "Phone" => "Телефон", "Email" => "Е-маил", "Address" => "Адреса", +"Delete contact" => "Обриши контакт", "Preferred" => "Пожељан", "City" => "Град", "Country" => "Земља", @@ -45,13 +52,15 @@ "Export" => "Извези", "Add Contact" => "Додај контакт", "Download contact" => "Преузми контакт", -"Delete contact" => "Обриши контакт", +"Edit address" => "Izmeni adresu", "Type" => "Тип", "PO Box" => "Поштански број", "Extended" => "Прошири", "Region" => "Регија", "Zipcode" => "Зип код", "Addressbook" => "Адресар", +"more info" => "више информација", +"iOS/OS X" => "iOS/OS X", "Addressbooks" => "Адресар", "New Address Book" => "Нови адресар", "Name" => "Име", diff --git a/l10n/sv.php b/l10n/sv.php index 7981153d..cabf15c5 100644 --- a/l10n/sv.php +++ b/l10n/sv.php @@ -159,7 +159,6 @@ "OK" => "OK", "(De-)select all" => "(Av-)markera alla", "New Contact" => "Ny kontakt", -"Download Contact" => "Ladda ner kontakt", "Groups" => "Grupper", "Favorite" => "Favorit", "Delete Contact" => "Radera kontakt", @@ -200,6 +199,7 @@ "Address" => "Adress", "Note" => "Notering", "Web site" => "Webbplats", +"Delete contact" => "Radera kontakt", "Preferred" => "Föredragen", "Please specify a valid email address." => "Vänligen ange en giltig e-postadress.", "someone@example.com" => "någon@exempel.com", @@ -238,7 +238,6 @@ "Add notes here." => "Lägg till noteringar här.", "Add field" => "Lägg till fält", "Download contact" => "Ladda ner kontakt", -"Delete contact" => "Radera kontakt", "The temporary image has been removed from cache." => "Den tillfälliga bilden har raderats från cache.", "Edit address" => "Editera adress", "Type" => "Typ", diff --git a/l10n/ta_LK.php b/l10n/ta_LK.php index f5680daf..e7532828 100644 --- a/l10n/ta_LK.php +++ b/l10n/ta_LK.php @@ -147,7 +147,6 @@ "OK" => "சரி ", "(De-)select all" => "எல்லாவற்றையும் தெரிவுசெய்க (செய்யாதிக-)", "New Contact" => "புதிய தொடர்பு", -"Download Contact" => "தொடர்பை பதிவிறக்குக", "Groups" => "குழுக்கள்", "Favorite" => "விருப்பமான", "Delete Contact" => "தொடர்பை நீக்குக", @@ -188,6 +187,7 @@ "Address" => "முகவரி", "Note" => "குறிப்பு", "Web site" => "வலைய தளம்", +"Delete contact" => "தொடர்பை நீக்குக", "Preferred" => "விரும்பிய", "Please specify a valid email address." => "தயவுசெய்து செல்லுபடியான மின்னஞ்சல் முகவரியை குறிப்பிடுக.", "someone@example.com" => "someone@example.com", @@ -225,7 +225,6 @@ "Add notes here." => "குறிப்புக்களை இங்கே சேர்க்க", "Add field" => "புலத்தை சேர்க்க", "Download contact" => "தொடர்பை தரவிறக்குக", -"Delete contact" => "தொடர்பை நீக்குக", "The temporary image has been removed from cache." => "தற்காலிக படம் இடைமாற்றுநினைவகத்திலிருந்து அகற்றப்படுகிறது.", "Edit address" => "முகவரியை தொகுக்க", "Type" => "வகை", diff --git a/l10n/th_TH.php b/l10n/th_TH.php index a01525df..cf8d1dc9 100644 --- a/l10n/th_TH.php +++ b/l10n/th_TH.php @@ -150,7 +150,6 @@ "OK" => "ตกลง", "(De-)select all" => "ยกเลิกการเลือกทั้งหมด", "New Contact" => "สร้างรายชื่อผู้ติดต่อใหม่", -"Download Contact" => "ดาวน์โหลดรายชื่อผู้ติดต่อ", "Groups" => "กลุ่ม", "Favorite" => "รายการโปรด", "Delete Contact" => "ลบรายชื่อผู้ติดต่อ", @@ -191,6 +190,7 @@ "Address" => "ที่อยู่", "Note" => "หมายเหตุ", "Web site" => "เว็บไซต์", +"Delete contact" => "ลบข้อมูลการติดต่อ", "Preferred" => "พิเศษ", "Please specify a valid email address." => "กรุณาระบุที่อยู่อีเมลที่ถูกต้อง", "someone@example.com" => "someone@example.com", @@ -228,7 +228,6 @@ "Add notes here." => "เพิ่มหมายเหตุกำกับไว้ที่นี่", "Add field" => "เพิ่มช่องรับข้อมูล", "Download contact" => "ดาวน์โหลดข้อมูลการติดต่อ", -"Delete contact" => "ลบข้อมูลการติดต่อ", "The temporary image has been removed from cache." => "รูปภาพชั่วคราวดังกล่าวได้ถูกลบออกจากหน่วยความจำแคชแล้ว", "Edit address" => "แก้ไขที่อยู่", "Type" => "ประเภท", diff --git a/l10n/tr.php b/l10n/tr.php index 4a6b0d2b..84066e27 100644 --- a/l10n/tr.php +++ b/l10n/tr.php @@ -140,6 +140,7 @@ "Address" => "Adres", "Note" => "Not", "Web site" => "Web sitesi", +"Delete contact" => "Kişiyi sil", "Preferred" => "Tercih edilen", "Please specify a valid email address." => "Lütfen geçerli bir eposta adresi belirtin.", "Mail to address" => "Eposta adresi", @@ -169,7 +170,6 @@ "Add notes here." => "Notları buraya ekleyin.", "Add field" => "Alan ekle", "Download contact" => "Kişiyi indir", -"Delete contact" => "Kişiyi sil", "The temporary image has been removed from cache." => "Geçici resim ön bellekten silinmiştir.", "Edit address" => "Adresi düzenle", "Type" => "Tür", diff --git a/l10n/uk.php b/l10n/uk.php index 3ac98b1f..cff7c6a2 100644 --- a/l10n/uk.php +++ b/l10n/uk.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,8 +68,14 @@ "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" => "Помилка завантаження", @@ -144,12 +151,14 @@ "HomePage" => "Домашня Сторінка", "New Group" => "Нова група", "Settings" => "Налаштування", +"Address books" => "Адресні книги", "Import" => "Імпорт", +"Select files to import" => "Виберіть файли для імпорта", +"Select files" => "Виберіть файли", "Import into:" => "Імпортувати в:", "OK" => "OK", "(De-)select all" => "(Відміна) виділення усіх", "New Contact" => "Новий контакт", -"Download Contact" => "Завантажити контакт", "Groups" => "Групи", "Favorite" => "Улюблений", "Delete Contact" => "Видалити контакт", @@ -180,9 +189,12 @@ "Nickname" => "Прізвисько", "Enter nickname" => "Ввести прізвисько", "Title" => "Назва", +"Enter title" => "Введіть назву", "Organization" => "Організація", +"Enter organization" => "Введіть організацію", "Birthday" => "День народження", "Notes go here..." => "Тут будуть примітки...", +"Export as VCF" => "Експорт як VCF", "Add" => "Додати", "Phone" => "Телефон", "Email" => "Ел.пошта", @@ -190,6 +202,7 @@ "Address" => "Адреса", "Note" => "Примітка", "Web site" => "Веб-сайт", +"Delete contact" => "Видалити контакт", "Preferred" => "Пріоритетний", "Please specify a valid email address." => "Будь ласка, вкажіть вірну адресу електронної пошти.", "someone@example.com" => "someone@example.com", @@ -208,12 +221,14 @@ "Your city" => "Ваше місто", "City" => "Місто", "Some region" => "Деякий регіон", +"State or province" => "Область", "Your country" => "Ваша країна", "Country" => "Країна", "Instant Messenger" => "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" => "Format custom, Short name, Full name, Reverse or Reverse with comma", @@ -227,7 +242,6 @@ "Add notes here." => "Додайте сюди примітки.", "Add field" => "Додати поле", "Download contact" => "Завантажити контакт", -"Delete contact" => "Видалити контакт", "The temporary image has been removed from cache." => "Тимчасове зображення було видалене з кешу.", "Edit address" => "Редагувати адреси", "Type" => "Тип", @@ -240,11 +254,11 @@ "Zipcode" => "Поштовий індекс", "Addressbook" => "Адресна книга", "Hon. prefixes" => "Високоповажні префікси", -"Miss" => "Miss", +"Miss" => "Пані", "Ms" => "Пані", "Mr" => "Пан", -"Sir" => "Sir", -"Mrs" => "Mrs", +"Sir" => "Пан", +"Mrs" => "Панове", "Dr" => "Доктор", "Given name" => "Ім'я", "Family name" => "Прізвище", diff --git a/l10n/vi.php b/l10n/vi.php index b77d2518..2ad729cb 100644 --- a/l10n/vi.php +++ b/l10n/vi.php @@ -150,7 +150,6 @@ "OK" => "Chấp nhận", "(De-)select all" => "(Hủy) chọn tất cả", "New Contact" => "Liên lạc mới", -"Download Contact" => "Tải liên lạc", "Groups" => "Nhóm", "Favorite" => "Ưu thích", "Delete Contact" => "Xóa liên lạc", @@ -191,6 +190,7 @@ "Address" => "Địa chỉ", "Note" => "Chú thích", "Web site" => "Web site", +"Delete contact" => "Xóa liên lạc", "Preferred" => "Được ưu tiên", "Please specify a valid email address." => "Vui lòng nhập địa chỉ Email hợp lệ.", "someone@example.com" => "someone@example.com", @@ -228,7 +228,6 @@ "Add notes here." => "Thêm chú thích", "Add field" => "Thêm trường mới", "Download contact" => "Tải liên lạc", -"Delete contact" => "Xóa liên lạc", "The temporary image has been removed from cache." => "Những hình ảnh tạm thời đã được gỡ bỏ từ bộ nhớ cache.", "Edit address" => "Sửa địa chỉ", "Type" => "Loại", diff --git a/l10n/zh_CN.GB2312.php b/l10n/zh_CN.GB2312.php index 03a5209b..67a407cd 100644 --- a/l10n/zh_CN.GB2312.php +++ b/l10n/zh_CN.GB2312.php @@ -140,6 +140,7 @@ "Address" => "地址", "Note" => "备注", "Web site" => "网站", +"Delete contact" => "删除联系人", "Preferred" => "偏好", "Please specify a valid email address." => "请指定有效的电子邮件地址。", "Mail to address" => "向此地址发送邮件", @@ -169,7 +170,6 @@ "Add notes here." => "在此添加备注。", "Add field" => "添加字段", "Download contact" => "下载联系人", -"Delete contact" => "删除联系人", "The temporary image has been removed from cache." => "临时相片已从缓存中移除。", "Edit address" => "编辑地址", "Type" => "类型", diff --git a/l10n/zh_CN.php b/l10n/zh_CN.php index fc330cd2..ccfb36ac 100644 --- a/l10n/zh_CN.php +++ b/l10n/zh_CN.php @@ -129,7 +129,6 @@ "OK" => "OK", "(De-)select all" => "反选全部", "New Contact" => "新建联系人", -"Download Contact" => "下载联系人", "Groups" => "分组", "Favorite" => "最爱", "Delete Contact" => "删除联系人", @@ -168,6 +167,7 @@ "Address" => "地址", "Note" => "注释", "Web site" => "网址", +"Delete contact" => "删除联系人", "Preferred" => "偏好", "Please specify a valid email address." => "请指定合法的电子邮件地址", "someone@example.com" => "someone@example.com", @@ -203,7 +203,6 @@ "Add notes here." => "添加注释。", "Add field" => "添加字段", "Download contact" => "下载联系人", -"Delete contact" => "删除联系人", "The temporary image has been removed from cache." => "临时图像文件已从缓存中删除", "Edit address" => "编辑地址", "Type" => "类型", diff --git a/l10n/zh_TW.php b/l10n/zh_TW.php index 8bec72bf..38cb0652 100644 --- a/l10n/zh_TW.php +++ b/l10n/zh_TW.php @@ -99,6 +99,7 @@ "Email" => "電子郵件", "Address" => "地址", "Note" => "註解", +"Delete contact" => "刪除通訊錄", "Preferred" => "首選", "Please specify a valid email address." => "註填入合法的電子郵件住址", "Mail to address" => "寄送住址", @@ -126,7 +127,6 @@ "Add notes here." => "在這裡新增註解", "Add field" => "新增欄位", "Download contact" => "下載通訊錄", -"Delete contact" => "刪除通訊錄", "Edit address" => "編輯地址", "Type" => "類型", "PO Box" => "通訊地址", diff --git a/lib/hooks.php b/lib/hooks.php index 15596088..b9ba97bf 100644 --- a/lib/hooks.php +++ b/lib/hooks.php @@ -92,7 +92,7 @@ class Hooks{ continue; } $birthday = $vcard->BDAY; - if ($birthday) { + if ((string)$birthday) { $date = new \DateTime($birthday); $vevent = VObject\Component::create('VEVENT'); //$vevent->setDateTime('LAST-MODIFIED', new DateTime($vcard->REV)); diff --git a/templates/contacts.php b/templates/contacts.php index 3cca25bb..b988d4d8 100644 --- a/templates/contacts.php +++ b/templates/contacts.php @@ -58,12 +58,12 @@
- - - - +
@@ -264,7 +264,7 @@ -