mirror of
https://github.com/owncloudarchive/contacts.git
synced 2024-11-29 11:24:11 +01:00
merge master into filesystem
This commit is contained in:
commit
3828729f92
@ -126,5 +126,6 @@ OCP\JSON::success(array(
|
||||
'data' => array(
|
||||
'contacts' => $contacts,
|
||||
'addressbooks' => $active_addressbooks,
|
||||
'is_indexed' => OCP\Config::getUserValue(OCP\User::getUser(), 'contacts', 'contacts_indexed', 'no') === 'yes'
|
||||
)
|
||||
));
|
||||
|
@ -1,16 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2011 Thomas Tanghus <thomas@tanghus.net>
|
||||
* This file is licensed under the Affero General Public License version 3 or
|
||||
* later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
OCP\JSON::checkLoggedIn();
|
||||
OCP\JSON::checkAppEnabled('contacts');
|
||||
|
||||
$books = OCA\Contacts\Addressbook::all(OCP\USER::getUser());
|
||||
$tmpl = new OCP\Template("contacts", "part.selectaddressbook");
|
||||
$tmpl->assign('addressbooks', $books);
|
||||
$page = $tmpl->fetchPage();
|
||||
OCP\JSON::success(array('data' => array( 'page' => $page )));
|
@ -1,4 +1,4 @@
|
||||
|
||||
#content-wrapper { overflow: hidden; }
|
||||
/* General element settings */
|
||||
#content li { cursor: default; }
|
||||
#content input[type=checkbox] {
|
||||
@ -61,7 +61,7 @@
|
||||
|
||||
/* Left content */
|
||||
|
||||
#leftcontent { position: absolute; top: 4em; padding: 0; margin: 0; }
|
||||
#leftcontent { position:absolute; top: 4em; bottom: 0; overflow-x:hidden; overflow-y: auto; padding: 0; margin: 0; }
|
||||
#leftcontent a { display: inline-block; padding: 0; margin: 0; }
|
||||
#leftcontent h3 {
|
||||
cursor: pointer;
|
||||
@ -446,6 +446,7 @@ input[type="checkbox"].propertytype { width: 10px; }
|
||||
padding: 0; margin:0;
|
||||
top:3.5em; left: 32.5em; right: 0; height: 4em;
|
||||
border-bottom: 1px solid #DDDDDD; z-index: 50;
|
||||
background-color: #fff;
|
||||
}
|
||||
#contactsheader div.actions {
|
||||
-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
|
||||
@ -465,7 +466,7 @@ input[type="checkbox"].propertytype { width: 10px; }
|
||||
|
||||
/* Right content layout */
|
||||
|
||||
#rightcontent, .rightcontent { position:absolute; top: 4em; left: 20em; overflow-x:hidden; overflow-y: auto; }
|
||||
#rightcontent, .rightcontent { position:absolute; top: 4em; left: 20em; right: 0; bottom: 0; overflow-x:hidden; overflow-y: auto; }
|
||||
|
||||
/* Contact layout */
|
||||
|
||||
|
13
index.php
13
index.php
@ -14,20 +14,10 @@ OCP\App::checkAppEnabled('contacts');
|
||||
|
||||
// Get active address books. This creates a default one if none exists.
|
||||
$ids = OCA\Contacts\Addressbook::activeIds(OCP\USER::getUser());
|
||||
$has_contacts = (count(OCA\Contacts\VCard::all($ids, 0, 1)) > 0
|
||||
? true
|
||||
: false); // just to check if there are any contacts.
|
||||
if($has_contacts === false) {
|
||||
OCP\Util::writeLog('contacts',
|
||||
'index.html: No contacts found.',
|
||||
OCP\Util::DEBUG);
|
||||
}
|
||||
|
||||
// Load the files we need
|
||||
OCP\App::setActiveNavigationEntry('contacts_index');
|
||||
|
||||
// Load a specific user?
|
||||
$id = isset( $_GET['id'] ) ? $_GET['id'] : null;
|
||||
$impp_types = OCA\Contacts\App::getTypesOfProperty('IMPP');
|
||||
$adr_types = OCA\Contacts\App::getTypesOfProperty('ADR');
|
||||
$phone_types = OCA\Contacts\App::getTypesOfProperty('TEL');
|
||||
@ -75,7 +65,4 @@ $tmpl->assign('adr_types', $adr_types, false);
|
||||
$tmpl->assign('impp_types', $impp_types, false);
|
||||
$tmpl->assign('categories', $categories, false);
|
||||
$tmpl->assign('im_protocols', $im_protocols, false);
|
||||
$tmpl->assign('has_contacts', $has_contacts, false);
|
||||
$tmpl->assign('id', $id);
|
||||
$tmpl->assign('is_indexed', OCP\Config::getUserValue(OCP\User::getUser(), 'contacts', 'contacts_indexed', 'no'));
|
||||
$tmpl->printPage();
|
||||
|
63
js/app.js
63
js/app.js
@ -6,6 +6,20 @@ Modernizr.load({
|
||||
]
|
||||
});
|
||||
|
||||
(function($) {
|
||||
$.QueryString = (function(a) {
|
||||
if (a == "") return {};
|
||||
var b = {};
|
||||
for (var i = 0; i < a.length; ++i)
|
||||
{
|
||||
var p=a[i].split('=');
|
||||
if (p.length != 2) continue;
|
||||
b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));
|
||||
}
|
||||
return b;
|
||||
})(window.location.search.substr(1).split('&'))
|
||||
})(jQuery);
|
||||
|
||||
var utils = {};
|
||||
|
||||
/**
|
||||
@ -153,7 +167,7 @@ OC.notify = function(params) {
|
||||
|
||||
|
||||
OC.Contacts = OC.Contacts || {
|
||||
init:function(id) {
|
||||
init:function() {
|
||||
if(oc_debug === true) {
|
||||
$(document).ajaxError(function(e, xhr, settings, exception) {
|
||||
// Don't try to get translation because it's likely a network error.
|
||||
@ -162,11 +176,7 @@ OC.Contacts = OC.Contacts || {
|
||||
});
|
||||
});
|
||||
}
|
||||
//if(id) {
|
||||
this.currentid = parseInt(id);
|
||||
console.log('init, id:', id);
|
||||
//}
|
||||
// Holds an array of {id,name} maps
|
||||
|
||||
this.scrollTimeoutMiliSecs = 100;
|
||||
this.isScrolling = false;
|
||||
this.cacheElements();
|
||||
@ -183,16 +193,6 @@ OC.Contacts = OC.Contacts || {
|
||||
this.bindEvents();
|
||||
this.$toggleAll.show();
|
||||
this.showActions(['add']);
|
||||
|
||||
// Wait 2 mins then check if contacts are indexed.
|
||||
setTimeout(function() {
|
||||
if(!is_indexed) {
|
||||
OC.notify({message:t('contacts', 'Indexing contacts'), timeout:20});
|
||||
$.post(OC.filePath('contacts', 'ajax', 'indexproperties.php'));
|
||||
} else {
|
||||
console.log('contacts are indexed.');
|
||||
}
|
||||
}, 10000);
|
||||
},
|
||||
loading:function(obj, state) {
|
||||
$(obj).toggleClass('loading', state);
|
||||
@ -294,6 +294,14 @@ OC.Contacts = OC.Contacts || {
|
||||
$(window).trigger('beforeunload');
|
||||
});
|
||||
|
||||
$(window).bind('hashchange', function() {
|
||||
console.log('hashchange', window.location.hash)
|
||||
var id = parseInt(window.location.hash.substr(1));
|
||||
if(id) {
|
||||
self.openContact(id);
|
||||
}
|
||||
});
|
||||
|
||||
// App specific events
|
||||
$(document).bind('status.contact.deleted', function(e, data) {
|
||||
var id = parseInt(data.id);
|
||||
@ -330,11 +338,25 @@ OC.Contacts = OC.Contacts || {
|
||||
self.loading(self.$rightContent, false);
|
||||
self.groups.loadGroups(self.numcontacts, function() {
|
||||
self.loading($('#leftcontent'), false);
|
||||
var id = $.QueryString['id']; // Keep for backwards compatible links.
|
||||
self.currentid = parseInt(id);
|
||||
if(!self.currentid) {
|
||||
self.currentid = parseInt(window.location.hash.substr(1));
|
||||
}
|
||||
console.log('Groups loaded, currentid', self.currentid);
|
||||
if(self.currentid) {
|
||||
self.openContact(self.currentid);
|
||||
}
|
||||
});
|
||||
if(!result.is_indexed) {
|
||||
// Wait a couple of mins then check if contacts are indexed.
|
||||
setTimeout(function() {
|
||||
OC.notify({message:t('contacts', 'Indexing contacts'), timeout:20});
|
||||
$.post(OC.filePath('contacts', 'ajax', 'indexproperties.php'));
|
||||
}, 10000);
|
||||
} else {
|
||||
console.log('contacts are indexed.');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@ -800,7 +822,7 @@ OC.Contacts = OC.Contacts || {
|
||||
var id = parseInt($(this).parents('li').first().data('id'));
|
||||
var book = self.contacts.addressbooks[id];
|
||||
var uri = (book.owner === oc_current_user ) ? book.uri : book.uri + '_shared_by_' + book.owner;
|
||||
var link = totalurl+'/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(uri);
|
||||
var link = OC.linkToRemote('carddav')+'/addressbooks/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(uri);
|
||||
var $dropdown = $('<div id="dropdown" class="drop"><input type="text" value="' + link + '" /></div>');
|
||||
$dropdown.appendTo($(this).parents('li').first());
|
||||
var $input = $dropdown.find('input');
|
||||
@ -1602,8 +1624,9 @@ 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.outerHTML();
|
||||
var data = this.$elem.html();
|
||||
//this.$elem.attr('type') === 'text/template'
|
||||
//? this.$elem.html() : this.$elem.outerHTML();
|
||||
return data.replace(/{([^{}]*)}/g,
|
||||
function (a, b) {
|
||||
var r = o[b];
|
||||
@ -1626,6 +1649,6 @@ OC.Contacts = OC.Contacts || {
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
OC.Contacts.init(id);
|
||||
OC.Contacts.init();
|
||||
|
||||
});
|
||||
|
@ -128,7 +128,6 @@ OC.Contacts = OC.Contacts || {};
|
||||
};
|
||||
|
||||
Contact.prototype.deleteProperty = function(params) {
|
||||
// TODO: Disable PREF if less than 2 multi_properties.
|
||||
var obj = params.obj;
|
||||
if(!this.enabled) {
|
||||
return;
|
||||
@ -143,6 +142,11 @@ OC.Contacts = OC.Contacts || {};
|
||||
if(this.multi_properties.indexOf(element) !== -1) {
|
||||
params['checksum'] = this.checksumFor(obj);
|
||||
if(params['checksum'] === 'new' && this.valueFor(obj).trim() === '') {
|
||||
// If there's only one property of this type enable setting as preferred.
|
||||
if(this.data[element].length === 1) {
|
||||
var selector = 'li[data-element="' + element.toLowerCase() + '"]';
|
||||
this.$fullelem.find(selector).find('input.parameter[value="PREF"]').hide();
|
||||
}
|
||||
$container.remove();
|
||||
return;
|
||||
}
|
||||
@ -178,6 +182,11 @@ OC.Contacts = OC.Contacts || {};
|
||||
}
|
||||
}
|
||||
}
|
||||
// If there's only one property of this type enable setting as preferred.
|
||||
if(self.data[element].length === 1) {
|
||||
var selector = 'li[data-element="' + element.toLowerCase() + '"]';
|
||||
self.$fullelem.find(selector).find('input.parameter[value="PREF"]').hide();
|
||||
}
|
||||
$container.remove();
|
||||
} else {
|
||||
self.pushToUndo({
|
||||
@ -457,7 +466,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
};
|
||||
|
||||
/**
|
||||
* Add a contact from data store and remove it from the DOM
|
||||
* Add a contact to data store.
|
||||
* @params params. An object which can contain the optional properties:
|
||||
* aid: The id of the addressbook to add the contact to. Per default it will be added to the first.
|
||||
* fn: The formatted name of the contact.
|
||||
@ -1032,7 +1041,7 @@ OC.Contacts = OC.Contacts || {};
|
||||
featureClass: "P",
|
||||
style: "full",
|
||||
maxRows: 12,
|
||||
lang: lang,
|
||||
lang: $elem.data('lang'),
|
||||
name_startsWith: request.term
|
||||
},
|
||||
success: function( data ) {
|
||||
@ -1706,7 +1715,8 @@ OC.Contacts = OC.Contacts || {};
|
||||
, 2000);
|
||||
$(document).trigger('status.contacts.loaded', {
|
||||
status: true,
|
||||
numcontacts: jsondata.data.contacts.length
|
||||
numcontacts: jsondata.data.contacts.length,
|
||||
is_indexed: jsondata.data.is_indexed
|
||||
});
|
||||
self.setCurrent(self.$contactList.find('tr:first-child').data('id'), false);
|
||||
}
|
||||
|
28
js/cropphoto.js
Normal file
28
js/cropphoto.js
Normal file
@ -0,0 +1,28 @@
|
||||
jQuery(function($) {
|
||||
$('#cropbox').Jcrop({
|
||||
onChange: showCoords,
|
||||
onSelect: showCoords,
|
||||
onRelease: clearCoords,
|
||||
maxSize: [399, 399],
|
||||
bgColor: 'black',
|
||||
bgOpacity: .4,
|
||||
boxWidth: 400,
|
||||
boxHeight: 400,
|
||||
setSelect: [ 100, 130, 50, 50 ]//,
|
||||
//aspectRatio: 0.8
|
||||
});
|
||||
});
|
||||
// Simple event handler, called from onChange and onSelect
|
||||
// event handlers, as per the Jcrop invocation above
|
||||
function showCoords(c) {
|
||||
$('#x1').val(c.x);
|
||||
$('#y1').val(c.y);
|
||||
$('#x2').val(c.x2);
|
||||
$('#y2').val(c.y2);
|
||||
$('#w').val(c.w);
|
||||
$('#h').val(c.h);
|
||||
};
|
||||
|
||||
function clearCoords() {
|
||||
$('#coords input').val('');
|
||||
};
|
@ -81,7 +81,7 @@ var openContact = function(id) {
|
||||
if(typeof OC.Contacts !== 'undefined') {
|
||||
OC.Contacts.openContact(id);
|
||||
} else {
|
||||
window.location.href = OC.linkTo('contacts', 'index.php') + '?id=' + id;
|
||||
window.location.href = OC.linkTo('contacts', 'index.php') + '#' + id;
|
||||
}
|
||||
};
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
@ -42,14 +42,6 @@
|
||||
"Country" => "البلد",
|
||||
"Share" => "شارك",
|
||||
"Export" => "تصدير المعلومات",
|
||||
"Add Contact" => "أضف شخص ",
|
||||
"Download contact" => "انزال المعرفه",
|
||||
"Type" => "نوع",
|
||||
"PO Box" => "العنوان البريدي",
|
||||
"Extended" => "إضافة",
|
||||
"Region" => "المنطقة",
|
||||
"Zipcode" => "رقم المنطقة",
|
||||
"Addressbook" => "كتاب العناوين",
|
||||
"more info" => "مزيد من المعلومات",
|
||||
"Primary address (Kontact et al)" => "العنوان الرئيسي (جهات الإتصال)",
|
||||
"iOS/OS X" => "ط ن ت/ ن ت 10",
|
||||
|
@ -1,6 +1,7 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Missing a temporary folder" => "Липсва временна папка",
|
||||
"Contacts" => "Контакти",
|
||||
"Error" => "Грешка",
|
||||
"Upload too large" => "Файлът който сте избрали за качване е прекалено голям",
|
||||
"Download" => "Изтегляне",
|
||||
"Edit" => "Промяна",
|
||||
|
@ -138,54 +138,7 @@
|
||||
"Instant Messenger" => "তাৎক্ষণিক বার্তাবাহক",
|
||||
"Delete IM" => "IM মুছে ফেল",
|
||||
"Share" => "ভাগাভাগি কর",
|
||||
"Add Contact" => "ঠিকানা যোগ কর",
|
||||
"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" => "দিদি-মামা-বববব",
|
||||
"Separate groups with commas" => "গৌষ্ঠীসমূহের নাম কমা দিয়ে পৃথক করুন",
|
||||
"Edit groups" => "গোষ্ঠী সম্পাদনা",
|
||||
"Enter email address" => "ইমেইল ঠিকানা প্রদান করুন",
|
||||
"Edit address details" => "ঠিকানার বিবরণ সম্পাদনা",
|
||||
"Add notes here." => "এখানে দ্রষ্টব্য যোগ করুন।",
|
||||
"Add field" => "ক্ষেত্র যোগ কর",
|
||||
"Download contact" => "ঠিকানা ডাউনলোড কর",
|
||||
"The temporary image has been removed from cache." => "ক্যাসে থেকে ক্ষণস্থায়ী ছবিটি মুছে ফেলা হয়েছে । ",
|
||||
"Edit address" => "ঠিকানা সম্পাদনা",
|
||||
"Type" => "ধরণ",
|
||||
"PO Box" => "পোস্টবক্স নম্বর",
|
||||
"Street and number" => "সড়ক এবং নম্বর",
|
||||
"Extended" => "বর্ধিত",
|
||||
"Apartment number etc." => "অ্যাপার্টমেন্ট নম্বর ইত্যাদি।",
|
||||
"Region" => "এলাকা",
|
||||
"E.g. state or province" => "যেমনঃ রাজ্য কিংবা প্রদেশ",
|
||||
"Zipcode" => "জিপ কোড",
|
||||
"Addressbook" => "ঠিকানাপঞ্জী",
|
||||
"Hon. prefixes" => "Hon. prefixes",
|
||||
"Miss" => "মিস",
|
||||
"Ms" => "জনাবা",
|
||||
"Mr" => "জনাব",
|
||||
"Sir" => "স্যার",
|
||||
"Mrs" => "জনাবা",
|
||||
"Dr" => "ড.",
|
||||
"Given name" => "প্রদত্ত নাম",
|
||||
"Family name" => "পারিবারিক নাম",
|
||||
"Hon. suffixes" => "Hon. suffixes",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "ঠিকানাপঞ্জী ফাইল আমদানি কর",
|
||||
"Please choose the addressbook" => "ঠিকানাপঞ্জীটি নির্বাচন করুন",
|
||||
"create a new addressbook" => "নতুন ঠিকানাপঞ্জী তৈরী করুন",
|
||||
"Name of new addressbook" => "নতুন ঠিকানাপঞ্জীর নাম",
|
||||
"Importing contacts" => "ঠিকানাপঞ্জী আমদানি করা হচ্ছে",
|
||||
"Select Address Books" => "ঠিকানপঞ্জী নির্বাচন করুন",
|
||||
"CardDAV syncing addresses" => "CardDAV সমলয় ঠিকানাসমূহ",
|
||||
"more info" => "আরো তথ্য",
|
||||
"Primary address (Kontact et al)" => "প্রাথমিক ঠিকানা (Kontact et al)",
|
||||
|
50
l10n/ca.php
50
l10n/ca.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "No s'ha carregat cap fitxer. Error desconegut",
|
||||
"Contacts" => "Contactes",
|
||||
"%d_selected_contacts" => "%d_contactes_selecionats",
|
||||
"Indexing contacts" => "Indexant contactes",
|
||||
"Add to..." => "Afegeix a...",
|
||||
"Remove from..." => "Elimina des de...",
|
||||
"Add group..." => "Afegeix grup...",
|
||||
"Indexing contacts" => "Indexant contactes",
|
||||
"Select photo" => "Selecciona una foto",
|
||||
"Network or server error. Please inform administrator." => "Error de xarxa o del servidor. Informeu a l'administrador.",
|
||||
"Error adding to group." => "Error en afegir grup",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"Edit name details" => "Edita detalls del nom",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Separeu els grups amb comes",
|
||||
"Edit groups" => "Edita els grups",
|
||||
"Enter email address" => "Escriviu una adreça de correu electrònic",
|
||||
"Edit address details" => "Edita els detalls de l'adreça",
|
||||
"Add notes here." => "Afegiu notes aquí.",
|
||||
"Add field" => "Afegeix un camp",
|
||||
"Download contact" => "Baixa 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",
|
||||
"PO Box" => "Adreça postal",
|
||||
"Street and number" => "Carrer i número",
|
||||
"Extended" => "Addicional",
|
||||
"Apartment number etc." => "Número d'apartament, etc.",
|
||||
"Region" => "Comarca",
|
||||
"E.g. state or province" => "p. ex. Estat o província ",
|
||||
"Zipcode" => "Codi postal",
|
||||
"Addressbook" => "Llibreta d'adreces",
|
||||
"Hon. prefixes" => "Prefix honorífic:",
|
||||
"Miss" => "Srta",
|
||||
"Ms" => "Sra",
|
||||
"Mr" => "Sr",
|
||||
"Sir" => "Senyor",
|
||||
"Mrs" => "Sra",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Nom específic",
|
||||
"Family name" => "Nom de familia",
|
||||
"Hon. suffixes" => "Sufix honorífic:",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importa un fitxer de contactes",
|
||||
"Please choose the addressbook" => "Escolliu la llibreta d'adreces",
|
||||
"create a new addressbook" => "crea una llibreta d'adreces nova",
|
||||
"Name of new addressbook" => "Nom de la nova llibreta d'adreces",
|
||||
"Importing contacts" => "S'estan important contactes",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>No teniu contactes a la llibreta d'adreces.</h3><p>Podeu importar fitxers VCF arrossegant-los a la llista de contactes i deixant-los, o bé en una llibreta d'adreces per importar-les allà, o en un espai buit per crear una llibreta d'adreces nova i importar-les allà.<br />També podeu fer clic al botó per importar al final de la lliesta.</p>",
|
||||
"Select Address Books" => "Selecccioneu llibretes d'adreces",
|
||||
"CardDAV syncing addresses" => "Adreces de sincronització CardDAV",
|
||||
"more info" => "més informació",
|
||||
"Primary address (Kontact et al)" => "Adreça primària (Kontact i al)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba",
|
||||
"Contacts" => "Kontakty",
|
||||
"%d_selected_contacts" => "%d_vybranych_kontaktu",
|
||||
"Indexing contacts" => "Indexuji kontakty",
|
||||
"Add to..." => "Přidat do...",
|
||||
"Remove from..." => "Odebrat z...",
|
||||
"Add group..." => "Přidat skupinu...",
|
||||
"Indexing contacts" => "Indexuji kontakty",
|
||||
"Select photo" => "Vybrat fotku",
|
||||
"Network or server error. Please inform administrator." => "Chyba sítě, či serveru. Kontaktujte prosím správce.",
|
||||
"Error adding to group." => "Chyba při přidávání do skupiny",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd. mm. yyyy",
|
||||
"Separate groups with commas" => "Oddělte skupiny čárkami",
|
||||
"Edit groups" => "Upravit skupiny",
|
||||
"Enter email address" => "Zadat e-mailovou adresu",
|
||||
"Edit address details" => "Upravit podrobnosti adresy",
|
||||
"Add notes here." => "Zde přidejte poznámky.",
|
||||
"Add field" => "Přidat pole",
|
||||
"Download contact" => "Stáhnout 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",
|
||||
"PO Box" => "PO box",
|
||||
"Street and number" => "Ulice a číslo",
|
||||
"Extended" => "Rozšířené",
|
||||
"Apartment number etc." => "Číslo bytu atd.",
|
||||
"Region" => "Kraj",
|
||||
"E.g. state or province" => "Např. stát nebo provincie",
|
||||
"Zipcode" => "PSČ",
|
||||
"Addressbook" => "Kniha adres",
|
||||
"Hon. prefixes" => "Tituly před jménem",
|
||||
"Miss" => "Slečna",
|
||||
"Ms" => "Ms",
|
||||
"Mr" => "Pan",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Paní",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Křestní jméno",
|
||||
"Family name" => "Příjmení",
|
||||
"Hon. suffixes" => "Tituly za",
|
||||
"J.D." => "JUDr.",
|
||||
"M.D." => "MUDr.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "ml.",
|
||||
"Sn." => "st.",
|
||||
"Import a contacts file" => "Importovat soubor kontaktů",
|
||||
"Please choose the addressbook" => "Prosím zvolte knihu adres",
|
||||
"create a new addressbook" => "vytvořit novou knihu adres",
|
||||
"Name of new addressbook" => "Jméno nové knihy adres",
|
||||
"Importing contacts" => "Probíhá import kontaktů",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Ve Vaší knize adres nemáte žádné kontakty.</h3><p>Můžete importovat soubory VCF přetažením na seznam kontaktů a upuštěním na knihu adres pro přidání, nebo do prázdného místa pro vytvoření nové knihy adres.<br />Můžete také importovat kliknutím na tlačítko Importovat na konci seznamu.</p>",
|
||||
"Select Address Books" => "Vybrat knihu adres",
|
||||
"CardDAV syncing addresses" => "Adresy pro synchronizaci pomocí CardDAV",
|
||||
"more info" => "víc informací",
|
||||
"Primary address (Kontact et al)" => "Hlavní adresa (Kontakt etc.)",
|
||||
|
52
l10n/da.php
52
l10n/da.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.",
|
||||
"Contacts" => "Kontaktpersoner",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Indeksering kontakter",
|
||||
"Add to..." => "Føj til...",
|
||||
"Remove from..." => "Fjern fra...",
|
||||
"Add group..." => "Tilføj gruppe...",
|
||||
"Indexing contacts" => "Indeksering kontakter",
|
||||
"Select photo" => "Vælg foto",
|
||||
"Network or server error. Please inform administrator." => "Netværk eller serverfejl. Informer venligst administratoren.",
|
||||
"Error adding to group." => "Fejl ved tilføjelse til gruppen.",
|
||||
@ -83,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "Adressebogens navn kan ikke være tomt.",
|
||||
"Is this correct?" => "Er dette korrekt?",
|
||||
"There was an unknown error when trying to delete this contact" => "Der opstod en ukendt fejl under forsøg på at slette denne kontakt",
|
||||
"# groups" => "# grupper",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Klik for at fortryde sletning af {num} kontakter",
|
||||
"Cancelled deletion of {num}" => "Annulleret sletning af {num}",
|
||||
@ -188,6 +189,7 @@
|
||||
"First name" => "Fornavn",
|
||||
"Additional names" => "Mellemnavne",
|
||||
"Last name" => "Efternavn",
|
||||
"Select groups" => "Vælg grupper",
|
||||
"Nickname" => "Kaldenavn",
|
||||
"Enter nickname" => "Indtast kaldenavn",
|
||||
"Title" => "Titel",
|
||||
@ -231,55 +233,7 @@
|
||||
"Share" => "Del",
|
||||
"Export" => "Exporter",
|
||||
"CardDAV link" => "CardDAV link",
|
||||
"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.",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-åååå",
|
||||
"Separate groups with commas" => "Opdel gruppenavne med kommaer",
|
||||
"Edit groups" => "Rediger grupper",
|
||||
"Enter email address" => "Indtast email-adresse",
|
||||
"Edit address details" => "Rediger adresse detaljer",
|
||||
"Add notes here." => "Tilføj noter her.",
|
||||
"Add field" => "Tilføj element",
|
||||
"Download contact" => "Download kontaktperson",
|
||||
"The temporary image has been removed from cache." => "Det midlertidige billede er ikke længere tilgængeligt.",
|
||||
"Edit address" => "Rediger adresse",
|
||||
"Type" => "Type",
|
||||
"PO Box" => "Postboks",
|
||||
"Street and number" => "Gade og nummer",
|
||||
"Extended" => "Udvidet",
|
||||
"Apartment number etc." => "Etage, side osv.",
|
||||
"Region" => "Region",
|
||||
"E.g. state or province" => "F.eks. stat eller provins",
|
||||
"Zipcode" => "Postnummer",
|
||||
"Addressbook" => "Adressebog",
|
||||
"Hon. prefixes" => "Foranstillede titler",
|
||||
"Miss" => "Frøken",
|
||||
"Ms" => "Fru",
|
||||
"Mr" => "Hr.",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Fru",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Fornavn",
|
||||
"Family name" => "Efternavn",
|
||||
"Hon. suffixes" => "Efterstillede titler",
|
||||
"J.D." => "Cand. Jur.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importer fil med kontaktpersoner",
|
||||
"Please choose the addressbook" => "Vælg venligst adressebog",
|
||||
"create a new addressbook" => "Opret ny adressebog",
|
||||
"Name of new addressbook" => "Navn på ny adressebog",
|
||||
"Importing contacts" => "Importerer kontaktpersoner",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Du har ingen kontakter i din adressebog.</h3><p>Du kan importere VCF-filer ved at trække dem gil kontaktlisten og enten slippe dem på en adressebog for at importere ind i den eller udenfor listen for at oprette en ny med kontaktoplysningerne fra filen.<br />Du kan også importere ved at klikke på importknappen under listen.</p>",
|
||||
"Select Address Books" => "Vælg adressebog",
|
||||
"CardDAV syncing addresses" => "CardDAV synkroniserings adresse",
|
||||
"more info" => "mere info",
|
||||
"Primary address (Kontact et al)" => "Primær adresse (Kontak m. fl.)",
|
||||
|
51
l10n/de.php
51
l10n/de.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler",
|
||||
"Contacts" => "Kontakte",
|
||||
"%d_selected_contacts" => "%d_markierte_kontakte",
|
||||
"Indexing contacts" => "Kontakte Indizieren",
|
||||
"Add to..." => "Hinzufügen zu ...",
|
||||
"Remove from..." => "Entfernen von ...",
|
||||
"Add group..." => "Gruppe hinzufügen ...",
|
||||
"Indexing contacts" => "Kontakte Indizieren",
|
||||
"Select photo" => "Wähle ein Foto",
|
||||
"Network or server error. Please inform administrator." => "Netzwerk- oder Serverfehler. Bitte Administrator informieren.",
|
||||
"Error adding to group." => "Fehler beim Hinzufügen zur Gruppe.",
|
||||
@ -83,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "Der Name des Adressbuches darf nicht leer sein.",
|
||||
"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.",
|
||||
"# groups" => "# Gruppen",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Klicken um das Löschen von {num} Kontakten rückgängig zu machen.",
|
||||
"Cancelled deletion of {num}" => "Löschen von {num} abgebrochen.",
|
||||
@ -232,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd.mm.yyyy",
|
||||
"Separate groups with commas" => "Gruppen mit Komma getrennt",
|
||||
"Edit groups" => "Gruppen editieren",
|
||||
"Enter email address" => "E-Mail-Adresse angeben",
|
||||
"Edit address details" => "Adressinformationen ändern",
|
||||
"Add notes here." => "Füge hier Notizen ein.",
|
||||
"Add field" => "Feld hinzufügen",
|
||||
"Download contact" => "Kontakt herunterladen",
|
||||
"The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.",
|
||||
"Edit address" => "Adresse ändern",
|
||||
"Type" => "Typ",
|
||||
"PO Box" => "Postfach",
|
||||
"Street and number" => "Straße und Hausnummer",
|
||||
"Extended" => "Erweitert",
|
||||
"Apartment number etc." => "Wohnungsnummer usw.",
|
||||
"Region" => "Region",
|
||||
"E.g. state or province" => "Z.B. Staat oder Bezirk",
|
||||
"Zipcode" => "Postleitzahl",
|
||||
"Addressbook" => "Adressbuch",
|
||||
"Hon. prefixes" => "Höflichkeitspräfixe",
|
||||
"Miss" => "Frau",
|
||||
"Ms" => "Frau",
|
||||
"Mr" => "Herr",
|
||||
"Sir" => "Herr",
|
||||
"Mrs" => "Frau",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Vorname",
|
||||
"Family name" => "Familienname",
|
||||
"Hon. suffixes" => "Höflichkeitssuffixe",
|
||||
"J.D." => "Dr. Jur.",
|
||||
"M.D." => "Dr. med.",
|
||||
"D.O." => "DGOM",
|
||||
"D.C." => "MChiro",
|
||||
"Ph.D." => "Dr.",
|
||||
"Esq." => "Hochwohlgeborenen",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sen.",
|
||||
"Import a contacts file" => "Kontaktdatei importieren",
|
||||
"Please choose the addressbook" => "Bitte Adressbuch auswählen",
|
||||
"create a new addressbook" => "Neues Adressbuch erstellen",
|
||||
"Name of new addressbook" => "Name des neuen Adressbuchs",
|
||||
"Importing contacts" => "Kontakte werden importiert",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Du hast noch keine Kontaktdaten in Deinem Adressbuch.</h3><p>Du kannst VCF-Dateien importieren, indem Du diese herein ziehst und entweder \nauf einem bestehenden Adressbuch fallen lässt, um die Dateien in dieses Adressbuch zu importieren, oder auf einen freien Bereich, um ein neues Adressbuch anzulegen und die Dateien dort zu importieren.<br />Du kannst auch den Knopf 'Importieren' am Ende der Liste drücken.</p>",
|
||||
"Select Address Books" => "Wähle Adressbuch",
|
||||
"CardDAV syncing addresses" => "CardDAV Sync-Adressen",
|
||||
"more info" => "weitere Informationen",
|
||||
"Primary address (Kontact et al)" => "Primäre Adresse (für Kontakt o.ä.)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler",
|
||||
"Contacts" => "Kontakte",
|
||||
"%d_selected_contacts" => "%d_markierte_kontakte",
|
||||
"Indexing contacts" => "Indiziere Kontakte",
|
||||
"Add to..." => "Füge hinzu...",
|
||||
"Remove from..." => "Entferne von...",
|
||||
"Add group..." => "Füge Gruppe hinzu...",
|
||||
"Indexing contacts" => "Indiziere Kontakte",
|
||||
"Select photo" => "Wählen Sie ein Foto",
|
||||
"Network or server error. Please inform administrator." => "Netzwerk- oder Serverfehler. Bitte informieren Sie den Administrator.",
|
||||
"Error adding to group." => "Fehler beim Hinzufügen zur Gruppe.",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd.mm.yyyy",
|
||||
"Separate groups with commas" => "Gruppen mit Komma getrennt",
|
||||
"Edit groups" => "Gruppen editieren",
|
||||
"Enter email address" => "E-Mail-Adresse angeben",
|
||||
"Edit address details" => "Adressinformationen ändern",
|
||||
"Add notes here." => "Fügen Sie hier Notizen ein.",
|
||||
"Add field" => "Feld hinzufügen",
|
||||
"Download contact" => "Kontakt herunterladen",
|
||||
"The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.",
|
||||
"Edit address" => "Adresse ändern",
|
||||
"Type" => "Typ",
|
||||
"PO Box" => "Postfach",
|
||||
"Street and number" => "Straße und Hausnummer",
|
||||
"Extended" => "Erweitert",
|
||||
"Apartment number etc." => "Wohnungsnummer usw.",
|
||||
"Region" => "Region",
|
||||
"E.g. state or province" => "Z.B. Staat oder Bezirk",
|
||||
"Zipcode" => "Postleitzahl",
|
||||
"Addressbook" => "Adressbuch",
|
||||
"Hon. prefixes" => "Höflichkeitspräfixe",
|
||||
"Miss" => "Frau",
|
||||
"Ms" => "Frau",
|
||||
"Mr" => "Herr",
|
||||
"Sir" => "Herr",
|
||||
"Mrs" => "Frau",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Vorname",
|
||||
"Family name" => "Familienname",
|
||||
"Hon. suffixes" => "Höflichkeitssuffixe",
|
||||
"J.D." => "Dr. Jur.",
|
||||
"M.D." => "Dr. med.",
|
||||
"D.O." => "DGOM",
|
||||
"D.C." => "MChiro",
|
||||
"Ph.D." => "Dr.",
|
||||
"Esq." => "Hochwohlgeborenen",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sen.",
|
||||
"Import a contacts file" => "Kontaktdatei importieren",
|
||||
"Please choose the addressbook" => "Bitte Adressbuch auswählen",
|
||||
"create a new addressbook" => "Neues Adressbuch erstellen",
|
||||
"Name of new addressbook" => "Name des neuen Adressbuchs",
|
||||
"Importing contacts" => "Kontakte werden importiert",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Sie habent noch keine Kontaktdaten in Ihrem Adressbuch.</h3><p>Sie können VCF-Dateien importieren, indem Sie diese herein ziehen und entweder \nauf einem bestehenden Adressbuch fallen lassen, um die Dateien in dieses Adressbuch zu importieren, oder auf einen freien Bereich, um ein neues Adressbuch anzulegen und die Dateien dort zu importieren.<br />Sie können auch den Knopf 'Importieren' am Ende der Liste drücken.</p>",
|
||||
"Select Address Books" => "Wählen sie ein Adressbuch",
|
||||
"CardDAV syncing addresses" => "CardDAV Sync-Adressen",
|
||||
"more info" => "weitere Informationen",
|
||||
"Primary address (Kontact et al)" => "Primäre Adresse (für Kontakt o.ä.)",
|
||||
|
50
l10n/el.php
50
l10n/el.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα",
|
||||
"Contacts" => "Επαφές",
|
||||
"%d_selected_contacts" => "%d_επιλεγμένες_επαφές",
|
||||
"Indexing contacts" => "Εύρεση επαφών ",
|
||||
"Add to..." => "Προσθήκη στο...",
|
||||
"Remove from..." => "Αφαίρεση από το...",
|
||||
"Add group..." => "Προσθήκη ομάδας...",
|
||||
"Indexing contacts" => "Εύρεση επαφών ",
|
||||
"Select photo" => "Επέλεξε φωτογραφία",
|
||||
"Network or server error. Please inform administrator." => "Σφάλμα δικτύου ή διακομιστή. Παρακαλώ ενημερώστε το διαχειριστή.",
|
||||
"Error adding to group." => "Σφάλμα κατά την προσθήκη σε ομάδα.",
|
||||
@ -233,55 +233,7 @@
|
||||
"Share" => "Μοιράσου",
|
||||
"Export" => "Εξαγωγή",
|
||||
"CardDAV link" => "Σύνδεσμος CardDAV",
|
||||
"Add Contact" => "Προσθήκη επαφής",
|
||||
"Drop photo to upload" => "Ρίξε μια φωτογραφία για ανέβασμα",
|
||||
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα",
|
||||
"Edit name details" => "Αλλάξτε τις λεπτομέρειες ονόματος",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "ΗΗ-ΜΜ-ΕΕΕΕ",
|
||||
"Separate groups with commas" => "Διαχώρισε τις ομάδες με κόμμα ",
|
||||
"Edit groups" => "Επεξεργασία ομάδων",
|
||||
"Enter email address" => "Εισήγαγε διεύθυνση ηλεκτρονικού ταχυδρομείου",
|
||||
"Edit address details" => "Επεξεργασία λεπτομερειών διεύθυνσης",
|
||||
"Add notes here." => "Πρόσθεσε τις σημειώσεις εδώ",
|
||||
"Add field" => "Προσθήκη πεδίου",
|
||||
"Download contact" => "Λήψη επαφής",
|
||||
"The temporary image has been removed from cache." => "Η προσωρινή εικόνα αφαιρέθηκε από την κρυφή μνήμη.",
|
||||
"Edit address" => "Επεξεργασία διεύθυνσης",
|
||||
"Type" => "Τύπος",
|
||||
"PO Box" => "Ταχ. Θυρίδα",
|
||||
"Street and number" => "Οδός και αριθμός",
|
||||
"Extended" => "Εκτεταμένη",
|
||||
"Apartment number etc." => "Αριθμός διαμερίσματος",
|
||||
"Region" => "Περιοχή",
|
||||
"E.g. state or province" => "Π.χ. Πολιτεία ή επαρχεία",
|
||||
"Zipcode" => "Τ.Κ.",
|
||||
"Addressbook" => "Βιβλίο διευθύνσεων",
|
||||
"Hon. prefixes" => "προθέματα",
|
||||
"Miss" => "Δις",
|
||||
"Ms" => "Κα",
|
||||
"Mr" => "Κα",
|
||||
"Sir" => "Σερ",
|
||||
"Mrs" => "Κα",
|
||||
"Dr" => "Δρ.",
|
||||
"Given name" => "Όνομα",
|
||||
"Family name" => "Επώνυμο",
|
||||
"Hon. suffixes" => "καταλήξεις",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Εισαγωγή αρχείου επαφών",
|
||||
"Please choose the addressbook" => "Παρακαλώ επέλεξε βιβλίο διευθύνσεων",
|
||||
"create a new addressbook" => "Δημιουργία νέου βιβλίου διευθύνσεων",
|
||||
"Name of new addressbook" => "Όνομα νέου βιβλίου διευθύνσεων",
|
||||
"Importing contacts" => "Εισαγωγή επαφών",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Δεν έχετε επαφές στο βιβλίο διευθύνσεων.</h3><p>Μπορείτε να εισάγετε αρχεία VCF σύροντάς τα στην λίστα επαφών και είτε αφήνοντάς τα στο βιβλίο διευθύνσεων ώστε να εισαχθούν σε αυτό, είτε σε κάποιο κενό σημείο ώστε να δημιουργηθεί νέο βιβλίο διευθύνσεων και να εισαχθούν σε αυτό.<br />Μπορείτε επίσης να τα εισάγετε κάνοντας κλικ στο κουμπί εισαγωγής στο κάτω μέρος της λίστας.</p>",
|
||||
"Select Address Books" => "Επέλεξε βιβλίο διευθύνσεων",
|
||||
"CardDAV syncing addresses" => "συγχρονισμός διευθύνσεων μέσω CardDAV ",
|
||||
"more info" => "περισσότερες πληροφορίες",
|
||||
"Primary address (Kontact et al)" => "Κύρια διεύθυνση",
|
||||
|
58
l10n/eo.php
58
l10n/eo.php
@ -49,18 +49,24 @@
|
||||
"Couldn't load temporary image: " => "Ne eblis ŝargi provizoran bildon: ",
|
||||
"No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.",
|
||||
"Contacts" => "Kontaktoj",
|
||||
"Indexing contacts" => "Indeksante kontaktojn",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Add to..." => "Aldoni al...",
|
||||
"Remove from..." => "Forigi el...",
|
||||
"Add group..." => "Aldoni grupon...",
|
||||
"Indexing contacts" => "Indeksante kontaktojn",
|
||||
"Select photo" => "Elekti foton",
|
||||
"Network or server error. Please inform administrator." => "Reta aŭ servila eraro. Bonvolu sciigi al la administranto.",
|
||||
"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.",
|
||||
"Deleting done. Click here to cancel reloading." => "Forigo plenumiĝis. Klaku ĉi tie por nuligi reŝargon.",
|
||||
"Add address book" => "Aldoni adresaron",
|
||||
"Import done. Click here to cancel reloading." => "Enporto plenumiĝis. Klaku ĉi tien por nuligi reŝargon.",
|
||||
"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 from {filename}..." => "Enportante el {filename}...",
|
||||
"{success} imported, {failed} failed." => "{success} enportiĝis, {failed} malsukcesis.",
|
||||
"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",
|
||||
@ -77,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "La nomo de la adresaro ne povas esti malplena.",
|
||||
"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",
|
||||
"# groups" => "# grupoj",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Klaku por malfari forigon de {num} kontaktoj",
|
||||
"Cancelled deletion of {num}" => "Nuliĝis forigo de {num}",
|
||||
@ -145,11 +152,15 @@
|
||||
"HomePage" => "Hejmpaĝo",
|
||||
"New Group" => "Nova grupo",
|
||||
"Settings" => "Agordo",
|
||||
"Address books" => "Adresaroj",
|
||||
"Import" => "Enporti",
|
||||
"Select files to import" => "Elekti dosierojn por enporti",
|
||||
"Select files" => "Elekti dosierojn",
|
||||
"Import into:" => "Enporti en:",
|
||||
"OK" => "Akcepti",
|
||||
"(De-)select all" => "(Mal)elekti ĉion",
|
||||
"New Contact" => "Nova kontakto",
|
||||
"Download Contact(s)" => "Elŝuti kontakto(j)n",
|
||||
"Groups" => "Grupoj",
|
||||
"Favorite" => "Favorato",
|
||||
"Delete Contact" => "Forigi kontakton",
|
||||
@ -177,12 +188,16 @@
|
||||
"First name" => "Persona nomo",
|
||||
"Additional names" => "Pliaj nomoj",
|
||||
"Last name" => "Familia nomo",
|
||||
"Select groups" => "Elekti grupojn",
|
||||
"Nickname" => "Kromnomo",
|
||||
"Enter nickname" => "Enigu kromnomon",
|
||||
"Title" => "Titolo",
|
||||
"Enter title" => "Enigi titolon",
|
||||
"Organization" => "Organizaĵo",
|
||||
"Enter organization" => "Enigi organizaĵon",
|
||||
"Birthday" => "Naskiĝotago",
|
||||
"Notes go here..." => "Notoj iras tie ĉi...",
|
||||
"Export as VCF" => "Malenporti kiel VCF",
|
||||
"Add" => "Aldoni",
|
||||
"Phone" => "Telefono",
|
||||
"Email" => "Retpoŝtadreso",
|
||||
@ -209,52 +224,15 @@
|
||||
"Your city" => "Via urbo",
|
||||
"City" => "Urbo",
|
||||
"Some region" => "Iu regiono",
|
||||
"State or province" => "Subŝtato aŭ provinco",
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.iuejo.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "Disigi grupojn per komoj",
|
||||
"Edit groups" => "Redakti grupojn",
|
||||
"Enter email address" => "Enigi retpoŝtadreson",
|
||||
"Edit address details" => "Redakti detalojn de adreso",
|
||||
"Add notes here." => "Aldoni notojn ĉi tie.",
|
||||
"Add field" => "Aldoni kampon",
|
||||
"Download contact" => "Elŝuti kontakton",
|
||||
"CardDAV link" => "CardDAV-ligilo",
|
||||
"The temporary image has been removed from cache." => "La provizora bildo estas forigita de la kaŝmemoro.",
|
||||
"Edit address" => "Redakti adreson",
|
||||
"Type" => "Tipo",
|
||||
"PO Box" => "Abonkesto",
|
||||
"Street and number" => "Strato kaj numero",
|
||||
"Extended" => "Etendita",
|
||||
"Apartment number etc." => "Apartamenta numero, ktp.",
|
||||
"Region" => "Regiono",
|
||||
"E.g. state or province" => "Ekz.: subŝtato aŭ provinco",
|
||||
"Zipcode" => "Poŝtokodo",
|
||||
"Addressbook" => "Adresaro",
|
||||
"Hon. prefixes" => "Honoraj antaŭmetaĵoj",
|
||||
"Miss" => "f-ino",
|
||||
"Ms" => "s-ino",
|
||||
"Mr" => "s-ro",
|
||||
"Sir" => "s-ro",
|
||||
"Mrs" => "s-ino",
|
||||
"Dr" => "d-ro",
|
||||
"Given name" => "Persona nomo",
|
||||
"Family name" => "Familia nomo",
|
||||
"Hon. suffixes" => "Honoraj postmetaĵoj",
|
||||
"Import a contacts file" => "Enporti kontaktodosieron",
|
||||
"Please choose the addressbook" => "Bonvolu elekti adresaron",
|
||||
"create a new addressbook" => "krei novan adresaron",
|
||||
"Name of new addressbook" => "Nomo de nova adresaro",
|
||||
"Importing contacts" => "Enportante kontaktojn",
|
||||
"Select Address Books" => "Elektu adresarojn",
|
||||
"CardDAV syncing addresses" => "adresoj por CardDAV-sinkronigo",
|
||||
"more info" => "pli da informo",
|
||||
"Primary address (Kontact et al)" => "Ĉefa adreso (por Kontakt kaj aliaj)",
|
||||
|
51
l10n/es.php
51
l10n/es.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Fallo no se subió el fichero",
|
||||
"Contacts" => "Contactos",
|
||||
"%d_selected_contacts" => "%d_contactos_seleccionados",
|
||||
"Indexing contacts" => "Indexando contactos",
|
||||
"Add to..." => "Añadir a...",
|
||||
"Remove from..." => "Remover de...",
|
||||
"Add group..." => "Añadir grupo...",
|
||||
"Indexing contacts" => "Indexando contactos",
|
||||
"Select photo" => "eccionar una foto",
|
||||
"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.",
|
||||
@ -83,6 +83,7 @@
|
||||
"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",
|
||||
"# groups" => "# grupos",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Pulse para deshacer la eliminación de {num} contactos",
|
||||
"Cancelled deletion of {num}" => "La eliminación de {num} fue cancelada",
|
||||
@ -232,55 +233,7 @@
|
||||
"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",
|
||||
"Edit name details" => "Editar los detalles del nombre",
|
||||
"http://www.somesite.com" => "http://www.unsitio.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Separa los grupos con comas",
|
||||
"Edit groups" => "Editar grupos",
|
||||
"Enter email address" => "Introduce una dirección de correo electrónico",
|
||||
"Edit address details" => "Editar detalles de la dirección",
|
||||
"Add notes here." => "Añade notas aquí.",
|
||||
"Add field" => "Añadir campo",
|
||||
"Download contact" => "Descargar contacto",
|
||||
"The temporary image has been removed from cache." => "La foto temporal se ha borrado del cache.",
|
||||
"Edit address" => "Editar dirección",
|
||||
"Type" => "Tipo",
|
||||
"PO Box" => "Código postal",
|
||||
"Street and number" => "Calle y número",
|
||||
"Extended" => "Extendido",
|
||||
"Apartment number etc." => "Número del apartamento, etc.",
|
||||
"Region" => "Región",
|
||||
"E.g. state or province" => "Ej: región o provincia",
|
||||
"Zipcode" => "Código postal",
|
||||
"Addressbook" => "Libreta de direcciones",
|
||||
"Hon. prefixes" => "Prefijos honoríficos",
|
||||
"Miss" => "Srta",
|
||||
"Ms" => "Sra.",
|
||||
"Mr" => "Sr.",
|
||||
"Sir" => "Señor",
|
||||
"Mrs" => "Sra",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Nombre",
|
||||
"Family name" => "Apellido",
|
||||
"Hon. suffixes" => "Sufijos honoríficos",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Dr",
|
||||
"Esq." => "Don",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importar archivo de contactos",
|
||||
"Please choose the addressbook" => "Por favor escoge la agenda",
|
||||
"create a new addressbook" => "crear una nueva agenda",
|
||||
"Name of new addressbook" => "Nombre de la nueva agenda",
|
||||
"Importing contacts" => "Importando contactos",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>No tiene contactos en su libreta de direcciones.</h3><p>Puede importar archivos VCF arrastrándolos a la lista de contactos y soltándolos en una libreta de direcciones, o sobre un espacio vacío para crear una nueva libreta de direcciones e importar dentro de ésta.<br />Tambien puede realizar la importación haciendo clic en el botón de importar en la parte inferior de la lista.</p>",
|
||||
"Select Address Books" => "Seleccionar Agenda",
|
||||
"CardDAV syncing addresses" => "Sincronizando direcciones",
|
||||
"more info" => "más información",
|
||||
"Primary address (Kontact et al)" => "Dirección primaria (Kontact et al)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido",
|
||||
"Contacts" => "Contactos",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Indexando contactos",
|
||||
"Add to..." => "Añadir a...",
|
||||
"Remove from..." => "Borrar de...",
|
||||
"Add group..." => "Añadir grupo",
|
||||
"Indexing contacts" => "Indexando contactos",
|
||||
"Select photo" => "Seleccionar una imagen",
|
||||
"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.",
|
||||
@ -83,6 +83,7 @@
|
||||
"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",
|
||||
"# groups" => "# grupos",
|
||||
"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}",
|
||||
@ -232,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Separá los grupos con comas",
|
||||
"Edit groups" => "Editar grupos",
|
||||
"Enter email address" => "Escribí una dirección de correo electrónico",
|
||||
"Edit address details" => "Editar detalles de la dirección",
|
||||
"Add notes here." => "Agregá notas acá.",
|
||||
"Add field" => "Agregar campo",
|
||||
"Download contact" => "Descargar contacto",
|
||||
"The temporary image has been removed from cache." => "La imagen temporal fue borrada de la caché",
|
||||
"Edit address" => "Editar dirección",
|
||||
"Type" => "Tipo",
|
||||
"PO Box" => "Código postal",
|
||||
"Street and number" => "Calle y número",
|
||||
"Extended" => "Extendido",
|
||||
"Apartment number etc." => "Número de departamento, etc.",
|
||||
"Region" => "Provincia",
|
||||
"E.g. state or province" => "Eg. provincia o estado",
|
||||
"Zipcode" => "Código postal",
|
||||
"Addressbook" => "Agenda",
|
||||
"Hon. prefixes" => "Prefijos honoríficos",
|
||||
"Miss" => "Srta.",
|
||||
"Ms" => "Sra.",
|
||||
"Mr" => "Sr.",
|
||||
"Sir" => "Señor",
|
||||
"Mrs" => "Sra.",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Nombre",
|
||||
"Family name" => "Apellido",
|
||||
"Hon. suffixes" => "Sufijos honoríficos",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Dr.",
|
||||
"Esq." => "Don",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"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 agenda nueva",
|
||||
"Importing contacts" => "Importando contactos",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>No tenés contactos en tu agenda.</h3><p> Podés importar archivos VCF arrastrando los contactos a la agenda.<br />También podés realizar la importación haciendo click en el botón de Importar, en la parte inferior de la lista.</p>",
|
||||
"Select Address Books" => "Seleccionar agendas",
|
||||
"CardDAV syncing addresses" => "CardDAV está sincronizando direcciones",
|
||||
"more info" => "más información",
|
||||
"Primary address (Kontact et al)" => "Dirección primaria (Kontact y semejantes)",
|
||||
|
@ -48,10 +48,10 @@
|
||||
"Couldn't load temporary image: " => "Ajutise pildi laadimine ebaõnnestus: ",
|
||||
"No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga",
|
||||
"Contacts" => "Kontaktid",
|
||||
"Indexing contacts" => "Kontaktide indekseerimine",
|
||||
"Add to..." => "Lisa...",
|
||||
"Remove from..." => "Eemalda...",
|
||||
"Add group..." => "Lisa gruppi...",
|
||||
"Indexing contacts" => "Kontaktide indekseerimine",
|
||||
"Select photo" => "Vali foto",
|
||||
"Network or server error. Please inform administrator." => "Võrgu või serveri viga. Palun informeeri administraatorit.",
|
||||
"Error adding to group." => "Viga gruppi lisamisel.",
|
||||
@ -214,55 +214,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.mingisait.ee",
|
||||
"dd-mm-yyyy" => "dd.mm.yyyy",
|
||||
"Separate groups with commas" => "Eralda grupid komadega",
|
||||
"Edit groups" => "Muuda gruppe",
|
||||
"Enter email address" => "Sisesta e-posti aadress",
|
||||
"Edit address details" => "Muuda aaressi infot",
|
||||
"Add notes here." => "Lisa märkmed siia.",
|
||||
"Add field" => "Lisa väli",
|
||||
"Download contact" => "Lae kontakt alla",
|
||||
"The temporary image has been removed from cache." => "Ajutine pilt on puhvrist eemaldatud.",
|
||||
"Edit address" => "Muuda aadressi",
|
||||
"Type" => "Tüüp",
|
||||
"PO Box" => "Postkontori postkast",
|
||||
"Street and number" => "Tänav ja number",
|
||||
"Extended" => "Laiendatud",
|
||||
"Apartment number etc." => "Korteri nr jne.",
|
||||
"Region" => "Piirkond",
|
||||
"E.g. state or province" => "Näiteks maakond või piirkond",
|
||||
"Zipcode" => "Postiindeks",
|
||||
"Addressbook" => "Aadressiraamat",
|
||||
"Hon. prefixes" => "Eesliited",
|
||||
"Miss" => "Preili",
|
||||
"Ms" => "Pr",
|
||||
"Mr" => "Hr",
|
||||
"Sir" => "Härra",
|
||||
"Mrs" => "Proua",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Eesnimi",
|
||||
"Family name" => "Perekonnanimi",
|
||||
"Hon. suffixes" => "Järelliited",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Senior.",
|
||||
"Import a contacts file" => "Impordi kontaktifail",
|
||||
"Please choose the addressbook" => "Palun vali aadressiraamat",
|
||||
"create a new addressbook" => "loo uus aadressiraamat",
|
||||
"Name of new addressbook" => "Uue aadressiraamatu nimi",
|
||||
"Importing contacts" => "Kontaktide importimine",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Sinu aadressiraamatus pole ühtegi kontakti.</h3><p>Sa võid importida VCF faile lohistades neid kontaktide nimekirja sellele aadressiraamatule, millesse sa soovid neid importida või tühjale kohale, et luua uus aadressiraamat, millesse importida.<br />Sa võid importida ka kasutades nimekirja all olevat nuppu Impordi.</p>",
|
||||
"Select Address Books" => "Vali aadressiraamatud",
|
||||
"CardDAV syncing addresses" => "CardDAV sünkroniseerimise aadressid",
|
||||
"more info" => "lisainfo",
|
||||
"Primary address (Kontact et al)" => "Peamine aadress",
|
||||
|
35
l10n/eu.php
35
l10n/eu.php
@ -49,10 +49,10 @@
|
||||
"No file was uploaded. Unknown error" => "Ez da fitxategirik igo. Errore ezezaguna",
|
||||
"Contacts" => "Kontaktuak",
|
||||
"%d_selected_contacts" => "%d_kontaktu_hautatuta",
|
||||
"Indexing contacts" => "Kontaktuak indexatzen",
|
||||
"Add to..." => "Gehitu hemen...",
|
||||
"Remove from..." => "Ezabatu hemendik...",
|
||||
"Add group..." => "Gehitu taldea...",
|
||||
"Indexing contacts" => "Kontaktuak indexatzen",
|
||||
"Select photo" => "Hautatu argazkia",
|
||||
"Network or server error. Please inform administrator." => "Errore bat izan da sare edo zerbitzarian. Mesedez abisatu administradorea.",
|
||||
"Error adding to group." => "Errore bat izan da taldera gehitzean.",
|
||||
@ -232,40 +232,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.webgunea.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "Banatu taldeak komekin",
|
||||
"Edit groups" => "Editatu taldeak",
|
||||
"Enter email address" => "Sartu eposta helbidea",
|
||||
"Edit address details" => "Editatu helbidearen zehaztasunak",
|
||||
"Add notes here." => "Gehitu oharrak hemen.",
|
||||
"Add field" => "Gehitu eremua",
|
||||
"Download contact" => "Deskargatu kontaktua",
|
||||
"The temporary image has been removed from cache." => "Aldi bateko irudia cachetik ezabatu da.",
|
||||
"Edit address" => "Editatu helbidea",
|
||||
"Type" => "Mota",
|
||||
"PO Box" => "Posta kutxa",
|
||||
"Street and number" => "Kalea eta zenbakia",
|
||||
"Extended" => "Hedatua",
|
||||
"Apartment number etc." => "Etxe zenbakia eab.",
|
||||
"Region" => "Eskualdea",
|
||||
"E.g. state or province" => "adb. estatu edo herrialdea",
|
||||
"Zipcode" => "Posta kodea",
|
||||
"Addressbook" => "Helbide-liburua",
|
||||
"Hon. prefixes" => "Ohorezko aurrizkiak",
|
||||
"Given name" => "Izena",
|
||||
"Family name" => "Abizena(k)",
|
||||
"Hon. suffixes" => "Ohorezko atzizkiak",
|
||||
"Import a contacts file" => "Inporatu kontaktuen fitxategia",
|
||||
"Please choose the addressbook" => "Mesedez, aukeratu helbide liburua",
|
||||
"create a new addressbook" => "sortu helbide liburu berria",
|
||||
"Name of new addressbook" => "Helbide liburuaren izena",
|
||||
"Importing contacts" => "Kontaktuak inportatzen",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Ez duzu kontakturik zure helbide-liburuan.</h3><p>VCF fitxategiak inportatu ditzakezu kontaktu zerrendara arrastratuz eta helbide-liburu batean askatuz bertan inportatzeko, edo hutsune batera helbide-liburu berri bat sortzeko eta bertara inportatzeko.<br />Zerrendaren azpian dagoen inportatu botoia sakatuz ere inportatu dezakezu.</p>",
|
||||
"Select Address Books" => "Hautatu helbide-liburuak",
|
||||
"CardDAV syncing addresses" => "CardDAV sinkronizazio helbideak",
|
||||
"more info" => "informazio gehiago",
|
||||
"Primary address (Kontact et al)" => "Helbide nagusia",
|
||||
|
42
l10n/fa.php
42
l10n/fa.php
@ -100,49 +100,7 @@
|
||||
"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" => "ویرایش نام جزئیات",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "جدا کردن گروه ها به وسیله درنگ نما",
|
||||
"Edit groups" => "ویرایش گروه ها",
|
||||
"Enter email address" => "یک پست الکترونیکی وارد کنید",
|
||||
"Edit address details" => "ویرایش جزئیات نشانی ها",
|
||||
"Add notes here." => "اینجا یادداشت ها را بیافزایید",
|
||||
"Add field" => "اضافه کردن فیلد",
|
||||
"Download contact" => "دانلود مشخصات اشخاص",
|
||||
"The temporary image has been removed from cache." => "تصویر موقت از کش پاک شد.",
|
||||
"Edit address" => "ویرایش نشانی",
|
||||
"Type" => "نوع",
|
||||
"PO Box" => "صندوق پستی",
|
||||
"Extended" => "تمدید شده",
|
||||
"Region" => "ناحیه",
|
||||
"Zipcode" => "کد پستی",
|
||||
"Addressbook" => "کتابچه ی نشانی ها",
|
||||
"Hon. prefixes" => "پیشوند های محترمانه",
|
||||
"Miss" => "خانم",
|
||||
"Ms" => "خانم",
|
||||
"Mr" => "آقا",
|
||||
"Sir" => "آقا",
|
||||
"Mrs" => "خانم",
|
||||
"Dr" => "دکتر",
|
||||
"Given name" => "نام معلوم",
|
||||
"Family name" => "نام خانوادگی",
|
||||
"Hon. suffixes" => "پسوند های محترم",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "دکتری",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "وارد کردن پرونده حاوی اطلاعات",
|
||||
"Please choose the addressbook" => "لطفا یک کتابچه نشانی انتخاب کنید",
|
||||
"create a new addressbook" => "یک کتابچه نشانی بسازید",
|
||||
"Name of new addressbook" => "نام کتابچه نشانی جدید",
|
||||
"Importing contacts" => "وارد کردن اشخاص",
|
||||
"CardDAV syncing addresses" => "CardDAV syncing addresses ",
|
||||
"more info" => "اطلاعات بیشتر",
|
||||
"Primary address (Kontact et al)" => "نشانی اولیه",
|
||||
|
@ -202,55 +202,7 @@
|
||||
"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",
|
||||
"Edit name details" => "Muokkaa nimitietoja",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "pp-kk-vvvv",
|
||||
"Separate groups with commas" => "Erota ryhmät pilkuilla",
|
||||
"Edit groups" => "Muokkaa ryhmiä",
|
||||
"Enter email address" => "Anna sähköpostiosoite",
|
||||
"Edit address details" => "Muokkaa osoitetietoja",
|
||||
"Add notes here." => "Lisää huomiot tähän.",
|
||||
"Add field" => "Lisää kenttä",
|
||||
"Download contact" => "Lataa yhteystieto",
|
||||
"The temporary image has been removed from cache." => "Väliaikainen kuva on poistettu välimuistista.",
|
||||
"Edit address" => "Muokkaa osoitetta",
|
||||
"Type" => "Tyyppi",
|
||||
"PO Box" => "Postilokero",
|
||||
"Street and number" => "Katu ja numero",
|
||||
"Extended" => "Laajennettu",
|
||||
"Apartment number etc." => "Asunnon numero jne.",
|
||||
"Region" => "Alue",
|
||||
"E.g. state or province" => "Esim. maakunta tai alue",
|
||||
"Zipcode" => "Postinumero",
|
||||
"Addressbook" => "Osoitekirja",
|
||||
"Hon. prefixes" => "Kunnianarvoisa etuliite",
|
||||
"Miss" => "Neiti",
|
||||
"Ms" => "Neiti",
|
||||
"Mr" => "Herra",
|
||||
"Sir" => "Herra",
|
||||
"Mrs" => "Rouva",
|
||||
"Dr" => "Tohtori",
|
||||
"Given name" => "Etunimi",
|
||||
"Family name" => "Sukunimi",
|
||||
"Hon. suffixes" => "Kunnianarvoisa jälkiliite",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Fil. Tri",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sr.",
|
||||
"Import a contacts file" => "Tuo yhteystiedon sisältävä tiedosto",
|
||||
"Please choose the addressbook" => "Valitse osoitekirja",
|
||||
"create a new addressbook" => "luo uusi osoitekirja",
|
||||
"Name of new addressbook" => "Uuden osoitekirjan nimi",
|
||||
"Importing contacts" => "Tuodaan yhteystietoja",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Osoitekirjassasi ei ole yhteystietoja.</h3><p>Voit tuoda VCF-tiedostoja vetämällä ne yhteystietoluetteloon ja pudottamalla ne haluamaasi osoitekirjaan, tai lisätä yhteystiedon uuteen osoitekirjaan pudottamalla sen tyhjään tilaan.<br />Vaihtoehtoisesti voit myös napsauttaa Tuo-painiketta luettelon alaosassa.</p>",
|
||||
"Select Address Books" => "Valitse osoitekirjat",
|
||||
"CardDAV syncing addresses" => "CardDAV-synkronointiosoitteet",
|
||||
"more info" => "lisää tietoa",
|
||||
"Primary address (Kontact et al)" => "Varsinainen osoite (yhteystiedot jne.)",
|
||||
|
51
l10n/fr.php
51
l10n/fr.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Aucun fichier n'a été chargé. Erreur inconnue",
|
||||
"Contacts" => "Contacts",
|
||||
"%d_selected_contacts" => "%d_contacts_selectionnés",
|
||||
"Indexing contacts" => "Indexation des contacts",
|
||||
"Add to..." => "Ajouter à…",
|
||||
"Remove from..." => "Retirer de…",
|
||||
"Add group..." => "Ajouter un groupe…",
|
||||
"Indexing contacts" => "Indexation des contacts",
|
||||
"Select photo" => "Sélectionner une photo",
|
||||
"Network or server error. Please inform administrator." => "Erreur de serveur ou du réseau. Veuillez contacter votre administrateur.",
|
||||
"Error adding to group." => "Erreur lors de l'ajout au groupe.",
|
||||
@ -83,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "Le nom du carnet d'adresses ne peut être vide.",
|
||||
"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",
|
||||
"# groups" => "# groupes",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Cliquer pour annuler la suppression de {num} contacts",
|
||||
"Cancelled deletion of {num}" => "Suppression annulée pour {num} contacts",
|
||||
@ -232,55 +233,7 @@
|
||||
"Share" => "Partager",
|
||||
"Export" => "Exporter",
|
||||
"CardDAV link" => "Lien CardDAV",
|
||||
"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",
|
||||
"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",
|
||||
"Edit groups" => "Editer les groupes",
|
||||
"Enter email address" => "Entrer une adresse e-mail",
|
||||
"Edit address details" => "Editer les adresses",
|
||||
"Add notes here." => "Ajouter des notes ici.",
|
||||
"Add field" => "Ajouter un champ.",
|
||||
"Download contact" => "Télécharger 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",
|
||||
"PO Box" => "Boîte postale",
|
||||
"Street and number" => "Rue et numéro",
|
||||
"Extended" => "Étendu",
|
||||
"Apartment number etc." => "Numéro d'appartement, etc.",
|
||||
"Region" => "Région",
|
||||
"E.g. state or province" => "Ex: état ou province",
|
||||
"Zipcode" => "Code postal",
|
||||
"Addressbook" => "Carnet d'adresses",
|
||||
"Hon. prefixes" => "Préfixe hon.",
|
||||
"Miss" => "Mlle",
|
||||
"Ms" => "Mme",
|
||||
"Mr" => "M.",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Mme",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Prénom",
|
||||
"Family name" => "Nom de famille",
|
||||
"Hon. suffixes" => "Suffixes hon.",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "Dr.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Dr",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importer un fichier de contacts",
|
||||
"Please choose the addressbook" => "Veuillez choisir le carnet d'adresses",
|
||||
"create a new addressbook" => "Créer un nouveau carnet d'adresses",
|
||||
"Name of new addressbook" => "Nom du nouveau carnet d'adresses",
|
||||
"Importing contacts" => "Importation des contacts",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Vous n'avez pas de contact dans ce carnet d'adresses.</h3><p>Vous pouvez importer un fichier VCF par simple glisser/déposer vers la liste de contacts, vers un carnet d'adresses existant (afin d'y importer les nouveaux contacts), ou encore vers un emplacement libre afin de créer un nouveau carnet d'adresses à partir des contacts contenus dans le fichier.<br />Vous pouvez également utiliser le bouton d'import en bas de la liste.</p>",
|
||||
"Select Address Books" => "Choix du carnet d'adresses",
|
||||
"CardDAV syncing addresses" => "Synchronisation des contacts CardDAV",
|
||||
"more info" => "Plus d'infos",
|
||||
"Primary address (Kontact et al)" => "Adresse principale",
|
||||
|
48
l10n/gl.php
48
l10n/gl.php
@ -163,55 +163,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.unhaligazon.net",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Separe grupos con comas",
|
||||
"Edit groups" => "Editar grupos",
|
||||
"Enter email address" => "Introduza unha dirección de correo electrónico",
|
||||
"Edit address details" => "Editar os detalles do enderezo",
|
||||
"Add notes here." => "Engadir aquí as notas.",
|
||||
"Add field" => "Engadir campo",
|
||||
"Download contact" => "Descargar contacto",
|
||||
"The temporary image has been removed from cache." => "A imaxe temporal foi eliminada da caché.",
|
||||
"Edit address" => "Editar o enderezo",
|
||||
"Type" => "Escribir",
|
||||
"PO Box" => "Apartado de correos",
|
||||
"Street and number" => "Rúa e número",
|
||||
"Extended" => "Ampliado",
|
||||
"Apartment number etc." => "Número de apartamento etc.",
|
||||
"Region" => "Autonomía",
|
||||
"E.g. state or province" => "P.ex estado ou provincia",
|
||||
"Zipcode" => "Código postal",
|
||||
"Addressbook" => "Caderno de enderezos",
|
||||
"Hon. prefixes" => "Prefixos honoríficos",
|
||||
"Miss" => "Srta",
|
||||
"Ms" => "Sra/Srta",
|
||||
"Mr" => "Sr",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Sra",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Alcume",
|
||||
"Family name" => "Nome familiar",
|
||||
"Hon. suffixes" => "Sufixos honorarios",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importar un ficheiro de contactos",
|
||||
"Please choose the addressbook" => "Escolle o caderno de enderezos",
|
||||
"create a new addressbook" => "crear un novo caderno de enderezos",
|
||||
"Name of new addressbook" => "Nome do novo caderno de enderezos",
|
||||
"Importing contacts" => "Importando contactos",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Non tes contactos no teu caderno de enderezos.</h3><p>Podes importar ficheiros VCF arrastrándoos á lista de contactos ou ben tirándoos enriba do caderno de enderezos para importalos alí. Tamén arrastrándoos e deixándoos nun punto baleiro créase un novo caderno de enderezos e impórtanse alí.<br/>Igualmente podes empregar o botón de importar que tes no fondo da lista.</p>",
|
||||
"Select Address Books" => "Escoller o cadernos de enderezos",
|
||||
"CardDAV syncing addresses" => "Enderezos CardDAV a sincronizar",
|
||||
"more info" => "máis información",
|
||||
"Primary address (Kontact et al)" => "Enderezo primario (Kontact et al)",
|
||||
|
45
l10n/he.php
45
l10n/he.php
@ -176,52 +176,7 @@
|
||||
"Country" => "מדינה",
|
||||
"Share" => "שתף",
|
||||
"Export" => "יצוא",
|
||||
"Add Contact" => "הוספת איש קשר",
|
||||
"Drop photo to upload" => "גרור ושחרר תמונה בשביל להעלות",
|
||||
"Edit name details" => "ערוך פרטי שם",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "הפרד קבוצות עם פסיקים",
|
||||
"Edit groups" => "ערוך קבוצות",
|
||||
"Enter email address" => "הזן כתובת דוא\"ל",
|
||||
"Edit address details" => "ערוך פרטי כתובת",
|
||||
"Add notes here." => "הוסף הערות כאן.",
|
||||
"Add field" => "הוסף שדה",
|
||||
"Download contact" => "הורדת איש קשר",
|
||||
"The temporary image has been removed from cache." => "התמונה הזמנית הוסרה מן המטמון.",
|
||||
"Edit address" => "ערוך כתובת",
|
||||
"Type" => "סוג",
|
||||
"PO Box" => "תא דואר",
|
||||
"Street and number" => "רחוב ומספר",
|
||||
"Extended" => "מורחב",
|
||||
"Apartment number etc." => "מס' דירה וכו'.",
|
||||
"Region" => "אזור",
|
||||
"Zipcode" => "מיקוד",
|
||||
"Addressbook" => "פנקס כתובות",
|
||||
"Hon. prefixes" => "קידומות שם",
|
||||
"Miss" => "גב'",
|
||||
"Ms" => "גב'",
|
||||
"Mr" => "מר'",
|
||||
"Sir" => "אדון",
|
||||
"Mrs" => "גב'",
|
||||
"Dr" => "ד\"ר",
|
||||
"Given name" => "שם",
|
||||
"Family name" => "שם משפחה",
|
||||
"Hon. suffixes" => "סיומות שם",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "יבא קובץ אנשי קשר",
|
||||
"Please choose the addressbook" => "אנא בחר ספר כתובות",
|
||||
"create a new addressbook" => "צור ספר כתובות חדש",
|
||||
"Name of new addressbook" => "שם ספר כתובות החדש",
|
||||
"Importing contacts" => "מיבא אנשי קשר",
|
||||
"Select Address Books" => "בחר ספר כתובות",
|
||||
"CardDAV syncing addresses" => "CardDAV מסנכרן כתובות",
|
||||
"more info" => "מידע נוסף",
|
||||
"Primary address (Kontact et al)" => "כתובת ראשית",
|
||||
|
21
l10n/hr.php
21
l10n/hr.php
@ -91,27 +91,6 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Razdvoji grupe sa zarezom",
|
||||
"Edit groups" => "Uredi grupe",
|
||||
"Enter email address" => "Unesi email adresu",
|
||||
"Edit address details" => "Uredi detalje adrese",
|
||||
"Add notes here." => "Dodaj bilješke ovdje.",
|
||||
"Add field" => "Dodaj polje",
|
||||
"Download contact" => "Preuzmi kontakt",
|
||||
"Edit address" => "Uredi adresu",
|
||||
"Type" => "Tip",
|
||||
"PO Box" => "Poštanski Pretinac",
|
||||
"Extended" => "Prošireno",
|
||||
"Region" => "Regija",
|
||||
"Zipcode" => "Poštanski broj",
|
||||
"Addressbook" => "Adresar",
|
||||
"Given name" => "Ime",
|
||||
"Family name" => "Prezime",
|
||||
"more info" => "više informacija",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
"Addressbooks" => "Adresari",
|
||||
|
@ -1,5 +1,5 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error (de)activating addressbook." => "Címlista (de)aktiválása sikertelen",
|
||||
"Error (de)activating addressbook." => "A címlista (de)aktiválása sikertelen",
|
||||
"id is not set." => "ID nincs beállítva",
|
||||
"Cannot update addressbook with an empty name." => "Üres névvel nem frissíthető a címlista",
|
||||
"Error adding group." => "Hiba a csoport hozzáadása közben.",
|
||||
@ -7,22 +7,22 @@
|
||||
"Error setting checksum." => "Hiba az ellenőrzőösszeg beállításakor",
|
||||
"No categories selected for deletion." => "Nincs kiválasztva törlendő kategória",
|
||||
"No address books found." => "Nem található címlista",
|
||||
"No contacts found." => "Nem található kontakt",
|
||||
"No contacts found." => "Nem található bejegyzés.",
|
||||
"element name is not set." => "az elem neve nincs beállítva",
|
||||
"checksum is not set." => "az ellenőrzőösszeg nincs beállítva",
|
||||
"Information about vCard is incorrect. Please reload the page." => "A vCardról szóló információ helytelen. Töltsd újra az oldalt.",
|
||||
"Information about vCard is incorrect. Please reload the page." => "A vCardról szóló információ helytelen. Frissítse az oldalt!",
|
||||
"Information about vCard is incorrect. Please reload the page: " => "Helytelen információ a vCardról. Töltse újra az oldalt: ",
|
||||
"Something went FUBAR. " => "Valami balul sült el.",
|
||||
"Something went FUBAR. " => "Helyrehozhatatlan hiba történt.",
|
||||
"Missing IM parameter." => "Hiányzó IM paraméter.",
|
||||
"Unknown IM: " => "Ismeretlen IM:",
|
||||
"No contact ID was submitted." => "Nincs ID megadva a kontakthoz",
|
||||
"Error reading contact photo." => "A kontakt képének beolvasása sikertelen",
|
||||
"Error reading contact photo." => "Az arckép beolvasása sikertelen",
|
||||
"Error saving temporary file." => "Ideiglenes fájl mentése sikertelen",
|
||||
"The loading photo is not valid." => "A kép érvénytelen",
|
||||
"Contact ID is missing." => "Hiányzik a kapcsolat ID",
|
||||
"No photo path was submitted." => "Nincs fénykép-útvonal megadva",
|
||||
"File doesn't exist:" => "A fájl nem létezik:",
|
||||
"Error loading image." => "Kép betöltése sikertelen",
|
||||
"Error loading image." => "A kép betöltése sikertelen",
|
||||
"Error getting contact object." => "A kontakt-objektum feldolgozása sikertelen",
|
||||
"Error getting PHOTO property." => "A PHOTO-tulajdonság feldolgozása sikertelen",
|
||||
"Error saving contact." => "A kontakt mentése sikertelen",
|
||||
@ -35,16 +35,18 @@
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "A feltöltött fájl mérete meghaladja az upload_max_filesize értéket a php.ini-ben",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "A feltöltött fájl mérete meghaladja a HTML form-ban megadott MAX_FILE_SIZE értéket",
|
||||
"The uploaded file was only partially uploaded" => "A fájl csak részlegesen lett feltöltve",
|
||||
"No file was uploaded" => "Nincs feltöltött fájl",
|
||||
"No file was uploaded" => "Nem töltődött fel állomány",
|
||||
"Missing a temporary folder" => "Hiányzik az ideiglenes könyvtár",
|
||||
"Couldn't save temporary image: " => "Ideiglenes kép létrehozása sikertelen",
|
||||
"Couldn't load temporary image: " => "Ideiglenes kép betöltése sikertelen",
|
||||
"No file was uploaded. Unknown error" => "Nem történt feltöltés. Ismeretlen hiba",
|
||||
"Contacts" => "Kapcsolatok",
|
||||
"Contacts" => "Címjegyzékek",
|
||||
"Add to..." => "Hozzáadás ehhez...",
|
||||
"Remove from..." => "Eltávolítás innen...",
|
||||
"Add group..." => "Csoport hozzáadása...",
|
||||
"Select photo" => "Fotó kiválasztása",
|
||||
"Network or server error. Please inform administrator." => "Hiba történt a hálózatban vagy a kiszolgálón. Értesítse a rendszergazdát!",
|
||||
"Add address book" => "Új címjegyzék",
|
||||
"Error" => "Hiba",
|
||||
"Importing from {filename}..." => "Importálás ebből: {filename}...",
|
||||
"Importing..." => "Importálás...",
|
||||
@ -59,6 +61,7 @@
|
||||
"Error loading profile picture." => "Hiba a profilkép betöltése közben.",
|
||||
"Enter name" => "Név megadása",
|
||||
"Enter description" => "Leírás megadása",
|
||||
"Select addressbook" => "A címlista kiválasztása",
|
||||
"Is this correct?" => "Helyes ez?",
|
||||
"All" => "Összes",
|
||||
"Favorites" => "Kedvencek",
|
||||
@ -75,6 +78,10 @@
|
||||
"Cancel" => "Mégsem",
|
||||
"More..." => "Több...",
|
||||
"Less..." => "Kevesebb...",
|
||||
"You do not have the permissions to read this addressbook." => "Nincs jogosultsága hozzáférni ehhez a címjegyzékhez.",
|
||||
"You do not have the permissions to update this addressbook." => "Nincs jogosultsága módosítani ezt a címjegyzéket.",
|
||||
"You do not have the permissions to delete this addressbook." => "Nincs jogosultsága törölni ezt a címjegyzéket.",
|
||||
"There was an error deleting this addressbook." => "A címjegyzék törlése nem sikerült.",
|
||||
"Jabber" => "Jabber",
|
||||
"AIM" => "AIM",
|
||||
"MSN" => "MSN",
|
||||
@ -102,9 +109,15 @@
|
||||
"Family" => "Család",
|
||||
"{name}'s Birthday" => "{name} születésnapja",
|
||||
"Contact" => "Kapcsolat",
|
||||
"You do not have the permissions to add contacts to this addressbook." => "Nincs jogosultsága bővíteni ezt a címjegyzéket.",
|
||||
"You do not have the permissions to edit this contact." => "Nincs jogosultsága módosítani az illető adatait.",
|
||||
"Could not find the Addressbook with ID: " => "Nincs címjegyzék ezzel az ID-vel:",
|
||||
"You do not have the permissions to delete this contact." => "Nincs jogosultsága törölni az illető adatait.",
|
||||
"There was an error deleting this contact." => "A bejegyzés törlése nem sikerült.",
|
||||
"Contact not found." => "Kapcsolat nem található.",
|
||||
"HomePage" => "Kezdőoldal",
|
||||
"Settings" => "Beállítások",
|
||||
"Address books" => "Címjegyzékek",
|
||||
"Import" => "Import",
|
||||
"Select files to import" => "Importálandó fájlok kiválasztása",
|
||||
"Select files" => "Fájlok kiválasztása",
|
||||
@ -120,15 +133,20 @@
|
||||
"Navigation" => "Navigáció",
|
||||
"Next contact in list" => "Következő kapcsolat a listán",
|
||||
"Previous contact in list" => "Előző kapcsolat a listán",
|
||||
"Expand/collapse current addressbook" => "A címlista kinyitása/becsukása",
|
||||
"Next addressbook" => "A következő címlista",
|
||||
"Previous addressbook" => "Az előző címlista",
|
||||
"Refresh contacts list" => "Kapcsolatok lista frissítése",
|
||||
"Add new contact" => "Új kapcsolat hozzáadása",
|
||||
"Add new addressbook" => "Új címlista létrehozása",
|
||||
"Delete current contact" => "Jelenlegi kapcsolat törlése",
|
||||
"Add contact" => "Kapcsolat hozzáadása",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>Add a new contact or import existing contacts from a VCF file.</p>" => "<h3>Ebben a címjegyzékben még nincsenek bejegyzések.</h3><p>Hozzon létre egyet, vagy importáljon adatokar egy VCF-állományból.</p>",
|
||||
"Add contact" => "Új személy hozzáadása",
|
||||
"Delete group" => "Csoport törlése",
|
||||
"Delete current photo" => "Aktuális kép törlése",
|
||||
"Edit current photo" => "Aktuális kép szerkesztése",
|
||||
"Delete current photo" => "Az aktuális kép törlése",
|
||||
"Edit current photo" => "Az aktuális kép szerkesztése",
|
||||
"Upload new photo" => "Új kép feltöltése",
|
||||
"Select photo from ownCloud" => "Kép kiválasztása ownCloud-ból",
|
||||
"Select photo from ownCloud" => "Kép kiválasztása ownCloudból",
|
||||
"First name" => "Keresztnév",
|
||||
"Additional names" => "További nevek",
|
||||
"Last name" => "Vezetéknév",
|
||||
@ -149,7 +167,7 @@
|
||||
"Address" => "Cím",
|
||||
"Note" => "Jegyzet",
|
||||
"Web site" => "Weboldal",
|
||||
"Delete contact" => "Kapcsolat törlése",
|
||||
"Delete contact" => "A bejegyzés 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",
|
||||
@ -175,53 +193,7 @@
|
||||
"Share" => "Megosztás",
|
||||
"Export" => "Exportálás",
|
||||
"CardDAV link" => "CardDav link",
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "Vesszővel válassza el a csoportokat",
|
||||
"Edit groups" => "Csoportok szerkesztése",
|
||||
"Enter email address" => "Adja meg az email címet",
|
||||
"Edit address details" => "Cím részleteinek szerkesztése",
|
||||
"Add notes here." => "Megjegyzések",
|
||||
"Add field" => "Mező hozzáadása",
|
||||
"Download contact" => "Kapcsolat letölté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",
|
||||
"PO Box" => "Postafiók",
|
||||
"Street and number" => "Utca és házszám",
|
||||
"Extended" => "Kiterjesztett",
|
||||
"Apartment number etc." => "Apartman száma, stb.",
|
||||
"Region" => "Megye",
|
||||
"E.g. state or province" => "Pl.: állam vagy tartomány",
|
||||
"Zipcode" => "Irányítószám",
|
||||
"Addressbook" => "Címlista",
|
||||
"Hon. prefixes" => "Előtag",
|
||||
"Miss" => "Miss",
|
||||
"Ms" => "Ms",
|
||||
"Mr" => "Mr",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Mrs",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Teljes név",
|
||||
"Family name" => "Családnév",
|
||||
"Hon. suffixes" => "Utótag",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Ifj.",
|
||||
"Sn." => "Id.",
|
||||
"Import a contacts file" => "Kapcsolat-fájl importálása",
|
||||
"Please choose the addressbook" => "Válassza ki a címlistát",
|
||||
"create a new addressbook" => "Címlista létrehozása",
|
||||
"Name of new addressbook" => "Új címlista neve",
|
||||
"Importing contacts" => "Kapcsolatok importálása",
|
||||
"CardDAV syncing addresses" => "CardDAV szinkronizációs címek",
|
||||
"more info" => "további információ",
|
||||
"Primary address (Kontact et al)" => "Elsődleges cím",
|
||||
|
25
l10n/ia.php
25
l10n/ia.php
@ -54,31 +54,6 @@
|
||||
"Country" => "Pais",
|
||||
"Share" => "Compartir",
|
||||
"Export" => "Exportar",
|
||||
"Add Contact" => "Adder contacto",
|
||||
"Edit groups" => "Modificar gruppos",
|
||||
"Enter email address" => "Entrar un adresse de e-posta",
|
||||
"Add notes here." => "Adder notas hic",
|
||||
"Add field" => "Adder campo",
|
||||
"Download contact" => "Discargar contacto",
|
||||
"Edit address" => "Modificar adresses",
|
||||
"Type" => "Typo",
|
||||
"PO Box" => "Cassa postal",
|
||||
"Extended" => "Extendite",
|
||||
"Region" => "Region",
|
||||
"Zipcode" => "Codice postal",
|
||||
"Addressbook" => "Adressario",
|
||||
"Hon. prefixes" => "Prefixos honorific",
|
||||
"Miss" => "Senioretta",
|
||||
"Mr" => "Sr.",
|
||||
"Mrs" => "Sra.",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Nomine date",
|
||||
"Family name" => "Nomine de familia",
|
||||
"Hon. suffixes" => "Suffixos honorific",
|
||||
"Import a contacts file" => "Importar un file de contactos",
|
||||
"Please choose the addressbook" => "Per favor selige le adressario",
|
||||
"create a new addressbook" => "Crear un nove adressario",
|
||||
"Name of new addressbook" => "Nomine del nove gruppo:",
|
||||
"more info" => "plus info",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
"Addressbooks" => "Adressarios",
|
||||
|
10
l10n/id.php
10
l10n/id.php
@ -50,16 +50,6 @@
|
||||
"Country" => "negara",
|
||||
"Share" => "berbagi",
|
||||
"Export" => "ekspor",
|
||||
"Add Contact" => "tambah kontak",
|
||||
"Edit name details" => "ubah detail nama",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "pisahkan grup dengan tanda koma",
|
||||
"Download contact" => "unduk kontak",
|
||||
"Type" => "tipe",
|
||||
"PO Box" => "PO box",
|
||||
"Region" => "daerah",
|
||||
"Zipcode" => "kodepos",
|
||||
"Addressbook" => "buku alamat",
|
||||
"more info" => "lebih lanjut",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
"Addressbooks" => "buku alamat",
|
||||
|
50
l10n/it.php
50
l10n/it.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Nessun file è stato inviato. Errore sconosciuto",
|
||||
"Contacts" => "Contatti",
|
||||
"%d_selected_contacts" => "%d_contatti_selezionati",
|
||||
"Indexing contacts" => "Indicizzazione dei contatti",
|
||||
"Add to..." => "Aggiungi a...",
|
||||
"Remove from..." => "Rimuovi da...",
|
||||
"Add group..." => "Aggiungi gruppo...",
|
||||
"Indexing contacts" => "Indicizzazione dei contatti",
|
||||
"Select photo" => "Seleziona la foto",
|
||||
"Network or server error. Please inform administrator." => "Errore di rete o del server. Informa l'amministratore.",
|
||||
"Error adding to group." => "Errore durante l'aggiunta al gruppo.",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "gg-mm-aaaa",
|
||||
"Separate groups with commas" => "Separa i gruppi con virgole",
|
||||
"Edit groups" => "Modifica gruppi",
|
||||
"Enter email address" => "Inserisci indirizzo email",
|
||||
"Edit address details" => "Modifica dettagli dell'indirizzo",
|
||||
"Add notes here." => "Aggiungi qui le note.",
|
||||
"Add field" => "Aggiungi campo",
|
||||
"Download contact" => "Scarica contatto",
|
||||
"The temporary image has been removed from cache." => "L'immagine temporanea è stata rimossa dalla cache.",
|
||||
"Edit address" => "Modifica indirizzo",
|
||||
"Type" => "Tipo",
|
||||
"PO Box" => "Casella postale",
|
||||
"Street and number" => "Via e numero",
|
||||
"Extended" => "Esteso",
|
||||
"Apartment number etc." => "Numero appartamento ecc.",
|
||||
"Region" => "Regione",
|
||||
"E.g. state or province" => "Ad es. stato o provincia",
|
||||
"Zipcode" => "CAP",
|
||||
"Addressbook" => "Rubrica",
|
||||
"Hon. prefixes" => "Prefissi onorifici",
|
||||
"Miss" => "Sig.na",
|
||||
"Ms" => "Sig.ra",
|
||||
"Mr" => "Sig.",
|
||||
"Sir" => "Sig.",
|
||||
"Mrs" => "Sig.ra",
|
||||
"Dr" => "Dott.",
|
||||
"Given name" => "Nome",
|
||||
"Family name" => "Cognome",
|
||||
"Hon. suffixes" => "Suffissi onorifici",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importa un file di contatti",
|
||||
"Please choose the addressbook" => "Scegli la rubrica",
|
||||
"create a new addressbook" => "crea una nuova rubrica",
|
||||
"Name of new addressbook" => "Nome della nuova rubrica",
|
||||
"Importing contacts" => "Importazione contatti",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Non hai contatti nella tua rubrica.</h3><p>Puoi importare file VCF trascinandoli sull'elenco dei contatti e rilasciandoli su una rubrica di destinazione o in un punto vuoto per creare una nuova rubrica.<br />Puoi inoltre importare facendo clic sul pulsante di importazione in fondo all'elenco.</p>",
|
||||
"Select Address Books" => "Seleziona rubriche",
|
||||
"CardDAV syncing addresses" => "Indirizzi di sincronizzazione CardDAV",
|
||||
"more info" => "altre informazioni",
|
||||
"Primary address (Kontact et al)" => "Indirizzo principale (Kontact e altri)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "ファイルは何もアップロードされていません。不明なエラー",
|
||||
"Contacts" => "連絡先",
|
||||
"%d_selected_contacts" => "%d個の選択された連絡先",
|
||||
"Indexing contacts" => "連絡先のインデックスを作成中",
|
||||
"Add to..." => "追加...",
|
||||
"Remove from..." => "削除...",
|
||||
"Add group..." => "グループを追加...",
|
||||
"Indexing contacts" => "連絡先のインデックスを作成中",
|
||||
"Select photo" => "写真を選択",
|
||||
"Network or server error. Please inform administrator." => "ネットワークもしくはサーバエラーです。管理者に連絡してください。",
|
||||
"Error adding to group." => "グループに追加エラー。",
|
||||
@ -233,55 +233,7 @@
|
||||
"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" => "名前の詳細を編集",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "コンマでグループを分割",
|
||||
"Edit groups" => "グループを編集",
|
||||
"Enter email address" => "メールアドレスを入力",
|
||||
"Edit address details" => "住所の詳細を編集",
|
||||
"Add notes here." => "ここにメモを追加。",
|
||||
"Add field" => "項目を追加",
|
||||
"Download contact" => "連絡先のダウンロード",
|
||||
"The temporary image has been removed from cache." => "一時画像はキャッシュから削除されました。",
|
||||
"Edit address" => "住所を編集",
|
||||
"Type" => "種類",
|
||||
"PO Box" => "私書箱",
|
||||
"Street and number" => "番地",
|
||||
"Extended" => "住所2",
|
||||
"Apartment number etc." => "アパート名等",
|
||||
"Region" => "都道府県",
|
||||
"E.g. state or province" => "例:東京都、大阪府",
|
||||
"Zipcode" => "郵便番号",
|
||||
"Addressbook" => "アドレス帳",
|
||||
"Hon. prefixes" => "敬称",
|
||||
"Miss" => "Miss",
|
||||
"Ms" => "Ms",
|
||||
"Mr" => "Mr",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Mrs",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "名",
|
||||
"Family name" => "姓",
|
||||
"Hon. suffixes" => "称号",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "連絡先ファイルをインポート",
|
||||
"Please choose the addressbook" => "アドレス帳を選択してください",
|
||||
"create a new addressbook" => "新しいアドレス帳を作成",
|
||||
"Name of new addressbook" => "新しいアドレス帳の名前",
|
||||
"Importing contacts" => "連絡先をインポート",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>アドレス帳に連絡先がありません。</h3><p>連絡先リストにVCFファイルをドラッグするか、もしくは、アドレス帳にドラッグすることでインポートが可能です。新しいアドレス帳を作成してインポートする場合は、空白スペースにドラッグします。<br />リストの一番下のインポートボタンをクリックしてもインポートすることが可能です。</p>",
|
||||
"Select Address Books" => "アドレス帳を選択してください",
|
||||
"CardDAV syncing addresses" => "CardDAV同期アドレス",
|
||||
"more info" => "詳細情報",
|
||||
"Primary address (Kontact et al)" => "プライマリアドレス(Kontact 他)",
|
||||
|
@ -51,23 +51,6 @@
|
||||
"Country" => "ქვეყანა",
|
||||
"Share" => "გაზიარება",
|
||||
"Export" => "ექსპორტი",
|
||||
"Add Contact" => "კონტაქტის დამატება",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Edit groups" => "ჯგუფების რედაქტირება",
|
||||
"Enter email address" => "ჩაწერეთ იმეილ მისამართი",
|
||||
"Add field" => "დაამატე ველი",
|
||||
"Download contact" => "კონტაქტის ჩამოტვირთვა",
|
||||
"Edit address" => "მისამართის რედაქტირება",
|
||||
"Type" => "ტიპი",
|
||||
"PO Box" => "PO ყუთი",
|
||||
"Extended" => "Extended",
|
||||
"Region" => "რეგიონი",
|
||||
"Zipcode" => "Zip კოდი",
|
||||
"Addressbook" => "მისამარტების ზიგნი",
|
||||
"Miss" => "მისის",
|
||||
"Ms" => "მის",
|
||||
"Mr" => "მისტერ",
|
||||
"Sir" => "სერ",
|
||||
"more info" => "უფრო მეტი ინფორმაცია",
|
||||
"Primary address (Kontact et al)" => "პირველადი მისამართი (Kontact et al)",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
|
50
l10n/ko.php
50
l10n/ko.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다",
|
||||
"Contacts" => "연락처",
|
||||
"%d_selected_contacts" => "%d 개의 연락처 선택됨",
|
||||
"Indexing contacts" => "연락처 인덱스 작성 중",
|
||||
"Add to..." => "다음에 추가...",
|
||||
"Remove from..." => "다음에서 삭제...",
|
||||
"Add group..." => "그룹 추가...",
|
||||
"Indexing contacts" => "연락처 인덱스 작성 중",
|
||||
"Select photo" => "사진 선택",
|
||||
"Network or server error. Please inform administrator." => "네트워크 및 서버 오류입니다. 관리자에게 알려 주십시오.",
|
||||
"Error adding to group." => "그룹에 추가하는 중 오류가 발생하였습니다.",
|
||||
@ -232,55 +232,7 @@
|
||||
"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" => "이름 정보 편집",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "쉼표로 그룹 구분",
|
||||
"Edit groups" => "그룹 편집",
|
||||
"Enter email address" => "메일 주소 입력",
|
||||
"Edit address details" => "자세한 정보 편집",
|
||||
"Add notes here." => "여기에 메모를 추가하십시오.",
|
||||
"Add field" => "항목 추가",
|
||||
"Download contact" => "연락처 다운로드",
|
||||
"The temporary image has been removed from cache." => "임시 그림이 캐시에서 삭제되었습니다. ",
|
||||
"Edit address" => "주소 편집",
|
||||
"Type" => "종류",
|
||||
"PO Box" => "사서함",
|
||||
"Street and number" => "거리 이름 및 번지",
|
||||
"Extended" => "주소 2",
|
||||
"Apartment number etc." => "아파트 호수 등",
|
||||
"Region" => "지역",
|
||||
"E.g. state or province" => "예: 주 또는 도",
|
||||
"Zipcode" => "우편번호",
|
||||
"Addressbook" => "주소록",
|
||||
"Hon. prefixes" => "존칭 접두사",
|
||||
"Miss" => "Miss",
|
||||
"Ms" => "Ms",
|
||||
"Mr" => "Mr",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Mrs",
|
||||
"Dr" => "박사",
|
||||
"Given name" => "이름",
|
||||
"Family name" => "성",
|
||||
"Hon. suffixes" => "존칭 접미사",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "연락처 파일 가져오기",
|
||||
"Please choose the addressbook" => "주소록 선택",
|
||||
"create a new addressbook" => "새 주소록 만들기",
|
||||
"Name of new addressbook" => "새 주소록 이름",
|
||||
"Importing contacts" => "연락처 가져오기",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>현재 주소록에 연락처가 없습니다.</h3><p>주소록 상의 연락처 목록에 VCF 파일을 끌어다 놓아서 업로드하거나, 주소록 목록의 빈 곳에 끌어다 놓으면 주소록을 만들어서 업로드합니다.<br />목록 아래쪽의 가져오기 단추를 눌러서 가져올 수 있습니다.</p>",
|
||||
"Select Address Books" => "주소록 선택",
|
||||
"CardDAV syncing addresses" => "CardDAV 동기화 주소",
|
||||
"more info" => "더 많은 정보",
|
||||
"Primary address (Kontact et al)" => "주 주소(Kontact 등)",
|
||||
|
22
l10n/lb.php
22
l10n/lb.php
@ -45,6 +45,7 @@
|
||||
"Contact" => "Kontakt",
|
||||
"Settings" => "Astellungen",
|
||||
"Import" => "Import",
|
||||
"OK" => "OK",
|
||||
"Groups" => "Gruppen",
|
||||
"Close" => "Zoumaachen",
|
||||
"Additional names" => "Weider Nimm",
|
||||
@ -66,26 +67,7 @@
|
||||
"Country" => "Land",
|
||||
"Share" => "Deelen",
|
||||
"Export" => "Export",
|
||||
"Add Contact" => "Kontakt bäisetzen",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Edit groups" => "Gruppen editéieren",
|
||||
"Edit address details" => "Adress Detailer editéieren",
|
||||
"Download contact" => "Kontakt eroflueden",
|
||||
"Type" => "Typ",
|
||||
"PO Box" => "Postleetzuel",
|
||||
"Extended" => "Erweidert",
|
||||
"Region" => "Regioun",
|
||||
"Zipcode" => "Postleetzuel",
|
||||
"Addressbook" => "Adressbuch",
|
||||
"Mr" => "M",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Mme",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Virnumm",
|
||||
"Family name" => "Famillje Numm",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"more info" => "méi Informatiounen",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
"Addressbooks" => "Adressbicher ",
|
||||
"New Address Book" => "Neit Adressbuch",
|
||||
|
@ -55,13 +55,6 @@
|
||||
"Country" => "Šalis",
|
||||
"Share" => "Dalintis",
|
||||
"Export" => "Eksportuoti",
|
||||
"Add Contact" => "Pridėti kontaktą",
|
||||
"Download contact" => "Atsisųsti kontaktą",
|
||||
"Type" => "Tipas",
|
||||
"PO Box" => "Pašto dėžutė",
|
||||
"Region" => "Regionas",
|
||||
"Zipcode" => "Pašto indeksas",
|
||||
"Addressbook" => "Adresų knyga",
|
||||
"Addressbooks" => "Adresų knygos",
|
||||
"New Address Book" => "Nauja adresų knyga",
|
||||
"Name" => "Pavadinimas",
|
||||
|
@ -8,13 +8,20 @@
|
||||
"Upload too large" => "Fails ir par lielu lai to augšuplādetu",
|
||||
"Pending" => "Gaida savu kārtu",
|
||||
"Download" => "Lejuplādēt",
|
||||
"Edit" => "Rediģēt",
|
||||
"Delete" => "Izdzēst",
|
||||
"Cancel" => "Atcelt",
|
||||
"Work" => "Darbs",
|
||||
"Other" => "Cits",
|
||||
"Settings" => "Iestatījumi",
|
||||
"Import" => "Importēt",
|
||||
"Groups" => "Grupas",
|
||||
"Title" => "Nosaukums",
|
||||
"Birthday" => "Dzimšanas diena",
|
||||
"Email" => "Epasts",
|
||||
"Share" => "Līdzdalīt",
|
||||
"Export" => "Eksportēt",
|
||||
"Name" => "Nosaukums",
|
||||
"Description" => "Apraksts",
|
||||
"Save" => "Saglabāt"
|
||||
);
|
||||
|
42
l10n/mk.php
42
l10n/mk.php
@ -100,49 +100,7 @@
|
||||
"Country" => "Држава",
|
||||
"Share" => "Сподели",
|
||||
"Export" => "Извези",
|
||||
"Add Contact" => "Додади контакт",
|
||||
"Drop photo to upload" => "Довлечкај фотографија за да се подигне",
|
||||
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Прилагоден формат, кратко име, цело име, обратно или обратно со запирка",
|
||||
"Edit name details" => "Уреди детали за име",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Одвоете ги групите со запирка",
|
||||
"Edit groups" => "Уреди групи",
|
||||
"Enter email address" => "Внесете е-пошта",
|
||||
"Edit address details" => "Уреди детали за адреса",
|
||||
"Add notes here." => "Внесете забелешки тука.",
|
||||
"Add field" => "Додади поле",
|
||||
"Download contact" => "Преземи го контактот",
|
||||
"The temporary image has been removed from cache." => "Привремената слика е отстранета од кешот.",
|
||||
"Edit address" => "Уреди адреса",
|
||||
"Type" => "Тип",
|
||||
"PO Box" => "Поштенски фах",
|
||||
"Extended" => "Дополнително",
|
||||
"Region" => "Регион",
|
||||
"Zipcode" => "Поштенски код",
|
||||
"Addressbook" => "Адресар",
|
||||
"Hon. prefixes" => "Префикси за титула",
|
||||
"Miss" => "Г-ца",
|
||||
"Ms" => "Г-ѓа",
|
||||
"Mr" => "Г-дин",
|
||||
"Sir" => "Сер",
|
||||
"Mrs" => "Г-ѓа",
|
||||
"Dr" => "Др",
|
||||
"Given name" => "Лично име",
|
||||
"Family name" => "Презиме",
|
||||
"Hon. suffixes" => "Суфикси за титула",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "Д.М.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Д-р",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Помлад.",
|
||||
"Sn." => "Постар.",
|
||||
"Import a contacts file" => "Внеси датотека со контакти",
|
||||
"Please choose the addressbook" => "Ве молам изберете адресар",
|
||||
"create a new addressbook" => "креирај нов адресар",
|
||||
"Name of new addressbook" => "Име на новиот адресар",
|
||||
"Importing contacts" => "Внесување контакти",
|
||||
"CardDAV syncing addresses" => "Адреса за синхронизација со CardDAV",
|
||||
"more info" => "повеќе информации",
|
||||
"Primary address (Kontact et al)" => "Примарна адреса",
|
||||
|
@ -105,50 +105,7 @@
|
||||
"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",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Asingkan kumpulan dengan koma",
|
||||
"Edit groups" => "Ubah kumpulan",
|
||||
"Enter email address" => "Masukkan alamat emel",
|
||||
"Edit address details" => "Ubah butiran alamat",
|
||||
"Add notes here." => "Letak nota disini.",
|
||||
"Add field" => "Letak ruangan",
|
||||
"Download contact" => "Muat turun hubungan",
|
||||
"The temporary image has been removed from cache." => "Imej sementara telah dibuang dari cache.",
|
||||
"Edit address" => "Ubah alamat",
|
||||
"Type" => "Jenis",
|
||||
"PO Box" => "Peti surat",
|
||||
"Extended" => "Sambungan",
|
||||
"Region" => "Wilayah",
|
||||
"Zipcode" => "Poskod",
|
||||
"Addressbook" => "Buku alamat",
|
||||
"Hon. prefixes" => "Awalan nama",
|
||||
"Miss" => "Cik",
|
||||
"Ms" => "Cik",
|
||||
"Mr" => "Encik",
|
||||
"Sir" => "Tuan",
|
||||
"Mrs" => "Puan",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Nama diberi",
|
||||
"Family name" => "Nama keluarga",
|
||||
"Hon. suffixes" => "Awalan nama",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Import fail kenalan",
|
||||
"Please choose the addressbook" => "Sila pilih buku alamat",
|
||||
"create a new addressbook" => "Cipta buku alamat baru",
|
||||
"Name of new addressbook" => "Nama buku alamat",
|
||||
"Importing contacts" => "Import senarai kenalan",
|
||||
"Select Address Books" => "Pilih Buku Alamat",
|
||||
"CardDAV syncing addresses" => "alamat selarian CardDAV",
|
||||
"more info" => "maklumat lanjut",
|
||||
"Primary address (Kontact et al)" => "Alamat utama",
|
||||
|
@ -136,42 +136,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.domene.no",
|
||||
"dd-mm-yyyy" => "dd-mm-åååå",
|
||||
"Separate groups with commas" => "Skill gruppene med komma",
|
||||
"Edit groups" => "Endre grupper",
|
||||
"Enter email address" => "Skriv inn e-postadresse",
|
||||
"Edit address details" => "Endre detaljer rundt adresse",
|
||||
"Add notes here." => "Legg inn notater her.",
|
||||
"Add field" => "Legg til felt",
|
||||
"Download contact" => "Hend ned kontakten",
|
||||
"The temporary image has been removed from cache." => "Det midlertidige bildet er fjernet fra cache.",
|
||||
"Edit address" => "Endre adresse",
|
||||
"Type" => "Type",
|
||||
"PO Box" => "Postboks",
|
||||
"Extended" => "Utvidet",
|
||||
"Region" => "Området",
|
||||
"Zipcode" => "Postnummer",
|
||||
"Addressbook" => "Adressebok",
|
||||
"Hon. prefixes" => "Ærestitler",
|
||||
"Miss" => "Frøken",
|
||||
"Mr" => "Herr",
|
||||
"Mrs" => "Fru",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Fornavn",
|
||||
"Family name" => "Etternavn",
|
||||
"Hon. suffixes" => "Titler",
|
||||
"Ph.D." => "Stipendiat",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sr.",
|
||||
"Import a contacts file" => "Importer en fil med kontakter.",
|
||||
"Please choose the addressbook" => "Vennligst velg adressebok",
|
||||
"create a new addressbook" => "Lag ny adressebok",
|
||||
"Name of new addressbook" => "Navn på ny adressebok",
|
||||
"Importing contacts" => "Importerer kontakter",
|
||||
"CardDAV syncing addresses" => "Synkroniseringsadresse for CardDAV",
|
||||
"more info" => "mer info",
|
||||
"Primary address (Kontact et al)" => "Primær adresse (kontakt osv)",
|
||||
|
50
l10n/nl.php
50
l10n/nl.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Er was geen bestand geladen. Onbekende fout",
|
||||
"Contacts" => "Contacten",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Bezig met indexeren van contactpersonen",
|
||||
"Add to..." => "Toevoegen aan...",
|
||||
"Remove from..." => "Verwijderen uit...",
|
||||
"Add group..." => "Nieuwe groep...",
|
||||
"Indexing contacts" => "Bezig met indexeren van contactpersonen",
|
||||
"Select photo" => "Selecteer een foto",
|
||||
"Network or server error. Please inform administrator." => "Netwerk- of serverfout. Neem contact op met de beheerder.",
|
||||
"Error adding to group." => "Fout bij het toevoegen aan de groep.",
|
||||
@ -233,55 +233,7 @@
|
||||
"Share" => "Deel",
|
||||
"Export" => "Exporteer",
|
||||
"CardDAV link" => "CardDAV link",
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.willekeurigesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Gebruik komma bij meerder groepen",
|
||||
"Edit groups" => "Wijzig groepen",
|
||||
"Enter email address" => "Voer email adres in",
|
||||
"Edit address details" => "Wijzig adres gegevens",
|
||||
"Add notes here." => "Voeg notitie toe",
|
||||
"Add field" => "Voeg veld toe",
|
||||
"Download contact" => "Download contact",
|
||||
"The temporary image has been removed from cache." => "Het tijdelijke plaatje is uit de cache verwijderd.",
|
||||
"Edit address" => "Wijzig adres",
|
||||
"Type" => "Type",
|
||||
"PO Box" => "Postbus",
|
||||
"Street and number" => "Straat en nummer",
|
||||
"Extended" => "Uitgebreide",
|
||||
"Apartment number etc." => "Apartement nummer",
|
||||
"Region" => "Regio",
|
||||
"E.g. state or province" => "Provincie",
|
||||
"Zipcode" => "Postcode",
|
||||
"Addressbook" => "Adresboek",
|
||||
"Hon. prefixes" => "Hon. prefixes",
|
||||
"Miss" => "Mw",
|
||||
"Ms" => "Mw",
|
||||
"Mr" => "M",
|
||||
"Sir" => "M",
|
||||
"Mrs" => "Mw",
|
||||
"Dr" => "M",
|
||||
"Given name" => "Voornaam",
|
||||
"Family name" => "Achternaam",
|
||||
"Hon. suffixes" => "Honorabele",
|
||||
"J.D." => "Jurist",
|
||||
"M.D." => "Arts",
|
||||
"D.O." => "Theoloog",
|
||||
"D.C." => "Chircopracter",
|
||||
"Ph.D." => "Doctor",
|
||||
"Esq." => "Weledel gestrenge",
|
||||
"Jr." => "Junior",
|
||||
"Sn." => "Senior",
|
||||
"Import a contacts file" => "Importeer een contacten bestand",
|
||||
"Please choose the addressbook" => "Kies een adresboek",
|
||||
"create a new addressbook" => "Maak een nieuw adresboek",
|
||||
"Name of new addressbook" => "Naam van nieuw adresboek",
|
||||
"Importing contacts" => "Importeren van contacten",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>U heeft geen contacten in uw adresboek.</h3><p>U kunt VCF bestanden importeren door ze naar de contactenlijst te slepen en ze daar op een adresboek los te laten om ze in het desbetreffende adresboek op te nemen of laat ze op het lege gedeelte los om een nieuw adresboek te maken met de contacten uit het bestand.<br />Uw kunt ook importeren door op de import knop te klikken aan de onderkant van de lijst.</p>",
|
||||
"Select Address Books" => "Selecteer adresboeken",
|
||||
"CardDAV syncing addresses" => "CardDAV synchroniseert de adressen",
|
||||
"more info" => "meer informatie",
|
||||
"Primary address (Kontact et al)" => "Standaardadres",
|
||||
|
@ -40,14 +40,6 @@
|
||||
"City" => "Stad",
|
||||
"Country" => "Land",
|
||||
"Export" => "Eksporter",
|
||||
"Add Contact" => "Legg til kontakt",
|
||||
"Download contact" => "Last ned kontakt",
|
||||
"Type" => "Skriv",
|
||||
"PO Box" => "Postboks",
|
||||
"Extended" => "Utvida",
|
||||
"Region" => "Region/fylke",
|
||||
"Zipcode" => "Postnummer",
|
||||
"Addressbook" => "Adressebok",
|
||||
"Addressbooks" => "Adressebøker",
|
||||
"New Address Book" => "Ny adressebok",
|
||||
"Name" => "Namn",
|
||||
|
51
l10n/pl.php
51
l10n/pl.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Plik nie został załadowany. Nieznany błąd",
|
||||
"Contacts" => "Kontakty",
|
||||
"%d_selected_contacts" => "%d_wybierz_kontakty",
|
||||
"Indexing contacts" => "Indeksuj kontakty",
|
||||
"Add to..." => "Dodaj do...",
|
||||
"Remove from..." => "Usuń z...",
|
||||
"Add group..." => "Dodaje grupę....",
|
||||
"Indexing contacts" => "Indeksuj kontakty",
|
||||
"Select photo" => "Wybierz zdjęcie",
|
||||
"Network or server error. Please inform administrator." => "Błąd połączenia lub serwera. Skontaktuj sie z administratorem.",
|
||||
"Error adding to group." => "Błąd dodania do grupy.",
|
||||
@ -83,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "Nazwa książki adresowej nie może być pusta.",
|
||||
"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",
|
||||
"# groups" => "# grupy",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Kliknij aby cofnąć usunięcie {num} kontaktów",
|
||||
"Cancelled deletion of {num}" => "Usunięcie Anulowane {num}",
|
||||
@ -232,55 +233,7 @@
|
||||
"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",
|
||||
"Edit name details" => "Edytuj szczegóły nazwy",
|
||||
"http://www.somesite.com" => "http://www.jakasstrona.pl",
|
||||
"dd-mm-yyyy" => "dd-mm-rrrr",
|
||||
"Separate groups with commas" => "Oddziel grupy przecinkami",
|
||||
"Edit groups" => "Edytuj grupy",
|
||||
"Enter email address" => "Wpisz adres email",
|
||||
"Edit address details" => "Edytuj szczegóły adresu",
|
||||
"Add notes here." => "Dodaj notatkę tutaj.",
|
||||
"Add field" => "Dodaj pole",
|
||||
"Download contact" => "Pobiera 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",
|
||||
"PO Box" => "Skrzynka pocztowa",
|
||||
"Street and number" => "Ulica i numer",
|
||||
"Extended" => "Rozszerzony",
|
||||
"Apartment number etc." => "Numer lokalu",
|
||||
"Region" => "Region",
|
||||
"E.g. state or province" => "Np. stanu lub prowincji",
|
||||
"Zipcode" => "Kod pocztowy",
|
||||
"Addressbook" => "Książka adresowa",
|
||||
"Hon. prefixes" => "Prefiksy Hon.",
|
||||
"Miss" => "Panna",
|
||||
"Ms" => "Ms",
|
||||
"Mr" => "Pan",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Pani",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Podaj imię",
|
||||
"Family name" => "Nazwa rodziny",
|
||||
"Hon. suffixes" => "Sufiksy Hon.",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importuj plik z kontaktami",
|
||||
"Please choose the addressbook" => "Proszę wybrać książkę adresową",
|
||||
"create a new addressbook" => "utwórz nową książkę adresową",
|
||||
"Name of new addressbook" => "Nazwa nowej książki adresowej",
|
||||
"Importing contacts" => "importuj kontakty",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Nie masz kontaktów w książce adresowej.</h3><p>Możesz zaimportować pliki VCF poprzez przeciągnięcie ich do listy kontaktów i albo upuścić je na książce adresowej w celu zaimportowanie ich do niej lub na pustym miejscu, aby utworzyć nowych nową książke adresową i zaimportować je do niej.<br/>Możesz również także zaimportować, klikając przycisk Importuj na dole listy.</p>",
|
||||
"Select Address Books" => "Wybierz książki adresowe",
|
||||
"CardDAV syncing addresses" => "adres do synchronizacji CardDAV",
|
||||
"more info" => "więcej informacji",
|
||||
"Primary address (Kontact et al)" => "Pierwszy adres",
|
||||
|
@ -2,6 +2,5 @@
|
||||
"Settings" => "Ustawienia",
|
||||
"Title" => "Tytuł",
|
||||
"Email" => "Email",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Nie masz kontaktów w książce adresowej.</h3><p>Możesz zaimportować pliki VCF poprzez przeciągnięcie ich do listy kontaktów i albo upuścić je na książce adresowej w celu zaimportowanie ich do niej lub na pustym miejscu, aby utworzyć nowych nową książke adresową i zaimportować je do niej.<br/>Możesz również także zaimportować, klikając przycisk Importuj na dole listy.</p>",
|
||||
"Save" => "Zapisz"
|
||||
);
|
||||
|
@ -172,55 +172,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.qualquersite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-aaaa",
|
||||
"Separate groups with commas" => "Separe grupos por virgula",
|
||||
"Edit groups" => "Editar grupos",
|
||||
"Enter email address" => "Digite um endereço de email",
|
||||
"Edit address details" => "Editar detalhes de endereço",
|
||||
"Add notes here." => "Adicionar notas",
|
||||
"Add field" => "Adicionar campo",
|
||||
"Download contact" => "Baixar contato",
|
||||
"The temporary image has been removed from cache." => "A imagem temporária foi removida cache.",
|
||||
"Edit address" => "Editar endereço",
|
||||
"Type" => "Digite",
|
||||
"PO Box" => "Caixa Postal",
|
||||
"Street and number" => "Logradouro e número",
|
||||
"Extended" => "Estendido",
|
||||
"Apartment number etc." => "Número do apartamento, etc.",
|
||||
"Region" => "Região",
|
||||
"E.g. state or province" => "Estado ou província",
|
||||
"Zipcode" => "CEP",
|
||||
"Addressbook" => "Agenda de Endereço",
|
||||
"Hon. prefixes" => "Exmo. Prefixos ",
|
||||
"Miss" => "Senhorita",
|
||||
"Ms" => "Srta.",
|
||||
"Mr" => "Sr.",
|
||||
"Sir" => "Senhor",
|
||||
"Mrs" => "Sra.",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Primeiro Nome",
|
||||
"Family name" => "Sobrenome",
|
||||
"Hon. suffixes" => "Exmo. Sufixos",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importar arquivos de contato.",
|
||||
"Please choose the addressbook" => "Por favor, selecione uma agenda de endereços",
|
||||
"create a new addressbook" => "Criar nova agenda de endereços",
|
||||
"Name of new addressbook" => "Nome da nova agenda de endereços",
|
||||
"Importing contacts" => "Importar contatos",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Você não tem contatos em sua agenda de endereços.</h3><p>Você pode importar arquivos VCF arrastando-os para a lista de contatos ou para uma agenda para importar para ela, ou em um local vazio para criar uma nova agenda e importar para ela.<br />Você também pode importar, clicando no botão importar na parte inferior da lista.</p>",
|
||||
"Select Address Books" => "Selecione Agendas",
|
||||
"CardDAV syncing addresses" => "Sincronizando endereços CardDAV",
|
||||
"more info" => "leia mais",
|
||||
"Primary address (Kontact et al)" => "Endereço primário(Kontact et al)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Nenhum ficheiro foi carregado. Erro desconhecido",
|
||||
"Contacts" => "Contactos",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "A indexar os contactos",
|
||||
"Add to..." => "Adicionar a...",
|
||||
"Remove from..." => "Remover de...",
|
||||
"Add group..." => "Adicionar grupo...",
|
||||
"Indexing contacts" => "A indexar os contactos",
|
||||
"Select photo" => "Seleccione uma fotografia",
|
||||
"Network or server error. Please inform administrator." => "Erro de rede ou do servidor. Por favor, informe o administrador.",
|
||||
"Error adding to group." => "Erro a adicionar ao grupo.",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-aaaa",
|
||||
"Separate groups with commas" => "Separe os grupos usando virgulas",
|
||||
"Edit groups" => "Editar grupos",
|
||||
"Enter email address" => "Introduza endereço de email",
|
||||
"Edit address details" => "Editar os detalhes do endereço",
|
||||
"Add notes here." => "Insira notas aqui.",
|
||||
"Add field" => "Adicionar campo",
|
||||
"Download contact" => "Transferir contacto",
|
||||
"The temporary image has been removed from cache." => "A imagem temporária foi retirada do cache.",
|
||||
"Edit address" => "Editar endereço",
|
||||
"Type" => "Tipo",
|
||||
"PO Box" => "Apartado",
|
||||
"Street and number" => "Rua e número",
|
||||
"Extended" => "Extendido",
|
||||
"Apartment number etc." => "Número de Apartamento, etc.",
|
||||
"Region" => "Região",
|
||||
"E.g. state or province" => "Por Ex. Estado ou província",
|
||||
"Zipcode" => "Código Postal",
|
||||
"Addressbook" => "Livro de endereços",
|
||||
"Hon. prefixes" => "Prefixos honoráveis",
|
||||
"Miss" => "Menina",
|
||||
"Ms" => "Sra",
|
||||
"Mr" => "Sr",
|
||||
"Sir" => "Sr",
|
||||
"Mrs" => "Senhora",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Nome introduzido",
|
||||
"Family name" => "Nome de familia",
|
||||
"Hon. suffixes" => "Sufixos Honoráveis",
|
||||
"J.D." => "D.J.",
|
||||
"M.D." => "D.M.",
|
||||
"D.O." => "Dr.",
|
||||
"D.C." => "Dr.",
|
||||
"Ph.D." => "Dr.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "r.",
|
||||
"Import a contacts file" => "Importar um ficheiro de contactos",
|
||||
"Please choose the addressbook" => "Por favor seleccione o livro de endereços",
|
||||
"create a new addressbook" => "Criar um novo livro de endereços",
|
||||
"Name of new addressbook" => "Nome do novo livro de endereços",
|
||||
"Importing contacts" => "A importar os contactos",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Não tem contactos no seu livro de endereços.</h3> Pode importar ficheiros VCF arrastando-os para a lista de contactos e largá-los num livro de endereços onde os queira importar, ou num lugar vazio para criar um novo livro de endereços e importar aí.<br/>Pode também importar clickando no botão de importar no fundo da lista.</p>",
|
||||
"Select Address Books" => "Selecionar Livros de contactos",
|
||||
"CardDAV syncing addresses" => "CardDAV a sincronizar endereços",
|
||||
"more info" => "mais informação",
|
||||
"Primary address (Kontact et al)" => "Endereço primario (Kontact et al)",
|
||||
|
27
l10n/ro.php
27
l10n/ro.php
@ -25,6 +25,7 @@
|
||||
"The uploaded file was only partially uploaded" => "Fișierul a fost încărcat doar parțial",
|
||||
"No file was uploaded" => "Nu a fost încărcat nici un fișier",
|
||||
"Missing a temporary folder" => "Lipsește un director temporar",
|
||||
"Couldn't save temporary image: " => "Nu s-a putut salva imaginea temporară",
|
||||
"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută",
|
||||
"Contacts" => "Contacte",
|
||||
"Error" => "Eroare",
|
||||
@ -99,33 +100,7 @@
|
||||
"Country" => "Țară",
|
||||
"Share" => "Partajează",
|
||||
"Export" => "Exportă",
|
||||
"Add Contact" => "Adaugă contact",
|
||||
"Edit name details" => "Introdu detalii despre nume",
|
||||
"dd-mm-yyyy" => "zz-ll-aaaa",
|
||||
"Separate groups with commas" => "Separă grupurile cu virgule",
|
||||
"Edit groups" => "Editează grupuri",
|
||||
"Enter email address" => "Introdu adresa de e-mail",
|
||||
"Edit address details" => "Editează detaliile adresei",
|
||||
"Add notes here." => "Adaugă note",
|
||||
"Add field" => "Adaugă câmp",
|
||||
"Download contact" => "Descarcă acest contact",
|
||||
"The temporary image has been removed from cache." => "Imaginea temporară a fost eliminată din cache.",
|
||||
"Edit address" => "Editeză adresă",
|
||||
"Type" => "Tip",
|
||||
"PO Box" => "CP",
|
||||
"Street and number" => "Stradă și număr",
|
||||
"Extended" => "Extins",
|
||||
"Apartment number etc." => "Apartament etc.",
|
||||
"Region" => "Regiune",
|
||||
"E.g. state or province" => "Ex. județ sau provincie",
|
||||
"Zipcode" => "Cod poștal",
|
||||
"Addressbook" => "Agendă",
|
||||
"Ms" => "Dna.",
|
||||
"Mr" => "Dl.",
|
||||
"Given name" => "Prenume",
|
||||
"Family name" => "Nume",
|
||||
"Import a contacts file" => "Importă un fișier cu contacte",
|
||||
"Importing contacts" => "Se importă contactele",
|
||||
"more info" => "mai multe informații",
|
||||
"Primary address (Kontact et al)" => "Adresa primară (Kontact et al)",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
|
50
l10n/ru.php
50
l10n/ru.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
|
||||
"Contacts" => "Контакты",
|
||||
"%d_selected_contacts" => "%d_выбранные_контакты",
|
||||
"Indexing contacts" => "Индексация контактов",
|
||||
"Add to..." => "Добавить в...",
|
||||
"Remove from..." => "Удалить из...",
|
||||
"Add group..." => "Добавить группу...",
|
||||
"Indexing contacts" => "Индексация контактов",
|
||||
"Select photo" => "Выберите фото",
|
||||
"Network or server error. Please inform administrator." => "Ошибка сети или сервера. Пожалуйста, обратитесь к администратору.",
|
||||
"Error adding to group." => "Ошибка добавления в группу.",
|
||||
@ -232,55 +232,7 @@
|
||||
"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" => "Изменить детали имени",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "Разделить группы запятыми",
|
||||
"Edit groups" => "Редактировать группы",
|
||||
"Enter email address" => "Укажите эл. почту",
|
||||
"Edit address details" => "Введите детали адреса",
|
||||
"Add notes here." => "Добавьте заметки здесь.",
|
||||
"Add field" => "Добавить поле",
|
||||
"Download contact" => "Скачать контакт",
|
||||
"The temporary image has been removed from cache." => "Временный образ был удален из кэша.",
|
||||
"Edit address" => "Редактировать адрес",
|
||||
"Type" => "Тип",
|
||||
"PO Box" => "АО",
|
||||
"Street and number" => "Улица и дом",
|
||||
"Extended" => "Расширенный",
|
||||
"Apartment number etc." => "Номер квартиры и т.д.",
|
||||
"Region" => "Область",
|
||||
"E.g. state or province" => "Например, область или район",
|
||||
"Zipcode" => "Почтовый индекс",
|
||||
"Addressbook" => "Адресная книга",
|
||||
"Hon. prefixes" => "Префикс имени",
|
||||
"Miss" => "Мисс",
|
||||
"Ms" => "Г-жа",
|
||||
"Mr" => "Г-н",
|
||||
"Sir" => "Сэр",
|
||||
"Mrs" => "Г-жа",
|
||||
"Dr" => "Доктор",
|
||||
"Given name" => "Имя",
|
||||
"Family name" => "Фамилия",
|
||||
"Hon. suffixes" => "Суффикс имени",
|
||||
"J.D." => "Уважительные суффиксы",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Загрузить файл контактов",
|
||||
"Please choose the addressbook" => "Выберите адресную книгу",
|
||||
"create a new addressbook" => "создать новую адресную книгу",
|
||||
"Name of new addressbook" => "Имя новой адресной книги",
|
||||
"Importing contacts" => "Импорт контактов",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>В вашей адресной книге нет контактов.</h3><p>Вы можете импортировать файлы VCF, перетаскивая их в список контактов и бросая либо в нужную адресную книгу либо на свободное место для импорта в новую адресную книгу.<br />Так же вы можете импортировать контакты с помощью кнопку импорта внизу списка.</p>",
|
||||
"Select Address Books" => "Выбрать адресную книгу",
|
||||
"CardDAV syncing addresses" => "Синхронизация адресов CardDAV",
|
||||
"more info" => "дополнительная информация",
|
||||
"Primary address (Kontact et al)" => "Первичный адрес (Kontact и др.)",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
|
||||
"Contacts" => "Контакты",
|
||||
"%d_selected_contacts" => "%d_выбранные_контакты",
|
||||
"Indexing contacts" => "Индексирование контактов",
|
||||
"Add to..." => "Добавить к...",
|
||||
"Remove from..." => "Удалить из...",
|
||||
"Add group..." => "Добавить группу...",
|
||||
"Indexing contacts" => "Индексирование контактов",
|
||||
"Select photo" => "Выбрать фотографию",
|
||||
"Network or server error. Please inform administrator." => "Сетевая или серверная ошибка. Пожалуйста, сообщите адмистратору.",
|
||||
"Error adding to group." => "Ошибка добавления в группу.",
|
||||
@ -231,55 +231,7 @@
|
||||
"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" => "Редактировать детали имени",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "дд-мм-гггг",
|
||||
"Separate groups with commas" => "Разделите группы запятыми",
|
||||
"Edit groups" => "Редактировать группы",
|
||||
"Enter email address" => "Введите email адрес",
|
||||
"Edit address details" => "Детальное редактирование адреса",
|
||||
"Add notes here." => "Добавить здесь заметок.",
|
||||
"Add field" => "Добавить поле",
|
||||
"Download contact" => "загрузить контакт",
|
||||
"The temporary image has been removed from cache." => "Временное изображение было удалено из кэша.",
|
||||
"Edit address" => "Редактировать адрес",
|
||||
"Type" => "Тип",
|
||||
"PO Box" => "Почтовый ящик",
|
||||
"Street and number" => "Улица и номер",
|
||||
"Extended" => "Расширенный",
|
||||
"Apartment number etc." => "Квартира и т.д.",
|
||||
"Region" => "Регион (область)",
|
||||
"E.g. state or province" => "Напр., штат или область",
|
||||
"Zipcode" => "Индекс",
|
||||
"Addressbook" => "Адресная книга",
|
||||
"Hon. prefixes" => "Почетные префиксы",
|
||||
"Miss" => "мисс",
|
||||
"Ms" => "Г-жа",
|
||||
"Mr" => "Г-н",
|
||||
"Sir" => "сэр",
|
||||
"Mrs" => "Г-жа",
|
||||
"Dr" => "Доктор",
|
||||
"Given name" => "Имя",
|
||||
"Family name" => "Фамилия",
|
||||
"Hon. suffixes" => "Префиксы",
|
||||
"J.D." => "Доктор права",
|
||||
"M.D." => "Д-р мед. наук",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "К.т.н.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Мл.",
|
||||
"Sn." => "Ст.",
|
||||
"Import a contacts file" => "Импортировать файл контактов",
|
||||
"Please choose the addressbook" => "Пожалуйста, выберите адресную книгу",
|
||||
"create a new addressbook" => "Создайте новую адресную книгу",
|
||||
"Name of new addressbook" => "Имя новой адресной книги",
|
||||
"Importing contacts" => "Импортирование контактов",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>У Вас нет контактов в адресной книге.</h3><p>Вы можете импортировать VCF-файлы путем перетаскивания их в список контактов и скинуть их либо на адресную книгу для импорта в нее, либо на пустое место для создания новой адресной книги с последующим импортом в нее.<br />Вы можете также импортировать путем нажатия на кнопку импорта внизу списка.</p>",
|
||||
"Select Address Books" => "Выбрать адресные книги",
|
||||
"CardDAV syncing addresses" => "CardDAV ",
|
||||
"more info" => "Больше информации",
|
||||
"Primary address (Kontact et al)" => "Первичный адрес",
|
||||
|
@ -106,33 +106,6 @@
|
||||
"Country" => "රට",
|
||||
"Share" => "බෙදා හදා ගන්න",
|
||||
"Export" => "නිර්යාත කරන්න",
|
||||
"Add Contact" => "සබඳතාවක් එක් කරන්න",
|
||||
"Drop photo to upload" => "උඩුගත කිරීමට මෙතැනට දමන්න",
|
||||
"Edit name details" => "නමේ විස්තර සංස්කරණය කරන්න",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "දිදි-මාමා-වවවව",
|
||||
"Separate groups with commas" => "කණ්ඩායම් කොමා භාවිතයෙන් වෙන් කරන්න",
|
||||
"Edit groups" => "කණ්ඩායම් සංස්කරණය කරන්න",
|
||||
"Enter email address" => "විද්යුත් තැපැල් ලිපිනයක් දෙන්න",
|
||||
"Edit address details" => "ලිපින විස්තර සංස්කරණය කරන්න",
|
||||
"Add notes here." => "මෙතැන නෝට්ටුවක් තබන්න",
|
||||
"Add field" => "ක්ෂේත්රයක් එකතු කරන්න",
|
||||
"Download contact" => "සබඳතා බාගත කරන්න",
|
||||
"Edit address" => "ලිපිනය සංස්කරණය කරන්න",
|
||||
"Type" => "වර්ගය",
|
||||
"PO Box" => "තැ.පෙ.",
|
||||
"Extended" => "දීඝී කිරීම",
|
||||
"Region" => "කළාපය",
|
||||
"Zipcode" => "තැපැල් කේතය",
|
||||
"Addressbook" => "ලිපින පොත",
|
||||
"Hon. prefixes" => "ගෞරවාන්විත නාම",
|
||||
"Given name" => "දී ඇති නම",
|
||||
"Family name" => "අවසන් නම",
|
||||
"Import a contacts file" => "සම්බන්ධතා ඇති ගොනුවක් ආයාත කරන්න",
|
||||
"Please choose the addressbook" => "කරුණාකර ලිපින පොත තෝරන්න",
|
||||
"create a new addressbook" => "නව ලිපින පොතක් සාදන්න",
|
||||
"Name of new addressbook" => "නව ලිපින පොතේ නම",
|
||||
"Importing contacts" => "සම්බන්ධතා ආයාත කරමින් පවතී",
|
||||
"more info" => "තව විස්තර",
|
||||
"Primary address (Kontact et al)" => "ප්රාථමික ලිපිනය(හැම විටම සම්බන්ධ කරගත හැක)",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
|
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Žiaden súbor nebol odoslaný. Neznáma chyba",
|
||||
"Contacts" => "Kontakty",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Indexovanie kontaktov",
|
||||
"Add to..." => "Pridať do...",
|
||||
"Remove from..." => "Odstrániť z...",
|
||||
"Add group..." => "Pridať skupinu...",
|
||||
"Indexing contacts" => "Indexovanie kontaktov",
|
||||
"Select photo" => "Vybrať fotku",
|
||||
"Network or server error. Please inform administrator." => "Chyba sieťe alebo servra. Informujte prosím administrátora.",
|
||||
"Error adding to group." => "Chyba pri pridávaní do skupiny.",
|
||||
@ -232,55 +232,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.stranka.sk",
|
||||
"dd-mm-yyyy" => "dd. mm. yyyy",
|
||||
"Separate groups with commas" => "Oddelte skupiny čiarkami",
|
||||
"Edit groups" => "Úprava skupín",
|
||||
"Enter email address" => "Zadajte e-mailové adresy",
|
||||
"Edit address details" => "Upraviť podrobnosti adresy",
|
||||
"Add notes here." => "Tu môžete pridať poznámky.",
|
||||
"Add field" => "Pridať pole",
|
||||
"Download contact" => "Stiahnuť kontakt",
|
||||
"The temporary image has been removed from cache." => "Dočasný obrázok bol odstránený z cache.",
|
||||
"Edit address" => "Upraviť adresu",
|
||||
"Type" => "Typ",
|
||||
"PO Box" => "PO Box",
|
||||
"Street and number" => "Ulica a číslo",
|
||||
"Extended" => "Rozšírené",
|
||||
"Apartment number etc." => "Číslo bytu a pod.",
|
||||
"Region" => "Región",
|
||||
"E.g. state or province" => "Napr. štát alebo provincia",
|
||||
"Zipcode" => "PSČ",
|
||||
"Addressbook" => "Adresár",
|
||||
"Hon. prefixes" => "Tituly pred",
|
||||
"Miss" => "Slečna",
|
||||
"Ms" => "Pani",
|
||||
"Mr" => "Pán",
|
||||
"Sir" => "Sir",
|
||||
"Mrs" => "Pani",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Krstné meno",
|
||||
"Family name" => "Priezvisko",
|
||||
"Hon. suffixes" => "Tituly za",
|
||||
"J.D." => "JUDr.",
|
||||
"M.D." => "MUDr.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "ml.",
|
||||
"Sn." => "st.",
|
||||
"Import a contacts file" => "Importovať súbor kontaktu",
|
||||
"Please choose the addressbook" => "Prosím zvolte adresár",
|
||||
"create a new addressbook" => "vytvoriť nový adresár",
|
||||
"Name of new addressbook" => "Meno nového adresára",
|
||||
"Importing contacts" => "Importovanie kontaktov",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Vo vašej knihe adries nemáte kontakty.</h3><p>Môžete importovať súbory VCF pretiahnutím na zoznam kontaktov a pustením na knihu pre pridanie, alebo do prázdneho miesta pre vytvorenie novej knihy adries.<br />Tiež môžete importovať kliknutím na tlačidlo Importovať na konci zoznamu.</p>",
|
||||
"Select Address Books" => "Zvoliť adresáre",
|
||||
"CardDAV syncing addresses" => "Adresy pre synchronizáciu s CardDAV",
|
||||
"more info" => "viac informácií",
|
||||
"Primary address (Kontact et al)" => "Predvolená adresa (Kontakt etc)",
|
||||
|
50
l10n/sl.php
50
l10n/sl.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.",
|
||||
"Contacts" => "Stiki",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Ustvarjanje kazala stikov",
|
||||
"Add to..." => "Dodaj v ...",
|
||||
"Remove from..." => "Odstrani iz ...",
|
||||
"Add group..." => "Dodaj skupino ...",
|
||||
"Indexing contacts" => "Ustvarjanje kazala stikov",
|
||||
"Select photo" => "Izbor slike",
|
||||
"Network or server error. Please inform administrator." => "Napaka omrežja ali strežnika. Prosimo, če o tem obvestite administratorja.",
|
||||
"Error adding to group." => "Napaka pri dodajanju v skupino.",
|
||||
@ -231,55 +231,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.spletnastran.si",
|
||||
"dd-mm-yyyy" => "dd. mm. yyyy",
|
||||
"Separate groups with commas" => "Skupine ločite z vejicami",
|
||||
"Edit groups" => "Uredi skupine",
|
||||
"Enter email address" => "Vnesite elektronski poštni naslov",
|
||||
"Edit address details" => "Uredi podrobnosti",
|
||||
"Add notes here." => "Opombe dodajte tukaj.",
|
||||
"Add field" => "Dodaj polje",
|
||||
"Download contact" => "Prejmi stik",
|
||||
"The temporary image has been removed from cache." => "Začasna slika je odstranjena iz predpomnilnika.",
|
||||
"Edit address" => "Uredi naslov",
|
||||
"Type" => "Vrsta",
|
||||
"PO Box" => "Poštni predal",
|
||||
"Street and number" => "Ulica in štelika",
|
||||
"Extended" => "Razširjeno",
|
||||
"Apartment number etc." => "Številka stanovanja itd.",
|
||||
"Region" => "Regija",
|
||||
"E.g. state or province" => "Npr. dežela ali pokrajina",
|
||||
"Zipcode" => "Poštna številka",
|
||||
"Addressbook" => "Imenik",
|
||||
"Hon. prefixes" => "Predpone",
|
||||
"Miss" => "gdč.",
|
||||
"Ms" => "ga.",
|
||||
"Mr" => "g.",
|
||||
"Sir" => "g.",
|
||||
"Mrs" => "ga.",
|
||||
"Dr" => "dr.",
|
||||
"Given name" => "Ime",
|
||||
"Family name" => "Priimek",
|
||||
"Hon. suffixes" => "Pripone",
|
||||
"J.D." => "univ. dipl. prav.",
|
||||
"M.D." => "dr. med.",
|
||||
"D.O." => "dr. med., spec. spl. med.",
|
||||
"D.C." => "dr. med., spec. kiropraktike",
|
||||
"Ph.D." => "dr.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "ml.",
|
||||
"Sn." => "st.",
|
||||
"Import a contacts file" => "Uvozi datoteko s stiki",
|
||||
"Please choose the addressbook" => "Izberite imenik",
|
||||
"create a new addressbook" => "ustvari nov imenik",
|
||||
"Name of new addressbook" => "Ime novega imenika",
|
||||
"Importing contacts" => "Poteka uvažanje stikov",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>V imeniku ni stikov.</h3><p>Datoteke VCF je mogoče uvoziti tako, da jih povlečete na obstoječ seznam stikov ali na prazno mesto. Pri slednjem dejanju bo ustvarjen nov imenik s stiki.<br />Stike lahko uvažate tudi s klikom na gumb uvozi, ki je postavljen na dnu seznama.</p>",
|
||||
"Select Address Books" => "Izbor imenikov",
|
||||
"CardDAV syncing addresses" => "Naslovi CardDAV za usklajevanje",
|
||||
"more info" => "več podrobnosti",
|
||||
"Primary address (Kontact et al)" => "Osnovni naslov (za stik)",
|
||||
|
@ -50,15 +50,6 @@
|
||||
"Country" => "Земља",
|
||||
"Share" => "Дељење",
|
||||
"Export" => "Извези",
|
||||
"Add Contact" => "Додај контакт",
|
||||
"Download contact" => "Преузми контакт",
|
||||
"Edit address" => "Izmeni adresu",
|
||||
"Type" => "Тип",
|
||||
"PO Box" => "Поштански број",
|
||||
"Extended" => "Прошири",
|
||||
"Region" => "Регија",
|
||||
"Zipcode" => "Зип код",
|
||||
"Addressbook" => "Адресар",
|
||||
"more info" => "више информација",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
"Addressbooks" => "Адресар",
|
||||
|
@ -31,11 +31,6 @@
|
||||
"Address" => "Adresa",
|
||||
"City" => "Grad",
|
||||
"Country" => "Zemlja",
|
||||
"Add Contact" => "Dodaj kontakt",
|
||||
"PO Box" => "Poštanski broj",
|
||||
"Extended" => "Proširi",
|
||||
"Region" => "Regija",
|
||||
"Zipcode" => "Zip kod",
|
||||
"Name" => "Ime",
|
||||
"Save" => "Snimi"
|
||||
);
|
||||
|
51
l10n/sv.php
51
l10n/sv.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Ingen fil uppladdad. Okänt fel",
|
||||
"Contacts" => "Kontakter",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Indexerar kontakter",
|
||||
"Add to..." => "Lägga till...",
|
||||
"Remove from..." => "Ta bort från...",
|
||||
"Add group..." => "Lägg till grupp...",
|
||||
"Indexing contacts" => "Indexerar kontakter",
|
||||
"Select photo" => "Välj foto",
|
||||
"Network or server error. Please inform administrator." => "Nätverk eller serverfel. Informera administratören.",
|
||||
"Error adding to group." => "Fel vid tillägg i grupp.",
|
||||
@ -83,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "Adressbokens namn kan inte vara tomt.",
|
||||
"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",
|
||||
"# groups" => "# grupper",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "Klicka för att ångra radering av {num} kontakter",
|
||||
"Cancelled deletion of {num}" => "Avbruten radering av {num}",
|
||||
@ -232,55 +233,7 @@
|
||||
"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",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-åååå",
|
||||
"Separate groups with commas" => "Separera grupperna med kommatecken",
|
||||
"Edit groups" => "Editera grupper",
|
||||
"Enter email address" => "Ange e-postadress",
|
||||
"Edit address details" => "Redigera detaljer för adress",
|
||||
"Add notes here." => "Lägg till noteringar här.",
|
||||
"Add field" => "Lägg till fält",
|
||||
"Download contact" => "Ladda ner kontakt",
|
||||
"The temporary image has been removed from cache." => "Den tillfälliga bilden har raderats från cache.",
|
||||
"Edit address" => "Editera adress",
|
||||
"Type" => "Typ",
|
||||
"PO Box" => "Postbox",
|
||||
"Street and number" => "Gata och nummer",
|
||||
"Extended" => "Utökad",
|
||||
"Apartment number etc." => "Lägenhetsnummer",
|
||||
"Region" => "Län",
|
||||
"E.g. state or province" => "T.ex. stat eller provins",
|
||||
"Zipcode" => "Postnummer",
|
||||
"Addressbook" => "Adressbok",
|
||||
"Hon. prefixes" => "Ledande titlar",
|
||||
"Miss" => "Fröken",
|
||||
"Ms" => "Fru",
|
||||
"Mr" => "Herr",
|
||||
"Sir" => "Herr",
|
||||
"Mrs" => "Fru",
|
||||
"Dr" => "Dr.",
|
||||
"Given name" => "Förnamn",
|
||||
"Family name" => "Efternamn",
|
||||
"Hon. suffixes" => "Efterställda titlar",
|
||||
"J.D." => "Kand. Jur.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Fil.dr.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Importera en kontaktfil",
|
||||
"Please choose the addressbook" => "Vänligen välj adressboken",
|
||||
"create a new addressbook" => "skapa en ny adressbok",
|
||||
"Name of new addressbook" => "Namn för ny adressbok",
|
||||
"Importing contacts" => "Importerar kontakter",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Det finns inga kontakter i din adressbok.</h3><p>Du kan importera VCF-filer genom att antingen dra till kontaktlistan och släppa på en befintlig adressbok, eller på en tom plats för att skapa en ny adressbok.<br />Du kan också importera genom att klicka på importknappen längst ner i listan.</p>",
|
||||
"Select Address Books" => "Välj adressböcker",
|
||||
"CardDAV syncing addresses" => "CardDAV synkningsadresser",
|
||||
"more info" => "mer information",
|
||||
"Primary address (Kontact et al)" => "Primär adress (Kontakt o.a.)",
|
||||
|
@ -49,10 +49,10 @@
|
||||
"Couldn't load temporary image: " => "தற்காலிக படத்தை ஏற்றமுடியாது",
|
||||
"No file was uploaded. Unknown error" => "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு",
|
||||
"Contacts" => "தொடர்புகள்",
|
||||
"Indexing contacts" => "தொடர்புகளை அட்டவணையிடுதல்",
|
||||
"Add to..." => "இற்கு சேர்க்கப்பட்டது...",
|
||||
"Remove from..." => "இலிருந்து அகற்றுக...",
|
||||
"Add group..." => "குழுவிற்கு சேர்க்க...",
|
||||
"Indexing contacts" => "தொடர்புகளை அட்டவணையிடுதல்",
|
||||
"Select photo" => "படத்தை தெரிக",
|
||||
"Network or server error. Please inform administrator." => "வலையமைப்பு அல்லது சேவையக வழு. தயவுசெய்து நிர்வாகிக்கு தெரியப்படுத்தவும்.",
|
||||
"Error adding to group." => "குழுவில் சேர்ப்பதில் வழு.",
|
||||
@ -212,54 +212,7 @@
|
||||
"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" => "பெயர் விபரங்களை தொகுக்க ",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "குழுக்களை காற்புள்ளியினால் வேறாக்குக",
|
||||
"Edit groups" => "குழுக்களை தொகுக்க",
|
||||
"Enter email address" => "மின்னஞ்சல் முகவரியை நுழைக்க",
|
||||
"Edit address details" => "முகவரி விபரங்களை தொகுக்க",
|
||||
"Add notes here." => "குறிப்புக்களை இங்கே சேர்க்க",
|
||||
"Add field" => "புலத்தை சேர்க்க",
|
||||
"Download contact" => "தொடர்பை தரவிறக்குக",
|
||||
"The temporary image has been removed from cache." => "தற்காலிக படம் இடைமாற்றுநினைவகத்திலிருந்து அகற்றப்படுகிறது.",
|
||||
"Edit address" => "முகவரியை தொகுக்க",
|
||||
"Type" => "வகை",
|
||||
"PO Box" => "PO பெட்டி",
|
||||
"Street and number" => "வீதி மற்றும் இலக்கம்",
|
||||
"Extended" => "விஸ்த்தரிக்கப்பட்ட",
|
||||
"Apartment number etc." => "அபாட்மென்ட் இலக்கம் உதாரணம்.",
|
||||
"Region" => "பிரதேசம்",
|
||||
"E.g. state or province" => "உதாரணம் . மாநிலம் அல்லது மாகாணம்",
|
||||
"Zipcode" => "தபால் இலக்கம்",
|
||||
"Addressbook" => "முகவரி புத்தகம்",
|
||||
"Hon. prefixes" => "Hon. முன்னொட்டுகள்",
|
||||
"Miss" => "செல்வி",
|
||||
"Ms" => "திருமதி",
|
||||
"Mr" => "திரு",
|
||||
"Sir" => "சேர்",
|
||||
"Mrs" => "திருமதி",
|
||||
"Dr" => "டாக்டர்",
|
||||
"Given name" => "தரப்பட்ட பெயர்",
|
||||
"Family name" => "குடும்ப பெயர்",
|
||||
"Hon. suffixes" => "Hon. பின்னொட்டுகள்",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "தொடர்பு கோப்பை இறக்குமதி செய்க",
|
||||
"Please choose the addressbook" => "தயவுசெய்து முகவரி புத்தகத்தை தெரிவுசெய்க",
|
||||
"create a new addressbook" => "புதிதாக முகவரி புத்தகமொன்றை உருவாக்குக",
|
||||
"Name of new addressbook" => "புதிய முகவரி புத்தகத்தின் பெயர்",
|
||||
"Importing contacts" => "தொடர்புகள் இறக்குமதி செய்யப்படுகின்றன",
|
||||
"Select Address Books" => "முகவரி புத்தகத்தை தெரிவுசெய்க",
|
||||
"CardDAV syncing addresses" => "முகவரிகளை cardDAV ஒத்திசைக்கின்றன",
|
||||
"more info" => "மேலதிக தகவல்",
|
||||
"Primary address (Kontact et al)" => "முதன்மை முகவரி (Kontact et al)",
|
||||
|
@ -49,18 +49,24 @@
|
||||
"Couldn't load temporary image: " => "ไม่สามารถโหลดรูปภาพชั่วคราวได้: ",
|
||||
"No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ",
|
||||
"Contacts" => "ข้อมูลการติดต่อ",
|
||||
"Indexing contacts" => "จัดทำสารบัญรายชื่อผู้ติดต่อ",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Add to..." => "เพิ่มเข้าไปที่...",
|
||||
"Remove from..." => "ลบออกจาก...",
|
||||
"Add group..." => "เพิ่มกลุ่ม...",
|
||||
"Indexing contacts" => "จัดทำสารบัญรายชื่อผู้ติดต่อ",
|
||||
"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" => "เกิดข้อผิดพลาดในการอัพโหลด",
|
||||
@ -77,6 +83,7 @@
|
||||
"The address book name cannot be empty." => "ชื่อของสมุดบันทึกที่อยู่ไม่สามารถเว้นว่างได้",
|
||||
"Is this correct?" => "คุณแน่ใจแล้วหรือว่าถูกต้อง?",
|
||||
"There was an unknown error when trying to delete this contact" => "เกิดข้อผิดพลาดบางประการที่ไม่ทราบสาเหตุ ในระหว่างการลบรายชื่อผู้ติดต่อนี้",
|
||||
"# groups" => "# กลุ่ม",
|
||||
"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} รายการแล้ว",
|
||||
@ -86,6 +93,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}",
|
||||
@ -145,11 +153,15 @@
|
||||
"HomePage" => "หน้าแรก",
|
||||
"New Group" => "สร้างกลุ่มใหม่",
|
||||
"Settings" => "ตั้งค่า",
|
||||
"Address books" => "สมุดบันทึกที่อยู่",
|
||||
"Import" => "นำเข้า",
|
||||
"Select files to import" => "เลือกไฟล์ที่ต้องการนำเข้า",
|
||||
"Select files" => "เลือกไฟล์",
|
||||
"Import into:" => "นำเข้าข้อมูลไปไว้ที่:",
|
||||
"OK" => "ตกลง",
|
||||
"(De-)select all" => "ยกเลิกการเลือกทั้งหมด",
|
||||
"New Contact" => "สร้างรายชื่อผู้ติดต่อใหม่",
|
||||
"Download Contact(s)" => "ดาวน์โหลดรายชื่อผู้ติดต่อ",
|
||||
"Groups" => "กลุ่ม",
|
||||
"Favorite" => "รายการโปรด",
|
||||
"Delete Contact" => "ลบรายชื่อผู้ติดต่อ",
|
||||
@ -177,12 +189,16 @@
|
||||
"First name" => "ชื่อจริง",
|
||||
"Additional names" => "ชื่ออื่นๆ",
|
||||
"Last name" => "นามสกุลจริง",
|
||||
"Select groups" => "เลือกกลุ่ม",
|
||||
"Nickname" => "ชื่อเล่น",
|
||||
"Enter nickname" => "กรอกชื่อเล่น",
|
||||
"Title" => "ชื่อ",
|
||||
"Enter title" => "กรอกชื่อ",
|
||||
"Organization" => "หน่วยงาน",
|
||||
"Enter organization" => "กรอกหน่วยงาน",
|
||||
"Birthday" => "วันเกิด",
|
||||
"Notes go here..." => "เขียนบันทึกกำกับตรงนี้...",
|
||||
"Export as VCF" => "ส่งออกเป็น VCF",
|
||||
"Add" => "เพิ่ม",
|
||||
"Phone" => "โทรศัพท์",
|
||||
"Email" => "อีเมล์",
|
||||
@ -209,61 +225,15 @@
|
||||
"Your city" => "ชื่อเมือง",
|
||||
"City" => "เมือง",
|
||||
"Some region" => "ย่าน",
|
||||
"State or province" => "ชื่อรัฐ หรือ จังหวัด",
|
||||
"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" => "แก้ไขรายละเอียดของชื่อ",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "คั่นระหว่างรายชื่อกลุ่มด้วยเครื่องหมายจุลภาีคหรือคอมม่า",
|
||||
"Edit groups" => "แก้ไขกลุ่ม",
|
||||
"Enter email address" => "กรอกที่อยู่อีเมล",
|
||||
"Edit address details" => "แก้ไขรายละเอียดที่อยู่",
|
||||
"Add notes here." => "เพิ่มหมายเหตุกำกับไว้ที่นี่",
|
||||
"Add field" => "เพิ่มช่องรับข้อมูล",
|
||||
"Download contact" => "ดาวน์โหลดข้อมูลการติดต่อ",
|
||||
"CardDAV link" => "ลิงก์ CardDAV",
|
||||
"The temporary image has been removed from cache." => "รูปภาพชั่วคราวดังกล่าวได้ถูกลบออกจากหน่วยความจำแคชแล้ว",
|
||||
"Edit address" => "แก้ไขที่อยู่",
|
||||
"Type" => "ประเภท",
|
||||
"PO Box" => "ตู้ ปณ.",
|
||||
"Street and number" => "ถนนและหมายเลข",
|
||||
"Extended" => "เพิ่ม",
|
||||
"Apartment number etc." => "หมายเลขอพาร์ทเมนต์ ฯลฯ",
|
||||
"Region" => "ภูมิภาค",
|
||||
"E.g. state or province" => "เช่น รัฐ หรือ จังหวัด",
|
||||
"Zipcode" => "รหัสไปรษณีย์",
|
||||
"Addressbook" => "สมุดบันทึกที่อยู่",
|
||||
"Hon. prefixes" => "คำนำหน้าชื่อคนรัก",
|
||||
"Miss" => "นางสาว",
|
||||
"Ms" => "น.ส.",
|
||||
"Mr" => "นาย",
|
||||
"Sir" => "คุณ",
|
||||
"Mrs" => "นาง",
|
||||
"Dr" => "ดร.",
|
||||
"Given name" => "ชื่อที่ใช้",
|
||||
"Family name" => "ชื่อครอบครัว",
|
||||
"Hon. suffixes" => "คำแนบท้ายชื่อคนรัก",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "ปริญญาเอก",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "จูเนียร์",
|
||||
"Sn." => "ซีเนียร์",
|
||||
"Import a contacts file" => "นำเข้าไฟล์ข้อมูลการติดต่อ",
|
||||
"Please choose the addressbook" => "กรุณาเลือกสมุดบันทึกที่อยู่",
|
||||
"create a new addressbook" => "สร้างสมุดบันทึกที่อยู่ใหม่",
|
||||
"Name of new addressbook" => "กำหนดชื่อของสมุดที่อยู่ที่สร้างใหม่",
|
||||
"Importing contacts" => "นำเข้าข้อมูลการติดต่อ",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>คุณยังไม่มีรายชื่อผู้ติดต่อใดๆในสมุดบันทึกที่อยู่ของคุณ.</h3><p>คุณสามารถนำเข้าไฟล์ VCF ได้โดยการลากไฟล์เหล่านั้นไปไว้ในรายการของรายชื่อผู้ติดต่อ แล้ววางไฟล์ดังกล่าวไว้ที่สมุดบันทึกที่อยู่ดังกล่าว เพื่อนำเข้าข้อมูลไปไว้ หรือ ที่ตำแหน่งว่างๆ เพื่อสร้างสมุดบันทึกที่อยู่ใหม่ และนำเข้าข้อมูลเข้าไปไว้ในนั้น.<br />คุณยังสามารถนำเข้าข้อมูลได้ด้วยการคลิกที่ปุ่มนำเข้าที่อยู่บริเวณตำแหน่งด้านล่างของรายการ.</p>",
|
||||
"Select Address Books" => "เลือกสมุดบันทึกที่อยู่",
|
||||
"CardDAV syncing addresses" => "ที่อยู่ที่ใช้เชื่อมข้อมูลกับ CardDAV",
|
||||
"more info" => "ข้อมูลเพิ่มเติม",
|
||||
"Primary address (Kontact et al)" => "ที่อยู่หลัก (สำหรับติดต่อ)",
|
||||
|
63
l10n/tr.php
63
l10n/tr.php
@ -4,6 +4,8 @@
|
||||
"Cannot update addressbook with an empty name." => "Adres defterini boş bir isimle güncelleyemezsiniz.",
|
||||
"No category name given." => "Kategori ismi girilmedi.",
|
||||
"Error adding group." => "Grup eklerken hata.",
|
||||
"Group ID missing from request." => "İstekde Group IP eksik ",
|
||||
"Contact ID missing from request." => "İstekde Contact IP eksik",
|
||||
"No ID provided" => "ID verilmedi",
|
||||
"Error setting checksum." => "İmza oluşturulurken hata.",
|
||||
"No categories selected for deletion." => "Silmek için bir kategori seçilmedi.",
|
||||
@ -15,6 +17,7 @@
|
||||
"Couldn't find vCard for %d." => "%d için vCard bulunamadı.",
|
||||
"Information about vCard is incorrect. Please reload the page: " => "vCard hakkındaki bilgi hatalı. Lütfen sayfayı yeniden yükleyin: ",
|
||||
"Something went FUBAR. " => "Bir şey FUBAR gitti.",
|
||||
"Cannot save property of type \"%s\" as array" => "\"%s\" tipinin özellikleri dizi olarak kaydedilemedi",
|
||||
"Missing IM parameter." => "IM parametersi kayıp.",
|
||||
"Unknown IM: " => "Bilinmeyen IM:",
|
||||
"No contact ID was submitted." => "Bağlantı ID'si girilmedi.",
|
||||
@ -47,18 +50,20 @@
|
||||
"No file was uploaded. Unknown error" => "Dosya yüklenmedi. Bilinmeyen hata",
|
||||
"Contacts" => "Kişiler",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Bağlantılar listeleniyor",
|
||||
"Add to..." => "Ekle...",
|
||||
"Remove from..." => "Sil...",
|
||||
"Add group..." => "Grup ekle...",
|
||||
"Indexing contacts" => "Bağlantılar listeleniyor",
|
||||
"Select photo" => "Fotograf seç",
|
||||
"Network or server error. Please inform administrator." => "Ağ veya sunucu hatası. Lütfen sistem yöneticisini bilgilendirin.",
|
||||
"Error adding to group." => "Grup eklenirken hata.",
|
||||
"Error removing from group." => "Grup çıkartılırken hata.",
|
||||
"There was an error opening a mail composer." => "Bir posta bestecisi açarken bir hata oluştu.",
|
||||
"Deleting done. Click here to cancel reloading." => "Silme tamamlandı. Yeniden yüklemeyi iptal etmek için buraya tıklayın.",
|
||||
"Add address book" => "Adres defteri ekle",
|
||||
"Import done. Click here to cancel reloading." => "İçe aktarma tamamlandı. Yeniden yüklemeyi iptal etmek için buraya tıklayın.",
|
||||
"Not all files uploaded. Retrying..." => "Tüm dosyalar yüklenemedi. Yeniden deneniyor...",
|
||||
"Something went wrong with the upload, please retry." => "Yükleme yaparken birşeyler yanlış gitti. Lütfen tekrar deneyin.",
|
||||
"Error" => "Hata",
|
||||
"Importing from {filename}..." => "{filename} dosyasından içe aktarılıyor...",
|
||||
"{success} imported, {failed} failed." => "{success} içe aktarıldı, {failed} başarısız oldu.",
|
||||
@ -77,13 +82,18 @@
|
||||
"Select addressbook" => "Adres defterini sil",
|
||||
"The address book name cannot be empty." => "Adres defterinde adı boş olamaz.",
|
||||
"Is this correct?" => "Doğru mu?",
|
||||
"There was an unknown error when trying to delete this contact" => "Bu kişiyi silerken bilinmeyen bir hata oluştu.",
|
||||
"# groups" => "# gruplar",
|
||||
"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.",
|
||||
"Click to undo deletion of {num} contacts" => "{num} kişinin silinmesini geri almak için tıklayın",
|
||||
"Cancelled deletion of {num}" => "{num} silinmesi iptal edildi",
|
||||
"Contact is already in this group." => "Bağlantı zaten bu grupta.",
|
||||
"Contacts are already in this group." => "Bağlantılar zaten bu gruptalar.",
|
||||
"Couldn't get contact list." => "Bağlantı listesi alınamadı.",
|
||||
"Contact is not in this group." => "Bağlantı bu grupta değil.",
|
||||
"Contacts are not in this group." => "Bağlantılar bu grupta değiller.",
|
||||
"A group named {group} already exists" => "{group} isimli bir grup zaten mevcut",
|
||||
"You can drag groups to\narrange them as you like." => "Groupları sürükleyerek\nistediğiniz gibi düzenleyebilirsiniz",
|
||||
"All" => "Tümü",
|
||||
"Favorites" => "Favoriler",
|
||||
"Shared by {owner}" => "{owner} tarafından paylaşılmış",
|
||||
@ -129,6 +139,7 @@
|
||||
"Internet" => "İnternet",
|
||||
"Friends" => "Arkadaşlar",
|
||||
"Family" => "Aile",
|
||||
"There was an error deleting properties for this contact." => "Bu kişinin özelliklerini silerken bir hata oluştu",
|
||||
"{name}'s Birthday" => "{name}'nin Doğumgünü",
|
||||
"Contact" => "Kişi",
|
||||
"You do not have the permissions to add contacts to this addressbook." => "Bu adres defterine kişi eklemek için yetkiniz yok.",
|
||||
@ -148,6 +159,7 @@
|
||||
"Select files" => "Dosyaları seçin",
|
||||
"Import into:" => "İçe aktar:",
|
||||
"OK" => "OK",
|
||||
"(De-)select all" => "Hepsini seç(me)",
|
||||
"New Contact" => "Yeni Kişi",
|
||||
"Download Contact(s)" => "Bağlantı(ları) İndir",
|
||||
"Groups" => "Gruplar",
|
||||
@ -177,6 +189,7 @@
|
||||
"First name" => "İsim",
|
||||
"Additional names" => "İlave isimler",
|
||||
"Last name" => "Soyisim",
|
||||
"Select groups" => "Grupları seç",
|
||||
"Nickname" => "Takma ad",
|
||||
"Enter nickname" => "Takma adı girin",
|
||||
"Title" => "Başlık",
|
||||
@ -220,55 +233,7 @@
|
||||
"Share" => "Paylaş",
|
||||
"Export" => "Dışa aktar",
|
||||
"CardDAV link" => "CardDAV bağlantısı",
|
||||
"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",
|
||||
"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",
|
||||
"Edit groups" => "Grupları düzenle",
|
||||
"Enter email address" => "Eposta adresini girin",
|
||||
"Edit address details" => "Adres detaylarını düzenle",
|
||||
"Add notes here." => "Notları buraya ekleyin.",
|
||||
"Add field" => "Alan ekle",
|
||||
"Download contact" => "Kişiyi indir",
|
||||
"The temporary image has been removed from cache." => "Geçici resim ön bellekten silinmiştir.",
|
||||
"Edit address" => "Adresi düzenle",
|
||||
"Type" => "Tür",
|
||||
"PO Box" => "Posta Kutusu",
|
||||
"Street and number" => "Sokak ve Numara",
|
||||
"Extended" => "Uzatılmış",
|
||||
"Apartment number etc." => "Apartman numarası vb.",
|
||||
"Region" => "Bölge",
|
||||
"E.g. state or province" => "Örn. eyalet veya il",
|
||||
"Zipcode" => "Posta kodu",
|
||||
"Addressbook" => "Adres defteri",
|
||||
"Hon. prefixes" => "Kısaltmalar",
|
||||
"Miss" => "Bayan",
|
||||
"Ms" => "Bayan",
|
||||
"Mr" => "Bay",
|
||||
"Sir" => "Bay",
|
||||
"Mrs" => "Bayan",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Verilen isim",
|
||||
"Family name" => "Soyad",
|
||||
"Hon. suffixes" => "Kısaltmalar",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "Dr.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Dr.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Bağlantı dosyasını içeri aktar",
|
||||
"Please choose the addressbook" => "Yeni adres defterini seç",
|
||||
"create a new addressbook" => "Yeni adres defteri oluştur",
|
||||
"Name of new addressbook" => "Yeni adres defteri için isim",
|
||||
"Importing contacts" => "Bağlantıları içe aktar",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "ggg",
|
||||
"Select Address Books" => "Adres deftelerini seçiniz",
|
||||
"CardDAV syncing addresses" => "CardDAV adresleri eşzamanlıyor",
|
||||
"more info" => "daha fazla bilgi",
|
||||
"Primary address (Kontact et al)" => "Birincil adres (Bağlantı ve arkadaşları)",
|
||||
|
50
l10n/uk.php
50
l10n/uk.php
@ -50,10 +50,10 @@
|
||||
"No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка",
|
||||
"Contacts" => "Контакти",
|
||||
"%d_selected_contacts" => "%d_selected_contacts",
|
||||
"Indexing contacts" => "Індексування контактів",
|
||||
"Add to..." => "Додати до...",
|
||||
"Remove from..." => "Видалити з...",
|
||||
"Add group..." => "Додати групу...",
|
||||
"Indexing contacts" => "Індексування контактів",
|
||||
"Select photo" => "Оберіть фото",
|
||||
"Network or server error. Please inform administrator." => "Мережева або серверна помилка. Будь ласка, проінформуйте адміністратора.",
|
||||
"Error adding to group." => "Помилка при додаванні у групу.",
|
||||
@ -233,55 +233,7 @@
|
||||
"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",
|
||||
"Edit name details" => "Редагувати деталі",
|
||||
"http://www.somesite.com" => "http://www.somesite.com",
|
||||
"dd-mm-yyyy" => "дд-мм-рррр",
|
||||
"Separate groups with commas" => "Відділяйте групи комами",
|
||||
"Edit groups" => "Редагувати групи",
|
||||
"Enter email address" => "Ввести адресу електронної пошти",
|
||||
"Edit address details" => "Редагувати деталі адреси",
|
||||
"Add notes here." => "Додайте сюди примітки.",
|
||||
"Add field" => "Додати поле",
|
||||
"Download contact" => "Завантажити контакт",
|
||||
"The temporary image has been removed from cache." => "Тимчасове зображення було видалене з кешу.",
|
||||
"Edit address" => "Редагувати адреси",
|
||||
"Type" => "Тип",
|
||||
"PO Box" => "Поштова скринька",
|
||||
"Street and number" => "Вулиця та номер будинку",
|
||||
"Extended" => "Розширено",
|
||||
"Apartment number etc." => "Номер квартири та ін.",
|
||||
"Region" => "Регіон",
|
||||
"E.g. state or province" => "Область чи район",
|
||||
"Zipcode" => "Поштовий індекс",
|
||||
"Addressbook" => "Адресна книга",
|
||||
"Hon. prefixes" => "Високоповажні префікси",
|
||||
"Miss" => "Пані",
|
||||
"Ms" => "Пані",
|
||||
"Mr" => "Пан",
|
||||
"Sir" => "Пан",
|
||||
"Mrs" => "Панове",
|
||||
"Dr" => "Доктор",
|
||||
"Given name" => "Ім'я",
|
||||
"Family name" => "Прізвище",
|
||||
"Hon. suffixes" => "Високоповажні суфікси",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Імпортувати файл контактів",
|
||||
"Please choose the addressbook" => "Будь ласка, оберіть адресну книгу",
|
||||
"create a new addressbook" => "створити нову адресну книгу",
|
||||
"Name of new addressbook" => "Ім'я нової адресної книги",
|
||||
"Importing contacts" => "Імпортування контактів",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>Відсутні контакти у Вашій адресній книзі.</h3><p>Ви можете імпортувати VCF файли перетаскуванням до списку контактів та або кинути їх на адресну книгу для імпортування в неї, або на пусте місце для створення нової адресної книги та імпортування в нову.<br />Також, Ви можете імпортувати натисканням на кнопку імпорту внизу списку.</p>",
|
||||
"Select Address Books" => "Обрати адресні книги",
|
||||
"CardDAV syncing addresses" => "CardDAV синхронізує адреси",
|
||||
"more info" => "більше інформації",
|
||||
"Primary address (Kontact et al)" => "Первинна адреса (Контакт та ін)",
|
||||
|
50
l10n/vi.php
50
l10n/vi.php
@ -49,10 +49,10 @@
|
||||
"Couldn't load temporary image: " => "Không thể tải hình ảnh tạm thời:",
|
||||
"No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định",
|
||||
"Contacts" => "Liên lạc",
|
||||
"Indexing contacts" => "Chỉ mục địa chỉ liên lạc",
|
||||
"Add to..." => "Thêm đến...",
|
||||
"Remove from..." => "Xóa từ...",
|
||||
"Add group..." => "Thêm nhóm...",
|
||||
"Indexing contacts" => "Chỉ mục địa chỉ liên lạc",
|
||||
"Select photo" => "Chọn ảnh",
|
||||
"Network or server error. Please inform administrator." => "Mạng hoặc máy chủ lỗi. Vui lòng liên hệ người quản trị.",
|
||||
"Error adding to group." => "Lỗi thêm vào nhóm.",
|
||||
@ -215,55 +215,7 @@
|
||||
"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",
|
||||
"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",
|
||||
"Edit groups" => "Sửa nhóm",
|
||||
"Enter email address" => "Nhập địa chỉ Email",
|
||||
"Edit address details" => "Sửa thông tin địa chỉ",
|
||||
"Add notes here." => "Thêm chú thích",
|
||||
"Add field" => "Thêm trường mới",
|
||||
"Download contact" => "Tải 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",
|
||||
"PO Box" => "Hòm thư bưu điện",
|
||||
"Street and number" => "Số nhà",
|
||||
"Extended" => "Mở rộng",
|
||||
"Apartment number etc." => "Số nhà",
|
||||
"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",
|
||||
"Addressbook" => "Sổ địa chỉ",
|
||||
"Hon. prefixes" => "Tiền tố",
|
||||
"Miss" => "Cô",
|
||||
"Ms" => "Cô",
|
||||
"Mr" => "Ông",
|
||||
"Sir" => "Ngài",
|
||||
"Mrs" => "Bà",
|
||||
"Dr" => "Dr",
|
||||
"Given name" => "Được đặt tên",
|
||||
"Family name" => "Tên gia đình",
|
||||
"Hon. suffixes" => "Hậu tố Hon.",
|
||||
"J.D." => "J.D.",
|
||||
"M.D." => "M.D.",
|
||||
"D.O." => "D.O.",
|
||||
"D.C." => "D.C.",
|
||||
"Ph.D." => "Ph.D.",
|
||||
"Esq." => "Esq.",
|
||||
"Jr." => "Jr.",
|
||||
"Sn." => "Sn.",
|
||||
"Import a contacts file" => "Xuất ra một tập tin liên lạc",
|
||||
"Please choose the addressbook" => "Chọn sổ địa chỉ",
|
||||
"create a new addressbook" => "Tạo một sổ địa chỉ mới",
|
||||
"Name of new addressbook" => "Tên danh bạ mới",
|
||||
"Importing contacts" => "Nhập liên lạc",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3> Bạn không có địa chỉ liên lạc trong sổ Danh bạ của bạn </ h3> <p> Bạn có thể nhập các file VCF bằng cách kéo chúng vào danh sách liên lạc hoặc thả chúng vào một sổ địa chỉ để nhập vào nó, hoặc trên một khoảng trống để tạo ra mộtbsổ địa chỉ mới và nhập vào đó <br. /> Bạn cũng có thể nhập vào bằng cách nhấp vào nút nhập khẩu ở dưới cùng của danh sách. </ p>",
|
||||
"Select Address Books" => "Chọn sổ địa chỉ",
|
||||
"CardDAV syncing addresses" => "CardDAV đồng bộ địa chỉ",
|
||||
"more info" => "Thông tin thêm",
|
||||
"Primary address (Kontact et al)" => "Địa chỉ chính (Kontact et al)",
|
||||
|
@ -157,55 +157,7 @@
|
||||
"Delete IM" => "删除即时通讯",
|
||||
"Share" => "分享",
|
||||
"Export" => "导出",
|
||||
"Add Contact" => "添加联系人",
|
||||
"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",
|
||||
"Separate groups with commas" => "用逗号分隔群组",
|
||||
"Edit groups" => "编辑群组",
|
||||
"Enter email address" => "输入电子邮件地址",
|
||||
"Edit address details" => "编辑地址细节",
|
||||
"Add notes here." => "在此添加备注。",
|
||||
"Add field" => "添加字段",
|
||||
"Download contact" => "下载联系人",
|
||||
"The temporary image has been removed from cache." => "临时相片已从缓存中移除。",
|
||||
"Edit address" => "编辑地址",
|
||||
"Type" => "类型",
|
||||
"PO Box" => "信箱",
|
||||
"Street and number" => "街道和门牌号",
|
||||
"Extended" => "扩展",
|
||||
"Apartment number etc." => "公寓号等。",
|
||||
"Region" => "地区",
|
||||
"E.g. state or province" => "例如,州或省",
|
||||
"Zipcode" => "邮编",
|
||||
"Addressbook" => "地址薄",
|
||||
"Hon. prefixes" => "荣誉头衔",
|
||||
"Miss" => "小姐",
|
||||
"Ms" => "小姐",
|
||||
"Mr" => "先生",
|
||||
"Sir" => "先生",
|
||||
"Mrs" => "女士",
|
||||
"Dr" => "博士",
|
||||
"Given name" => "名",
|
||||
"Family name" => "姓",
|
||||
"Hon. suffixes" => "荣誉头衔",
|
||||
"J.D." => "法学博士",
|
||||
"M.D." => "医学博士",
|
||||
"D.O." => "骨科医学博士",
|
||||
"D.C." => "脊骨神经科博士",
|
||||
"Ph.D." => "物理学博士",
|
||||
"Esq." => "律师",
|
||||
"Jr." => "初级",
|
||||
"Sn." => "高级",
|
||||
"Import a contacts file" => "导入联系人文件",
|
||||
"Please choose the addressbook" => "请选择地址薄",
|
||||
"create a new addressbook" => "创建新联系人",
|
||||
"Name of new addressbook" => "新地址薄名称",
|
||||
"Importing contacts" => "导入联系人",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>您的地址薄里没有联系人。</h3><p>您可以拖动 VCF 到联系人列表来导入它,拖动到地址薄上将导入到该地址薄中,拖动到空白位置将创建一个新地址薄并导入。<br/>您也可以点击列表底部的导入按钮来导入。</p>",
|
||||
"Select Address Books" => "选择地址薄",
|
||||
"CardDAV syncing addresses" => "CardDAV 同步地址",
|
||||
"more info" => "更多信息",
|
||||
"Primary address (Kontact et al)" => "主要地址 (Kontact 等)",
|
||||
|
@ -45,10 +45,10 @@
|
||||
"Couldn't load temporary image: " => "无法加载临时图像: ",
|
||||
"No file was uploaded. Unknown error" => "没有文件被上传。未知错误",
|
||||
"Contacts" => "联系人",
|
||||
"Indexing contacts" => "正在索引联系人",
|
||||
"Add to..." => "添加到……",
|
||||
"Remove from..." => "从……删除",
|
||||
"Add group..." => "添加分组……",
|
||||
"Indexing contacts" => "正在索引联系人",
|
||||
"Select photo" => "选择图片",
|
||||
"Network or server error. Please inform administrator." => "网络或服务器错误。请通知管理员。",
|
||||
"Error adding to group." => "添加到组时出错。",
|
||||
@ -224,55 +224,7 @@
|
||||
"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" => "编辑名称详情",
|
||||
"http://www.somesite.com" => "http://www.wodewangzhan.com",
|
||||
"dd-mm-yyyy" => "yyyy-mm-dd",
|
||||
"Separate groups with commas" => "用逗号隔开分组",
|
||||
"Edit groups" => "编辑分组",
|
||||
"Enter email address" => "输入电子邮件地址",
|
||||
"Edit address details" => "编辑详细地址。",
|
||||
"Add notes here." => "添加注释。",
|
||||
"Add field" => "添加字段",
|
||||
"Download contact" => "下载联系人",
|
||||
"The temporary image has been removed from cache." => "临时图像文件已从缓存中删除",
|
||||
"Edit address" => "编辑地址",
|
||||
"Type" => "类型",
|
||||
"PO Box" => "邮箱",
|
||||
"Street and number" => "街道门牌号码",
|
||||
"Extended" => "扩展",
|
||||
"Apartment number etc." => "公寓号码",
|
||||
"Region" => "地区",
|
||||
"E.g. state or province" => "例如州或省",
|
||||
"Zipcode" => "邮编",
|
||||
"Addressbook" => "地址簿",
|
||||
"Hon. prefixes" => "荣誉头衔",
|
||||
"Miss" => "小姐",
|
||||
"Ms" => "女士",
|
||||
"Mr" => "先生",
|
||||
"Sir" => "先生",
|
||||
"Mrs" => "夫人",
|
||||
"Dr" => "博士",
|
||||
"Given name" => "名",
|
||||
"Family name" => "姓",
|
||||
"Hon. suffixes" => "名誉后缀",
|
||||
"J.D." => "法律博士",
|
||||
"M.D." => "医学博士",
|
||||
"D.O." => "骨科医学博士",
|
||||
"D.C." => "教育学博士",
|
||||
"Ph.D." => "哲学博士",
|
||||
"Esq." => "先生",
|
||||
"Jr." => "小",
|
||||
"Sn." => "老",
|
||||
"Import a contacts file" => "导入联系人文件",
|
||||
"Please choose the addressbook" => "请选择地址簿",
|
||||
"create a new addressbook" => "创建新地址簿",
|
||||
"Name of new addressbook" => "新地址簿名称",
|
||||
"Importing contacts" => "导入联系人",
|
||||
"<h3>You have no contacts in your addressbook.</h3><p>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.<br />You can also import by clicking on the import button at the bottom of the list.</p>" => "<h3>您还没有联系人哟。</h3><p>您可以通过拖曳VCF文件到联系人列表或地址簿来导入联系人,或者空白处创建新的地址簿进行导入。<br />您还可以通过点击列表底部的导入按钮来导入</p>",
|
||||
"Select Address Books" => "选择地址簿",
|
||||
"CardDAV syncing addresses" => "CardDAV 同步地址",
|
||||
"more info" => "更多信息",
|
||||
"Primary address (Kontact et al)" => "首选地址 (Kontact 等)",
|
||||
|
@ -26,6 +26,7 @@
|
||||
"The uploaded file was only partially uploaded" => "只有部分檔案被上傳",
|
||||
"No file was uploaded" => "沒有已上傳的檔案",
|
||||
"Missing a temporary folder" => "遺失暫存資料夾",
|
||||
"Couldn't save temporary image: " => "無法儲存暫存影像",
|
||||
"No file was uploaded. Unknown error" => "沒有檔案被上傳. 未知的錯誤.",
|
||||
"Contacts" => "通訊錄",
|
||||
"Select photo" => "選擇相片",
|
||||
@ -117,36 +118,6 @@
|
||||
"Delete IM" => "刪除 IM",
|
||||
"Share" => "分享",
|
||||
"Export" => "匯出",
|
||||
"Add Contact" => "添加通訊錄",
|
||||
"Drop photo to upload" => "使用拖曳來上傳相片",
|
||||
"Edit name details" => "編輯姓名詳細資訊",
|
||||
"dd-mm-yyyy" => "dd-mm-yyyy",
|
||||
"Separate groups with commas" => "用逗號分隔群組",
|
||||
"Edit groups" => "編輯群組",
|
||||
"Enter email address" => "輸入電子郵件地址",
|
||||
"Edit address details" => "電子郵件住址詳細資訊",
|
||||
"Add notes here." => "在這裡新增註解",
|
||||
"Add field" => "新增欄位",
|
||||
"Download contact" => "下載通訊錄",
|
||||
"Edit address" => "編輯地址",
|
||||
"Type" => "類型",
|
||||
"PO Box" => "通訊地址",
|
||||
"Extended" => "分機",
|
||||
"Region" => "地區",
|
||||
"Zipcode" => "郵遞區號",
|
||||
"Addressbook" => "電話簿",
|
||||
"Miss" => "小姐",
|
||||
"Ms" => "女士",
|
||||
"Mr" => "先生",
|
||||
"Sir" => "先生",
|
||||
"Mrs" => "小姐",
|
||||
"Dr" => "博士(醫生)",
|
||||
"Given name" => "給定名(名)",
|
||||
"Family name" => "家族名(姓)",
|
||||
"M.D." => "醫學博士",
|
||||
"Ph.D." => "博士",
|
||||
"Import a contacts file" => "匯入聯絡人檔案",
|
||||
"Importing contacts" => "匯入聯絡人",
|
||||
"more info" => "更多資訊",
|
||||
"Primary address (Kontact et al)" => "主要地址",
|
||||
"iOS/OS X" => "iOS/OS X",
|
||||
|
@ -14,8 +14,7 @@ class SearchProvider extends \OC_Search_Provider{
|
||||
$vcards = VCard::all($addressbook['id']);
|
||||
foreach($vcards as $vcard) {
|
||||
if(substr_count(strtolower($vcard['fullname']), strtolower($query)) > 0) {
|
||||
//$link = \OCP\Util::linkTo('contacts', 'index.php').'?id='.urlencode($vcard['id']);
|
||||
$link = 'javascript:openContact(' . $vcard['id'] . ')';
|
||||
$link = \OCP\Util::linkTo('contacts', 'index.php').'#'.urlencode($vcard['id']);
|
||||
$results[]=new \OC_Search_Result($vcard['fullname'], '', $link, (string)$l->t('Contact'));//$name,$text,$link,$type
|
||||
}
|
||||
}
|
||||
|
@ -1,10 +1,4 @@
|
||||
<div id='notification'></div>
|
||||
<script type='text/javascript'>
|
||||
var is_indexed = <?php echo $_['is_indexed'] == 'yes' ? 'true' : 'false'; ?>;
|
||||
var totalurl = '<?php echo OCP\Util::linkToRemote('carddav'); ?>addressbooks';
|
||||
var id = '<?php echo $_['id']; ?>';
|
||||
var lang = '<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'core', 'lang', 'en'); ?>';
|
||||
</script>
|
||||
<form class="float" id="file_upload_form" action="<?php echo OCP\Util::linkTo('contacts', 'ajax/uploadphoto.php'); ?>" method="post" enctype="multipart/form-data" target="file_upload_target">
|
||||
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>">
|
||||
<input type="hidden" name="id" value="<?php echo $_['id'] ?>">
|
||||
@ -326,7 +320,7 @@
|
||||
</li>
|
||||
</div>
|
||||
<div class="adr">
|
||||
<li data-element="adr" data-checksum="{checksum}" class="propertycontainer">
|
||||
<li data-element="adr" data-checksum="{checksum}" data-lang="<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'core', 'lang', 'en'); ?>" class="propertycontainer">
|
||||
<span class="float display">
|
||||
<label class="meta parameters"></label>
|
||||
<span class="adr">{value}</span>
|
||||
|
@ -1,64 +0,0 @@
|
||||
<div id='notification'></div>
|
||||
<script type='text/javascript'>
|
||||
var totalurl = '<?php echo OCP\Util::linkToRemote('carddav'); ?>addressbooks';
|
||||
var categories = <?php echo json_encode($_['categories']); ?>;
|
||||
var id = '<?php echo $_['id']; ?>';
|
||||
var lang = '<?php echo OCP\Config::getUserValue(OCP\USER::getUser(), 'core', 'lang', 'en'); ?>';
|
||||
</script>
|
||||
<div id="leftcontent">
|
||||
<div class="hidden" id="statusbar"></div>
|
||||
<div id="contacts">
|
||||
</div>
|
||||
<div id="uploadprogressbar"></div>
|
||||
<div id="bottomcontrols">
|
||||
<button class="control newcontact" id="contacts_newcontact" title="<?php echo $l->t('Add Contact'); ?>"></button>
|
||||
<button class="control import" title="<?php echo $l->t('Import'); ?>"></button>
|
||||
<button class="control settings" title="<?php echo $l->t('Settings'); ?>"></button>
|
||||
<form id="import_upload_form" action="<?php echo OCP\Util::linkTo('contacts', 'ajax/uploadimport.php'); ?>" method="post" enctype="multipart/form-data" target="import_upload_target">
|
||||
<input class="float" id="import_upload_start" type="file" accept="text/directory,text/vcard,text/x-vcard" name="importfile" />
|
||||
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload">
|
||||
</form>
|
||||
<iframe name="import_upload_target" id='import_upload_target' src=""></iframe>
|
||||
</div>
|
||||
</div>
|
||||
<div id="rightcontent" class="rightcontent" data-id="<?php echo $_['id']; ?>">
|
||||
<?php
|
||||
echo $this->inc('part.contact');
|
||||
echo $this->inc('part.no_contacts');
|
||||
?>
|
||||
<div class="hidden popup" id="ninjahelp">
|
||||
<a class="close" tabindex="0" role="button" title="<?php echo $l->t('Close'); ?>"></a>
|
||||
<h2><?php echo $l->t('Keyboard shortcuts'); ?></h2>
|
||||
<div class="help-section">
|
||||
<h3><?php echo $l->t('Navigation'); ?></h3>
|
||||
<dl>
|
||||
<dt>j/Down</dt>
|
||||
<dd><?php echo $l->t('Next contact in list'); ?></dd>
|
||||
<dt>k/Up</dt>
|
||||
<dd><?php echo $l->t('Previous contact in list'); ?></dd>
|
||||
<dt>o</dt>
|
||||
<dd><?php echo $l->t('Expand/collapse current addressbook'); ?></dd>
|
||||
<dt>n/PageDown</dt>
|
||||
<dd><?php echo $l->t('Next addressbook'); ?></dd>
|
||||
<dt>p/PageUp</dt>
|
||||
<dd><?php echo $l->t('Previous addressbook'); ?></dd>
|
||||
</dl>
|
||||
</div>
|
||||
<div class="help-section">
|
||||
<h3><?php echo $l->t('Actions'); ?></h3>
|
||||
<dl>
|
||||
<dt>r</dt>
|
||||
<dd><?php echo $l->t('Refresh contacts list'); ?></dd>
|
||||
<dt>a</dt>
|
||||
<dd><?php echo $l->t('Add new contact'); ?></dd>
|
||||
<!-- dt>Shift-a</dt>
|
||||
<dd><?php echo $l->t('Add new addressbook'); ?></dd -->
|
||||
<dt>Shift-Delete</dt>
|
||||
<dd><?php echo $l->t('Delete current contact'); ?></dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Dialogs -->
|
||||
<div id="dialog_holder"></div>
|
||||
<!-- End of Dialogs -->
|
@ -1,145 +0,0 @@
|
||||
<div id="appsettings" class="popup bottomleft hidden"></div>
|
||||
<?php
|
||||
$id = isset($_['id']) ? $_['id'] : '';
|
||||
?>
|
||||
<div id="card" <?php if(!$_['has_contacts']) { echo 'class="hidden"';} ?>>
|
||||
<form class="float" id="file_upload_form" action="<?php echo OCP\Util::linkTo('contacts', 'ajax/uploadphoto.php'); ?>" method="post" enctype="multipart/form-data" target="file_upload_target">
|
||||
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>">
|
||||
<input type="hidden" name="id" value="<?php echo $_['id'] ?>">
|
||||
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload">
|
||||
<input type="hidden" class="max_human_file_size" value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
|
||||
<input id="file_upload_start" type="file" accept="image/*" name="imagefile" />
|
||||
</form>
|
||||
|
||||
<div id="contact_photo">
|
||||
|
||||
<iframe name="file_upload_target" id='file_upload_target' src=""></iframe>
|
||||
<div class="tip propertycontainer" id="contacts_details_photo_wrapper" title="<?php echo $l->t('Drop photo to upload'); ?> (max <?php echo $_['uploadMaxHumanFilesize']; ?>)" data-element="PHOTO">
|
||||
<ul id="phototools" class="transparent hidden">
|
||||
<li><a class="svg delete" title="<?php echo $l->t('Delete current photo'); ?>"></a></li>
|
||||
<li><a class="svg edit" title="<?php echo $l->t('Edit current photo'); ?>"></a></li>
|
||||
<li><a class="svg upload" title="<?php echo $l->t('Upload new photo'); ?>"></a></li>
|
||||
<li><a class="svg cloud" title="<?php echo $l->t('Select photo from ownCloud'); ?>"></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div> <!-- contact_photo -->
|
||||
|
||||
<form method="post">
|
||||
|
||||
<div id="contact_identity">
|
||||
<input type="hidden" name="id" value="<?php echo $_['id'] ?>">
|
||||
<input type="hidden" name="requesttoken" value="<?php echo $_['requesttoken'] ?>">
|
||||
<fieldset id="ident" class="contactpart">
|
||||
<span class="propertycontainer" data-element="N"><input type="hidden" id="n" class="contacts_property" name="value" value="" /></span>
|
||||
<span id="name" class="propertycontainer" data-element="FN">
|
||||
<select class="float" id="fn_select" title="<?php echo $l->t('Format custom, Short name, Full name, Reverse or Reverse with comma'); ?>">
|
||||
</select><a role="button" id="edit_name" class="action edit" title="<?php echo $l->t('Edit name details'); ?>"></a>
|
||||
</span>
|
||||
<dl id="identityprops" class="form">
|
||||
<dt class="hidden" id="org_label" data-element="ORG"><label for="org"><?php echo $l->t('Organization'); ?></label></dt>
|
||||
<dd class="propertycontainer hidden" id="org_value" data-element="ORG"><input id="org" required="required" type="text" class="contacts_property big" name="value" value="" placeholder="<?php echo $l->t('Organization'); ?>" /><a role="button" class="action delete" title="<?php echo $l->t('Delete'); ?>"></a></dd>
|
||||
<dt class="hidden" id="nickname_label" data-element="NICKNAME"><label for="nickname"><?php echo $l->t('Nickname'); ?></label></dt>
|
||||
<dd class="propertycontainer hidden" id="nickname_value" data-element="NICKNAME"><input id="nickname" required="required" type="text" class="contacts_property big" name="value" value="" placeholder="<?php echo $l->t('Enter nickname'); ?>" /><a role="button" class="action delete" title="<?php echo $l->t('Delete'); ?>"></a></dd>
|
||||
<dt class="hidden" id="url_label" data-element="URL"><label for="url"><?php echo $l->t('Web site'); ?></label></dt>
|
||||
<dd class="propertycontainer hidden" id="url_value" data-element="URL"><input id="url" required="required" type="url" class="contacts_property big" name="value" value="" placeholder="<?php echo $l->t('http://www.somesite.com'); ?>" /><a role="button" class="action globe" title="<?php echo $l->t('Go to web site'); ?>"><a role="button" class="action delete" title="<?php echo $l->t('Delete'); ?>"></a></dd>
|
||||
<dt class="hidden" id="bday_label" data-element="BDAY"><label for="bday"><?php echo $l->t('Birthday'); ?></label></dt>
|
||||
<dd class="propertycontainer hidden" id="bday_value" data-element="BDAY"><input id="bday" required="required" name="value" type="text" class="contacts_property big" value="" placeholder="<?php echo $l->t('dd-mm-yyyy'); ?>" /><a role="button" class="action delete" title="<?php echo $l->t('Delete'); ?>"></a></dd>
|
||||
<dt class="hidden" id="categories_label" data-element="CATEGORIES"><label for="categories"><?php echo $l->t('Groups'); ?></label></dt>
|
||||
<dd class="propertycontainer hidden" id="categories_value" data-element="CATEGORIES"><input id="categories" required="required" type="text" class="contacts_property bold" name="value" value="" placeholder="
|
||||
<?php echo $l->t('Separate groups with commas'); ?>" />
|
||||
<a role="button" class="action delete" title="<?php echo $l->t('Delete'); ?>"></a><a role="button" class="action edit" title="<?php echo $l->t('Edit groups'); ?>"></a></dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
</div> <!-- contact_identity -->
|
||||
|
||||
<!-- email addresses -->
|
||||
<div id="emails" class="hidden contactsection">
|
||||
<ul id="emaillist" class="propertylist">
|
||||
<li class="template hidden" data-element="EMAIL">
|
||||
<input type="checkbox" class="contacts_property tip" name="parameters[TYPE][]" value="PREF" title="<?php echo $l->t('Preferred'); ?>" />
|
||||
<input type="email" required="required" class="nonempty contacts_property" name="value" value="" x-moz-errormessage="<?php echo $l->t('Please specify a valid email address.'); ?>" placeholder="<?php echo $l->t('Enter email address'); ?>" />
|
||||
<select multiple="multiple" name="parameters[TYPE][]">
|
||||
<?php echo OCP\html_select_options($_['email_types'], array()) ?>
|
||||
</select>
|
||||
<span class="listactions"><a class="action mail" title="<?php echo $l->t('Mail to address'); ?>"></a>
|
||||
<a role="button" class="action delete" title="<?php echo $l->t('Delete email address'); ?>"></a></span></li>
|
||||
</ul>
|
||||
</div> <!-- email addresses-->
|
||||
|
||||
<!-- Phone numbers -->
|
||||
<div id="phones" class="hidden contactsection">
|
||||
<ul id="phonelist" class="propertylist">
|
||||
<li class="template hidden" data-element="TEL">
|
||||
<input type="checkbox" class="contacts_property tip" name="parameters[TYPE][]" value="PREF" title="<?php echo $l->t('Preferred'); ?>" />
|
||||
<input type="text" required="required" class="nonempty contacts_property" name="value" value=""
|
||||
placeholder="<?php echo $l->t('Enter phone number'); ?>" />
|
||||
<select multiple="multiple" name="parameters[TYPE][]">
|
||||
<?php echo OCP\html_select_options($_['phone_types'], array()) ?>
|
||||
</select>
|
||||
<a role="button" class="action delete" title="<?php echo $l->t('Delete phone number'); ?>"></a></li>
|
||||
</ul>
|
||||
</div> <!-- Phone numbers -->
|
||||
|
||||
<!-- IMPP -->
|
||||
<div id="ims" class="hidden contactsection">
|
||||
<ul id="imlist" class="propertylist">
|
||||
<li class="template hidden" data-element="IMPP">
|
||||
<div class="select_wrapper">
|
||||
<select class="impp" name="parameters[X-SERVICE-TYPE]">
|
||||
<?php echo OCP\html_select_options($_['im_protocols'], array()) ?>
|
||||
</select>
|
||||
</div>
|
||||
<div class="select_wrapper">
|
||||
<select class="types" name="parameters[TYPE][]">
|
||||
<option></option>
|
||||
<?php echo OCP\html_select_options($_['impp_types'], array()) ?>
|
||||
</select>
|
||||
</div>
|
||||
<input type="checkbox" class="contacts_property impp tip" name="parameters[TYPE][]" value="PREF" title="<?php echo $l->t('Preferred'); ?>" />
|
||||
<input type="text" required="required" class="nonempty contacts_property" name="value" value=""
|
||||
placeholder="<?php echo $l->t('Instant Messenger'); ?>" />
|
||||
<a role="button" class="action delete" title="<?php echo $l->t('Delete IM'); ?>"></a></li>
|
||||
</ul>
|
||||
</div> <!-- IMPP -->
|
||||
|
||||
<!-- Addresses -->
|
||||
<div id="addresses" class="hidden contactsection">
|
||||
<dl class="addresscard template hidden" data-element="ADR"><dt>
|
||||
<input class="adr contacts_property" name="value" type="hidden" value="" />
|
||||
<input type="hidden" class="adr_type contacts_property" name="parameters[TYPE][]" value="" />
|
||||
<span class="adr_type_label"></span><a class="action globe" title="<?php echo $l->t('View on map'); ?>"></a><a class="action edit" title="<?php echo $l->t('Edit address details'); ?>"></a><a role="button" class="action delete" title="Delete address"></a>
|
||||
</dt><dd><ul class="addresslist"></ul></dd></dl>
|
||||
</div> <!-- Addresses -->
|
||||
|
||||
<div id="contact_note" class="hidden contactsection">
|
||||
<div id="note" class="propertycontainer" data-element="NOTE">
|
||||
<textarea class="contacts_property" name="value" required="required" placeholder="<?php echo $l->t('Add notes here.'); ?>" cols="60" wrap="hard"></textarea>
|
||||
</div>
|
||||
</div> <!-- contact_note -->
|
||||
|
||||
</form>
|
||||
|
||||
<div id="actionbar">
|
||||
<div id="contacts_propertymenu">
|
||||
<button class="button" id="contacts_propertymenu_button"><?php echo $l->t('Add field'); ?></button>
|
||||
<ul id="contacts_propertymenu_dropdown" role="menu" class="hidden">
|
||||
<li><a role="menuitem" data-type="ORG"><?php echo $l->t('Organization'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="NICKNAME"><?php echo $l->t('Nickname'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="BDAY"><?php echo $l->t('Birthday'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="TEL"><?php echo $l->t('Phone'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="EMAIL"><?php echo $l->t('Email'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="IMPP"><?php echo $l->t('Instant Messaging'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="ADR"><?php echo $l->t('Address'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="NOTE"><?php echo $l->t('Note'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="URL"><?php echo $l->t('Web site'); ?></a></li>
|
||||
<li><a role="menuitem" data-type="CATEGORIES"><?php echo $l->t('Groups'); ?></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<button class="svg action" id="contacts_downloadcard" title="<?php echo $l->t('Download contact');?>"></button>
|
||||
<button class="svg action" id="contacts_deletecard" title="<?php echo $l->t('Delete contact');?>"></button>
|
||||
</div>
|
||||
|
||||
</div> <!-- card -->
|
||||
<div id="edit_photo_dialog" title="Edit photo">
|
||||
<div id="edit_photo_dialog_img"></div>
|
||||
</div>
|
@ -3,41 +3,6 @@ $id = $_['id'];
|
||||
$tmpkey = $_['tmpkey'];
|
||||
$requesttoken = $_['requesttoken'];
|
||||
?>
|
||||
<script type="text/javascript">
|
||||
jQuery(function($) {
|
||||
$('#cropbox').Jcrop({
|
||||
onChange: showCoords,
|
||||
onSelect: showCoords,
|
||||
onRelease: clearCoords,
|
||||
maxSize: [399, 399],
|
||||
bgColor: 'black',
|
||||
bgOpacity: .4,
|
||||
boxWidth: 400,
|
||||
boxHeight: 400,
|
||||
setSelect: [ 100, 130, 50, 50 ]//,
|
||||
//aspectRatio: 0.8
|
||||
});
|
||||
});
|
||||
// Simple event handler, called from onChange and onSelect
|
||||
// event handlers, as per the Jcrop invocation above
|
||||
function showCoords(c) {
|
||||
$('#x1').val(c.x);
|
||||
$('#y1').val(c.y);
|
||||
$('#x2').val(c.x2);
|
||||
$('#y2').val(c.y2);
|
||||
$('#w').val(c.w);
|
||||
$('#h').val(c.h);
|
||||
};
|
||||
|
||||
function clearCoords() {
|
||||
$('#coords input').val('');
|
||||
};
|
||||
/*
|
||||
$('#coords').submit(function() {
|
||||
alert('Handler for .submit() called.');
|
||||
return true;
|
||||
});*/
|
||||
</script>
|
||||
<?php if(OC_Cache::hasKey($tmpkey)) { ?>
|
||||
<img id="cropbox" src="<?php echo OCP\Util::linkToAbsolute('contacts', 'tmpphoto.php'); ?>?tmpkey=<?php echo $tmpkey; ?>" />
|
||||
<form id="cropform"
|
||||
@ -60,6 +25,7 @@ $requesttoken = $_['requesttoken'];
|
||||
</fieldset>
|
||||
<iframe name="crop_target" id='crop_target' src=""></iframe>
|
||||
</form>
|
||||
<script type="text/javascript" src="<?php echo OC_Helper::linkTo('contacts/js', 'jcrop.js');?>"></script>
|
||||
<?php
|
||||
} else {
|
||||
echo $l->t('The temporary image has been removed from cache.');
|
||||
|
@ -1,63 +0,0 @@
|
||||
<?php
|
||||
$adr = isset($_['adr'])?$_['adr']:array();
|
||||
$id = isset($_['id'])?$_['id']:array();
|
||||
$types = isset($_['types'])?$_['types']:array();
|
||||
?>
|
||||
<div id="edit_address_dialog" title="<?php echo $l->t('Edit address'); ?>">
|
||||
<fieldset id="address">
|
||||
<dl class="form">
|
||||
<dt>
|
||||
<label class="label" for="adr_type"><?php echo $l->t('Type'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<select id="adr_type" name="parameters[ADR][TYPE]" size="1">
|
||||
<?php echo OCP\html_select_options($_['adr_types'], $types) ?>
|
||||
</select>
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_pobox"><?php echo $l->t('PO Box'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_pobox" name="value[ADR][0]" placeholder="<?php echo $l->t('PO Box'); ?>" value="<?php echo isset($adr[0])?$adr[0]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_street"><?php echo $l->t('Street address'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_street" name="value[ADR][2]" placeholder="<?php echo $l->t('Street and number'); ?>" value="<?php echo isset($adr[2])?$adr[2]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_extended"><?php echo $l->t('Extended'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_extended" name="value[ADR][1]" placeholder="<?php echo $l->t('Apartment number etc.'); ?>" value="<?php echo isset($adr[1])?$adr[1]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_city"><?php echo $l->t('City'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_city" name="value[ADR][3]" placeholder="<?php echo $l->t('City'); ?>" value="<?php echo isset($adr[3])?$adr[3]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_region"><?php echo $l->t('Region'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_region" name="value[ADR][4]" placeholder="<?php echo $l->t('E.g. state or province'); ?>" value="<?php echo isset($adr[4])?$adr[4]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_zipcode"><?php echo $l->t('Zipcode'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_zipcode" name="value[ADR][5]" placeholder="<?php echo $l->t('Postal code'); ?>" value="<?php echo isset($adr[5])?$adr[5]:''; ?>">
|
||||
</dd>
|
||||
<dt>
|
||||
<label class="label" for="adr_country"><?php echo $l->t('Country'); ?></label>
|
||||
</dt>
|
||||
<dd>
|
||||
<input type="text" id="adr_country" name="value[ADR][6]" placeholder="<?php echo $l->t('Country'); ?>" value="<?php echo isset($adr[6])?$adr[6]:''; ?>">
|
||||
</dd>
|
||||
</dl>
|
||||
<div style="width: 100%; text-align:center;">Powered by <a href="http://geonames.org/" target="_blank">geonames.org</a></div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
@ -1,58 +0,0 @@
|
||||
<?php
|
||||
$name = isset($_['name'])?$_['name']:'';
|
||||
//print_r($name);
|
||||
$id = isset($_['id'])?$_['id']:'';
|
||||
$addressbooks = isset($_['addressbooks'])?$_['addressbooks']:null;
|
||||
?>
|
||||
<div id="edit_name_dialog" title="Edit name">
|
||||
<form>
|
||||
<fieldset>
|
||||
<dl class="form">
|
||||
<?php if(!is_null($addressbooks)) {
|
||||
if(count($_['addressbooks'])==1) {
|
||||
?>
|
||||
<input type="hidden" id="aid" name="aid" value="<?php echo $_['addressbooks'][0]['id']; ?>">
|
||||
<?php } else { ?>
|
||||
<dt><label for="addressbook"><?php echo $l->t('Addressbook'); ?></label></dt>
|
||||
<dd>
|
||||
<select id="aid" name="aid" size="1">
|
||||
<?php echo OCP\html_select_options($_['addressbooks'], null, array('value'=>'id', 'label'=>'displayname')); ?>
|
||||
</select>
|
||||
</dd>
|
||||
<?php }} ?>
|
||||
<dt><label for="pre"><?php echo $l->t('Hon. prefixes'); ?></label></dt>
|
||||
<dd>
|
||||
<input name="pre" id="pre" value="<?php echo isset($name[3]) ? $name[3] : ''; ?>" type="text" list="prefixes" />
|
||||
<datalist id="prefixes">
|
||||
<option value="<?php echo $l->t('Miss'); ?>">
|
||||
<option value="<?php echo $l->t('Ms'); ?>">
|
||||
<option value="<?php echo $l->t('Mr'); ?>">
|
||||
<option value="<?php echo $l->t('Sir'); ?>">
|
||||
<option value="<?php echo $l->t('Mrs'); ?>">
|
||||
<option value="<?php echo $l->t('Dr'); ?>">
|
||||
</datalist>
|
||||
</dd>
|
||||
<dt><label for="giv"><?php echo $l->t('Given name'); ?></label></dt>
|
||||
<dd><input name="giv" id="giv" value="<?php echo isset($name[1]) ? $name[1] : ''; ?>" type="text" /></dd>
|
||||
<dt><label for="add"><?php echo $l->t('Additional names'); ?></label></dt>
|
||||
<dd><input name="add" id="add" value="<?php echo isset($name[2]) ? $name[2] : ''; ?>" type="text" /></dd>
|
||||
<dt><label for="fam"><?php echo $l->t('Family name'); ?></label></dt>
|
||||
<dd><input name="fam" id="fam" value="<?php echo isset($name[0]) ? $name[0] : ''; ?>" type="text" /></dd>
|
||||
<dt><label for="suf"><?php echo $l->t('Hon. suffixes'); ?></label></dt>
|
||||
<dd>
|
||||
<input name="suf" id="suf" value="<?php echo isset($name[4]) ? $name[4] : ''; ?>" type="text" list="suffixes" />
|
||||
<datalist id="suffixes">
|
||||
<option value="<?php echo $l->t('J.D.'); ?>">
|
||||
<option value="<?php echo $l->t('M.D.'); ?>">
|
||||
<option value="<?php echo $l->t('D.O.'); ?>">
|
||||
<option value="<?php echo $l->t('D.C.'); ?>">
|
||||
<option value="<?php echo $l->t('Ph.D.'); ?>">
|
||||
<option value="<?php echo $l->t('Esq.'); ?>">
|
||||
<option value="<?php echo $l->t('Jr.'); ?>">
|
||||
<option value="<?php echo $l->t('Sn.'); ?>">
|
||||
</datalist>
|
||||
</dd>
|
||||
</dl>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
@ -1,27 +0,0 @@
|
||||
<div id="contacts_import_dialog" title="<?php echo $l->t("Import a contacts file"); ?>">
|
||||
<div id="form_container">
|
||||
<input type="hidden" id="filename" value="<?php echo $_['filename'];?>">
|
||||
<input type="hidden" id="path" value="<?php echo $_['path'];?>">
|
||||
<input type="hidden" id="progresskey" value="<?php echo rand() ?>">
|
||||
<p class="bold" style="text-align:center;"><?php echo $l->t('Please choose the addressbook'); ?></p>
|
||||
<select style="width:100%;" id="contacts" name="contacts">
|
||||
<?php
|
||||
$contacts_options = OCA\Contacts\Addressbook::all(OCP\USER::getUser());
|
||||
$contacts_options[] = array('id'=>'newaddressbook', 'displayname'=>$l->t('create a new addressbook'));
|
||||
echo OCP\html_select_options($contacts_options, $contacts_options[0]['id'], array('value'=>'id', 'label'=>'displayname'));
|
||||
?>
|
||||
</select>
|
||||
<div id="newaddressbookform" style="display: none;">
|
||||
<input type="text" style="width: 97%;" placeholder="<?php echo $l->t('Name of new addressbook'); ?>" id="newaddressbook" name="newaddressbook">
|
||||
</div>
|
||||
<input type="button" value="<?php echo $l->t("Import");?>!" id="startimport">
|
||||
</div>
|
||||
<div id="progressbar_container" style="display: none">
|
||||
<p style="text-align:center;"><?php echo $l->t('Importing contacts'); ?></p>
|
||||
<div id="progressbar"></div>
|
||||
<div id="import_done" style="display: none;">
|
||||
<p style="text-align:center;"></p>
|
||||
<input type="button" value="<?php echo $l->t('Close'); ?>" id="import_done_button">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -1,11 +0,0 @@
|
||||
<div id="appsettings" class="popup bottomleft hidden"></div>
|
||||
<div id="firstrun" <?php if($_['has_contacts']) { echo 'class="hidden"';} ?>>
|
||||
<?php echo $l->t('<h3>You have no contacts in your addressbook.</h3>'
|
||||
. '<p>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.<br />You can also import by clicking '
|
||||
. 'on the import button at the bottom of the list.</p>') ?>
|
||||
<div id="selections">
|
||||
<input type="button" value="<?php echo $l->t('Add contact') ?>" onclick="OC.Contacts.Card.editNew()" />
|
||||
</div>
|
||||
</div>
|
@ -1,33 +0,0 @@
|
||||
<div id="selectaddressbook_dialog" title="<?php echo $l->t("Select Address Books"); ?>">
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('input.name,input.desc').on('focus', function(e) {
|
||||
$('#book_new').prop('checked', true);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<form>
|
||||
<table style="width: 100%">
|
||||
<?php foreach($_['addressbooks'] as $idx => $addressbook) { ?>
|
||||
<tr>
|
||||
<td>
|
||||
<input id="book_<?php echo $addressbook['id']; ?>" name="book" type="radio" value="<?php echo $addressbook['id']; ?>" <?php echo ($idx==0?'checked="checked"':'')?>>
|
||||
</td>
|
||||
<td>
|
||||
<label for="book_<?php echo $addressbook['id']; ?>"><?php echo $addressbook['displayname']; ?></label>
|
||||
</td>
|
||||
<td><?php echo $addressbook['description']; ?></td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
<tr>
|
||||
<td>
|
||||
<input id="book_new" name="book" type="radio" value="new">
|
||||
</td>
|
||||
<th>
|
||||
<input type="text" class="name" name="displayname" placeholder="<?php echo $l->t("Enter name"); ?>" />
|
||||
</th>
|
||||
<td><input type="text" class="desc" name="description" placeholder="<?php echo $l->t("Enter description"); ?>" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
Loading…
Reference in New Issue
Block a user