1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-11 22:24:32 +01:00

merge master into gallery

This commit is contained in:
Robin Appelman 2012-10-28 12:58:16 +01:00
commit 019fef640a
64 changed files with 2514 additions and 620 deletions

View File

@ -133,7 +133,7 @@ switch($name) {
$line = count($vcard->children) - 1;
// Apparently Sabre_VObject_Parameter doesn't do well with
// Apparently Sabre\VObject\Parameter doesn't do well with
// multiple values or I don't know how to do it. Tanghus.
foreach ($parameters as $key=>$element) {
if(is_array($element) /*&& strtoupper($key) == 'TYPE'*/) {
@ -142,13 +142,13 @@ foreach ($parameters as $key=>$element) {
foreach($element as $e) {
if($e != '' && !is_null($e)) {
if(trim($e)) {
$vcard->children[$line]->parameters[] = new Sabre_VObject_Parameter($key, $e);
$vcard->children[$line]->parameters[] = new Sabre\VObject\Parameter($key, $e);
}
}
}
} else {
if(trim($element)) {
$vcard->children[$line]->parameters[] = new Sabre_VObject_Parameter($key, $element);
$vcard->children[$line]->parameters[] = new Sabre\VObject\Parameter($key, $element);
}
}
}

View File

@ -112,7 +112,7 @@ if(!$value) {
$vcard->children[$line]->setValue($value);
$vcard->children[$line]->parameters = array();
$vcard->children[$line]->add(
new Sabre_VObject_Parameter('VALUE', 'DATE')
new Sabre\VObject\Parameter('VALUE', 'DATE')
);
debug('Setting value:'.$name.' '.$vcard->children[$line]);
break;
@ -135,7 +135,7 @@ if(!$value) {
foreach($parameter as $val) {
if(trim($val)) {
debug('Adding parameter: '.$key.'=>'.$val);
$vcard->children[$line]->add(new Sabre_VObject_Parameter(
$vcard->children[$line]->add(new Sabre\VObject\Parameter(
$key,
strtoupper(strip_tags($val)))
);
@ -143,7 +143,7 @@ if(!$value) {
}
} else {
if(trim($parameter)) {
$vcard->children[$line]->add(new Sabre_VObject_Parameter(
$vcard->children[$line]->add(new Sabre\VObject\Parameter(
$key,
strtoupper(strip_tags($parameter)))
);

View File

@ -34,7 +34,7 @@ function debug($msg, $tracelevel=0, $debuglevel=OCP\Util::DEBUG)
} else {
$call = debug_backtrace(false);
}
error_log('trace: '.print_r($call, true));
$call = $call[$tracelevel];
if($debuglevel !== false) {
OCP\Util::writeLog('contacts',

View File

@ -62,6 +62,7 @@ if($data) {
if($image->crop($x1, $y1, $w, $h)) {
if(($image->width() <= 200 && $image->height() <= 200)
|| $image->resize(200)) {
$vcard = OC_Contacts_App::getContactVCard($id);
if(!$vcard) {
OC_Cache::remove($tmpkey);
@ -80,9 +81,9 @@ if($data) {
}
$property->setValue($image->__toString());
$property->parameters[]
= new Sabre_VObject_Parameter('ENCODING', 'b');
= new Sabre\VObject\Parameter('ENCODING', 'b');
$property->parameters[]
= new Sabre_VObject_Parameter('TYPE', $image->mimeType());
= new Sabre\VObject\Parameter('TYPE', $image->mimeType());
$vcard->__set('PHOTO', $property);
} else {
OCP\Util::writeLog('contacts',

View File

@ -4,7 +4,7 @@
<name>Contacts</name>
<licence>AGPL</licence>
<author>Jakob Sack</author>
<require>4</require>
<require>4.9</require>
<shipped>true</shipped>
<description>Address book with CardDAV support.</description>
<standalone/>

View File

@ -70,5 +70,5 @@ $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, false);
$tmpl->assign('id', $id);
$tmpl->printPage();

View File

@ -156,8 +156,9 @@ OC.Contacts={
OC.Contacts.Card.deleteProperty(obj, 'single');
}
var goToUrl = function(obj) {
var url = OC.Contacts.propertyContainerFor(obj).find('#url').val();
if(url != '') {
var url = OC.Contacts.propertyContainerFor(obj).find('#url').val().toString();
// Check if the url is valid
if(new RegExp("[a-zA-Z0-9]+://([a-zA-Z0-9_]+:[a-zA-Z0-9_]+@)?([a-zA-Z0-9.-]+\\.[A-Za-z]{2,4})(:[0-9]+)?(/.*)?").test(url)) {
var newWindow = window.open(url,'_blank');
newWindow.focus();
}
@ -311,7 +312,7 @@ OC.Contacts={
update:function(params) { // params {cid:int, aid:int}
if(!params) { params = {}; }
$('#contacts li,#contacts h3').removeClass('active');
console.log('Card, cid: ' + params.cid + ' aid: ' + params.aid);
//console.log('Card, cid: ' + params.cid + ' aid: ' + params.aid);
var newid, bookid, firstitem;
if(!parseInt(params.cid) && !parseInt(params.aid)) {
firstitem = $('#contacts ul').find('li:first-child');
@ -328,7 +329,7 @@ OC.Contacts={
} else if(parseInt(params.cid) && !parseInt(params.aid)) {
newid = parseInt(params.cid);
var listitem = OC.Contacts.Contacts.getContact(newid); //$('#contacts li[data-id="'+newid+'"]');
console.log('Is contact in list? ' + listitem.length);
//console.log('Is contact in list? ' + listitem.length);
if(listitem.length) {
//bookid = parseInt($('#contacts li[data-id="'+newid+'"]').data('bookid'));
bookid = parseInt(OC.Contacts.Contacts.getContact(newid).data('bookid'));
@ -343,7 +344,7 @@ OC.Contacts={
bookid = parseInt($('#contacts h3').first().data('id'));
newid = parseInt($('#contacts').find('li[data-bookid="'+bookid+'"]').first().data('id'));
}
console.log('newid: ' + newid + ' bookid: ' +bookid);
//console.log('newid: ' + newid + ' bookid: ' +bookid);
var localLoadContact = function(newid, bookid) {
if($('.contacts li').length > 0) {
$.getJSON(OC.filePath('contacts', 'ajax', 'contact/details.php'),{'id':newid},function(jsondata){
@ -368,12 +369,12 @@ OC.Contacts={
// Make sure proper DOM is loaded.
if(newid) {
console.log('Loading card DOM');
//console.log('Loading card DOM');
localLoadContact(newid, bookid);
$('#firstrun').hide();
$('#card').show();
} else if(!newid) {
console.log('Loading intro');
//console.log('Loading intro');
// show intro page
$('#firstrun').show();
$('#card').hide();
@ -381,7 +382,7 @@ OC.Contacts={
$('#contacts h3[data-id="'+bookid+'"]').addClass('active');
},
setEnabled:function(enabled) {
console.log('setEnabled', enabled);
//console.log('setEnabled', enabled);
$('.contacts_property,.action').each(function () {
$(this).prop('disabled', !enabled);
OC.Contacts.Card.enabled = enabled;
@ -409,7 +410,7 @@ OC.Contacts={
return false;
},
add:function(n, fn, aid, isnew) { // add a new contact
console.log('Adding ' + fn);
//console.log('Adding ' + fn);
$('#firstrun').hide();
$('#card').show();
aid = aid?aid:$('#contacts h3.active').first().data('id');
@ -481,7 +482,7 @@ OC.Contacts={
message:t('contacts','Click to undo deletion of "') + curlistitem.find('a').text() + '"',
//timeout:5,
timeouthandler:function(contact) {
console.log('timeout');
//console.log('timeout');
OC.Contacts.Card.doDelete(contact.data('id'), true, function(res) {
if(!res) {
OC.Contacts.Contacts.insertContact({contact:contact});
@ -508,7 +509,7 @@ OC.Contacts={
}
if(OC.Contacts.Contacts.deletionQueue.indexOf(parseInt(id)) == -1 && removeFromQueue) {
console.log('returning');
//console.log('returning');
updateQueue(id, removeFromQueue);
if(typeof cb == 'function') {
cb(true);
@ -560,7 +561,7 @@ OC.Contacts={
$('#contacts_propertymenu_dropdown a[data-type="NOTE"]').parent().show();
}
var permissions = OC.Contacts.Card.permissions = parseInt(this.data.permissions);
console.log('permissions', permissions);
//console.log('permissions', permissions);
this.setEnabled(permissions == 0
|| permissions & OC.PERMISSION_UPDATE
|| permissions & OC.PERMISSION_DELETE);
@ -755,7 +756,7 @@ OC.Contacts={
q = q + '&id=' + this.id + '&name=' + name;
if(checksum != undefined && checksum != '') { // save
q = q + '&checksum=' + checksum;
console.log('Saving: ' + q);
//console.log('Saving: ' + q);
$(obj).attr('disabled', 'disabled');
$.post(OC.filePath('contacts', 'ajax', 'contact/saveproperty.php'),q,function(jsondata){
if(!jsondata) {
@ -781,7 +782,7 @@ OC.Contacts={
}
},'json');
} else { // add
console.log('Adding: ' + q);
//console.log('Adding: ' + q);
$(obj).attr('disabled', 'disabled');
$.post(OC.filePath('contacts', 'ajax', 'contact/addproperty.php'),q,function(jsondata){
if(jsondata.status == 'success'){
@ -848,7 +849,7 @@ OC.Contacts={
}
},
deleteProperty:function(obj, type) {
console.log('deleteProperty');
//console.log('deleteProperty');
if(!this.enabled) {
return;
}
@ -1306,7 +1307,7 @@ OC.Contacts={
return;
}
//alert('editPhoto: ' + tmpkey);
$.getJSON(OC.filePath('contacts', 'ajax', 'cropphoto.php'),{'tmpkey':tmpkey,'id':this.id, 'requesttoken':requesttoken},function(jsondata){
$.getJSON(OC.filePath('contacts', 'ajax', 'cropphoto.php'),{'tmpkey':tmpkey,'id':this.id, 'requesttoken':oc_requesttoken},function(jsondata){
if(jsondata.status == 'success'){
//alert(jsondata.data.page);
$('#edit_photo_dialog_img').html(jsondata.data.page);
@ -1654,7 +1655,7 @@ OC.Contacts={
}
var contact = params.data
? $('<li data-id="'+params.data.id+'" data-bookid="'+params.data.addressbookid
+ '" role="button"><a href="'+OC.linkTo('contacts', 'index.php')+'&id='
+ '" role="button"><a href="'+OC.linkTo('contacts', 'index.php')+'?id='
+ params.data.id+'" style="background: url('+OC.filePath('contacts', '', 'thumbnail.php')
+ '?id='+params.data.id+') no-repeat scroll 0% 0% transparent;">'
+ params.data.displayname+'</a></li>')
@ -1716,7 +1717,7 @@ OC.Contacts={
this.next(true);
},
nextAddressbook:function(reverse) {
console.log('nextAddressbook', reverse);
//console.log('nextAddressbook', reverse);
var curlistitem = this.getContact(OC.Contacts.Card.id);
var parent = curlistitem.parent('ul');
var newparent = reverse
@ -1736,7 +1737,7 @@ OC.Contacts={
}
},
previousAddressbook:function() {
console.log('previousAddressbook');
//console.log('previousAddressbook');
this.nextAddressbook(true);
},
// Reload the contacts list.
@ -1750,7 +1751,7 @@ OC.Contacts={
}
}
self = this;
console.log('update: ' + params.cid + ' ' + params.aid + ' ' + params.start);
//console.log('update: ' + params.cid + ' ' + params.aid + ' ' + params.start);
var firstrun = false;
var opts = {};
opts['startat'] = (params.start?params.start:0);
@ -1814,7 +1815,7 @@ OC.Contacts={
var bookid = $(this).data('bookid');
var numsiblings = $('.contacts li[data-bookid="'+bookid+'"]').length;
if (isInView && numsiblings >= self.batchnum) {
console.log('This would be a good time to load more contacts.');
//console.log('This would be a good time to load more contacts.');
OC.Contacts.Contacts.update({cid:params.cid, aid:bookid, start:$('#contacts li[data-bookid="'+bookid+'"]').length});
}
});
@ -1850,7 +1851,7 @@ OC.Contacts={
scrollTo:function(id){
var item = $('#contacts li[data-id="'+id+'"]');
if(item && $.isNumeric(item.offset().top)) {
console.log('scrollTo ' + parseInt(item.offset().top));
//console.log('scrollTo ' + parseInt(item.offset().top));
$('#contacts').animate({
scrollTop: parseInt(item.offset()).top-40}, 'slow','swing');
}
@ -2032,7 +2033,7 @@ $(document).ready(function(){
//}
}
};
xhr.open('POST', OC.filePath('contacts', 'ajax', 'uploadphoto.php')+'?id='+OC.Contacts.Card.id+'&requesttoken='+requesttoken+'&imagefile='+encodeURIComponent(file.name), true);
xhr.open('POST', OC.filePath('contacts', 'ajax', 'uploadphoto.php')+'?id='+OC.Contacts.Card.id+'&requesttoken='+oc_requesttoken+'&imagefile='+encodeURIComponent(file.name), true);
xhr.setRequestHeader('Cache-Control', 'no-cache');
xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
xhr.setRequestHeader('X_FILE_NAME', encodeURIComponent(file.name));
@ -2107,7 +2108,7 @@ $(document).ready(function(){
return false;
})
.error(function(jqXHR, textStatus, errorThrown) {
console.log(textStatus);
//console.log(textStatus);
OC.Contacts.notify({message:errorThrown + ': ' + textStatus,});
});
uploadingFiles[fileName] = jqXHR;
@ -2132,7 +2133,7 @@ $(document).ready(function(){
}
},
fail: function(e, data) {
console.log('fail');
//console.log('fail');
OC.Contacts.notify({message:data.errorThrown + ': ' + data.textStatus});
// TODO: Remove file from upload queue.
},
@ -2217,13 +2218,13 @@ $(document).ready(function(){
setTimeout(function() {
importFiles(aid, uploadingFiles);
}, 500);
console.log('aid ' + aid);
//console.log('aid ' + aid);
});
} else {
setTimeout(function() {
importFiles(aid, uploadingFiles);
}, 500);
console.log('aid ' + aid);
//console.log('aid ' + aid);
$(this).dialog('close');
}
},

View File

@ -3,7 +3,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
init:function() {
this.Addressbook.adrsettings = $('.addressbooks-settings').first();
this.Addressbook.adractions = $('#contacts-settings').find('div.actions');
console.log('actions: ' + this.Addressbook.adractions.length);
//console.log('actions: ' + this.Addressbook.adractions.length);
OC.Share.loadIcons('addressbook');
},
Addressbook:{
@ -13,7 +13,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
},
doActivate:function(id, tgt) {
var active = tgt.is(':checked');
console.log('doActivate: ', id, active);
//console.log('doActivate: ', id, active);
$.post(OC.filePath('contacts', 'ajax', 'addressbook/activate.php'), {id: id, active: Number(active)}, function(jsondata) {
if (jsondata.status == 'success'){
if(!active) {
@ -22,14 +22,14 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
OC.Contacts.Contacts.update();
}
} else {
console.log('Error:', jsondata.data.message);
//console.log('Error:', jsondata.data.message);
OC.Contacts.notify(t('contacts', 'Error') + ': ' + jsondata.data.message);
tgt.checked = !active;
}
});
},
doDelete:function(id) {
console.log('doDelete: ', id);
//console.log('doDelete: ', id);
var check = confirm('Do you really want to delete this address book?');
if(check == false){
return false;
@ -49,7 +49,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
}
},
doEdit:function(id) {
console.log('doEdit: ', id);
//console.log('doEdit: ', id);
var owner = this.adrsettings.find('[data-id="'+id+'"]').data('owner');
var actions = ['description', 'save', 'cancel'];
if(owner == OC.currentUser || id === 'new') {
@ -59,7 +59,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
var name = this.adrsettings.find('[data-id="'+id+'"]').find('.name').text();
var description = this.adrsettings.find('[data-id="'+id+'"]').find('.description').text();
var active = this.adrsettings.find('[data-id="'+id+'"]').find(':checkbox').is(':checked');
console.log('name, desc', name, description);
//console.log('name, desc', name, description);
this.adractions.find('.active').prop('checked', active);
this.adractions.find('.name').val(name);
this.adractions.find('.description').val(description);
@ -70,7 +70,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
var description = this.adractions.find('.description').val();
var active = this.adractions.find('.active').is(':checked');
var id = this.adractions.data('id');
console.log('doSave:', id, name, description, active);
//console.log('doSave:', id, name, description, active);
if(name.length == 0) {
OC.dialogs.alert(t('contacts', 'Displayname cannot be empty.'), t('contacts', 'Error'));
@ -115,7 +115,7 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
});
},
showLink:function(id, row, link) {
console.log('row:', row.length);
//console.log('row:', row.length);
row.next('tr.link').remove();
var linkrow = $('<tr class="link"><td colspan="5"><input style="width: 95%;" type="text" value="'+link+'" /></td>'
+ '<td colspan="3"><button>'+t('contacts', 'Cancel')+'</button></td></tr>').insertAfter(row);
@ -125,15 +125,19 @@ OC.Contacts.Settings = OC.Contacts.Settings || {
});
},
showCardDAV:function(id) {
console.log('showCardDAV: ', id);
//console.log('showCardDAV: ', id);
var row = this.adrsettings.find('tr[data-id="'+id+'"]');
this.showLink(id, row, totalurl+'/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(row.data('uri')));
var owner = row.data('owner');
var uri = (owner === oc_current_user ) ? row.data('uri') : row.data('uri') + '_shared_by_' + owner;
this.showLink(id, row, totalurl+'/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(uri));
},
showVCF:function(id) {
console.log('showVCF: ', id);
//console.log('showVCF: ', id);
var row = this.adrsettings.find('tr[data-id="'+id+'"]');
var link = totalurl+'/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(row.data('uri'))+'?export';
console.log(link);
var owner = row.data('owner');
var uri = (owner === oc_current_user ) ? row.data('uri') : row.data('uri') + '_shared_by_' + owner;
var link = totalurl+'/'+encodeURIComponent(oc_current_user)+'/'+encodeURIComponent(uri)+'?export';
//console.log(link);
this.showLink(id, row, link);
}
}

View File

@ -4,6 +4,10 @@
"At least one of the address fields has to be filled out." => "يجب ملء على الاقل خانه واحده من العنوان.",
"Information about vCard is incorrect. Please reload the page." => "المعلومات الموجودة في ال vCard غير صحيحة. الرجاء إعادة تحديث الصفحة.",
"Contacts" => "المعارف",
"Download" => "انزال",
"Edit" => "تعديل",
"Delete" => "حذف",
"Cancel" => "الغاء",
"This is not your addressbook." => "هذا ليس دفتر عناوينك.",
"Contact could not be found." => "لم يتم العثور على الشخص.",
"Work" => "الوظيفة",
@ -18,7 +22,6 @@
"Contact" => "معرفه",
"Add Contact" => "أضف شخص ",
"Organization" => "المؤسسة",
"Delete" => "حذف",
"Preferred" => "مفضل",
"Phone" => "الهاتف",
"Email" => "البريد الالكتروني",
@ -34,9 +37,6 @@
"Country" => "البلد",
"Addressbook" => "كتاب العناوين",
"Addressbooks" => "كتب العناوين",
"Download" => "انزال",
"Edit" => "تعديل",
"New Address Book" => "كتاب عناوين جديد",
"Save" => "حفظ",
"Cancel" => "الغاء"
"Save" => "حفظ"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "No implementada",
"Couldn't get a valid address." => "No s'ha pogut obtenir una adreça vàlida.",
"Error" => "Error",
"Please enter an email address." => "Si us plau, introdueixi una adreça de correu electrònic.",
"Enter name" => "Escriviu un nom",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format personalitzat, Nom curt, Nom sencer, Invertit o Invertit amb coma",
"Select type" => "Seleccioneu un tipus",
"Select photo" => "Selecciona una foto",
"You do not have permission to add contacts to " => "No teniu permisos per afegir contactes a ",
"Please select one of your own address books." => "Seleccioneu una de les vostres llibretes d'adreces",
"Permission error" => "Error de permisos",
"Click to undo deletion of \"" => "Feu clic per desfer l'eliminació de \"",
"Cancelled deletion of: \"" => "Eliminació Cancel·lada : \"",
"This property has to be non-empty." => "Aquesta propietat no pot ser buida.",
"Couldn't serialize elements." => "No s'han pogut serialitzar els elements.",
"Unknown error. Please check logs." => "Error desconegut. Si us plau, revisa els registres.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' s'ha cridat sense argument de tipus. Informeu-ne a bugs.owncloud.org",
"Edit name" => "Edita el nom",
"No files selected for upload." => "No s'han seleccionat fitxers per a la pujada.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fitxer que intenteu pujar excedeix la mida màxima de pujada en aquest servidor.",
"Error loading profile picture." => "Error en carregar la imatge de perfil.",
"Select type" => "Seleccioneu un tipus",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Heu marcat eliminar alguns contactes, però encara no s'han eliminat. Espereu mentre s'esborren.",
"Do you want to merge these address books?" => "Voleu fusionar aquestes llibretes d'adreces?",
"Shared by " => "Compartit per",
"Upload too large" => "La pujada és massa gran",
"Only image files can be used as profile picture." => "Només els arxius d'imatge es poden utilitzar com a foto de perfil.",
"Wrong file type" => "Tipus d'arxiu incorrecte",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "El seu navegador no suporta la càrrega de AJAX. Feu clic a la foto de perfil per seleccionar la foto que voleu carregar.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes",
"Upload Error" => "Error en la pujada",
"Upload too large" => "La pujada és massa gran",
"Pending" => "Pendent",
"Import done" => "S'ha importat",
"Not all files uploaded. Retrying..." => "No s'han pujat tots els fitxers. Es reintenta...",
@ -76,6 +87,14 @@
" imported, " => " importat, ",
" failed." => " fallada.",
"Displayname cannot be empty." => "El nom a mostrar no pot ser buit",
"Show CardDav link" => "Mostra l'enllaç CardDav",
"Show read-only VCF link" => "Mostra l'enllaç VCF només de lectura",
"Download" => "Baixa",
"Edit" => "Edita",
"Delete" => "Suprimeix",
"Cancel" => "Cancel·la",
"More..." => "Més...",
"Less..." => "Menys...",
"You do not have the permissions to read this addressbook." => "No teniu permisos per llegir aquesta llibreta d'adreces.",
"You do not have the permissions to update this addressbook." => "No teniu permisos per actualitzar aquesta llibreta d'adreces.",
"There was an error updating the addressbook." => "S'ha produït un error en actualitzar la llibreta d'adreces.",
@ -150,10 +169,8 @@
"Edit current photo" => "Edita la foto actual",
"Upload new photo" => "Carrega una foto nova",
"Select photo from ownCloud" => "Selecciona una foto de ownCloud",
"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",
"Organization" => "Organització",
"Delete" => "Suprimeix",
"Nickname" => "Sobrenom",
"Enter nickname" => "Escriviu el sobrenom",
"Web site" => "Adreça web",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Afegeix un contacte",
"Select Address Books" => "Selecccioneu llibretes d'adreces",
"Enter name" => "Escriviu un nom",
"Enter description" => "Escriviu una descripció",
"CardDAV syncing addresses" => "Adreces de sincronització CardDAV",
"more info" => "més informació",
"Primary address (Kontact et al)" => "Adreça primària (Kontact i al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Llibretes d'adreces",
"Show CardDav link" => "Mostra l'enllaç CardDav",
"Show read-only VCF link" => "Mostra l'enllaç VCF només de lectura",
"Share" => "Comparteix",
"Download" => "Baixa",
"Edit" => "Edita",
"New Address Book" => "Nova llibreta d'adreces",
"Name" => "Nom",
"Description" => "Descripció",
"Save" => "Desa",
"Cancel" => "Cancel·la",
"More..." => "Més..."
"Save" => "Desa"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Neimplementováno",
"Couldn't get a valid address." => "Nelze získat platnou adresu.",
"Error" => "Chyba",
"Please enter an email address." => "Zadejte, prosím, adresu e-mailu.",
"Enter name" => "Zadejte jméno",
"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",
"Select type" => "Vybrat typ",
"Select photo" => "Vybrat fotku",
"You do not have permission to add contacts to " => "Nemáte práva přidat kontakt do ",
"Please select one of your own address books." => "Prosím vyberte jedu z Vašich knih adres.",
"Permission error" => "Chyba přístupových práv",
"Click to undo deletion of \"" => "Klikněte pro zrušení smazání \"",
"Cancelled deletion of: \"" => "Zrušeno mazání: \"",
"This property has to be non-empty." => "Tato vlastnost musí být zadána.",
"Couldn't serialize elements." => "Prvky nelze převést.",
"Unknown error. Please check logs." => "Neznámá chyba. Zkontrolujte záznamy.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' voláno bez argumentu. Prosím oznamte chybu na bugs.owncloud.org",
"Edit name" => "Upravit jméno",
"No files selected for upload." => "Žádné soubory nebyly vybrány k nahrání.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Soubor, který se pokoušíte odeslat, přesahuje maximální povolenou velikost.",
"Error loading profile picture." => "Chyba při načítání obrázku profilu.",
"Select type" => "Vybrat typ",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Některé kontakty jsou označeny ke smazání, ale nejsou smazány. Počkejte, prosím, na dokončení operace.",
"Do you want to merge these address books?" => "Chcete spojit tyto knihy adres?",
"Shared by " => "Sdílí",
"Upload too large" => "Odesílaný soubor je příliš velký",
"Only image files can be used as profile picture." => "Jako profilový obrázek lze použít pouze soubory obrázků.",
"Wrong file type" => "Špatný typ souboru",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Váš prohlížeč nepodporuje odesílání skrze AJAX. Prosím klikněte na profilový obrázek pro výběr fotografie k odeslání.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů",
"Upload Error" => "Chyba odesílání",
"Upload too large" => "Odesílaný soubor je příliš velký",
"Pending" => "Nevyřízené",
"Import done" => "Import dokončen",
"Not all files uploaded. Retrying..." => "Všechny soubory nebyly odeslány. Opakuji...",
@ -76,6 +87,14 @@
" imported, " => " importováno, ",
" failed." => " selhalo.",
"Displayname cannot be empty." => "Zobrazované jméno nemůže být prázdné.",
"Show CardDav link" => "Zobrazit odkaz CardDAV",
"Show read-only VCF link" => "Zobrazit odkaz VCF pouze pro čtení",
"Download" => "Stáhnout",
"Edit" => "Upravit",
"Delete" => "Smazat",
"Cancel" => "Zrušit",
"More..." => "Více...",
"Less..." => "Méně...",
"You do not have the permissions to read this addressbook." => "Nemáte práva ke čtení této knihy adres.",
"You do not have the permissions to update this addressbook." => "Nemáte práva pro aktualizaci této knihy adres.",
"There was an error updating the addressbook." => "Nastala chyba při aktualizaci knihy adres.",
@ -150,10 +169,8 @@
"Edit current photo" => "Upravit současnou fotku",
"Upload new photo" => "Nahrát novou fotku",
"Select photo from ownCloud" => "Vybrat fotku z ownCloudu",
"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",
"Organization" => "Organizace",
"Delete" => "Smazat",
"Nickname" => "Přezdívka",
"Enter nickname" => "Zadejte přezdívku",
"Web site" => "Webová stránka",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Přidat kontakt",
"Select Address Books" => "Vybrat knihu adres",
"Enter name" => "Zadejte jméno",
"Enter description" => "Zadejte popis",
"CardDAV syncing addresses" => "Adresy pro synchronizaci pomocí CardDAV",
"more info" => "víc informací",
"Primary address (Kontact et al)" => "Hlavní adresa (Kontakt etc.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Knihy adres",
"Show CardDav link" => "Zobrazit odkaz CardDAV",
"Show read-only VCF link" => "Zobrazit odkaz VCF pouze pro čtení",
"Share" => "Sdílet",
"Download" => "Stáhnout",
"Edit" => "Upravit",
"New Address Book" => "Nová kniha adres",
"Name" => "Název",
"Description" => "Popis",
"Save" => "Uložit",
"Cancel" => "Zrušit",
"More..." => "Více..."
"Save" => "Uložit"
);

View File

@ -50,23 +50,52 @@
"Not implemented" => "Ikke implementeret",
"Couldn't get a valid address." => "Kunne ikke finde en gyldig adresse.",
"Error" => "Fejl",
"Please enter an email address." => "Indtast venligst en email adresse",
"Enter name" => "Indtast navn",
"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",
"Select type" => "Vælg type",
"Select photo" => "Vælg foto",
"You do not have permission to add contacts to " => "Du har ikke rettigheder til at tilføje kontaktpersoner til ",
"Please select one of your own address books." => "Vælg venligst en af dine egne adressebøger.",
"Permission error" => "Manglende rettigheder",
"Click to undo deletion of \"" => "Klik for at fortryde sletning af \"",
"Cancelled deletion of: \"" => "Annullerede sletning af: \"",
"This property has to be non-empty." => "Dette felt må ikke være tomt.",
"Couldn't serialize elements." => "Kunne ikke serialisere elementerne.",
"Unknown error. Please check logs." => "Ukendt fejl. Tjek venligst log.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' kaldet uden typeargument. Indrapporter fejl på bugs.owncloud.org",
"Edit name" => "Rediger navn",
"No files selected for upload." => "Der er ikke valgt nogen filer at uploade.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Dr.",
"Error loading profile picture." => "Fejl ved indlæsning af profilbillede",
"Select type" => "Vælg type",
"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.",
"Do you want to merge these address books?" => "Vil du fusionere disse adressebøger?",
"Shared by " => "Delt af",
"Upload too large" => "Upload er for stor",
"Only image files can be used as profile picture." => "Kun billedfiler kan bruges som profilbilleder",
"Wrong file type" => "Forkert filtype",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Din browser understøtter ikke AJAX upload. Tryk venligst på profilbilledet for at vælge et billede som skal uploades.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke uploade din fil - det er enten en mappe eller en fil med et indhold på 0 bytes.",
"Upload Error" => "Fejl i upload",
"Pending" => "Afventer",
"Import done" => "Import fuldført",
"Not all files uploaded. Retrying..." => "Nogle filer blev ikke uploadet. Forsøger igen...",
"Something went wrong with the upload, please retry." => "Der opstod en fejl under upload. Forsøg igen.",
"Importing..." => "Importerer...",
"The address book name cannot be empty." => "Adressebogens navn kan ikke være tomt.",
"Result: " => "Resultat:",
" imported, " => " importeret ",
" failed." => " fejl.",
"Displayname cannot be empty." => "Brugernavn må ikke være tomt.",
"Show CardDav link" => "Vis CardDav link",
"Show read-only VCF link" => "Vis skrivebeskyttet VCF link",
"Download" => "Download",
"Edit" => "Rediger",
"Delete" => "Slet",
"Cancel" => "Fortryd",
"More..." => "Mere...",
"Less..." => "Mindre...",
"You do not have the permissions to read this addressbook." => "Du har ikke rettigheder til at se denne adressebog.",
"You do not have the permissions to update this addressbook." => "Du har ikke rettigheder til at opdatere denne adressebog",
"There was an error updating the addressbook." => "Du har ikke rettigheder til at opdatere denne kontaktperson",
"You do not have the permissions to delete this addressbook." => "Du har ikke rettigheder til at slette denne adressebog",
@ -140,10 +169,8 @@
"Edit current photo" => "Rediger nuværende foto",
"Upload new photo" => "Upload nyt foto",
"Select photo from ownCloud" => "Vælg foto fra ownCloud",
"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.",
"Organization" => "Organisation",
"Delete" => "Slet",
"Nickname" => "Kaldenavn",
"Enter nickname" => "Indtast kaldenavn",
"Web site" => "Hjemmeside",
@ -212,24 +239,18 @@
"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>",
"Add contact" => "Tilføj kontaktpeson.",
"Select Address Books" => "Vælg adressebog",
"Enter name" => "Indtast navn",
"Enter description" => "Indtast beskrivelse",
"CardDAV syncing addresses" => "CardDAV synkroniserings adresse",
"more info" => "mere info",
"Primary address (Kontact et al)" => "Primær adresse (Kontak m. fl.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressebøger",
"Show CardDav link" => "Vis CardDav link",
"Show read-only VCF link" => "Vis skrivebeskyttet VCF link",
"Share" => "Del",
"Download" => "Download",
"Edit" => "Rediger",
"New Address Book" => "Ny adressebog",
"Name" => "Navn",
"Description" => "Beskrivelse",
"Save" => "Gem",
"Cancel" => "Fortryd",
"More..." => "Mere..."
"Save" => "Gem"
);

View File

@ -1,7 +1,7 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "(De-)Aktivierung des Adressbuches fehlgeschlagen",
"id is not set." => "ID ist nicht angegeben.",
"Cannot update addressbook with an empty name." => "Adressbuch kann nicht mir leeren Namen aktualisiert werden.",
"Cannot update addressbook with an empty name." => "Das Adressbuch kann nicht mit einem leeren Namen aktualisiert werden.",
"No ID provided" => "Keine ID angegeben",
"Error setting checksum." => "Fehler beim Setzen der Prüfsumme.",
"No categories selected for deletion." => "Keine Kategorien zum Löschen ausgewählt.",
@ -14,7 +14,7 @@
"Trying to add duplicate property: " => "Versuche doppelte Eigenschaft hinzuzufügen: ",
"Missing IM parameter." => "IM-Parameter fehlt.",
"Unknown IM: " => "IM unbekannt:",
"Information about vCard is incorrect. Please reload the page." => "Die Information der vCard ist fehlerhaft. Bitte aktualisieren Sie die Seite.",
"Information about vCard is incorrect. Please reload the page." => "Die Information der vCard ist fehlerhaft. Bitte aktualisiere die Seite.",
"Missing ID" => "Fehlende ID",
"Error parsing VCard for ID: \"" => "Fehler beim Einlesen der VCard für die ID: \"",
"checksum is not set." => "Keine Prüfsumme angegeben.",
@ -24,8 +24,8 @@
"Error reading contact photo." => "Fehler beim Auslesen des Kontaktfotos.",
"Error saving temporary file." => "Fehler beim Speichern der temporären Datei.",
"The loading photo is not valid." => "Das Kontaktfoto ist fehlerhaft.",
"Contact ID is missing." => "Keine Kontakt-ID angegeben.",
"No photo path was submitted." => "Kein Foto-Pfad übermittelt.",
"Contact ID is missing." => "Kontakt-ID ist nicht angegeben.",
"No photo path was submitted." => "Kein Foto-Pfad angegeben.",
"File doesn't exist:" => "Datei existiert nicht: ",
"Error loading image." => "Fehler beim Laden des Bildes.",
"Error getting contact object." => "Fehler beim Abruf des Kontakt-Objektes.",
@ -50,39 +50,58 @@
"Not implemented" => "Nicht verfügbar",
"Couldn't get a valid address." => "Konnte keine gültige Adresse abrufen.",
"Error" => "Fehler",
"You do not have permission to add contacts to " => "Sie besitzen nicht die erforderlichen Rechte, um Kontakte hinzuzufügen",
"Please select one of your own address books." => "Bitte wählen Sie eines Ihrer Adressbücher aus.",
"Please enter an email address." => "Bitte gib eine E-Mailadresse an.",
"Enter name" => "Name eingeben",
"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",
"Select type" => "Wähle Typ",
"Select photo" => "Wähle ein Foto",
"You do not have permission to add contacts to " => "Du besitzt nicht die erforderlichen Rechte, um Kontakte hinzuzufügen",
"Please select one of your own address books." => "Bitte wähle eines Deiner Adressbücher aus.",
"Permission error" => "Berechtigungsfehler",
"Click to undo deletion of \"" => "Klicke hier für die Wiederherstellung von \"",
"Cancelled deletion of: \"" => "Abbrechen des Löschens von: \"",
"This property has to be non-empty." => "Dieses Feld darf nicht leer sein.",
"Couldn't serialize elements." => "Konnte Elemente nicht serialisieren",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' wurde ohne Argumente aufgerufen. Bitte melden Sie dies auf bugs.owncloud.org",
"Unknown error. Please check logs." => "Unbekannter Fehler. Bitte Logs überprüfen",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' wurde ohne Argumente aufgerufen. Bitte melde dies auf bugs.owncloud.org",
"Edit name" => "Name ändern",
"No files selected for upload." => "Keine Datei(en) zum Hochladen ausgewählt.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Du hochladen möchtest, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
"Error loading profile picture." => "Fehler beim Laden des Profilbildes.",
"Select type" => "Wähle Typ",
"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.",
"Do you want to merge these address books?" => "Möchten Sie diese Adressbücher zusammenführen?",
"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei konnte nicht hoch geladen werden, weil es sich um einen Ordner handelt oder die Datei leer ist.",
"Upload Error" => "Fehler beim Hochladen",
"Do you want to merge these address books?" => "Möchtest Du diese Adressbücher zusammenführen?",
"Shared by " => "Freigegeben von ",
"Upload too large" => "Die hochgeladene Datei ist zu groß",
"Only image files can be used as profile picture." => "Nur Bilder können als Profilbild genutzt werden.",
"Wrong file type" => "Falscher Dateityp",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Der verwendete Browser unterstützt keinen Upload via AJAX. Bitte das Profilbild anklicken um ein Foto hochzuladen. ",
"Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei konnte nicht hochgeladen werden, weil es sich um einen Ordner handelt oder die Datei leer ist.",
"Upload Error" => "Fehler beim Hochladen",
"Pending" => "Ausstehend",
"Import done" => "Import ausgeführt",
"Not all files uploaded. Retrying..." => "Es wurden nicht alle Dateien hochgeladen. Versuche erneut...",
"Something went wrong with the upload, please retry." => "Beim Hochladen ist etwas schiefgegangen. Bitte erneut versuchen.",
"Something went wrong with the upload, please retry." => "Beim Hochladen ist etwas schiefgegangen. Bitte versuche es erneut.",
"Importing..." => "Importiere...",
"The address book name cannot be empty." => "Der Name des Adressbuches darf nicht leer sein.",
"Result: " => "Ergebnis: ",
" imported, " => " importiert, ",
" failed." => " fehlgeschlagen.",
"Displayname cannot be empty." => "Der Anzeigename darf nicht leer sein.",
"You do not have the permissions to read this addressbook." => "Sie haben keine Leseberechtigung für dieses Adressbuch.",
"You do not have the permissions to update this addressbook." => "Sie verfügen nicht über die notwendigen Rechte, das Adressbuch zu aktualisieren.",
"Show CardDav link" => "CardDav-Link anzeigen",
"Show read-only VCF link" => "Schreibgeschützten VCF-Link anzeigen",
"Download" => "Herunterladen",
"Edit" => "Bearbeiten",
"Delete" => "Löschen",
"Cancel" => "Abbrechen",
"More..." => "Mehr...",
"Less..." => "Weniger...",
"You do not have the permissions to read this addressbook." => "Du besitzt keine Leseberechtigung für dieses Adressbuch.",
"You do not have the permissions to update this addressbook." => "Du verfügst nicht über die notwendigen Rechte, das Adressbuch zu aktualisieren.",
"There was an error updating the addressbook." => "Ein Fehler ist bei der Aktualisierung des Adressbuches aufgetreten.",
"You do not have the permissions to delete this addressbook." => "Sie haben nicht die Erlaubnis, dieses Adressbuch zu löschen.",
"You do not have the permissions to delete this addressbook." => "Du besitzt nicht die erforderlichen Rechte, dieses Adressbuch zu löschen.",
"There was an error deleting this addressbook." => "Beim Löschen des Adressbuches ist ein Fehler aufgetreten.",
"Addressbook not found: " => "Adressbuch nicht gefunden:",
"This is not your addressbook." => "Dies ist nicht Ihr Adressbuch.",
"This is not your addressbook." => "Dies ist nicht Dein Adressbuch.",
"Contact could not be found." => "Kontakt konnte nicht gefunden werden.",
"Jabber" => "Jabber",
"AIM" => "AIM",
@ -122,14 +141,14 @@
"Questions" => "Fragen",
"{name}'s Birthday" => "Geburtstag von {name}",
"Contact" => "Kontakt",
"You do not have the permissions to add contacts to this addressbook." => "Sie haben nicht die Berechtigung, diesem Adressbuch Kontakte hinzuzufügen.",
"You do not have the permissions to add contacts to this addressbook." => "Du besitzt nicht die erforderlichen Rechte, diesem Adressbuch Kontakte hinzuzufügen.",
"Could not find the vCard with ID." => "Die vCard mit der ID konnte nicht gefunden werden.",
"You do not have the permissions to edit this contact." => "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakt zu bearbeiten.",
"You do not have the permissions to edit this contact." => "Du besitzt nicht die erforderlichen Rechte, um diesen Kontakt zu bearbeiten.",
"Could not find the vCard with ID: " => "Die vCard mit der folgenden ID konnte nicht gefunden werden:",
"Could not find the Addressbook with ID: " => "Konnte das Adressbuch mit der folgenden ID nicht finden:",
"You do not have the permissions to delete this contact." => "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakte zu löschen.",
"You do not have the permissions to delete this contact." => "Du besitzt nicht die erforderlichen Rechte, um diesen Kontakte zu löschen.",
"There was an error deleting this contact." => "Beim Löschen des Kontaktes ist ein Fehler aufgetreten.",
"Add Contact" => "Kontakt hinzufügen",
"Add Contact" => "Kontakt hinzufügenff",
"Import" => "Importieren",
"Settings" => "Einstellungen",
"Close" => "Schließen",
@ -145,15 +164,13 @@
"Add new contact" => "Neuen Kontakt hinzufügen",
"Add new addressbook" => "Neues Adressbuch hinzufügen",
"Delete current contact" => "Aktuellen Kontakt löschen",
"Drop photo to upload" => "Ziehen Sie ein Foto zum Hochladen hierher",
"Drop photo to upload" => "Ziehe ein Foto hierher, um es hochzuladen",
"Delete current photo" => "Derzeitiges Foto löschen",
"Edit current photo" => "Foto ändern",
"Edit current photo" => "Derzeitiges Foto ändern",
"Upload new photo" => "Neues Foto hochladen",
"Select photo from ownCloud" => "Foto aus der ownCloud auswählen",
"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",
"Organization" => "Organisation",
"Delete" => "Löschen",
"Nickname" => "Spitzname",
"Enter nickname" => "Spitzname angeben",
"Web site" => "Webseite",
@ -164,9 +181,9 @@
"Separate groups with commas" => "Gruppen mit Komma getrennt",
"Edit groups" => "Gruppen editieren",
"Preferred" => "Bevorzugt",
"Please specify a valid email address." => "Bitte eine gültige E-Mail-Adresse angeben.",
"Please specify a valid email address." => "Bitte trage eine gültige E-Mail-Adresse ein.",
"Enter email address" => "E-Mail-Adresse angeben",
"Mail to address" => "E-Mail an diese Adresse schreiben",
"Mail to address" => "E-Mail an diese Adresse schicken",
"Delete email address" => "E-Mail-Adresse löschen",
"Enter phone number" => "Telefonnummer angeben",
"Delete phone number" => "Telefonnummer löschen",
@ -188,7 +205,7 @@
"Type" => "Typ",
"PO Box" => "Postfach",
"Street address" => "Straßenanschrift",
"Street and number" => "Straße und Nummer",
"Street and number" => "Straße und Hausnummer",
"Extended" => "Erweitert",
"Apartment number etc." => "Wohnungsnummer usw.",
"City" => "Stadt",
@ -222,25 +239,18 @@
"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 haben 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>",
"<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>",
"Add contact" => "Kontakt hinzufügen",
"Select Address Books" => "Wähle Adressbuch",
"Enter name" => "Name eingeben",
"Enter description" => "Beschreibung eingeben",
"CardDAV syncing addresses" => "CardDAV Sync-Adressen",
"more info" => "weitere Informationen",
"Primary address (Kontact et al)" => "Primäre Adresse (für Kontakt o.ä.)",
"iOS/OS X" => "iOS / OS X",
"Addressbooks" => "Adressbücher",
"Show CardDav link" => "CardDav-Link anzeigen",
"Show read-only VCF link" => "Schreibgeschützten VCF-Link anzeigen",
"Share" => "Teilen",
"Download" => "Herunterladen",
"Edit" => "Bearbeiten",
"New Address Book" => "Neues Adressbuch",
"Name" => "Name",
"Description" => "Beschreibung",
"Save" => "Speichern",
"Cancel" => "Abbrechen",
"More..." => "Mehr..."
"Save" => "Speichern"
);

256
l10n/de_DE.php Normal file
View File

@ -0,0 +1,256 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "(De-)Aktivierung des Adressbuches fehlgeschlagen",
"id is not set." => "ID ist nicht angegeben.",
"Cannot update addressbook with an empty name." => "Das Adressbuch kann nicht mit einem leeren Namen aktualisiert werden.",
"No ID provided" => "Keine ID angegeben",
"Error setting checksum." => "Fehler beim Setzen der Prüfsumme.",
"No categories selected for deletion." => "Keine Kategorien zum Löschen ausgewählt.",
"No address books found." => "Keine Adressbücher gefunden.",
"No contacts found." => "Keine Kontakte gefunden.",
"element name is not set." => "Kein Name für das Element angegeben.",
"Could not parse contact: " => "Konnte folgenden Kontakt nicht verarbeiten:",
"Cannot add empty property." => "Feld darf nicht leer sein.",
"At least one of the address fields has to be filled out." => "Mindestens eines der Adressfelder muss ausgefüllt werden.",
"Trying to add duplicate property: " => "Versuche doppelte Eigenschaft hinzuzufügen: ",
"Missing IM parameter." => "IM-Parameter fehlt.",
"Unknown IM: " => "IM unbekannt:",
"Information about vCard is incorrect. Please reload the page." => "Die Information der vCard ist fehlerhaft. Bitte aktualisieren Sie die Seite.",
"Missing ID" => "Fehlende ID",
"Error parsing VCard for ID: \"" => "Fehler beim Einlesen der VCard für die ID: \"",
"checksum is not set." => "Keine Prüfsumme angegeben.",
"Information about vCard is incorrect. Please reload the page: " => "Die Informationen zur vCard sind fehlerhaft. Bitte Seite neu laden: ",
"Something went FUBAR. " => "Irgendwas ist hier so richtig schiefgelaufen. ",
"No contact ID was submitted." => "Es wurde keine Kontakt-ID übermittelt.",
"Error reading contact photo." => "Fehler beim Auslesen des Kontaktfotos.",
"Error saving temporary file." => "Fehler beim Speichern der temporären Datei.",
"The loading photo is not valid." => "Das Kontaktfoto ist fehlerhaft.",
"Contact ID is missing." => "Kontakt-ID ist nicht angegeben.",
"No photo path was submitted." => "Kein Foto-Pfad angegeben.",
"File doesn't exist:" => "Datei existiert nicht: ",
"Error loading image." => "Fehler beim Laden des Bildes.",
"Error getting contact object." => "Fehler beim Abruf des Kontakt-Objektes.",
"Error getting PHOTO property." => "Fehler beim Abrufen der PHOTO-Eigenschaft.",
"Error saving contact." => "Fehler beim Speichern des Kontaktes.",
"Error resizing image" => "Fehler bei der Größenänderung des Bildes",
"Error cropping image" => "Fehler beim Zuschneiden des Bildes",
"Error creating temporary image" => "Fehler beim Erstellen des temporären Bildes",
"Error finding image: " => "Fehler beim Suchen des Bildes: ",
"Error uploading contacts to storage." => "Übertragen der Kontakte fehlgeschlagen.",
"There is no error, the file uploaded with success" => "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich übertragen.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Die Datei ist größer, als durch die upload_max_filesize Direktive in php.ini erlaubt",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Die Datei ist größer, als die MAX_FILE_SIZE Direktive erlaubt, die im HTML-Formular spezifiziert ist",
"The uploaded file was only partially uploaded" => "Die Datei konnte nur teilweise übertragen werden",
"No file was uploaded" => "Keine Datei konnte übertragen werden.",
"Missing a temporary folder" => "Kein temporärer Ordner vorhanden",
"Couldn't save temporary image: " => "Konnte das temporäre Bild nicht speichern:",
"Couldn't load temporary image: " => "Konnte das temporäre Bild nicht laden:",
"No file was uploaded. Unknown error" => "Keine Datei hochgeladen. Unbekannter Fehler",
"Contacts" => "Kontakte",
"Sorry, this functionality has not been implemented yet" => "Diese Funktion steht leider noch nicht zur Verfügung",
"Not implemented" => "Nicht verfügbar",
"Couldn't get a valid address." => "Konnte keine gültige Adresse abrufen.",
"Error" => "Fehler",
"Please enter an email address." => "Bitte geben Sie eine E-Mailadresse an.",
"Enter name" => "Name eingeben",
"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",
"Select type" => "Typ wählen",
"Select photo" => "Wählen Sie ein Foto",
"You do not have permission to add contacts to " => "Sie besitzen nicht die erforderlichen Rechte, um Kontakte hinzuzufügen",
"Please select one of your own address books." => "Bitte wählen Sie eines Ihrer Adressbücher aus.",
"Permission error" => "Berechtigungsfehler",
"Click to undo deletion of \"" => "Klicken Sie hier für die Wiederherstellung von \"",
"Cancelled deletion of: \"" => "Abbrechen des Löschens von: \"",
"This property has to be non-empty." => "Dieses Feld darf nicht leer sein.",
"Couldn't serialize elements." => "Konnte Elemente nicht serialisieren",
"Unknown error. Please check logs." => "Unbekannter Fehler. Bitte Logs überprüfen",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' wurde ohne Argumente aufgerufen. Bitte melden Sie dies auf bugs.owncloud.org",
"Edit name" => "Name ändern",
"No files selected for upload." => "Keine Datei(en) zum Hochladen ausgewählt.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei, die Sie hochladen möchten, überschreitet die maximale Größe für Datei-Uploads auf diesem Server.",
"Error loading profile picture." => "Fehler beim Laden des Profilbildes.",
"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.",
"Do you want to merge these address books?" => "Möchten Sie diese Adressbücher zusammenführen?",
"Shared by " => "Freigegeben von ",
"Upload too large" => "Die hochgeladene Datei ist zu groß",
"Only image files can be used as profile picture." => "Nur Bilder können als Profilbild genutzt werden.",
"Wrong file type" => "Falscher Dateityp",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Der verwendete Browser unterstützt keinen Upload via AJAX. Bitte das Profilbild anklicken um ein Foto hochzuladen. ",
"Unable to upload your file as it is a directory or has 0 bytes" => "Ihre Datei konnte nicht hochgeladen werden, weil es sich um einen Ordner handelt oder die Datei leer ist.",
"Upload Error" => "Fehler beim Hochladen",
"Pending" => "Ausstehend",
"Import done" => "Import ausgeführt",
"Not all files uploaded. Retrying..." => "Es wurden nicht alle Dateien hochgeladen. Versuche erneut...",
"Something went wrong with the upload, please retry." => "Beim Hochladen ist etwas schiefgegangen. Bitte versuchen Sie es erneut.",
"Importing..." => "Importiere...",
"The address book name cannot be empty." => "Der Name des Adressbuches darf nicht leer sein.",
"Result: " => "Ergebnis: ",
" imported, " => " importiert, ",
" failed." => " fehlgeschlagen.",
"Displayname cannot be empty." => "Der Anzeigename darf nicht leer sein.",
"Show CardDav link" => "CardDav-Link anzeigen",
"Show read-only VCF link" => "Schreibgeschützten VCF-Link anzeigen",
"Download" => "Herunterladen",
"Edit" => "Bearbeiten",
"Delete" => "Löschen",
"Cancel" => "Abbrechen",
"More..." => "Mehr...",
"Less..." => "Weniger...",
"You do not have the permissions to read this addressbook." => "Sie besitzen keine Leseberechtigung für dieses Adressbuch.",
"You do not have the permissions to update this addressbook." => "Sie besitzen nicht die notwendigen Rechte, das Adressbuch zu aktualisieren.",
"There was an error updating the addressbook." => "Ein Fehler ist bei der Aktualisierung des Adressbuches aufgetreten.",
"You do not have the permissions to delete this addressbook." => "Sie besitzen nicht die erforderlichen Rechte, dieses Adressbuch zu löschen.",
"There was an error deleting this addressbook." => "Beim Löschen des Adressbuches ist ein Fehler aufgetreten.",
"Addressbook not found: " => "Adressbuch nicht gefunden:",
"This is not your addressbook." => "Dies ist nicht Ihr Adressbuch.",
"Contact could not be found." => "Kontakt konnte nicht gefunden werden.",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Arbeit",
"Home" => "Zuhause",
"Other" => "Andere",
"Mobile" => "Mobil",
"Text" => "Text",
"Voice" => "Anruf",
"Message" => "Mitteilung",
"Fax" => "Fax",
"Video" => "Video",
"Pager" => "Pager",
"Internet" => "Internet",
"Birthday" => "Geburtstag",
"Business" => "Geschäftlich",
"Call" => "Anruf",
"Clients" => "Kunden",
"Deliverer" => "Lieferant",
"Holidays" => "Feiertage",
"Ideas" => "Ideen",
"Journey" => "Reise",
"Jubilee" => "Jubiläum",
"Meeting" => "Besprechung",
"Personal" => "Persönlich",
"Projects" => "Projekte",
"Questions" => "Fragen",
"{name}'s Birthday" => "Geburtstag von {name}",
"Contact" => "Kontakt",
"You do not have the permissions to add contacts to this addressbook." => "Sie besitzen nicht die erforderlichen Rechte, diesem Adressbuch Kontakte hinzuzufügen.",
"Could not find the vCard with ID." => "Die vCard mit der ID konnte nicht gefunden werden.",
"You do not have the permissions to edit this contact." => "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakt zu bearbeiten.",
"Could not find the vCard with ID: " => "Die vCard mit der folgenden ID konnte nicht gefunden werden:",
"Could not find the Addressbook with ID: " => "Konnte das Adressbuch mit der folgenden ID nicht finden:",
"You do not have the permissions to delete this contact." => "Sie besitzen nicht die erforderlichen Rechte, um diesen Kontakte zu löschen.",
"There was an error deleting this contact." => "Beim Löschen des Kontaktes ist ein Fehler aufgetreten.",
"Add Contact" => "Kontakt hinzufügenff",
"Import" => "Importieren",
"Settings" => "Einstellungen",
"Close" => "Schließen",
"Keyboard shortcuts" => "Tastaturbefehle",
"Navigation" => "Navigation",
"Next contact in list" => "Nächster Kontakt aus der Liste",
"Previous contact in list" => "Vorheriger Kontakt aus der Liste",
"Expand/collapse current addressbook" => "Ausklappen / Einklappen des Adressbuches",
"Next addressbook" => "Nächstes Adressbuch",
"Previous addressbook" => "Vorheriges Adressbuch",
"Actions" => "Aktionen",
"Refresh contacts list" => "Kontaktliste neu laden",
"Add new contact" => "Neuen Kontakt hinzufügen",
"Add new addressbook" => "Neues Adressbuch hinzufügen",
"Delete current contact" => "Aktuellen Kontakt löschen",
"Drop photo to upload" => "Ziehen Sie ein Foto hierher, um es hochzuladen",
"Delete current photo" => "Derzeitiges Foto löschen",
"Edit current photo" => "Derzeitiges Foto ändern",
"Upload new photo" => "Neues Foto hochladen",
"Select photo from ownCloud" => "Foto aus der ownCloud auswählen",
"Edit name details" => "Name ändern",
"Organization" => "Organisation",
"Nickname" => "Spitzname",
"Enter nickname" => "Spitzname angeben",
"Web site" => "Webseite",
"http://www.somesite.com" => "http://www.somesite.com",
"Go to web site" => "Webseite aufrufen",
"dd-mm-yyyy" => "dd.mm.yyyy",
"Groups" => "Gruppen",
"Separate groups with commas" => "Gruppen mit Komma getrennt",
"Edit groups" => "Gruppen editieren",
"Preferred" => "Bevorzugt",
"Please specify a valid email address." => "Bitte tragen Sie eine gültige E-Mail-Adresse ein.",
"Enter email address" => "E-Mail-Adresse angeben",
"Mail to address" => "E-Mail an diese Adresse schicken",
"Delete email address" => "E-Mail-Adresse löschen",
"Enter phone number" => "Telefonnummer angeben",
"Delete phone number" => "Telefonnummer löschen",
"Instant Messenger" => "Instant Messenger",
"Delete IM" => "IM löschen",
"View on map" => "Auf der Karte zeigen",
"Edit address details" => "Adressinformationen ändern",
"Add notes here." => "Fügen Sie hier Notizen ein.",
"Add field" => "Feld hinzufügen",
"Phone" => "Telefon",
"Email" => "E-Mail",
"Instant Messaging" => "Instant Messaging",
"Address" => "Adresse",
"Note" => "Notiz",
"Download contact" => "Kontakt herunterladen",
"Delete contact" => "Kontakt löschen",
"The temporary image has been removed from cache." => "Das temporäre Bild wurde aus dem Cache gelöscht.",
"Edit address" => "Adresse ändern",
"Type" => "Typ",
"PO Box" => "Postfach",
"Street address" => "Straßenanschrift",
"Street and number" => "Straße und Hausnummer",
"Extended" => "Erweitert",
"Apartment number etc." => "Wohnungsnummer usw.",
"City" => "Stadt",
"Region" => "Region",
"E.g. state or province" => "Z.B. Staat oder Bezirk",
"Zipcode" => "Postleitzahl",
"Postal code" => "Postleitzahl",
"Country" => "Land",
"Addressbook" => "Adressbuch",
"Hon. prefixes" => "Höflichkeitspräfixe",
"Miss" => "Frau",
"Ms" => "Frau",
"Mr" => "Herr",
"Sir" => "Herr",
"Mrs" => "Frau",
"Dr" => "Dr.",
"Given name" => "Vorname",
"Additional names" => "Zusätzliche Namen",
"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>",
"Add contact" => "Kontakt hinzufügen",
"Select Address Books" => "Wählen sie ein Adressbuch",
"Enter description" => "Beschreibung eingeben",
"CardDAV syncing addresses" => "CardDAV Sync-Adressen",
"more info" => "weitere Informationen",
"Primary address (Kontact et al)" => "Primäre Adresse (für Kontakt o.ä.)",
"iOS/OS X" => "iOS / OS X",
"Addressbooks" => "Adressbücher",
"Share" => "Teilen",
"New Address Book" => "Neues Adressbuch",
"Name" => "Name",
"Description" => "Beschreibung",
"Save" => "Speichern"
);

View File

@ -50,23 +50,56 @@
"Not implemented" => "Δεν έχει υλοποιηθεί",
"Couldn't get a valid address." => "Αδυναμία λήψης έγκυρης διεύθυνσης",
"Error" => "Σφάλμα",
"Please enter an email address." => "Παρακαλώ εισάγεται μια διεύθυνση ηλ. ταχυδρομείου",
"Enter name" => "Εισαγωγή ονόματος",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα",
"Select type" => "Επιλογή τύπου",
"Select photo" => "Επέλεξε φωτογραφία",
"You do not have permission to add contacts to " => "Δεν έχετε επαρκή δικαιώματα για προσθέσετε επαφές στο ",
"Please select one of your own address books." => "Παρακαλούμε επιλέξτε ένα από τα δικάς σας βιβλία διευθύνσεων.",
"Permission error" => "Σφάλμα δικαιωμάτων",
"Click to undo deletion of \"" => "Επιλογή για αναίρεση της διαγραφής του \"",
"Cancelled deletion of: \"" => "Ακύρωση διαγραφής του: \"",
"This property has to be non-empty." => "Το πεδίο δεν πρέπει να είναι άδειο.",
"Couldn't serialize elements." => "Αδύνατο να μπουν σε σειρά τα στοιχεία",
"Unknown error. Please check logs." => "Άγνωστο σφάλμα.Παρακαλώ έλεγξε το αρχείο καταγραφής.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "το 'deleteProperty' καλέστηκε χωρίς without type argument. Παρακαλώ αναφέρατε στο bugs.owncloud.org",
"Edit name" => "Αλλαγή ονόματος",
"No files selected for upload." => "Δεν επιλέχτηκαν αρχεία για μεταφόρτωση",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Το αρχείο που προσπαθείτε να ανεβάσετε υπερβαίνει το μέγιστο μέγεθος για τις προσθήκες αρχείων σε αυτόν τον server.",
"Error loading profile picture." => "Σφάλμα στην φόρτωση εικόνας προφίλ.",
"Select type" => "Επιλογή τύπου",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Κάποιες επαφές σημειώθηκαν προς διαγραφή,δεν έχουν διαγραφεί ακόμα. Παρακαλώ περιμένετε μέχρι να διαγραφούν.",
"Do you want to merge these address books?" => "Επιθυμείτε να συγχωνεύσετε αυτά τα δύο βιβλία διευθύνσεων?",
"Shared by " => "Μοιράστηκε από",
"Upload too large" => "Πολύ μεγάλο αρχείο για μεταφόρτωση",
"Only image files can be used as profile picture." => "Μόνο αρχεία εικόνας μπορούν να χρησιμοποιηθούν σαν εικόνα προφίλ.",
"Wrong file type" => "Λάθος τύπος αρχείου",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Ο περιηγητής σας δεν υποστηρίζει μεταφόρτωση σε AJAX. Παρακαλώ κάντε κλικ πάνω στην εικόνα προφίλ για να επιλέξετε μια φωτογραφία για να την ανεβάσετε.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία μεταφόρτωσης του αρχείου σας διότι είναι κατάλογος ή έχει μέγεθος 0 bytes",
"Upload Error" => "Σφάλμα Μεταφόρτωσης",
"Pending" => "Εκκρεμεί",
"Import done" => "Η εισαγωγή ολοκληρώθηκε",
"Not all files uploaded. Retrying..." => "Δεν μεταφορτώθηκαν όλα τα αρχεία. Προσπάθεια ξανά...",
"Something went wrong with the upload, please retry." => "Κάτι πήγε στραβά με την μεταφόρτωση, παρακαλώ προσπαθήστε ξανά.",
"Importing..." => "Γίνεται εισαγωγή...",
"The address book name cannot be empty." => "Το όνομα του βιβλίου διευθύνσεων δεν πρέπει να είναι κενό.",
"Result: " => "Αποτέλεσμα: ",
" imported, " => " εισάγεται,",
" failed." => " απέτυχε.",
"Displayname cannot be empty." => "Το όνομα προβολής δεν μπορεί να είναι κενό. ",
"Show CardDav link" => "Εμφάνιση συνδέσμου CardDav",
"Show read-only VCF link" => "Εμφάνιση συνδέσμου VCF μόνο για ανάγνωση",
"Download" => "Λήψη",
"Edit" => "Επεξεργασία",
"Delete" => "Διαγραφή",
"Cancel" => "Ακύρωση",
"More..." => "Περισσότερα...",
"Less..." => "Λιγότερα",
"You do not have the permissions to read this addressbook." => "Δεν έχετε δικαιώματα ανάγνωσης αυτού του βιβλίου διευθύνσεων.",
"You do not have the permissions to update this addressbook." => "Δεν έχετε δικαιώματα ενημέρωσης αυτού του βιβλίου διευθύνσεων.",
"There was an error updating the addressbook." => "Υπήρξε σφάλμα κατά την ενημέρωση του βιβλίου διευθύνσεων.",
"You do not have the permissions to delete this addressbook." => "Δεν έχετε δικαιώματα να διαγράψετε αυτό το βιβλίο διευθύνσεων.",
"There was an error deleting this addressbook." => "Υπήρξε σφάλμα κατά την διαγραφή αυτού του βιβλίου διευθύνσεων",
"Addressbook not found: " => "Το βιβλίο διευθύνσεων δεν βρέθηκε:",
"This is not your addressbook." => "Αυτό δεν είναι το βιβλίο διευθύνσεων σας.",
"Contact could not be found." => "Η επαφή δεν μπόρεσε να βρεθεί.",
@ -106,10 +139,15 @@
"Personal" => "Προσωπικό",
"Projects" => "Έργα",
"Questions" => "Ερωτήσεις",
"{name}'s Birthday" => "{name} έχει Γενέθλια",
"{name}'s Birthday" => "Τα Γεννέθλια του/της {name}",
"Contact" => "Επαφή",
"You do not have the permissions to add contacts to this addressbook." => "Δεν έχετε δικαιώματα να προσθέσετε επαφές σε αυτό το βιβλίο διευθύνσεων.",
"Could not find the vCard with ID." => "Αδυναμία εύρεσης της vCard με το ID.",
"You do not have the permissions to edit this contact." => "Δεν διαθέτε επαρκή δικαιώματα για την επεξεργασία αυτής της επαφής.",
"Could not find the vCard with ID: " => "Αδυναμία εύρεσης της vCard με το ID:",
"Could not find the Addressbook with ID: " => "Αδυναμία εύρεσης της Βιβλίου Διευθύνσεων με το ID:",
"You do not have the permissions to delete this contact." => "Δεν διαθέτε επαρκή δικαιώματα για την διαγραφή αυτής της επαφής.",
"There was an error deleting this contact." => "Υπήρξε σφάλμα κατά την διαγραφή αυτής της επαφής.",
"Add Contact" => "Προσθήκη επαφής",
"Import" => "Εισαγωγή",
"Settings" => "Ρυθμίσεις",
@ -131,10 +169,8 @@
"Edit current photo" => "Επεξεργασία τρέχουσας φωτογραφίας",
"Upload new photo" => "Ανέβασε νέα φωτογραφία",
"Select photo from ownCloud" => "Επέλεξε φωτογραφία από το ownCloud",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Όνομα, Επώνυμο, Αντίστροφο ή Αντίστροφο με κόμμα",
"Edit name details" => "Αλλάξτε τις λεπτομέρειες ονόματος",
"Organization" => "Οργανισμός",
"Delete" => "Διαγραφή",
"Nickname" => "Παρατσούκλι",
"Enter nickname" => "Εισάγετε παρατσούκλι",
"Web site" => "Ιστότοπος",
@ -203,24 +239,18 @@
"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>",
"Add contact" => "Προσθήκη επαφής",
"Select Address Books" => "Επέλεξε βιβλίο διευθύνσεων",
"Enter name" => "Εισαγωγή ονόματος",
"Enter description" => "Εισαγωγή περιγραφής",
"CardDAV syncing addresses" => "συγχρονισμός διευθύνσεων μέσω CardDAV ",
"more info" => "περισσότερες πληροφορίες",
"Primary address (Kontact et al)" => "Κύρια διεύθυνση",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Βιβλία διευθύνσεων",
"Show CardDav link" => "Εμφάνιση συνδέσμου CardDav",
"Show read-only VCF link" => "Εμφάνιση συνδέσμου VCF μόνο για ανάγνωση",
"Share" => "Μοιράσου",
"Download" => "Λήψη",
"Edit" => "Επεξεργασία",
"New Address Book" => "Νέο βιβλίο διευθύνσεων",
"Name" => "Όνομα",
"Description" => "Περιγραφή",
"Save" => "Αποθήκευση",
"Cancel" => "Ακύρωση",
"More..." => "Περισσότερα..."
"Save" => "Αποθήκευση"
);

View File

@ -48,20 +48,52 @@
"Not implemented" => "Ne disponebla",
"Couldn't get a valid address." => "Ne eblis ekhavi validan adreson.",
"Error" => "Eraro",
"Please enter an email address." => "Bonvolu enigi retpoŝtadreson.",
"Enter name" => "Enigu nomon",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Propra formo, Mallonga nomo, Longa nomo, Inversa aŭ Inversa kun komo",
"Select type" => "Elektu tipon",
"Select photo" => "Elekti foton",
"You do not have permission to add contacts to " => "Vi ne havas permeson aldoni kontaktojn al",
"Please select one of your own address books." => "Bonvolu elekti unu el viaj propraj adresaroj.",
"Permission error" => "Permesa eraro",
"Click to undo deletion of \"" => "Klaku por malfari forigon de \"",
"Cancelled deletion of: \"" => "Nuliĝis forigo de: \"",
"This property has to be non-empty." => "Ĉi tiu propraĵo devas ne esti malplena.",
"Couldn't serialize elements." => "Ne eblis seriigi erojn.",
"Unknown error. Please check logs." => "Nekonata eraro. Bonvolu kontroli protokolajn informojn.",
"Edit name" => "Redakti nomon",
"No files selected for upload." => "Neniu dosiero elektita por alŝuto.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "La dosiero, kiun vi provas alŝuti, transpasas la maksimuman grandon por dosieraj alŝutoj en ĉi tiu servilo.",
"Error loading profile picture." => "Eraro dum ŝargado de profila bildo.",
"Select type" => "Elektu tipon",
"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.",
"Shared by " => "Kunhavigita de",
"Upload too large" => "Alŝuto tro larĝa",
"Only image files can be used as profile picture." => "Nur bildodosieroj povas uziĝi kiel profilbildoj.",
"Wrong file type" => "Malĝusta dosiertipo",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Via foliumilo ne kongruas kun AJAX-alŝutado. Bonvolu klaki la profilbildon por elekti foton alŝutotan.",
"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",
"Import done" => "Enporto plenumiĝis",
"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.",
"Importing..." => "Enportante...",
"The address book name cannot be empty." => "La nomo de la adresaro ne povas esti malplena.",
"Result: " => "Rezulto: ",
" imported, " => " enportoj, ",
" failed." => "malsukcesoj.",
"Show CardDav link" => "Montri CardDav-ligilon",
"Show read-only VCF link" => "Montri nur legeblan VCF-ligilon",
"Download" => "Elŝuti",
"Edit" => "Redakti",
"Delete" => "Forigi",
"Cancel" => "Nuligi",
"More..." => "Pli...",
"Less..." => "Malpli...",
"You do not have the permissions to read this addressbook." => "Vi ne havas la permeson legi ĉi tiun adresaron.",
"You do not have the permissions to update this addressbook." => "Vi ne havas la permeson ĝisdatigi ĉi tiun adresaron.",
"There was an error updating the addressbook." => "Eraro okazis dum ĝisdatiĝis la adresaro.",
"You do not have the permissions to delete this addressbook." => "Vi ne havas la permeson forigi ĉi tiun adresaron.",
"There was an error deleting this addressbook." => "Eraro okazis dum foriĝis ĉi tiu adresaro.",
"Addressbook not found: " => "Adresaro ne troviĝis:",
"This is not your addressbook." => "Ĉi tiu ne estas via adresaro.",
"Contact could not be found." => "Ne eblis trovi la kontakton.",
@ -103,8 +135,10 @@
"Questions" => "Demandoj",
"{name}'s Birthday" => "Naskiĝtago de {name}",
"Contact" => "Kontakto",
"You do not have the permissions to add contacts to this addressbook." => "Vi ne havas la permeson aldoni kontaktojn al ĉi tiu adresaro.",
"You do not have the permissions to edit this contact." => "Vi ne havas permeson redakti ĉi tiun kontakton.",
"You do not have the permissions to delete this contact." => "Vi ne havas permeson forigi ĉi tiun kontakton.",
"There was an error deleting this contact." => "Eraro okazis dum foriĝis ĉi tiu kontakto.",
"Add Contact" => "Aldoni kontakton",
"Import" => "Enporti",
"Settings" => "Agordo",
@ -126,10 +160,8 @@
"Edit current photo" => "Redakti nunan foton",
"Upload new photo" => "Alŝuti novan foton",
"Select photo from ownCloud" => "Elekti foton el ownCloud",
"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",
"Organization" => "Organizaĵo",
"Delete" => "Forigi",
"Nickname" => "Kromnomo",
"Enter nickname" => "Enigu kromnomon",
"Web site" => "TTT-ejo",
@ -191,22 +223,15 @@
"Importing contacts" => "Enportante kontaktojn",
"Add contact" => "Aldoni kontakton",
"Select Address Books" => "Elektu adresarojn",
"Enter name" => "Enigu nomon",
"Enter description" => "Enigu priskribon",
"CardDAV syncing addresses" => "adresoj por CardDAV-sinkronigo",
"more info" => "pli da informo",
"Primary address (Kontact et al)" => "Ĉefa adreso (por Kontakt kaj aliaj)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adresaroj",
"Show CardDav link" => "Montri CardDav-ligilon",
"Show read-only VCF link" => "Montri nur legeblan VCF-ligilon",
"Share" => "Kunhavigi",
"Download" => "Elŝuti",
"Edit" => "Redakti",
"New Address Book" => "Nova adresaro",
"Name" => "Nomo",
"Description" => "Priskribo",
"Save" => "Konservi",
"Cancel" => "Nuligi",
"More..." => "Pli..."
"Save" => "Konservi"
);

View File

@ -50,23 +50,52 @@
"Not implemented" => "No esta implementada",
"Couldn't get a valid address." => "Fallo : no hay dirección valida",
"Error" => "Fallo",
"Please enter an email address." => "Por favor introduzca una dirección de e-mail",
"Enter name" => "Introducir nombre",
"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",
"Select type" => "Selecciona el tipo",
"Select photo" => "eccionar una foto",
"You do not have permission to add contacts to " => "No tiene permisos para añadir contactos a",
"Please select one of your own address books." => "Por favor, selecciona una de sus libretas de direcciones.",
"Permission error" => "Error de permisos",
"Click to undo deletion of \"" => "Click para deshacer el borrado de \"",
"Cancelled deletion of: \"" => "Cancelado el borrado de: \"",
"This property has to be non-empty." => "Este campo no puede estar vacío.",
"Couldn't serialize elements." => "Fallo no podido ordenar los elementos",
"Unknown error. Please check logs." => "Error desconocido. Por favor revise el log.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "La propiedad de \"borrar\" se llamado sin argumentos envia fallos a\nbugs.owncloud.org",
"Edit name" => "Edita el Nombre",
"No files selected for upload." => "No hay ficheros seleccionados para subir",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El fichero que quieres subir excede el tamaño máximo permitido en este servidor.",
"Error loading profile picture." => "Error cargando la imagen del perfil.",
"Select type" => "Selecciona el tipo",
"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.",
"Do you want to merge these address books?" => "¿Quieres mezclar estas libretas de direcciones?",
"Shared by " => "compartido por",
"Upload too large" => "bida demasido grande",
"Only image files can be used as profile picture." => "Solamente archivos de imagen pueden ser usados como imagen del perfil ",
"Wrong file type" => "Tipo de archivo incorrecto",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Su explorador no soporta subidas AJAX. Por favor haga click en la imagen del perfil para seleccionar una foto para subir.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Imposible subir su archivo, es un directorio o tiene 0 bytes",
"Upload Error" => "Error de subida",
"Pending" => "Pendientes",
"Import done" => "Importación realizada",
"Not all files uploaded. Retrying..." => "No se han podido subir todos los archivos. Reintentando...",
"Something went wrong with the upload, please retry." => "Algo ha ido mal con la subida, por favor, reintentelo.",
"Importing..." => "Importando...",
"The address book name cannot be empty." => "El nombre de la libreta de direcciones no puede estar vacio.",
"Result: " => "Resultado :",
" imported, " => "Importado.",
" failed." => "Fallo.",
"Displayname cannot be empty." => "El nombre a mostrar no puede estar vacío.",
"Show CardDav link" => "Mostrar enlace CardDav",
"Show read-only VCF link" => "Mostrar enlace VCF de sólo lectura",
"Download" => "Descargar",
"Edit" => "Editar",
"Delete" => "Borrar",
"Cancel" => "Cancelar",
"More..." => "Más...",
"Less..." => "Menos...",
"You do not have the permissions to read this addressbook." => "No tiene permiso para leer esta libreta de direcciones.",
"You do not have the permissions to update this addressbook." => "No tiene permisos para actualizar esta libreta de direcciones.",
"There was an error updating the addressbook." => "Hubo un error actualizando la libreta de direcciones.",
"You do not have the permissions to delete this addressbook." => "No tienes permisos para eliminar esta libreta de direcciones.",
@ -140,10 +169,8 @@
"Edit current photo" => "Editar fotografía actual",
"Upload new photo" => "Subir nueva fotografía",
"Select photo from ownCloud" => "Seleccionar fotografía desde ownCloud",
"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",
"Organization" => "Organización",
"Delete" => "Borrar",
"Nickname" => "Alias",
"Enter nickname" => "Introduce un alias",
"Web site" => "Sitio Web",
@ -212,24 +239,18 @@
"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>",
"Add contact" => "Añadir contacto",
"Select Address Books" => "Seleccionar Agenda",
"Enter name" => "Introducir nombre",
"Enter description" => "Introducir descripción",
"CardDAV syncing addresses" => "Sincronizando direcciones",
"more info" => "más información",
"Primary address (Kontact et al)" => "Dirección primaria (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Libretas de direcciones",
"Show CardDav link" => "Mostrar enlace CardDav",
"Show read-only VCF link" => "Mostrar enlace VCF de sólo lectura",
"Share" => "Compartir",
"Download" => "Descargar",
"Edit" => "Editar",
"New Address Book" => "Nueva libreta de direcciones",
"Name" => "Nombre",
"Description" => "Descripción",
"Save" => "Guardar",
"Cancel" => "Cancelar",
"More..." => "Más..."
"Save" => "Guardar"
);

256
l10n/es_AR.php Normal file
View File

@ -0,0 +1,256 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "Error al (des)activar la agenda con direcciones.",
"id is not set." => "La ID no fue asignada.",
"Cannot update addressbook with an empty name." => "No se puede actualizar una libreta de direcciones sin nombre.",
"No ID provided" => "No fue proporcionada una ID",
"Error setting checksum." => "Error al establecer la suma de verificación -checksum-.",
"No categories selected for deletion." => "No se seleccionaron categorías para borrar.",
"No address books found." => "No se encontraron agendas.",
"No contacts found." => "No se encontraron contactos.",
"element name is not set." => "el nombre del elemento no fue asignado.",
"Could not parse contact: " => "No fue posible analizar la sintaxis del contacto",
"Cannot add empty property." => "No se puede añadir una propiedad vacía.",
"At least one of the address fields has to be filled out." => "Se tiene que rellenar al menos uno de los campos de direcciones.",
"Trying to add duplicate property: " => "Estás intentando añadir una propiedad duplicada: ",
"Missing IM parameter." => "Falta un parámetro del MI.",
"Unknown IM: " => "MI desconocido:",
"Information about vCard is incorrect. Please reload the page." => "La información sobre la vCard es incorrecta. Por favor, cargá nuevamente la página",
"Missing ID" => "Falta la ID",
"Error parsing VCard for ID: \"" => "Error al analizar la vCard para la ID: \"",
"checksum is not set." => "la suma de comprobación no fue asignada.",
"Information about vCard is incorrect. Please reload the page: " => "La información sobre la vCard es incorrecta. Por favor, recargá la página:",
"Something went FUBAR. " => "Hubo un error irreparable.",
"No contact ID was submitted." => "No se mandó ninguna ID de contacto.",
"Error reading contact photo." => "Error leyendo la imagen del contacto.",
"Error saving temporary file." => "Error al guardar archivo temporal.",
"The loading photo is not valid." => "La imagen que se estaba cargando no es válida.",
"Contact ID is missing." => "Falta la ID del contacto.",
"No photo path was submitted." => "La ruta de la imagen no fue enviada",
"File doesn't exist:" => "El archivo no existe:",
"Error loading image." => "Error cargando imagen.",
"Error getting contact object." => "Error al obtener el contacto.",
"Error getting PHOTO property." => "Error al obtener la propiedades de la foto.",
"Error saving contact." => "Error al guardar el contacto.",
"Error resizing image" => "Error al cambiar el tamaño de la imagen",
"Error cropping image" => "Error al recortar la imagen",
"Error creating temporary image" => "Error al crear una imagen temporal",
"Error finding image: " => "Error al encontrar la imagen",
"Error uploading contacts to storage." => "Error al subir contactos al almacenamiento.",
"There is no error, the file uploaded with success" => "No hay errores, el archivo fue subido con éxito",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "El archivo subido excede el valor 'upload_max_filesize' del archivo de configuración php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"The uploaded file was only partially uploaded" => "El archivo fue subido parcialmente",
"No file was uploaded" => "No se subió ningún archivo ",
"Missing a temporary folder" => "Error en la carpera temporal",
"Couldn't save temporary image: " => "No fue posible guardar la imagen temporal",
"Couldn't load temporary image: " => "No se pudo cargar la imagen temporal",
"No file was uploaded. Unknown error" => "El archivo no fue subido. Error desconocido",
"Contacts" => "Contactos",
"Sorry, this functionality has not been implemented yet" => "Perdoná, esta función no está implementada todavía",
"Not implemented" => "No implementado",
"Couldn't get a valid address." => "No fue posible obtener una dirección válida",
"Error" => "Error",
"Please enter an email address." => "Por favor, escribí una dirección de e-mail",
"Enter name" => "Escribir nombre",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, nombre abreviado, nombre completo, invertido, o invertido con coma",
"Select type" => "Seleccionar el tipo",
"Select photo" => "Seleccionar una imagen",
"You do not have permission to add contacts to " => "No tenés permisos para añadir contactos a",
"Please select one of your own address books." => "Por favor, elegí una de tus agendas.",
"Permission error" => "Error de permisos",
"Click to undo deletion of \"" => "Hacé click para deshacer el borrado de \"",
"Cancelled deletion of: \"" => "Se canceló el borrado de: \"",
"This property has to be non-empty." => "Este campo no puede quedar vacío.",
"Couldn't serialize elements." => "No fue posible transcribir los elementos",
"Unknown error. Please check logs." => "Error desconocido. Revisá el log.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "el método \"deleteProperty\" fue llamado sin argumentos. Por favor, reportá el error en bugs.owncloud.org",
"Edit name" => "Editar el nombre",
"No files selected for upload." => "No hay archivos seleccionados para subir",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "El archivo que querés subir supera el tamaño máximo permitido en este servidor.",
"Error loading profile picture." => "Error al cargar la imagen del perfil.",
"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.",
"Do you want to merge these address books?" => "¿Querés unir estas libretas de direcciones?",
"Shared by " => "compartido por",
"Upload too large" => "El tamaño del archivo que querés subir es demasiado grande",
"Only image files can be used as profile picture." => "Solamente archivos de imagen pueden ser usados como imagen del perfil ",
"Wrong file type" => "Tipo de archivo incorrecto",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Tu navegador no soporta subidas AJAX. Por favor hacé click en la imagen del perfil para seleccionar una imagen que quieras subir.",
"Unable to upload your file as it is a directory or has 0 bytes" => "No es posible subir tu archivo porque es un directorio o porque ocupa 0 bytes",
"Upload Error" => "Error al subir",
"Pending" => "Pendientes",
"Import done" => "Importación completada",
"Not all files uploaded. Retrying..." => "No fue posible subir todos los archivos. Reintentando...",
"Something went wrong with the upload, please retry." => "Algo salió mal durante la subida. Por favor, intentalo nuevamente.",
"Importing..." => "Importando...",
"The address book name cannot be empty." => "El nombre de la libreta de direcciones no puede estar vacío.",
"Result: " => "Resultado:",
" imported, " => "Importado.",
" failed." => "error.",
"Displayname cannot be empty." => "El nombre a mostrar no puede quedar en blanco",
"Show CardDav link" => "Mostrar enlace CardDAV",
"Show read-only VCF link" => "Mostrar enlace VCF de sólo lectura",
"Download" => "Descargar",
"Edit" => "Editar",
"Delete" => "Borrar",
"Cancel" => "Cancelar",
"More..." => "Más...",
"Less..." => "Menos...",
"You do not have the permissions to read this addressbook." => "No tenés permiso para leer esta agenda.",
"You do not have the permissions to update this addressbook." => "No tenés permisos para actualizar esta agenda.",
"There was an error updating the addressbook." => "Hubo un error mientras se actualizaba la agenda.",
"You do not have the permissions to delete this addressbook." => "No tenés permisos para borrar esta agenda.",
"There was an error deleting this addressbook." => "Hubo un error mientras se borraba esta agenda.",
"Addressbook not found: " => "La agenda no fue encontrada",
"This is not your addressbook." => "Esta no es tu agenda de contactos.",
"Contact could not be found." => "No fue posible encontrar el contacto.",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Trabajo",
"Home" => "Particular",
"Other" => "Otros",
"Mobile" => "Celular",
"Text" => "Texto",
"Voice" => "Voz",
"Message" => "Mensaje",
"Fax" => "Fax",
"Video" => "Video",
"Pager" => "Pager",
"Internet" => "Internet",
"Birthday" => "Cumpleaños",
"Business" => "Negocio",
"Call" => "Llamar",
"Clients" => "Clientes",
"Deliverer" => "Distribuidor",
"Holidays" => "Vacaciones",
"Ideas" => "Ideas",
"Journey" => "Viaje",
"Jubilee" => "Aniversario",
"Meeting" => "Reunión",
"Personal" => "Personal",
"Projects" => "Proyectos",
"Questions" => "Preguntas",
"{name}'s Birthday" => "Cumpleaños de {name}",
"Contact" => "Contacto",
"You do not have the permissions to add contacts to this addressbook." => "No tenés permisos para agregar contactos a esta agenda.",
"Could not find the vCard with ID." => "No fue posible encontrar la vCard con ID.",
"You do not have the permissions to edit this contact." => "No tenés permisos para editar este contacto.",
"Could not find the vCard with ID: " => "No fue posible encontrar la agenda con ID:",
"Could not find the Addressbook with ID: " => "No fue posible encontrar la agenda con ID:",
"You do not have the permissions to delete this contact." => "No tenés permisos para borrar este contacto.",
"There was an error deleting this contact." => "Hubo un error mientras se borraba este contacto.",
"Add Contact" => "Agregar contacto",
"Import" => "Importar",
"Settings" => "Configuración",
"Close" => "cerrar",
"Keyboard shortcuts" => "Atajos de teclado",
"Navigation" => "Navegación",
"Next contact in list" => "Contacto siguiente en la lista",
"Previous contact in list" => "Contacto anterior en la lista",
"Expand/collapse current addressbook" => "Expandir/colapsar la agenda",
"Next addressbook" => "Siguiente agenda",
"Previous addressbook" => "Agenda anterior",
"Actions" => "Acciones",
"Refresh contacts list" => "Refrescar la lista de contactos",
"Add new contact" => "Agregar un nuevo contacto",
"Add new addressbook" => "Agregar nueva agenda",
"Delete current contact" => "Borrar el contacto seleccionado",
"Drop photo to upload" => "Arrastrá y soltá una imagen para subirla",
"Delete current photo" => "Eliminar imagen actual",
"Edit current photo" => "Editar imagen actual",
"Upload new photo" => "Subir nueva imagen",
"Select photo from ownCloud" => "Seleccionar imagen desde ownCloud",
"Edit name details" => "Editar los detalles del nombre",
"Organization" => "Organización",
"Nickname" => "Sobrenombre",
"Enter nickname" => "Escribí un sobrenombre",
"Web site" => "Página web",
"http://www.somesite.com" => "http://www.somesite.com",
"Go to web site" => "Ir al sitio web",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Groups" => "Grupos",
"Separate groups with commas" => "Separá los grupos con comas",
"Edit groups" => "Editar grupos",
"Preferred" => "Preferido",
"Please specify a valid email address." => "Por favor, escribí una dirección de e-mail válida.",
"Enter email address" => "Escribí una dirección de correo electrónico",
"Mail to address" => "Enviar por e-mail a la dirección",
"Delete email address" => "Eliminar dirección de correo electrónico",
"Enter phone number" => "Escribí un número de teléfono",
"Delete phone number" => "Eliminar número de teléfono",
"Instant Messenger" => "Mensajero instantáneo",
"Delete IM" => "Eliminar IM",
"View on map" => "Ver en el mapa",
"Edit address details" => "Editar detalles de la dirección",
"Add notes here." => "Agregá notas acá.",
"Add field" => "Agregar campo",
"Phone" => "Teléfono",
"Email" => "e-mail",
"Instant Messaging" => "Mensajería instantánea",
"Address" => "Dirección",
"Note" => "Nota",
"Download contact" => "Descargar contacto",
"Delete contact" => "Borrar contacto",
"The temporary image has been removed from cache." => "La imagen temporal fue borrada de la caché",
"Edit address" => "Editar dirección",
"Type" => "Tipo",
"PO Box" => "Código postal",
"Street address" => "Calle de la dirección",
"Street and number" => "Calle y número",
"Extended" => "Extendido",
"Apartment number etc." => "Número de departamento, etc.",
"City" => "Ciudad",
"Region" => "Provincia",
"E.g. state or province" => "Eg. provincia o estado",
"Zipcode" => "Código postal",
"Postal code" => "Código postal",
"Country" => "País",
"Addressbook" => "Agenda",
"Hon. prefixes" => "Prefijos honoríficos",
"Miss" => "Srta.",
"Ms" => "Sra.",
"Mr" => "Sr.",
"Sir" => "Señor",
"Mrs" => "Sra.",
"Dr" => "Dr.",
"Given name" => "Nombre",
"Additional names" => "Segundo 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 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 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>",
"Add contact" => "Agregar contacto",
"Select Address Books" => "Seleccionar agendas",
"Enter description" => "Escribir descripción",
"CardDAV syncing addresses" => "CardDAV está sincronizando direcciones",
"more info" => "más información",
"Primary address (Kontact et al)" => "Dirección primaria (Kontact y semejantes)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Agendas",
"Share" => "Compartir",
"New Address Book" => "Nueva agenda",
"Name" => "Nombre",
"Description" => "Descripción",
"Save" => "Guardar"
);

View File

@ -50,6 +50,10 @@
"Not implemented" => "Pole implementeeritud",
"Couldn't get a valid address." => "Kehtiva aadressi hankimine ebaõnnestus",
"Error" => "Viga",
"Enter name" => "Sisesta nimi",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Kohandatud vorming, Lühike nimi, Täielik nimi, vastupidine või vastupidine komadega",
"Select type" => "Vali tüüp",
"Select photo" => "Vali foto",
"You do not have permission to add contacts to " => "Sul pole luba lisada kontakti aadressiraamatusse",
"Please select one of your own address books." => "Palun vali üks oma aadressiraamatutest.",
"Permission error" => "Õiguse viga",
@ -57,11 +61,12 @@
"Edit name" => "Muuda nime",
"No files selected for upload." => "Üleslaadimiseks pole faile valitud.",
"Error loading profile picture." => "Viga profiilipildi laadimisel",
"Select type" => "Vali tüüp",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Mõned kontaktid on märgitud kustutamiseks, aga pole veel kustutatud. Palun oota, kuni need kustutatakse.",
"Do you want to merge these address books?" => "Kas sa soovid liita neid aadressiraamatuid?",
"Upload Error" => "Üleslaadimise viga",
"Shared by " => "Jagas",
"Upload too large" => "Üleslaadimine on liiga suur",
"Wrong file type" => "Vale failitüüp",
"Upload Error" => "Üleslaadimise viga",
"Pending" => "Ootel",
"Import done" => "Importimine on tehtud",
"Not all files uploaded. Retrying..." => "Kõiki faile ei laetud üles. Proovime uuesti...",
@ -72,6 +77,14 @@
" imported, " => " imporditud, ",
" failed." => " ebaõnnestus.",
"Displayname cannot be empty." => "Näidatav nimi ei saa olla tühi.",
"Show CardDav link" => "Näita CardDav linki",
"Show read-only VCF link" => "Näita VCF linki (ainult lugemisõigusega)",
"Download" => "Lae alla",
"Edit" => "Muuda",
"Delete" => "Kustuta",
"Cancel" => "Loobu",
"More..." => "Veel...",
"Less..." => "Vähem...",
"You do not have the permissions to read this addressbook." => "Sul pole õigusi selle aadressiraamatu lugemiseks.",
"You do not have the permissions to update this addressbook." => "Sul pole õigusi selle aadressiraamatu uuendamiseks.",
"There was an error updating the addressbook." => "Aadressiraamatu uuendamisel tekkis viga.",
@ -146,10 +159,8 @@
"Edit current photo" => "Muuda praegust pilti",
"Upload new photo" => "Lae üles uus foto",
"Select photo from ownCloud" => "Vali foto ownCloudist",
"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",
"Organization" => "Organisatsioon",
"Delete" => "Kustuta",
"Nickname" => "Hüüdnimi",
"Enter nickname" => "Sisesta hüüdnimi",
"Web site" => "Veebisait",
@ -220,22 +231,15 @@
"Importing contacts" => "Kontaktide importimine",
"Add contact" => "Lisa kontakt",
"Select Address Books" => "Vali aadressiraamatud",
"Enter name" => "Sisesta nimi",
"Enter description" => "Sisesta kirjeldus",
"CardDAV syncing addresses" => "CardDAV sünkroniseerimise aadressid",
"more info" => "lisainfo",
"Primary address (Kontact et al)" => "Peamine aadress",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Aadressiraamatud",
"Show CardDav link" => "Näita CardDav linki",
"Show read-only VCF link" => "Näita VCF linki (ainult lugemisõigusega)",
"Share" => "Jaga",
"Download" => "Lae alla",
"Edit" => "Muuda",
"New Address Book" => "Uus aadressiraamat",
"Name" => "Nimi",
"Description" => "Kirjeldus",
"Save" => "Salvesta",
"Cancel" => "Loobu",
"More..." => "Veel..."
"Save" => "Salvesta"
);

View File

@ -49,22 +49,32 @@
"Not implemented" => "Inplementatu gabe",
"Couldn't get a valid address." => "Ezin izan da eposta baliagarri bat hartu.",
"Error" => "Errorea",
"Please enter an email address." => "Mesedez sartu eposta helbidea.",
"Enter name" => "Sartu izena",
"Select type" => "Hautatu mota",
"Select photo" => "Hautatu argazkia",
"You do not have permission to add contacts to " => "Ez duzu baimenik gehitzeko kontaktuak hona",
"Please select one of your own address books." => "Mesedez hautatu zure helbide-liburu bat.",
"Permission error" => "Baimen errorea.",
"Click to undo deletion of \"" => "Klikatu honen ezabaketa desegiteko \"",
"Cancelled deletion of: \"" => "Honen ezabaketa bertan behera utzi da: \"",
"This property has to be non-empty." => "Propietate hau ezin da hutsik egon.",
"Couldn't serialize elements." => "Ezin izan dira elementuak serializatu.",
"Unknown error. Please check logs." => "Errore ezezaguna. Mesedez begiratu log-ak.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' argumenturik gabe deitu da. Mezedez abisatu bugs.owncloud.org-en",
"Edit name" => "Editatu izena",
"No files selected for upload." => "Ez duzu igotzeko fitxategirik hautatu.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Igo nahi duzun fitxategia zerbitzariak onartzen duen tamaina baino handiagoa da.",
"Error loading profile picture." => "Errorea profilaren irudia kargatzean.",
"Select type" => "Hautatu mota",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Kontaktu batzuk ezabatzeko markatuta daude, baina oraindik ez dira ezabatu. Mesedez itxoin ezabatu arte.",
"Do you want to merge these address books?" => "Helbide-liburu hauek elkartu nahi dituzu?",
"Shared by " => "Honek partekatuta: ",
"Upload too large" => "Igoera handiegia da",
"Only image files can be used as profile picture." => "Bakarrik irudiak erabil daitezke profil irudietan.",
"Wrong file type" => "Fitxategi mota ez-egokia",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Zure arakatzaileak ez du AJAX bidezko igoera onartzen. Mesedez kilikatu profilaren irudian igotzeko irudi bat hautatzeko.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Ezin izan da zure fitxategia igo karpeta bat delako edo 0 byte dituelako",
"Upload Error" => "Igotzeak huts egin du",
"Upload too large" => "Igoera handiegia da",
"Pending" => "Zain",
"Import done" => "Inportazioa burutua",
"Not all files uploaded. Retrying..." => "Fitxategi guztiak ez dira igo. Berriz saiatzen...",
@ -75,6 +85,14 @@
" imported, " => " inportatua, ",
" failed." => "huts egin du.",
"Displayname cannot be empty." => "Bistaratzeko izena ezin da hutsik egon.",
"Show CardDav link" => "Erakutsi CardDav lotura",
"Show read-only VCF link" => "Erakutsi bakarrik irakurtzeko VCF lotura",
"Download" => "Deskargatu",
"Edit" => "Editatu",
"Delete" => "Ezabatu",
"Cancel" => "Ezeztatu",
"More..." => "Gehiago...",
"Less..." => "Gutxiago...",
"You do not have the permissions to read this addressbook." => "Ez duzu baimenik helbide-liburu hau irakurtzeko.",
"You do not have the permissions to update this addressbook." => "Ez duzu helbide-liburu hau eguneratzeko baimenik.",
"There was an error updating the addressbook." => "Errore bat izan da helbide-liburua eguneratzean.",
@ -151,7 +169,6 @@
"Select photo from ownCloud" => "Hautatu argazki bat ownCloudetik",
"Edit name details" => "Editatu izenaren zehaztasunak",
"Organization" => "Erakundea",
"Delete" => "Ezabatu",
"Nickname" => "Ezizena",
"Enter nickname" => "Sartu ezizena",
"Web site" => "Web orria",
@ -209,22 +226,15 @@
"<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>",
"Add contact" => "Gehitu kontaktua",
"Select Address Books" => "Hautatu helbide-liburuak",
"Enter name" => "Sartu izena",
"Enter description" => "Sartu deskribapena",
"CardDAV syncing addresses" => "CardDAV sinkronizazio helbideak",
"more info" => "informazio gehiago",
"Primary address (Kontact et al)" => "Helbide nagusia",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Helbide Liburuak",
"Show CardDav link" => "Erakutsi CardDav lotura",
"Show read-only VCF link" => "Erakutsi bakarrik irakurtzeko VCF lotura",
"Share" => "Partekatu",
"Download" => "Deskargatu",
"Edit" => "Editatu",
"New Address Book" => "Helbide-liburu berria",
"Name" => "Izena",
"Description" => "Deskribapena",
"Save" => "Gorde",
"Cancel" => "Ezeztatu",
"More..." => "Gehiago..."
"Save" => "Gorde"
);

View File

@ -47,16 +47,21 @@
"Not implemented" => "انجام نشد",
"Couldn't get a valid address." => "Couldn't get a valid address.",
"Error" => "خطا",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Short name, Full name, Reverse or Reverse with comma",
"Select type" => "نوع را انتخاب کنید",
"This property has to be non-empty." => "این ویژگی باید به صورت غیر تهی عمل کند",
"Couldn't serialize elements." => "قابلیت مرتب سازی عناصر وجود ندارد",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "پاک کردن ویژگی بدون استدلال انجام شده.لطفا این مورد را گزارش دهید:bugs.owncloud.org",
"Edit name" => "نام تغییر",
"No files selected for upload." => "هیچ فایلی برای آپلود انتخاب نشده است",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "حجم فایل بسیار بیشتر از حجم تنظیم شده در تنظیمات سرور است",
"Select type" => "نوع را انتخاب کنید",
"Result: " => "نتیجه:",
" imported, " => "وارد شد،",
" failed." => "ناموفق",
"Download" => "بارگیری",
"Edit" => "ویرایش",
"Delete" => "پاک کردن",
"Cancel" => "انصراف",
"This is not your addressbook." => "این کتابچه ی نشانه های شما نیست",
"Contact could not be found." => "اتصال ویا تماسی یافت نشد",
"Work" => "کار",
@ -80,10 +85,8 @@
"Edit current photo" => "ویرایش تصویر کنونی",
"Upload new photo" => "بار گذاری یک تصویر جدید",
"Select photo from ownCloud" => "انتخاب یک تصویر از ابر های شما",
"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" => "ویرایش نام جزئیات",
"Organization" => "نهاد(ارگان)",
"Delete" => "پاک کردن",
"Nickname" => "نام مستعار",
"Enter nickname" => "یک نام مستعار وارد کنید",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -147,9 +150,6 @@
"Primary address (Kontact et al)" => "نشانی اولیه",
"iOS/OS X" => "iOS/OS X ",
"Addressbooks" => "کتابچه ی نشانی ها",
"Download" => "بارگیری",
"Edit" => "ویرایش",
"New Address Book" => "کتابچه نشانه های جدید",
"Save" => "ذخیره سازی",
"Cancel" => "انصراف"
"Save" => "ذخیره سازی"
);

View File

@ -50,22 +50,30 @@
"Not implemented" => "Ei toteutettu",
"Couldn't get a valid address." => "Ei kyetä saamaan kelvollista osoitetta.",
"Error" => "Virhe",
"Please enter an email address." => "Anna sähköpostiosoite.",
"Enter name" => "Anna nimi",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Itsemääritelty muoto, lyhyt nimi, pitkä nimi, vastakkainen tai vastakkainen pilkun kanssa",
"Select type" => "Valitse tyyppi",
"Select photo" => "Valitse valokuva",
"You do not have permission to add contacts to " => "Sinulla ei ole oikeuksia lisätä yhteystietoja tänne:",
"Please select one of your own address books." => "Valitse jokin omista osoitekirjoistasi.",
"Permission error" => "Käyttöoikeusvirhe",
"This property has to be non-empty." => "Tämä ominaisuus ei saa olla tyhjä.",
"Couldn't serialize elements." => "Ei kyetä sarjallistamaan elementtejä.",
"Unknown error. Please check logs." => "Tuntematon virhe. Tarkista lokitiedostot.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'poistaOminaisuus' kutsuttu ilman tyyppiä. Kerro virheestä bugs.owncloud.org",
"Edit name" => "Muokkaa nimeä",
"No files selected for upload." => "Tiedostoja ei ole valittu lähetettäväksi.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Tiedosto, jota yrität ladata ylittää suurimman sallitun koon tällä palvelimella.",
"Error loading profile picture." => "Virhe profiilikuvaa ladatessa.",
"Select type" => "Valitse tyyppi",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Jotkin yhteystiedot on merkitty poistettaviksi, mutta niitä ei ole vielä poistettu. Odota hetki, että kyseiset yhteystiedot poistetaan.",
"Do you want to merge these address books?" => "Haluatko yhdistää nämä osoitekirjat?",
"Upload too large" => "Lähetettävä tiedosto on liian suuri",
"Only image files can be used as profile picture." => "Profiilikuvaksi voi asettaa vain kuvatiedostoja.",
"Wrong file type" => "Väärä tiedostotyyppi",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Selaimesi ei tue AJAX-lähetyksiä. Napsauta profiilikuvaa valitaksesi lähetettävän valokuvan.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio.",
"Upload Error" => "Lähetysvirhe",
"Upload too large" => "Lähetettävä tiedosto on liian suuri",
"Pending" => "Odottaa",
"Import done" => "Tuonti valmis",
"Not all files uploaded. Retrying..." => "Kaikkia tiedostoja ei lähetetty. Yritetään uudelleen...",
@ -76,6 +84,14 @@
" imported, " => " tuotu, ",
" failed." => " epäonnistui.",
"Displayname cannot be empty." => "Näyttönimi ei voi olla tyhjä.",
"Show CardDav link" => "Näytä CardDav-linkki",
"Show read-only VCF link" => "Näytä vain luku -muodossa oleva VCF-linkki",
"Download" => "Lataa",
"Edit" => "Muokkaa",
"Delete" => "Poista",
"Cancel" => "Peru",
"More..." => "Lisää...",
"Less..." => "Vähemmän...",
"You do not have the permissions to read this addressbook." => "Käyttöoikeutesi eivät riitä tämän osoitekirjan lukuun.",
"You do not have the permissions to update this addressbook." => "Oikeutesi eivät riitä tämän osoitekirjan päivittämiseen.",
"There was an error updating the addressbook." => "Virhe osoitekirjaa päivittäessä.",
@ -150,10 +166,8 @@
"Edit current photo" => "Muokkaa nykyistä valokuvaa",
"Upload new photo" => "Lähetä uusi valokuva",
"Select photo from ownCloud" => "Valitse valokuva ownCloudista",
"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",
"Organization" => "Organisaatio",
"Delete" => "Poista",
"Nickname" => "Kutsumanimi",
"Enter nickname" => "Anna kutsumanimi",
"Web site" => "Verkkosivu",
@ -224,22 +238,15 @@
"Importing contacts" => "Tuodaan yhteystietoja",
"Add contact" => "Lisää yhteystieto",
"Select Address Books" => "Valitse osoitekirjat",
"Enter name" => "Anna nimi",
"Enter description" => "Anna kuvaus",
"CardDAV syncing addresses" => "CardDAV-synkronointiosoitteet",
"more info" => "lisää tietoa",
"Primary address (Kontact et al)" => "Varsinainen osoite (yhteystiedot jne.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Osoitekirjat",
"Show CardDav link" => "Näytä CardDav-linkki",
"Show read-only VCF link" => "Näytä vain luku -muodossa oleva VCF-linkki",
"Share" => "Jaa",
"Download" => "Lataa",
"Edit" => "Muokkaa",
"New Address Book" => "Uusi osoitekirja",
"Name" => "Nimi",
"Description" => "Kuvaus",
"Save" => "Tallenna",
"Cancel" => "Peru",
"More..." => "Lisää..."
"Save" => "Tallenna"
);

View File

@ -18,7 +18,7 @@
"Missing ID" => "ID manquant",
"Error parsing VCard for ID: \"" => "Erreur lors de l'analyse du VCard pour l'ID: \"",
"checksum is not set." => "L'hachage n'est pas défini.",
"Information about vCard is incorrect. Please reload the page: " => "L'informatiion à propos de la vCard est incorrect. Merci de rafraichir la page:",
"Information about vCard is incorrect. Please reload the page: " => "Les informations relatives à cette vCard sont incorrectes. Veuillez recharger la page :",
"Something went FUBAR. " => "Quelque chose est FUBAR.",
"No contact ID was submitted." => "Aucun ID de contact envoyé",
"Error reading contact photo." => "Erreur de lecture de la photo du contact.",
@ -50,22 +50,33 @@
"Not implemented" => "Pas encore implémenté",
"Couldn't get a valid address." => "Impossible de trouver une adresse valide.",
"Error" => "Erreur",
"Please enter an email address." => "Veuillez entrer une adresse e-mail.",
"Enter name" => "Saisissez le nom",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formatage personnalisé, Nom court, Nom complet, Inversé, Inversé avec virgule",
"Select type" => "Sélectionner un type",
"Select photo" => "Sélectionner une photo",
"You do not have permission to add contacts to " => "Vous n'avez pas l'autorisation d'ajouter des contacts à",
"Please select one of your own address books." => "Veuillez sélectionner l'un de vos carnets d'adresses.",
"Permission error" => "Erreur de permission",
"Click to undo deletion of \"" => "Cliquez pour annuler la suppression de \"",
"Cancelled deletion of: \"" => "Suppression annulée pour : \"",
"This property has to be non-empty." => "Cette valeur ne doit pas être vide",
"Couldn't serialize elements." => "Impossible de sérialiser les éléments.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' a été appelé sans type d'arguments. Merci de rapporter un bug à bugs.owncloud.org",
"Unknown error. Please check logs." => "Erreur inconnue. Veuillez consulter les logs.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' a été appelé sans type d'argument. Merci de rapporter cette anomalie à bugs.owncloud.org",
"Edit name" => "Éditer le nom",
"No files selected for upload." => "Aucun fichiers choisis pour être chargés",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Le fichier que vous tentez de charger dépasse la taille maximum de fichier autorisée sur ce serveur.",
"Error loading profile picture." => "Erreur pendant le chargement de la photo de profil.",
"Select type" => "Sélectionner un type",
"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.",
"Do you want to merge these address books?" => "Voulez-vous fusionner ces carnets d'adresses ?",
"Shared by " => "Partagé par",
"Upload too large" => "Téléversement trop volumineux",
"Only image files can be used as profile picture." => "Seuls les fichiers images peuvent être utilisés pour la photo de profil.",
"Wrong file type" => "Mauvais type de fichier",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Votre navigateur ne supporte pas le téléversement avec AJAX. Veuillez cliquer sur l'image du profil pour sélectionner une photo à téléverser.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossible de téléverser votre fichier dans la mesure où il s'agit d'un répertoire ou d'un fichier de taille nulle",
"Upload Error" => "Erreur lors du téléversement",
"Upload too large" => "Téléversement trop volumineux",
"Pending" => "En attente",
"Import done" => "Fichiers importés",
"Not all files uploaded. Retrying..." => "Tous les fichiers n'ont pas pu être téléversés. Nouvel essai…",
@ -76,6 +87,14 @@
" imported, " => "importé,",
" failed." => "échoué.",
"Displayname cannot be empty." => "Le nom d'affichage ne peut pas être vide.",
"Show CardDav link" => "Afficher le lien CardDav",
"Show read-only VCF link" => "Afficher les liens VCF en lecture seule",
"Download" => "Télécharger",
"Edit" => "Modifier",
"Delete" => "Supprimer",
"Cancel" => "Annuler",
"More..." => "Plus…",
"Less..." => "Moins...",
"You do not have the permissions to read this addressbook." => "Vous n'avez pas les droits suffisants pour accéder à ce carnet d'adresses.",
"You do not have the permissions to update this addressbook." => "Vous n'avez pas les droits suffisants pour mettre à jour ce carnet d'adresses.",
"There was an error updating the addressbook." => "Une erreur s'est produite pendant la mise à jour du carnet d'adresses.",
@ -150,10 +169,8 @@
"Edit current photo" => "Editer la photo actuelle",
"Upload new photo" => "Envoyer une nouvelle photo",
"Select photo from ownCloud" => "Sélectionner une photo depuis ownCloud",
"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",
"Organization" => "Société",
"Delete" => "Supprimer",
"Nickname" => "Surnom",
"Enter nickname" => "Entrer un surnom",
"Web site" => "Page web",
@ -164,7 +181,7 @@
"Separate groups with commas" => "Séparer les groupes avec des virgules",
"Edit groups" => "Editer les groupes",
"Preferred" => "Préféré",
"Please specify a valid email address." => "Merci d'entrer une adresse e-mail valide.",
"Please specify a valid email address." => "Veuillez entrer une adresse e-mail valide.",
"Enter email address" => "Entrer une adresse e-mail",
"Mail to address" => "Envoyer à l'adresse",
"Delete email address" => "Supprimer l'adresse e-mail",
@ -218,29 +235,22 @@
"Jr." => "Jr.",
"Sn." => "Sn.",
"Import a contacts file" => "Importer un fichier de contacts",
"Please choose the addressbook" => "Choisissez le carnet d'adresses SVP",
"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>",
"Add contact" => "Ajouter un contact",
"Select Address Books" => "Choix du carnet d'adresses",
"Enter name" => "Saisissez le nom",
"Enter description" => "Saisissez une description",
"CardDAV syncing addresses" => "Synchronisation des contacts CardDAV",
"more info" => "Plus d'infos",
"Primary address (Kontact et al)" => "Adresse principale",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Carnets d'adresses",
"Show CardDav link" => "Afficher le lien CardDav",
"Show read-only VCF link" => "Afficher les liens VCF en lecture seule",
"Share" => "Partager",
"Download" => "Télécharger",
"Edit" => "Modifier",
"New Address Book" => "Nouveau Carnet d'adresses",
"Name" => "Nom",
"Description" => "Description",
"Save" => "Sauvegarder",
"Cancel" => "Annuler",
"More..." => "Plus…"
"Save" => "Sauvegarder"
);

View File

@ -46,16 +46,21 @@
"Not implemented" => "Non implementada.",
"Couldn't get a valid address." => "Non se puido obter un enderezo de correo válido.",
"Error" => "Erro",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, Nome corto, Nome completo, Inverso ou Inverso con coma",
"Select type" => "Seleccione tipo",
"This property has to be non-empty." => "Esta propiedade non pode quedar baldeira.",
"Couldn't serialize elements." => "Non se puido serializar os elementos.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' chamado sen argumento. Por favor, informe en bugs.owncloud.org",
"Edit name" => "Editar nome",
"No files selected for upload." => "Sen ficheiros escollidos para subir.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O ficheiro que tenta subir supera o tamaño máximo permitido neste servidor.",
"Select type" => "Seleccione tipo",
"Result: " => "Resultado: ",
" imported, " => " importado, ",
" failed." => " fallou.",
"Download" => "Descargar",
"Edit" => "Editar",
"Delete" => "Eliminar",
"Cancel" => "Cancelar",
"This is not your addressbook." => "Esta non é a súa axenda.",
"Contact could not be found." => "Non se atopou o contacto.",
"Work" => "Traballo",
@ -79,10 +84,8 @@
"Edit current photo" => "Editar a foto actual",
"Upload new photo" => "Subir unha nova foto",
"Select photo from ownCloud" => "Escoller foto desde ownCloud",
"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",
"Organization" => "Organización",
"Delete" => "Eliminar",
"Nickname" => "Apodo",
"Enter nickname" => "Introuza apodo",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -146,9 +149,6 @@
"Primary address (Kontact et al)" => "Enderezo primario (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Axendas",
"Download" => "Descargar",
"Edit" => "Editar",
"New Address Book" => "Nova axenda",
"Save" => "Gardar",
"Cancel" => "Cancelar"
"Save" => "Gardar"
);

View File

@ -37,6 +37,10 @@
"No file was uploaded" => "שום קובץ לא הועלה",
"Missing a temporary folder" => "תקיה זמנית חסרה",
"Contacts" => "אנשי קשר",
"Download" => "הורדה",
"Edit" => "עריכה",
"Delete" => "מחיקה",
"Cancel" => "ביטול",
"This is not your addressbook." => "זהו אינו ספר הכתובות שלך",
"Contact could not be found." => "לא ניתן לאתר איש קשר",
"Work" => "עבודה",
@ -61,7 +65,6 @@
"Select photo from ownCloud" => "בחר תמונה מ ownCloud",
"Edit name details" => "ערוך פרטי שם",
"Organization" => "ארגון",
"Delete" => "מחיקה",
"Nickname" => "כינוי",
"Enter nickname" => "הכנס כינוי",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -124,9 +127,6 @@
"Primary address (Kontact et al)" => "כתובת ראשית",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "פנקסי כתובות",
"Download" => "הורדה",
"Edit" => "עריכה",
"New Address Book" => "פנקס כתובות חדש",
"Save" => "שמירה",
"Cancel" => "ביטול"
"Save" => "שמירה"
);

View File

@ -33,6 +33,10 @@
"No file was uploaded" => "Datoteka nije poslana",
"Missing a temporary folder" => "Nedostaje privremeni direktorij",
"Contacts" => "Kontakti",
"Download" => "Preuzimanje",
"Edit" => "Uredi",
"Delete" => "Obriši",
"Cancel" => "Prekini",
"This is not your addressbook." => "Ovo nije vaš adresar.",
"Contact could not be found." => "Kontakt ne postoji.",
"Jabber" => "Jabber",
@ -68,7 +72,6 @@
"Upload new photo" => "Učitaj novu sliku",
"Edit name details" => "Uredi detalje imena",
"Organization" => "Organizacija",
"Delete" => "Obriši",
"Nickname" => "Nadimak",
"Enter nickname" => "Unesi nadimank",
"http://www.somesite.com" => "http://www.somesite.com",
@ -108,9 +111,6 @@
"more info" => "više informacija",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adresari",
"Download" => "Preuzimanje",
"Edit" => "Uredi",
"New Address Book" => "Novi adresar",
"Save" => "Spremi",
"Cancel" => "Prekini"
"Save" => "Spremi"
);

View File

@ -47,16 +47,21 @@
"Not implemented" => "Nem támogatott",
"Couldn't get a valid address." => "Érvényes cím lekérése sikertelen",
"Error" => "Hiba",
"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",
"Select type" => "Típus kiválasztása",
"This property has to be non-empty." => "Ezt a tulajdonságot muszáj kitölteni",
"Couldn't serialize elements." => "Sorbarakás sikertelen",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "A 'deleteProperty' argumentum nélkül lett meghívva. Kérjük, jelezze a hibát.",
"Edit name" => "Név szerkesztése",
"No files selected for upload." => "Nincs kiválasztva feltöltendő fájl",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő fájl mérete meghaladja a megengedett mértéket",
"Select type" => "Típus kiválasztása",
"Result: " => "Eredmény: ",
" imported, " => " beimportálva, ",
" failed." => " sikertelen",
"Download" => "Letöltés",
"Edit" => "Szerkesztés",
"Delete" => "Törlés",
"Cancel" => "Mégsem",
"This is not your addressbook." => "Ez nem a te címjegyzéked.",
"Contact could not be found." => "Kapcsolat nem található.",
"Work" => "Munkahelyi",
@ -80,10 +85,8 @@
"Edit current photo" => "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",
"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",
"Organization" => "Szervezet",
"Delete" => "Törlés",
"Nickname" => "Becenév",
"Enter nickname" => "Becenév megadása",
"dd-mm-yyyy" => "yyyy-mm-dd",
@ -147,9 +150,6 @@
"Primary address (Kontact et al)" => "Elsődleges cím",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Címlisták",
"Download" => "Letöltés",
"Edit" => "Szerkesztés",
"New Address Book" => "Új címlista",
"Save" => "Mentés",
"Cancel" => "Mégsem"
"Save" => "Mentés"
);

View File

@ -7,6 +7,10 @@
"No file was uploaded" => "Nulle file esseva incargate.",
"Missing a temporary folder" => "Manca un dossier temporari",
"Contacts" => "Contactos",
"Download" => "Discargar",
"Edit" => "Modificar",
"Delete" => "Deler",
"Cancel" => "Cancellar",
"This is not your addressbook." => "Iste non es tu libro de adresses",
"Contact could not be found." => "Contacto non poterea esser legite",
"Work" => "Travalio",
@ -28,7 +32,6 @@
"Upload new photo" => "Incargar nove photo",
"Select photo from ownCloud" => "Seliger photo ex ownCloud",
"Organization" => "Organisation",
"Delete" => "Deler",
"Nickname" => "Pseudonymo",
"Enter nickname" => "Inserer pseudonymo",
"Groups" => "Gruppos",
@ -73,9 +76,6 @@
"more info" => "plus info",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressarios",
"Download" => "Discargar",
"Edit" => "Modificar",
"New Address Book" => "Nove adressario",
"Save" => "Salveguardar",
"Cancel" => "Cancellar"
"Save" => "Salveguardar"
);

47
l10n/id.php Normal file
View File

@ -0,0 +1,47 @@
<?php $TRANSLATIONS = array(
"No contacts found." => "kontak tidak ditemukan",
"Cannot add empty property." => "tidak dapat menambahkan properti kosong",
"At least one of the address fields has to be filled out." => "setidaknya satu dari alamat wajib di isi",
"Contacts" => "kontak",
"Download" => "unduh",
"Edit" => "ubah",
"Delete" => "hapus",
"Cancel" => "batal",
"Contact could not be found." => "kontak tidak dapat ditemukan",
"Work" => "pekerjaan",
"Home" => "rumah",
"Mobile" => "ponsel",
"Text" => "teks",
"Voice" => "suara",
"Message" => "pesan",
"Fax" => "fax",
"Video" => "video",
"Pager" => "pager",
"Internet" => "internet",
"Birthday" => "tanggal lahir",
"{name}'s Birthday" => "hari ulang tahun {name}",
"Contact" => "kontak",
"Add Contact" => "tambah kontak",
"Edit name details" => "ubah detail nama",
"Organization" => "organisasi",
"Nickname" => "nama panggilan",
"Enter nickname" => "masukkan nama panggilan",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Groups" => "grup",
"Separate groups with commas" => "pisahkan grup dengan tanda koma",
"Preferred" => "disarankan",
"Phone" => "telefon",
"Email" => "surel",
"Address" => "alamat",
"Download contact" => "unduk kontak",
"Delete contact" => "hapus kontak",
"Type" => "tipe",
"PO Box" => "PO box",
"City" => "kota",
"Region" => "daerah",
"Zipcode" => "kodepos",
"Country" => "negara",
"Addressbook" => "buku alamat",
"Addressbooks" => "buku alamat",
"Save" => "simpan"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Non implementata",
"Couldn't get a valid address." => "Impossibile ottenere un indirizzo valido.",
"Error" => "Errore",
"Please enter an email address." => "Digita un indirizzo di posta elettronica.",
"Enter name" => "Inserisci il nome",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizzato, nome breve, nome completo, invertito o invertito con virgola",
"Select type" => "Seleziona tipo",
"Select photo" => "Seleziona la foto",
"You do not have permission to add contacts to " => "Non hai i permessi per aggiungere contatti a",
"Please select one of your own address books." => "Seleziona una delle tue rubriche.",
"Permission error" => "Errore relativo ai permessi",
"Click to undo deletion of \"" => "Fai clic per annullare l'eliminazione di \"",
"Cancelled deletion of: \"" => "Eliminazione annullata di: \"",
"This property has to be non-empty." => "Questa proprietà non può essere vuota.",
"Couldn't serialize elements." => "Impossibile serializzare gli elementi.",
"Unknown error. Please check logs." => "Errore sconosciuto. Controlla i log.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' invocata senza l'argomento di tipo. Segnalalo a bugs.owncloud.org",
"Edit name" => "Modifica il nome",
"No files selected for upload." => "Nessun file selezionato per l'invio",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Il file che stai cercando di inviare supera la dimensione massima per l'invio dei file su questo server.",
"Error loading profile picture." => "Errore durante il caricamento dell'immagine di profilo.",
"Select type" => "Seleziona il tipo",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alcuni contatti sono marcati per l'eliminazione, ma non sono stati ancora rimossi. Attendi fino al completamento dell'operazione.",
"Do you want to merge these address books?" => "Vuoi unire queste rubriche?",
"Shared by " => "Condiviso da",
"Upload too large" => "Caricamento troppo grande",
"Only image files can be used as profile picture." => "Per l'immagine del profilo possono essere utilizzati solo file di immagini.",
"Wrong file type" => "Tipo di file errato",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Il tuo browser non supporta il caricamento AJAX. Fai clic sull'immagine del profilo per selezionare una foto da caricare.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Impossibile caricare il file poiché è una cartella o ha una dimensione di 0 byte",
"Upload Error" => "Errore di caricamento",
"Upload too large" => "Caricamento troppo grande",
"Pending" => "In corso",
"Import done" => "Importazione completata",
"Not all files uploaded. Retrying..." => "Non tutti i file sono stati caricati. Riprovo...",
@ -76,6 +87,14 @@
" imported, " => " importato, ",
" failed." => " non riuscito.",
"Displayname cannot be empty." => "Il nome visualizzato non può essere vuoto.",
"Show CardDav link" => "Mostra collegamento CardDav",
"Show read-only VCF link" => "Mostra collegamento VCF in sola lettura",
"Download" => "Scarica",
"Edit" => "Modifica",
"Delete" => "Elimina",
"Cancel" => "Annulla",
"More..." => "Altro...",
"Less..." => "Meno...",
"You do not have the permissions to read this addressbook." => "Non hai i permessi per leggere questa rubrica.",
"You do not have the permissions to update this addressbook." => "Non hai i permessi per aggiornare questa rubrica.",
"There was an error updating the addressbook." => "Si è verificato un errore durante l'aggiornamento della rubrica.",
@ -150,10 +169,8 @@
"Edit current photo" => "Modifica la foto corrente",
"Upload new photo" => "Invia una nuova foto",
"Select photo from ownCloud" => "Seleziona la foto da ownCloud",
"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",
"Organization" => "Organizzazione",
"Delete" => "Elimina",
"Nickname" => "Pseudonimo",
"Enter nickname" => "Inserisci pseudonimo",
"Web site" => "Sito web",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Aggiungi contatto",
"Select Address Books" => "Seleziona rubriche",
"Enter name" => "Inserisci il nome",
"Enter description" => "Inserisci una descrizione",
"CardDAV syncing addresses" => "Indirizzi di sincronizzazione CardDAV",
"more info" => "altre informazioni",
"Primary address (Kontact et al)" => "Indirizzo principale (Kontact e altri)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Rubriche",
"Show CardDav link" => "Mostra collegamento CardDav",
"Show read-only VCF link" => "Mostra collegamento VCF in sola lettura",
"Share" => "Condividi",
"Download" => "Scarica",
"Edit" => "Modifica",
"New Address Book" => "Nuova rubrica",
"Name" => "Nome",
"Description" => "Descrizione",
"Save" => "Salva",
"Cancel" => "Annulla",
"More..." => "Altro..."
"Save" => "Salva"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "未実装",
"Couldn't get a valid address." => "有効なアドレスを取得できませんでした。",
"Error" => "エラー",
"Please enter an email address." => "メールアドレスを入力してください。",
"Enter name" => "名前を入力",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "編集フォーマット、ショートネーム、フルネーム、逆順、カンマ区切りの逆順",
"Select type" => "タイプを選択",
"Select photo" => "写真を選択",
"You do not have permission to add contacts to " => "連絡先を追加する権限がありません",
"Please select one of your own address books." => "アドレス帳を一つ選択してください",
"Permission error" => "権限エラー",
"Click to undo deletion of \"" => "削除の取り消すためにクリックしてください: \"",
"Cancelled deletion of: \"" => "キャンセルされた削除: \"",
"This property has to be non-empty." => "この属性は空にできません。",
"Couldn't serialize elements." => "要素をシリアライズできませんでした。",
"Unknown error. Please check logs." => "不明なエラーです。ログを確認して下さい。",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' は型の引数無しで呼び出されました。bugs.owncloud.org へ報告してください。",
"Edit name" => "名前を編集",
"No files selected for upload." => "アップロードするファイルが選択されていません。",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "アップロードしようとしているファイルは、このサーバの最大ファイルアップロードサイズを超えています。",
"Error loading profile picture." => "プロファイルの画像の読み込みエラー",
"Select type" => "タイプを選択",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "いくつかの連絡先が削除とマークされていますが、まだ削除されていません。削除するまでお待ちください。",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "いくつかの連絡先が削除対象としてマークされていますが、まだ削除されていません。削除するまでお待ちください。",
"Do you want to merge these address books?" => "これらのアドレス帳をマージしてもよろしいですか?",
"Shared by " => "共有",
"Upload too large" => "アップロードには大きすぎます。",
"Only image files can be used as profile picture." => "画像ファイルのみがプロファイル写真として使用することができます。",
"Wrong file type" => "誤ったファイルタイプ",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "あなたのブラウザはAJAXのアップロードをサポートしていません。プロファイル写真をクリックしてアップロードする写真を選択してください。",
"Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリや0バイトのファイルはアップロードできません。",
"Upload Error" => "アップロードエラー",
"Upload too large" => "アップロードには大きすぎます。",
"Pending" => "中断",
"Import done" => "インポート完了",
"Not all files uploaded. Retrying..." => "ファイルがアップロード出来ませんでした。再実行中...。",
@ -76,9 +87,17 @@
" imported, " => " をインポート、 ",
" failed." => " は失敗しました。",
"Displayname cannot be empty." => "表示名は空にできません。",
"Show CardDav link" => "CarDavリンクを表示",
"Show read-only VCF link" => "読み取り専用のVCFリンクを表示",
"Download" => "ダウンロード",
"Edit" => "編集",
"Delete" => "削除",
"Cancel" => "取り消し",
"More..." => "もっと...",
"Less..." => "簡略...",
"You do not have the permissions to read this addressbook." => "このアドレス帳を見る権限がありません。",
"You do not have the permissions to update this addressbook." => "アドレスブックを更新する権限がありません",
"There was an error updating the addressbook." => "アドレスブックを更新中にエラーが発生しました。",
"You do not have the permissions to update this addressbook." => "アドレスを更新する権限がありません",
"There was an error updating the addressbook." => "アドレスを更新中にエラーが発生しました。",
"You do not have the permissions to delete this addressbook." => "アドレス帳を削除する権限がありません。",
"There was an error deleting this addressbook." => "アドレス帳を削除するときにエラーが発生しました。",
"Addressbook not found: " => "アドレス帳が見つかりません:",
@ -150,10 +169,8 @@
"Edit current photo" => "現在の写真を編集",
"Upload new photo" => "新しい写真をアップロード",
"Select photo from ownCloud" => "ownCloudから写真を選択",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "編集フォーマット、ショートネーム、フルネーム、逆順、カンマ区切りの逆順",
"Edit name details" => "名前の詳細を編集",
"Organization" => "所属",
"Delete" => "削除",
"Nickname" => "ニックネーム",
"Enter nickname" => "ニックネームを入力",
"Web site" => "ウェブサイト",
@ -220,27 +237,20 @@
"Import a contacts file" => "連絡先ファイルをインポート",
"Please choose the addressbook" => "アドレス帳を選択してください",
"create a new addressbook" => "新しいアドレス帳を作成",
"Name of 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>",
"<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>",
"Add contact" => "連絡先を追加",
"Select Address Books" => "アドレス帳を選択してください",
"Enter name" => "名前を入力",
"Enter description" => "説明を入力してください",
"CardDAV syncing addresses" => "CardDAV同期アドレス",
"more info" => "詳細情報",
"Primary address (Kontact et al)" => "プライマリアドレスKontact 他)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "アドレス帳",
"Show CardDav link" => "CarDavリンクを表示",
"Show read-only VCF link" => "読み取り専用のVCFリンクを表示",
"Share" => "共有",
"Download" => "ダウンロード",
"Edit" => "編集",
"New Address Book" => "新規のアドレス帳",
"Name" => "名前",
"Description" => "説明",
"Save" => "保存",
"Cancel" => "取り消し",
"More..." => "もっと..."
"Save" => "保存"
);

58
l10n/ka_GE.php Normal file
View File

@ -0,0 +1,58 @@
<?php $TRANSLATIONS = array(
"Contacts" => "კონტაქტები",
"Download" => "ჩამოტვირთვა",
"Edit" => "რედაქტირება",
"Delete" => "წაშლა",
"Cancel" => "უარყოფა",
"Work" => "სამსახური",
"Home" => "სახლი",
"Mobile" => "მობილური",
"Text" => "ტექსტი",
"Voice" => "ხმა",
"Message" => "მესიჯი",
"Fax" => "ფაქსი",
"Video" => "ვიდეო",
"Pager" => "პეიჯერი",
"Internet" => "ინტერნეტი",
"Birthday" => "დაბადების დრე",
"Business" => "ბიზნესი",
"Clients" => "კლიენტები",
"Contact" => "კონტაქტი",
"Add Contact" => "კონტაქტის დამატება",
"Import" => "იმპორტი",
"Delete current photo" => "მიმდინარე სურათის წაშლა",
"Edit current photo" => "მიმდინარე სურათის რედაქტირება",
"Upload new photo" => "ახალი სურათის ატვირთვა",
"Select photo from ownCloud" => "აირჩიე სურათი ownCloud –იდან",
"Organization" => "ორგანიზაცია",
"Nickname" => "ნიკნეიმი",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Groups" => "ჯგუფები",
"Edit groups" => "ჯგუფების რედაქტირება",
"Enter email address" => "ჩაწერეთ იმეილ მისამართი",
"Add field" => "დაამატე ველი",
"Phone" => "ტელეფონი",
"Email" => "იმეილი",
"Address" => "მისამართი",
"Note" => "შენიშვნა",
"Download contact" => "კონტაქტის ჩამოტვირთვა",
"Delete contact" => "კონტაქტის წაშლა",
"Edit address" => "მისამართის რედაქტირება",
"Type" => "ტიპი",
"PO Box" => "PO ყუთი",
"Extended" => "Extended",
"City" => "ქალაქი",
"Region" => "რეგიონი",
"Zipcode" => "Zip კოდი",
"Country" => "ქვეყანა",
"Addressbook" => "მისამარტების ზიგნი",
"Miss" => "მისის",
"Ms" => "მის",
"Mr" => "მისტერ",
"Sir" => "სერ",
"Add contact" => "კონტაქტის დამატება",
"more info" => "უფრო მეტი ინფორმაცია",
"Addressbooks" => "მისამართის წიგნები",
"New Address Book" => "ახალი მისამართების წიგნი",
"Save" => "შენახვა"
);

View File

@ -50,6 +50,9 @@
"Not implemented" => "구현되지 않음",
"Couldn't get a valid address." => "유효한 주소를 얻을 수 없습니다.",
"Error" => "오류",
"Enter name" => "이름을 입력",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format custom, Short name, Full name, Reverse or Reverse with comma",
"Select type" => "유형 선택",
"You do not have permission to add contacts to " => "당신은 연락처를 추가 할 수 있는 권한이 없습니다. ",
"Please select one of your own address books." => "당신의 Own 주소록 중 하나만 선택 하세요.",
"Permission error" => "권한 에러",
@ -60,13 +63,19 @@
"No files selected for upload." => "업로드를 위한 파일이 선택되지 않았습니다. ",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "이 파일은 이 서버 파일 업로드 최대 용량을 초과 합니다. ",
"Error loading profile picture." => "프로필 사진 로딩 에러",
"Select type" => "유형 선택",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "일부 연락처가 삭제 표시 되었으나 아직 삭제되지 않았습니다. 삭제가 끝날 때 까지 기다려 주세요.",
"Do you want to merge these address books?" => "이 주소록을 통합하고 싶으십니까?",
"Result: " => "결과:",
" imported, " => "불러오기,",
" failed." => "실패.",
"Displayname cannot be empty." => "디스플레이 이름은 비워둘 수 없습니다. ",
"Show CardDav link" => "CardDav 링크를 표시",
"Show read-only VCF link" => "읽기전용 VCF 링크 표시",
"Download" => "다운로드",
"Edit" => "편집",
"Delete" => "삭제",
"Cancel" => "취소",
"More..." => "더...",
"Addressbook not found: " => "주소록을 찾지 못하였습니다:",
"This is not your addressbook." => "내 주소록이 아닙니다.",
"Contact could not be found." => "연락처를 찾을 수 없습니다.",
@ -131,10 +140,8 @@
"Edit current photo" => "현재 사진 편집",
"Upload new photo" => "새로운 사진 업로드",
"Select photo from ownCloud" => "ownCloud에서 사진 선택",
"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" => "이름 세부사항을 편집합니다. ",
"Organization" => "조직",
"Delete" => "삭제",
"Nickname" => "별명",
"Enter nickname" => "별명 입력",
"Web site" => "웹 사이트",
@ -205,22 +212,15 @@
"Importing contacts" => "연락처 입력",
"Add contact" => "연락처 추가",
"Select Address Books" => "주소록 선택",
"Enter name" => "이름을 입력",
"Enter description" => "설명을 입력",
"CardDAV syncing addresses" => "CardDAV 주소 동기화",
"more info" => "더 많은 정보",
"Primary address (Kontact et al)" => "기본 주소 (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "주소록",
"Show CardDav link" => "CardDav 링크를 표시",
"Show read-only VCF link" => "읽기전용 VCF 링크 표시",
"Share" => "공유",
"Download" => "다운로드",
"Edit" => "편집",
"New Address Book" => "새 주소록",
"Name" => "이름",
"Description" => "종류",
"Save" => "저장",
"Cancel" => "취소",
"More..." => "더..."
"Save" => "저장"
);

View File

@ -22,6 +22,10 @@
"Error" => "Fehler",
"Result: " => "Resultat: ",
" imported, " => " importéiert, ",
"Download" => "Download",
"Edit" => "Editéieren",
"Delete" => "Läschen",
"Cancel" => "Ofbriechen",
"This is not your addressbook." => "Dat do ass net däin Adressbuch.",
"Contact could not be found." => "Konnt den Kontakt net fannen.",
"Work" => "Aarbecht",
@ -40,7 +44,6 @@
"Add Contact" => "Kontakt bäisetzen",
"Close" => "Zoumaachen",
"Organization" => "Firma",
"Delete" => "Läschen",
"Nickname" => "Spëtznumm",
"Enter nickname" => "Gëff e Spëtznumm an",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -76,9 +79,6 @@
"Sn." => "Sn.",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressbicher ",
"Download" => "Download",
"Edit" => "Editéieren",
"New Address Book" => "Neit Adressbuch",
"Save" => "Späicheren",
"Cancel" => "Ofbriechen"
"Save" => "Späicheren"
);

View File

@ -12,6 +12,10 @@
"The uploaded file was only partially uploaded" => "Failas buvo įkeltas tik dalinai",
"No file was uploaded" => "Nebuvo įkeltas joks failas",
"Contacts" => "Kontaktai",
"Download" => "Atsisiųsti",
"Edit" => "Keisti",
"Delete" => "Trinti",
"Cancel" => "Atšaukti",
"This is not your addressbook." => "Tai ne jūsų adresų knygelė.",
"Contact could not be found." => "Kontaktas nerastas",
"Work" => "Darbo",
@ -28,7 +32,6 @@
"Contact" => "Kontaktas",
"Add Contact" => "Pridėti kontaktą",
"Organization" => "Organizacija",
"Delete" => "Trinti",
"Nickname" => "Slapyvardis",
"Enter nickname" => "Įveskite slapyvardį",
"Phone" => "Telefonas",
@ -44,9 +47,6 @@
"Country" => "Šalis",
"Addressbook" => "Adresų knyga",
"Addressbooks" => "Adresų knygos",
"Download" => "Atsisiųsti",
"Edit" => "Keisti",
"New Address Book" => "Nauja adresų knyga",
"Save" => "Išsaugoti",
"Cancel" => "Atšaukti"
"Save" => "Išsaugoti"
);

View File

@ -47,16 +47,21 @@
"Not implemented" => "Не е имплементирано",
"Couldn't get a valid address." => "Не можев да добијам исправна адреса.",
"Error" => "Грешка",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Прилагоден формат, кратко име, цело име, обратно или обратно со запирка",
"Select type" => "Одбери тип",
"This property has to be non-empty." => "Својството не смее да биде празно.",
"Couldn't serialize elements." => "Не може да се серијализираат елементите.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' повикан без тип на аргументот. Пријавете грешка/проблем на bugs.owncloud.org",
"Edit name" => "Уреди го името",
"No files selected for upload." => "Ниту еден фајл не е избран за вчитување.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Датотеката која се обидувате да ја префрлите ја надминува максималната големина дефинирана за пренос на овој сервер.",
"Select type" => "Одбери тип",
"Result: " => "Резултат: ",
" imported, " => "увезено,",
" failed." => "неуспешно.",
"Download" => "Преземи",
"Edit" => "Уреди",
"Delete" => "Избриши",
"Cancel" => "Откажи",
"This is not your addressbook." => "Ова не е во Вашиот адресар.",
"Contact could not be found." => "Контактот неможе да биде најден.",
"Work" => "Работа",
@ -80,10 +85,8 @@
"Edit current photo" => "Уреди моментална фотографија",
"Upload new photo" => "Подигни нова фотографија",
"Select photo from ownCloud" => "Изберете фотографија од ownCloud",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Прилагоден формат, кратко име, цело име, обратно или обратно со запирка",
"Edit name details" => "Уреди детали за име",
"Organization" => "Организација",
"Delete" => "Избриши",
"Nickname" => "Прекар",
"Enter nickname" => "Внеси прекар",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -147,9 +150,6 @@
"Primary address (Kontact et al)" => "Примарна адреса",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Адресари",
"Download" => "Преземи",
"Edit" => "Уреди",
"New Address Book" => "Нов адресар",
"Save" => "Сними",
"Cancel" => "Откажи"
"Save" => "Сними"
);

View File

@ -47,16 +47,23 @@
"Not implemented" => "Tidak digunakan",
"Couldn't get a valid address." => "Tidak boleh mendapat alamat yang sah.",
"Error" => "Ralat",
"Enter name" => "Masukkan nama",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format bebas, Nama pendek, Nama penuh, Unduran dengan koma",
"Select type" => "PIlih jenis",
"This property has to be non-empty." => "Nilai ini tidak boleh kosong.",
"Couldn't serialize elements." => "Tidak boleh menggabungkan elemen.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' dipanggil tanpa argumen taip. Sila maklumkan di bugs.owncloud.org",
"Edit name" => "Ubah nama",
"No files selected for upload." => "Tiada fail dipilih untuk muatnaik.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang ingin dimuatnaik melebihi saiz yang dibenarkan.",
"Select type" => "PIlih jenis",
"Result: " => "Hasil: ",
" imported, " => " import, ",
" failed." => " gagal.",
"Download" => "Muat naik",
"Edit" => "Sunting",
"Delete" => "Padam",
"Cancel" => "Batal",
"More..." => "Lagi...",
"Addressbook not found: " => "Buku alamat tidak ditemui:",
"This is not your addressbook." => "Ini bukan buku alamat anda.",
"Contact could not be found." => "Hubungan tidak dapat ditemui",
@ -94,10 +101,8 @@
"Edit current photo" => "Ubah foto semasa",
"Upload new photo" => "Muatnaik foto baru",
"Select photo from ownCloud" => "Pilih foto dari ownCloud",
"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",
"Organization" => "Organisasi",
"Delete" => "Padam",
"Nickname" => "Nama Samaran",
"Enter nickname" => "Masukkan nama samaran",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -157,19 +162,14 @@
"Importing contacts" => "Import senarai kenalan",
"Add contact" => "Letak kenalan",
"Select Address Books" => "Pilih Buku Alamat",
"Enter name" => "Masukkan nama",
"Enter description" => "Masukkan keterangan",
"CardDAV syncing addresses" => "alamat selarian CardDAV",
"more info" => "maklumat lanjut",
"Primary address (Kontact et al)" => "Alamat utama",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Senarai Buku Alamat",
"Download" => "Muat naik",
"Edit" => "Sunting",
"New Address Book" => "Buku Alamat Baru",
"Name" => "Nama",
"Description" => "Keterangan",
"Save" => "Simpan",
"Cancel" => "Batal",
"More..." => "Lagi..."
"Save" => "Simpan"
);

View File

@ -35,13 +35,17 @@
"No file was uploaded. Unknown error" => "Ingen filer ble lastet opp. Ukjent feil.",
"Contacts" => "Kontakter",
"Error" => "Feil",
"Select type" => "Velg type",
"Edit name" => "Endre navn",
"No files selected for upload." => "Ingen filer valgt for opplasting.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du prøver å laste opp er for stor.",
"Select type" => "Velg type",
"Result: " => "Resultat:",
" imported, " => "importert,",
" failed." => "feilet.",
"Download" => "Hent ned",
"Edit" => "Rediger",
"Delete" => "Slett",
"Cancel" => "Avbryt",
"This is not your addressbook." => "Dette er ikke dine adressebok.",
"Contact could not be found." => "Kontakten ble ikke funnet.",
"Work" => "Arbeid",
@ -67,7 +71,6 @@
"Select photo from ownCloud" => "Velg bilde fra ownCloud",
"Edit name details" => "Endre detaljer rundt navn",
"Organization" => "Organisasjon",
"Delete" => "Slett",
"Nickname" => "Kallenavn",
"Enter nickname" => "Skriv inn kallenavn",
"dd-mm-yyyy" => "dd-mm-åååå",
@ -123,9 +126,6 @@
"more info" => "mer info",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressebøker",
"Download" => "Hent ned",
"Edit" => "Rediger",
"New Address Book" => "Ny adressebok",
"Save" => "Lagre",
"Cancel" => "Avbryt"
"Save" => "Lagre"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Niet geïmplementeerd",
"Couldn't get a valid address." => "Kan geen geldig adres krijgen",
"Error" => "Fout",
"Please enter an email address." => "Voer een emailadres in",
"Enter name" => "Naam",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formateer aangepast, Korte naam, Volledige naam, Achteruit of Achteruit met komma",
"Select type" => "Selecteer type",
"Select photo" => "Selecteer een foto",
"You do not have permission to add contacts to " => "U hebt geen permissie om contacten toe te voegen aan",
"Please select one of your own address books." => "Selecteer één van uw eigen adresboeken",
"Permission error" => "Permissie fout",
"Click to undo deletion of \"" => "Klik om de verwijdering ongedaan te maken van \"",
"Cancelled deletion of: \"" => "Verwijdering afgebroken van: \"",
"This property has to be non-empty." => "Dit veld mag niet leeg blijven",
"Couldn't serialize elements." => "Kan de elementen niet serializen",
"Unknown error. Please check logs." => "Onbekende fout. Controleer de logs.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' aangeroepen zonder type argument. Rapporteer dit a.u.b. via http://bugs.owncloud.org",
"Edit name" => "Pas naam aan",
"No files selected for upload." => "Geen bestanden geselecteerd voor upload.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Het bestand dat u probeert te uploaden overschrijdt de maximale bestand grootte voor bestand uploads voor deze server.",
"Error loading profile picture." => "Fout profiel plaatje kan niet worden geladen.",
"Select type" => "Selecteer type",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Enkele contacten zijn gemarkeerd om verwijderd te worden, maar zijn nog niet verwijderd. Wacht totdat ze zijn verwijderd.",
"Do you want to merge these address books?" => "Wilt u deze adresboeken samenvoegen?",
"Shared by " => "Gedeeld door",
"Upload too large" => "Upload is te groot",
"Only image files can be used as profile picture." => "Alleen afbeeldingsbestanden kunnen als profile afbeelding worden gebruikt.",
"Wrong file type" => "Verkeerde bestand type",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Uw browser ondersteunt geen AJAX upload. Klik op de profiel afbeelding om een foto te selecteren en deze te uploaden.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Het lukt niet om uw bestand te uploaded, omdat het een folder of 0 bytes is",
"Upload Error" => "Upload fout",
"Upload too large" => "Upload is te groot",
"Pending" => "In behandeling",
"Import done" => "Import uitgevoerd",
"Not all files uploaded. Retrying..." => "Nog niet alle bestanden zijn ge-upload. Nogmaals proberen...",
@ -76,6 +87,14 @@
" imported, " => "geïmporteerd,",
" failed." => "gefaald.",
"Displayname cannot be empty." => "Displaynaam mag niet leeg zijn.",
"Show CardDav link" => "Laat CardDav link zien",
"Show read-only VCF link" => "Laat alleen lezen VCF link zien",
"Download" => "Download",
"Edit" => "Bewerken",
"Delete" => "Verwijderen",
"Cancel" => "Anuleren",
"More..." => "Meer...",
"Less..." => "Minder...",
"You do not have the permissions to read this addressbook." => "U heeft geen permissie om dit adresboek in te zien.",
"You do not have the permissions to update this addressbook." => "U heeft onvoldoende rechten om dit adresboek bij te werken.",
"There was an error updating the addressbook." => "Er is een fout opgetreden bij het bijwerken van het adresboek.",
@ -150,10 +169,8 @@
"Edit current photo" => "Wijzig huidige foto",
"Upload new photo" => "Upload nieuwe foto",
"Select photo from ownCloud" => "Selecteer foto uit ownCloud",
"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",
"Organization" => "Organisatie",
"Delete" => "Verwijderen",
"Nickname" => "Roepnaam",
"Enter nickname" => "Voer roepnaam in",
"Web site" => "Website",
@ -208,6 +225,13 @@
"Given name" => "Voornaam",
"Additional names" => "Extra namen",
"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",
@ -215,25 +239,18 @@
"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>Uw 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 een lege ruimte los om een nieuw adresboek te maken met de contacten uit de VCF bestanden.<br />Uw kunt ook importeren door op de import knop te klikken aan de onderkant van de lijst.</p>",
"<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>",
"Add contact" => "Contactpersoon toevoegen",
"Select Address Books" => "Selecteer adresboeken",
"Enter name" => "Naam",
"Enter description" => "Beschrijving",
"CardDAV syncing addresses" => "CardDAV synchroniseert de adressen",
"more info" => "meer informatie",
"Primary address (Kontact et al)" => "Standaardadres",
"iOS/OS X" => "IOS/OS X",
"Addressbooks" => "Adresboeken",
"Show CardDav link" => "Laat CardDav link zien",
"Show read-only VCF link" => "Laat alleen lezen VCF link zien",
"Share" => "Deel",
"Download" => "Download",
"Edit" => "Bewerken",
"New Address Book" => "Nieuw Adresboek",
"Name" => "Naam",
"Description" => "Beschrijving",
"Save" => "Opslaan",
"Cancel" => "Anuleren",
"More..." => "Meer..."
"Save" => "Opslaan"
);

View File

@ -4,6 +4,10 @@
"At least one of the address fields has to be filled out." => "Minst eit av adressefelta må fyllast ut.",
"Information about vCard is incorrect. Please reload the page." => "Informasjonen om vCard-et er feil, ver venleg og last sida på nytt.",
"Contacts" => "Kotaktar",
"Download" => "Last ned",
"Edit" => "Endra",
"Delete" => "Slett",
"Cancel" => "Kanseller",
"This is not your addressbook." => "Dette er ikkje di adressebok.",
"Contact could not be found." => "Fann ikkje kontakten.",
"Work" => "Arbeid",
@ -18,7 +22,6 @@
"Contact" => "Kontakt",
"Add Contact" => "Legg til kontakt",
"Organization" => "Organisasjon",
"Delete" => "Slett",
"Preferred" => "Føretrekt",
"Phone" => "Telefonnummer",
"Email" => "Epost",
@ -34,9 +37,6 @@
"Country" => "Land",
"Addressbook" => "Adressebok",
"Addressbooks" => "Adressebøker",
"Download" => "Last ned",
"Edit" => "Endra",
"New Address Book" => "Ny adressebok",
"Save" => "Lagre",
"Cancel" => "Kanseller"
"Save" => "Lagre"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Nie wdrożono",
"Couldn't get a valid address." => "Nie można pobrać prawidłowego adresu.",
"Error" => "Błąd",
"Please enter an email address." => "Podaj adres email",
"Enter name" => "Wpisz nazwę",
"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",
"Select type" => "Wybierz typ",
"Select photo" => "Wybierz zdjęcie",
"You do not have permission to add contacts to " => "Nie masz uprawnień dodawania kontaktów do",
"Please select one of your own address books." => "Wybierz własną książkę adresową.",
"Permission error" => "Błąd uprawnień",
"Click to undo deletion of \"" => "Kliknij aby cofnąć usunięcie \"",
"Cancelled deletion of: \"" => "Anulowane usunięcie :\"",
"This property has to be non-empty." => "Ta właściwość nie może być pusta.",
"Couldn't serialize elements." => "Nie można serializować elementów.",
"Unknown error. Please check logs." => "Nieznany błąd. Sprawdź logi",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty' wywołana bez argumentu typu. Proszę raportuj na bugs.owncloud.org",
"Edit name" => "Zmień nazwę",
"No files selected for upload." => "Żadne pliki nie zostały zaznaczone do wysłania.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Plik, który próbujesz wysłać przekracza maksymalny rozmiar pliku przekazywania na tym serwerze.",
"Error loading profile picture." => "Błąd wczytywania zdjęcia profilu.",
"Select type" => "Wybierz typ",
"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.",
"Do you want to merge these address books?" => "Czy chcesz scalić te książki adresowe?",
"Shared by " => "Udostępniane przez",
"Upload too large" => "Załadunek za duży",
"Only image files can be used as profile picture." => "Tylko obrazki mogą być użyte jako zdjęcie profilowe.",
"Wrong file type" => "Zły typ pliku",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Twoja przeglądarka nie obsługuje wczytywania AJAX. Proszę kliknąć na zdjęcie profilu, aby wybrać zdjęcie do wgrania.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nie można przesłać pliku, ponieważ to jest katalog lub ma 0 bajtów",
"Upload Error" => "Błąd ładowania",
"Upload too large" => "Załadunek za duży",
"Pending" => "W toku",
"Import done" => "Import zakończony",
"Not all files uploaded. Retrying..." => "Nie wszystkie pliki załadowane. Ponowna próba...",
@ -76,6 +87,14 @@
" imported, " => " importowane, ",
" failed." => " nie powiodło się.",
"Displayname cannot be empty." => "Nazwa nie może być pusta.",
"Show CardDav link" => "Pokaż link CardDAV",
"Show read-only VCF link" => "Pokaż tylko do odczytu łącze VCF",
"Download" => "Pobiera książkę adresową",
"Edit" => "Edytuje książkę adresową",
"Delete" => "Usuwa książkę adresową",
"Cancel" => "Anuluj",
"More..." => "Więcej...",
"Less..." => "Mniej...",
"You do not have the permissions to read this addressbook." => "Nie masz uprawnień do przeglądania tej ksiązki adresowej.",
"You do not have the permissions to update this addressbook." => "Nie masz uprawnień do aktualizacji tej książki adresowej.",
"There was an error updating the addressbook." => "Wystąpił błąd podczas aktualizowania książki adresowej.",
@ -150,10 +169,8 @@
"Edit current photo" => "Edytuj aktualne zdjęcie",
"Upload new photo" => "Wczytaj nowe zdjęcie",
"Select photo from ownCloud" => "Wybierz zdjęcie z ownCloud",
"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",
"Organization" => "Organizacja",
"Delete" => "Usuwa książkę adresową",
"Nickname" => "Nazwa",
"Enter nickname" => "Wpisz nazwę",
"Web site" => "Strona www",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Dodaj kontakt",
"Select Address Books" => "Wybierz książki adresowe",
"Enter name" => "Wpisz nazwę",
"Enter description" => "Wprowadź opis",
"CardDAV syncing addresses" => "adres do synchronizacji CardDAV",
"more info" => "więcej informacji",
"Primary address (Kontact et al)" => "Pierwszy adres",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Książki adresowe",
"Show CardDav link" => "Pokaż link CardDAV",
"Show read-only VCF link" => "Pokaż tylko do odczytu łącze VCF",
"Share" => "Udostępnij",
"Download" => "Pobiera książkę adresową",
"Edit" => "Edytuje książkę adresową",
"New Address Book" => "Nowa książka adresowa",
"Name" => "Nazwa",
"Description" => "Opis",
"Save" => "Zapisz",
"Cancel" => "Anuluj",
"More..." => "Więcej..."
"Save" => "Zapisz"
);

View File

@ -8,9 +8,12 @@
"No address books found." => "Nenhuma agenda de endereços encontrada.",
"No contacts found." => "Nenhum contato encontrado.",
"element name is not set." => "nome do elemento não definido.",
"Could not parse contact: " => "Incapaz de analisar contato:",
"Cannot add empty property." => "Não é possível adicionar propriedade vazia.",
"At least one of the address fields has to be filled out." => "Pelo menos um dos campos de endereço tem que ser preenchido.",
"Trying to add duplicate property: " => "Tentando adiciona propriedade duplicada:",
"Missing IM parameter." => "Faltando parâmetro de IM.",
"Unknown IM: " => "IM desconhecido:",
"Information about vCard is incorrect. Please reload the page." => "Informações sobre vCard é incorreta. Por favor, recarregue a página.",
"Missing ID" => "Faltando ID",
"Error parsing VCard for ID: \"" => "Erro de identificação VCard para ID:",
@ -47,20 +50,74 @@
"Not implemented" => "não implementado",
"Couldn't get a valid address." => "Não foi possível obter um endereço válido.",
"Error" => "Erro",
"Please enter an email address." => "Por favor digite um endereço de e-mail",
"Enter name" => "Digite o nome",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formato personalizado, Nome curto, Nome completo, Inverter ou Inverter com vírgula",
"Select type" => "Selecione o tipo",
"Select photo" => "Selecione foto",
"You do not have permission to add contacts to " => "Você não tem permissão para adicionar contatos a",
"Please select one of your own address books." => "Por favor selecione uma das suas próprias agendas.",
"Permission error" => "Erro de permissão",
"Click to undo deletion of \"" => "Clique para desfazer remoção de \"",
"Cancelled deletion of: \"" => "Remoção desfeita de: \"",
"This property has to be non-empty." => "Esta propriedade não pode estar vazia.",
"Couldn't serialize elements." => "Não foi possível serializar elementos.",
"Unknown error. Please check logs." => "Erro desconhecido. Por favor verifique os logs.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty\" chamado sem argumento de tipo. Por favor, informe a bugs.owncloud.org",
"Edit name" => "Editar nome",
"No files selected for upload." => "Nenhum arquivo selecionado para carregar.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O arquivo que você está tentando carregar excede o tamanho máximo para este servidor.",
"Select type" => "Selecione o tipo",
"Error loading profile picture." => "Erro ao carregar imagem de perfil.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alguns contatos foram marcados para remoção, mas não foram removidos ainda. Por favor aguarde a remoção desses contatos.",
"Do you want to merge these address books?" => "Você deseja unir essas agendas?",
"Shared by " => "Compartilhado por",
"Upload too large" => "Upload muito grande",
"Only image files can be used as profile picture." => "Somente imagens podem ser usadas como foto de perfil.",
"Wrong file type" => "Tipo de arquivo errado",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Seu navegador não suporta upload via AJAX. Por favor clique na foto de perfil e selecione uma foto para enviar.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Incapaz de enviar seu arquivo pois ele é um diretório, ou ele tem 0 bytes",
"Upload Error" => "Erro de Upload",
"Pending" => "Pendente",
"Import done" => "Importação concluída",
"Not all files uploaded. Retrying..." => "Nem todos os arquivos foram enviados. Tentando novamente...",
"Something went wrong with the upload, please retry." => "Algo errado ocorreu com o envio, por favor tente novamente.",
"Importing..." => "Importando...",
"The address book name cannot be empty." => "O nome da agenda não pode ficar em branco.",
"Result: " => "Resultado:",
" imported, " => "importado,",
" failed." => "falhou.",
"Displayname cannot be empty." => "Nome de exibição não pode ficar em branco.",
"Show CardDav link" => "Mostrar link CardDav",
"Show read-only VCF link" => "Mostrar link VCF somente-leitura",
"Download" => "Baixar",
"Edit" => "Editar",
"Delete" => "Excluir",
"Cancel" => "Cancelar",
"More..." => "Mais...",
"Less..." => "Menos...",
"You do not have the permissions to read this addressbook." => "Você não tem permissões para ler essa agenda.",
"You do not have the permissions to update this addressbook." => "Você não tem permissões para atualizar essa agenda.",
"There was an error updating the addressbook." => "Houve um erro ao atualizar a agenda.",
"You do not have the permissions to delete this addressbook." => "Você não tem permissão para remover essa agenda.",
"There was an error deleting this addressbook." => "Houve um erro ao remover essa agenda.",
"Addressbook not found: " => "Agenda não encontrada:",
"This is not your addressbook." => "Esta não é a sua agenda de endereços.",
"Contact could not be found." => "Contato não pôde ser encontrado.",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Trabalho",
"Home" => "Home",
"Other" => "Outro",
"Mobile" => "Móvel",
"Text" => "Texto",
"Voice" => "Voz",
@ -70,22 +127,55 @@
"Pager" => "Pager",
"Internet" => "Internet",
"Birthday" => "Aniversário",
"Business" => "Trabalho",
"Call" => "Chamar",
"Clients" => "Clientes",
"Deliverer" => "Entrega",
"Holidays" => "Feriados",
"Ideas" => "Idéias",
"Journey" => "Jornada",
"Jubilee" => "Jubileu",
"Meeting" => "Reunião",
"Personal" => "Pessoal",
"Projects" => "Projetos",
"Questions" => "Perguntas",
"{name}'s Birthday" => "Aniversário de {name}",
"Contact" => "Contato",
"You do not have the permissions to add contacts to this addressbook." => "Você não tem permissões para adicionar contatos a essa agenda.",
"Could not find the vCard with ID." => "Não pôde encontrar o vCard com ID.",
"You do not have the permissions to edit this contact." => "Você não tem permissão para editar esse contato.",
"Could not find the vCard with ID: " => "Não pôde encontrar o vCard com ID:",
"Could not find the Addressbook with ID: " => "Não pôde encontrar a Agenda com ID:",
"You do not have the permissions to delete this contact." => "Você não tem permissão para remover esse contato.",
"There was an error deleting this contact." => "Houve um erro ao remover esse contato.",
"Add Contact" => "Adicionar Contato",
"Import" => "Importar",
"Settings" => "Ajustes",
"Close" => "Fechar.",
"Keyboard shortcuts" => "Atalhos do teclado",
"Navigation" => "Navegação",
"Next contact in list" => "Próximo contato na lista",
"Previous contact in list" => "Contato anterior na lista",
"Expand/collapse current addressbook" => "Expandir/recolher agenda atual",
"Next addressbook" => "Próxima agenda",
"Previous addressbook" => "Agenda anterior",
"Actions" => "Ações",
"Refresh contacts list" => "Atualizar lista de contatos",
"Add new contact" => "Adicionar novo contato",
"Add new addressbook" => "Adicionar nova agenda",
"Delete current contact" => "Remover contato atual",
"Drop photo to upload" => "Arraste a foto para ser carregada",
"Delete current photo" => "Deletar imagem atual",
"Edit current photo" => "Editar imagem atual",
"Upload new photo" => "Carregar nova foto",
"Select photo from ownCloud" => "Selecionar foto do OwnCloud",
"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",
"Organization" => "Organização",
"Delete" => "Excluir",
"Nickname" => "Apelido",
"Enter nickname" => "Digite o apelido",
"Web site" => "Web site",
"http://www.somesite.com" => "http://www.qualquersite.com",
"Go to web site" => "Ir para web site",
"dd-mm-yyyy" => "dd-mm-aaaa",
"Groups" => "Grupos",
"Separate groups with commas" => "Separe grupos por virgula",
@ -97,12 +187,15 @@
"Delete email address" => "Remover endereço de email",
"Enter phone number" => "Digite um número de telefone",
"Delete phone number" => "Remover número de telefone",
"Instant Messenger" => "Mensageiro Instantâneo",
"Delete IM" => "Delete IM",
"View on map" => "Visualizar no mapa",
"Edit address details" => "Editar detalhes de endereço",
"Add notes here." => "Adicionar notas",
"Add field" => "Adicionar campo",
"Phone" => "Telefone",
"Email" => "E-mail",
"Instant Messaging" => "Mensagem Instantânea",
"Address" => "Endereço",
"Note" => "Nota",
"Download contact" => "Baixar contato",
@ -111,10 +204,15 @@
"Edit address" => "Editar endereço",
"Type" => "Digite",
"PO Box" => "Caixa Postal",
"Street address" => "Endereço da rua",
"Street and number" => "Logradouro e número",
"Extended" => "Estendido",
"Apartment number etc." => "Número do apartamento, etc.",
"City" => "Cidade",
"Region" => "Região",
"E.g. state or province" => "Estado ou província",
"Zipcode" => "CEP",
"Postal code" => "Código postal",
"Country" => "País",
"Addressbook" => "Agenda de Endereço",
"Hon. prefixes" => "Exmo. Prefixos ",
@ -141,15 +239,18 @@
"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>",
"Add contact" => "Adicionar contatos",
"Select Address Books" => "Selecione Agendas",
"Enter description" => "Digite a descrição",
"CardDAV syncing addresses" => "Sincronizando endereços CardDAV",
"more info" => "leia mais",
"Primary address (Kontact et al)" => "Endereço primário(Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Agendas de Endereço",
"Download" => "Baixar",
"Edit" => "Editar",
"Share" => "Compartilhar",
"New Address Book" => "Nova agenda",
"Save" => "Salvar",
"Cancel" => "Cancelar"
"Name" => "Nome",
"Description" => "Descrição",
"Save" => "Salvar"
);

View File

@ -50,20 +50,56 @@
"Not implemented" => "Não implementado",
"Couldn't get a valid address." => "Não foi possível obter um endereço válido.",
"Error" => "Erro",
"Please enter an email address." => "Por favor escreva um endereço de email.",
"Enter name" => "Introduzir nome",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Formate personalizado, Nome curto, Nome completo, Reverso ou Reverso com virgula",
"Select type" => "Seleccionar tipo",
"Select photo" => "Seleccione uma fotografia",
"You do not have permission to add contacts to " => "Não tem permissão para acrescentar contactos a",
"Please select one of your own address books." => "Por favor escolha uma das suas listas de contactos.",
"Permission error" => "Erro de permissão",
"Click to undo deletion of \"" => "Click para recuperar \"",
"Cancelled deletion of: \"" => "Cancelou o apagar de: \"",
"This property has to be non-empty." => "Esta propriedade não pode estar vazia.",
"Couldn't serialize elements." => "Não foi possivel serializar os elementos",
"Unknown error. Please check logs." => "Erro desconhecido. Por favor verifique os logs.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' chamada sem argumento definido. Por favor report o problema em bugs.owncloud.org",
"Edit name" => "Editar nome",
"No files selected for upload." => "Nenhum ficheiro seleccionado para enviar.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "O tamanho do ficheiro que está a tentar carregar ultrapassa o limite máximo definido para ficheiros no servidor.",
"Error loading profile picture." => "Erro ao carregar imagem de perfil.",
"Select type" => "Seleccionar tipo",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Alguns contactos forma marcados para apagar, mas ainda não foram apagados. Por favor espere que ele sejam apagados.",
"Do you want to merge these address books?" => "Quer fundir estes Livros de endereços?",
"Shared by " => "Partilhado por",
"Upload too large" => "Upload muito grande",
"Only image files can be used as profile picture." => "Apenas ficheiros de imagens podem ser usados como fotografias de perfil.",
"Wrong file type" => "Tipo de ficheiro errado",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "O seu navegador não suporta o upload por AJAX. Por favor click na imagem de perfil para seleccionar uma fotografia para enviar.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Foi impossível enviar o seu ficheiro, pois é uma directoria ou tem 0 bytes.",
"Upload Error" => "Erro de upload",
"Pending" => "Pendente",
"Import done" => "Importação terminada",
"Not all files uploaded. Retrying..." => "Nem todos os ficheiros foram enviados. A tentar de novo...",
"Something went wrong with the upload, please retry." => "Algo correu mal ao enviar, por favor tente de novo.",
"Importing..." => "A importar...",
"The address book name cannot be empty." => "O nome do livro de endereços não pode estar vazio.",
"Result: " => "Resultado: ",
" imported, " => " importado, ",
" failed." => " falhou.",
"Displayname cannot be empty." => "Displayname não pode ser vazio",
"Show CardDav link" => "Mostrar ligação CardDAV",
"Show read-only VCF link" => "Mostrar ligações VCF só de leitura",
"Download" => "Transferir",
"Edit" => "Editar",
"Delete" => "Apagar",
"Cancel" => "Cancelar",
"More..." => "Mais...",
"Less..." => "Menos...",
"You do not have the permissions to read this addressbook." => "Não tem permissões para ler este livro de endereços.",
"You do not have the permissions to update this addressbook." => "Não tem permissões para actualizar este livro de endereços.",
"There was an error updating the addressbook." => "Ocorreu um erro ao actualizar o livro de endereços.",
"You do not have the permissions to delete this addressbook." => "Não tem permissões para apagar esta lista de contactos.",
"There was an error deleting this addressbook." => "Ocorreu um erro ao apagar esta lista de contactos.",
"Addressbook not found: " => "Livro de endereços não encontrado.",
"This is not your addressbook." => "Esta não é a sua lista de contactos",
"Contact could not be found." => "O contacto não foi encontrado",
@ -105,6 +141,13 @@
"Questions" => "Questões",
"{name}'s Birthday" => "Aniversário de {name}",
"Contact" => "Contacto",
"You do not have the permissions to add contacts to this addressbook." => "Não tem permissões para acrescentar contactos a este livro de endereços.",
"Could not find the vCard with ID." => "Não foi possível encontrar o vCard com o ID.",
"You do not have the permissions to edit this contact." => "Não tem permissões para alterar este contacto.",
"Could not find the vCard with ID: " => "Não foi possível encontrar o vCard com o ID:",
"Could not find the Addressbook with ID: " => "Não foi possível encontrar a lista de contactos com o ID:",
"You do not have the permissions to delete this contact." => "Não tem permissões para apagar este contacto.",
"There was an error deleting this contact." => "Ocorreu um erro ao apagar este contacto.",
"Add Contact" => "Adicionar Contacto",
"Import" => "Importar",
"Settings" => "Configurações",
@ -126,10 +169,8 @@
"Edit current photo" => "Editar a foto actual",
"Upload new photo" => "Carregar nova foto",
"Select photo from ownCloud" => "Selecionar uma foto da ownCloud",
"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",
"Organization" => "Organização",
"Delete" => "Apagar",
"Nickname" => "Alcunha",
"Enter nickname" => "Introduza alcunha",
"Web site" => "Página web",
@ -198,24 +239,18 @@
"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>",
"Add contact" => "Adicionar contacto",
"Select Address Books" => "Selecionar Livros de contactos",
"Enter name" => "Introduzir nome",
"Enter description" => "Introduzir descrição",
"CardDAV syncing addresses" => "CardDAV a sincronizar endereços",
"more info" => "mais informação",
"Primary address (Kontact et al)" => "Endereço primario (Kontact et al)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Livros de endereços",
"Show CardDav link" => "Mostrar ligação CardDAV",
"Show read-only VCF link" => "Mostrar ligações VCF só de leitura",
"Share" => "Partilhar",
"Download" => "Transferir",
"Edit" => "Editar",
"New Address Book" => "Novo livro de endereços",
"Name" => "Nome",
"Description" => "Descrição",
"Save" => "Guardar",
"Cancel" => "Cancelar",
"More..." => "Mais..."
"Save" => "Guardar"
);

View File

@ -9,10 +9,12 @@
"element name is not set." => "numele elementului nu este stabilit.",
"Cannot add empty property." => "Nu se poate adăuga un câmp gol.",
"At least one of the address fields has to be filled out." => "Cel puțin unul din câmpurile adresei trebuie completat.",
"Trying to add duplicate property: " => "Se încearcă adăugarea unei proprietăți duplicat:",
"Information about vCard is incorrect. Please reload the page." => "Informațiile cărții de vizită sunt incorecte. Te rog reîncarcă pagina.",
"Missing ID" => "ID lipsă",
"Error parsing VCard for ID: \"" => "Eroare la prelucrarea VCard-ului pentru ID:\"",
"checksum is not set." => "suma de control nu este stabilită.",
"Information about vCard is incorrect. Please reload the page: " => "Informația despre vCard este incorectă. Te rugăm să reîncarci pagina:",
"No contact ID was submitted." => "Nici un ID de contact nu a fost transmis",
"Error reading contact photo." => "Eroare la citerea fotografiei de contact",
"Error saving temporary file." => "Eroare la salvarea fișierului temporar.",
@ -21,11 +23,30 @@
"No photo path was submitted." => "Nici o adresă către fotografie nu a fost transmisă",
"File doesn't exist:" => "Fișierul nu există:",
"Error loading image." => "Eroare la încărcarea imaginii.",
"Error uploading contacts to storage." => "Eroare la încărcarea contactelor.",
"There is no error, the file uploaded with success" => "Nu a apărut nici o eroare, fișierul a fost încărcat cu succes",
"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",
"No file was uploaded. Unknown error" => "Nici un fișier nu a fost încărcat. Eroare necunoscută",
"Contacts" => "Contacte",
"Error" => "Eroare",
"Enter name" => "Specifică nume",
"Select type" => "Selectează tip",
"Edit name" => "Editează nume",
"Result: " => "Rezultat:",
" imported, " => "importat,",
"Show CardDav link" => "Arată legătură CardDav",
"Download" => "Descarcă",
"Edit" => "Editează",
"Delete" => "Șterge",
"Cancel" => "Anulează",
"More..." => "Mai multe...",
"This is not your addressbook." => "Nu se găsește în agendă.",
"Contact could not be found." => "Contactul nu a putut fi găsit.",
"Work" => "Servicu",
"Home" => "Acasă",
"Other" => "Altele",
"Mobile" => "Mobil",
"Text" => "Text",
"Voice" => "Voce",
@ -35,14 +56,37 @@
"Pager" => "Pager",
"Internet" => "Internet",
"Birthday" => "Zi de naștere",
"Business" => "Companie",
"Call" => "Sună",
"Clients" => "Clienți",
"Ideas" => "Idei",
"Meeting" => "Întâlnire",
"Personal" => "Personal",
"Projects" => "Proiecte",
"Questions" => "Întrebări",
"{name}'s Birthday" => "Ziua de naștere a {name}",
"Contact" => "Contact",
"Add Contact" => "Adaugă contact",
"Import" => "Importă",
"Settings" => "Setări",
"Close" => "Închide",
"Keyboard shortcuts" => "Scurtături din tastatură",
"Navigation" => "Navigare",
"Next contact in list" => "Următorul contact din listă",
"Previous contact in list" => "Contactul anterior din listă",
"Actions" => "Acțiuni",
"Add new contact" => "Adaugă contact nou",
"Delete current contact" => "Șterge contactul curent",
"Delete current photo" => "Șterge poza curentă",
"Edit current photo" => "Editează poza curentă",
"Upload new photo" => "Încarcă poză nouă",
"Select photo from ownCloud" => "Selectează poză din ownCloud",
"Edit name details" => "Introdu detalii despre nume",
"Organization" => "Organizație",
"Delete" => "Șterge",
"Nickname" => "Pseudonim",
"Enter nickname" => "Introdu pseudonim",
"Web site" => "Site web",
"Go to web site" => "Vizitează site-ul",
"dd-mm-yyyy" => "zz-ll-aaaa",
"Groups" => "Grupuri",
"Separate groups with commas" => "Separă grupurile cu virgule",
@ -52,23 +96,45 @@
"Enter email address" => "Introdu adresa de e-mail",
"Mail to address" => "Trimite mesaj la e-mail",
"Delete email address" => "Șterge e-mail",
"Enter phone number" => "Specifică numărul de telefon",
"Delete phone number" => "Șterge numărul de telefon",
"View on map" => "Vezi pe hartă",
"Edit address details" => "Editează detaliile adresei",
"Add notes here." => "Adaugă note",
"Add field" => "Adaugă câmp",
"Phone" => "Telefon",
"Email" => "Email",
"Address" => "Adresă",
"Note" => "Notă",
"Download contact" => "Descarcă acest contact",
"Delete contact" => "Șterge contact",
"The temporary image has been removed from cache." => "Imaginea temporară a fost eliminată din cache.",
"Edit address" => "Editeză adresă",
"Type" => "Tip",
"PO Box" => "CP",
"Street address" => "Adresa",
"Street and number" => "Stradă și număr",
"Extended" => "Extins",
"Apartment number etc." => "Apartament etc.",
"City" => "Oraș",
"Region" => "Regiune",
"E.g. state or province" => "Ex. județ sau provincie",
"Zipcode" => "Cod poștal",
"Postal code" => "Codul poștal",
"Country" => "Țară",
"Addressbook" => "Agendă",
"Ms" => "Dna.",
"Mr" => "Dl.",
"Given name" => "Prenume",
"Family name" => "Nume",
"Import a contacts file" => "Importă un fișier cu contacte",
"Importing contacts" => "Se importă contactele",
"Add contact" => "Adaugă contact",
"Enter description" => "Specifică descriere",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Agende",
"Download" => "Descarcă",
"Edit" => "Editează",
"New Address Book" => "Agendă nouă",
"Save" => "Salvează",
"Cancel" => "Anulează"
"Name" => "Nume",
"Description" => "Descriere",
"Save" => "Salvează"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Не реализовано",
"Couldn't get a valid address." => "Не удалось получить адрес.",
"Error" => "Ошибка",
"Please enter an email address." => "Пожалуйста, введите адрес электронной почты",
"Enter name" => "Введите имя",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Формат Краткое имя, Полное имя",
"Select type" => "Выберите тип",
"Select photo" => "Выберите фото",
"You do not have permission to add contacts to " => "У вас нет разрешений добавлять контакты в",
"Please select one of your own address books." => "Выберите одну из ваших собственных адресных книг.",
"Permission error" => "Ошибка доступа",
"Click to undo deletion of \"" => "Нажмите для отмены удаления \"",
"Cancelled deletion of: \"" => "Отменено удаление: \"",
"This property has to be non-empty." => "Это поле не должно быть пустым.",
"Couldn't serialize elements." => "Не удалось сериализовать элементы.",
"Unknown error. Please check logs." => "Неизвестная ошибка. Пожалуйста, проверьте логи.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' called without type argument. Please report at bugs.owncloud.org",
"Edit name" => "Изменить имя",
"No files selected for upload." => "Нет выбранных файлов для загрузки.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Файл, который вы пытаетесь загрузить превышать максимальный размер загружаемых файлов на этом сервере.",
"Error loading profile picture." => "Ошибка загрузки изображения профиля.",
"Select type" => "Выберите тип",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Некоторые контакты помечены на удаление, но ещё не удалены. Подождите, пока они удаляются.",
"Do you want to merge these address books?" => "Вы хотите соединить эти адресные книги?",
"Shared by " => "Опубликовано",
"Upload too large" => "Файл слишком велик",
"Only image files can be used as profile picture." => "Только файлы изображений могут быть использованы в качестве картинки профиля.",
"Wrong file type" => "Неверный тип файла",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Ваш браузер не поддерживает загрузку AJAX. Пожалуйста, нажмите на картинке профиля, чтобы загрузить фото.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Файл не был загружен: его размер 0 байт либо это не файл, а директория.",
"Upload Error" => "Ошибка при загрузке",
"Upload too large" => "Файл слишком велик",
"Pending" => "Ожидание",
"Import done" => "Импорт завершен",
"Not all files uploaded. Retrying..." => "Не все файлы были загружены. Повторяю...",
@ -76,6 +87,14 @@
" imported, " => "импортировано, ",
" failed." => "не удалось.",
"Displayname cannot be empty." => "Отображаемое имя не может быть пустым.",
"Show CardDav link" => "Показать ссылку CardDav",
"Show read-only VCF link" => "Показать нередактируемую ссылку VCF",
"Download" => "Скачать",
"Edit" => "Редактировать",
"Delete" => "Удалить",
"Cancel" => "Отменить",
"More..." => "Ещё...",
"Less..." => "Меньше...",
"You do not have the permissions to read this addressbook." => "У вас нет права просмотра этой адресной книги.",
"You do not have the permissions to update this addressbook." => "У вас нет права обновлять эту адресную книгу.",
"There was an error updating the addressbook." => "Ошибка при обновлении адресной книги.",
@ -150,10 +169,8 @@
"Edit current photo" => "Редактировать текущую фотографию",
"Upload new photo" => "Загрузить новую фотографию",
"Select photo from ownCloud" => "Выбрать фотографию из ownCloud",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Формат Краткое имя, Полное имя",
"Edit name details" => "Изменить детали имени",
"Organization" => "Организация",
"Delete" => "Удалить",
"Nickname" => "Псевдоним",
"Enter nickname" => "Введите псевдоним",
"Web site" => "Веб-сайт",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Добавить контакт",
"Select Address Books" => "Выбрать адресную книгу",
"Enter name" => "Введите имя",
"Enter description" => "Ввдите описание",
"CardDAV syncing addresses" => "Синхронизация адресов CardDAV",
"more info" => "дополнительная информация",
"Primary address (Kontact et al)" => "Первичный адрес (Kontact и др.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Адресные книги",
"Show CardDav link" => "Показать ссылку CardDav",
"Show read-only VCF link" => "Показать нередактируемую ссылку VCF",
"Share" => "Опубликовать",
"Download" => "Скачать",
"Edit" => "Редактировать",
"New Address Book" => "Новая адресная книга",
"Name" => "Имя",
"Description" => "Описание",
"Save" => "Сохранить",
"Cancel" => "Отменить",
"More..." => "Ещё..."
"Save" => "Сохранить"
);

256
l10n/ru_RU.php Normal file
View File

@ -0,0 +1,256 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "Ошибка (дез)активации адресной книги.",
"id is not set." => "ID не установлен",
"Cannot update addressbook with an empty name." => "Невозможно обновить адресную книгу с пустой строкой имени.",
"No ID provided" => "Не предоставлено ID",
"Error setting checksum." => "Ошибка при установке контрольной суммы.",
"No categories selected for deletion." => "Нет категорий, выбранных для удаления.",
"No address books found." => "Не найдено адресных книг.",
"No contacts found." => "Не найдено контактов.",
"element name is not set." => "Элемент Имя не установлен.",
"Could not parse contact: " => "Не удалось обработать контакт:",
"Cannot add empty property." => "Невозможно добавить пустое свойство.",
"At least one of the address fields has to be filled out." => "Хотя бы одно адресное поле должно быть заполнено.",
"Trying to add duplicate property: " => "Попробуйте добавить дублирующееся свойство.",
"Missing IM parameter." => "Отсутствующий IM параметр.",
"Unknown IM: " => "Неизвестный IM: ",
"Information about vCard is incorrect. Please reload the page." => "Информация о визитной карточке некорректна. Пожалуйста, перезагрузите страницу.",
"Missing ID" => "Отсутствующий ID",
"Error parsing VCard for ID: \"" => "Ошибка при анализе визитной карточки для ID: \"",
"checksum is not set." => "Контрольная сумма не установлена.",
"Information about vCard is incorrect. Please reload the page: " => "Информация о визитной карточке некорректна. Пожалуйста, перезагрузите страницу:",
"Something went FUBAR. " => "Что-то безнадежно испорчено.",
"No contact ID was submitted." => "Контактный ID не был представлен.",
"Error reading contact photo." => "Ошибка при чтении фотографии контакта.",
"Error saving temporary file." => "Ошибка при сохранении временного файла.",
"The loading photo is not valid." => "Загрузка фотографии недопустима.",
"Contact ID is missing." => "Отсутствует контактный ID.",
"No photo path was submitted." => "Не указано расположение фотографий.",
"File doesn't exist:" => "Файл не существует:",
"Error loading image." => "Ошибка при загрузке изображения.",
"Error getting contact object." => "Ошибка при получении контактного объекта.",
"Error getting PHOTO property." => "Ошибка при получении свойств PHOTO.",
"Error saving contact." => "Ошибка при сохранении контакта",
"Error resizing image" => "Ошибка изменения размера изображения",
"Error cropping image" => "Ошибка обрезки изображения",
"Error creating temporary image" => "Ошибка при создании временного изображения",
"Error finding image: " => "Ошибка поиска изображений:",
"Error uploading contacts to storage." => "Ошибка загрузки контактов в память.",
"There is no error, the file uploaded with success" => "Ошибки нет, файл успешно загружен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Размер загружаемого файла превысил максимально допустимый в директиве upload_max_filesize в php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загружаемого файла превысил максимально допустимый в директиве MAX_FILE_SIZE, специфицированной в HTML-форме",
"The uploaded file was only partially uploaded" => "Загружаемый файл был загружен лишь частично",
"No file was uploaded" => "Файл не был загружен",
"Missing a temporary folder" => "Отсутствие временной папки",
"Couldn't save temporary image: " => "Не удалось сохранить временное изображение:",
"Couldn't load temporary image: " => "Не удалось загрузить временное изображение:",
"No file was uploaded. Unknown error" => "Файл не был загружен. Неизвестная ошибка",
"Contacts" => "Контакты",
"Sorry, this functionality has not been implemented yet" => "Извините, эта функция еще не реализована",
"Not implemented" => "Не выполнено",
"Couldn't get a valid address." => "Не удалось получить действительный адрес.",
"Error" => "Ошибка",
"Please enter an email address." => "Пожалуйста, введите email-адрес",
"Enter name" => "Ввод имени",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Пользовательский формат, сокращенное имя, полное имя, обратный порядок или обратный порядок с запятыми",
"Select type" => "Выбрать тип",
"Select photo" => "Выбрать фотографию",
"You do not have permission to add contacts to " => "У Вас нет полномочий для добавления контактов",
"Please select one of your own address books." => "Пожалуйста, выберите одну из Ваших собственных адресных книг.",
"Permission error" => "Ошибка разрешения доступа",
"Click to undo deletion of \"" => "Нажмите, чтобы отменить удаление \"",
"Cancelled deletion of: \"" => "Отменено удаление: \"",
"This property has to be non-empty." => "Это свойство не должно быть пустым.",
"Couldn't serialize elements." => "Не удалось сериализовать элементы.",
"Unknown error. Please check logs." => "Неизвестная ошибка. Пожалуйста, проверьте логи.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty\" вызывается без аргументов типа. Пожалуйста, отправьте отчет на bugs.owncloud.org",
"Edit name" => "Редактировать имя",
"No files selected for upload." => "Не выбрано файлов для загрузки.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Размер загружаемого Вами файла превышает максимально допустимый для загрузки на данный сервер.",
"Error loading profile picture." => "Ошибка при загрузке картинки профиля.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Некоторые контакты отмечены для удаления, но еще не удалены. Пожалуйста, подождите пока они будут удалены.",
"Do you want to merge these address books?" => "Вы хотите соединить эти адресные книги?",
"Shared by " => "Добавлено в общий доступ",
"Upload too large" => "Загрузка слишком велика",
"Only image files can be used as profile picture." => "Только файлы изображений могут быть использованы в качестве картинки к профилю.",
"Wrong file type" => "Неверный тип файла",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Ваш браузер не поддерживает AJAX загрузки. Пожалуйста, нажмите на картинку профиля, чтобы выбрать фотографию для загрузки.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить Ваш файл, так как он является каталогом или его размер составляет 0 байт.",
"Upload Error" => "Ошибка загрузки",
"Pending" => "Ожидание",
"Import done" => "Импортирование выполнено",
"Not all files uploaded. Retrying..." => "Не все файлы загружены. Попробуйте снова..",
"Something went wrong with the upload, please retry." => "Что-то пошло не так при загрузке, пожалуйста, попробуйте снова.",
"Importing..." => "Импортирование..",
"The address book name cannot be empty." => "Имя адресной книги не должно быть пустым.",
"Result: " => "Результат:",
" imported, " => "импортировано,",
" failed." => "не удалось.",
"Displayname cannot be empty." => "Отображаемое имя не может быть пустым.",
"Show CardDav link" => "Показать CardDav ссылку",
"Show read-only VCF link" => "Показать VCF ссылку только для чтения",
"Download" => "Загрузка",
"Edit" => "Редактировать",
"Delete" => "Удалить",
"Cancel" => "Отмена",
"More..." => "Подробнее..",
"Less..." => "Менее...",
"You do not have the permissions to read this addressbook." => "У Вас нет разрешения для чтения этой адресной книги.",
"You do not have the permissions to update this addressbook." => "У Вас нет разрешения для обновления этой адресной книги.",
"There was an error updating the addressbook." => "Произошла ошибка при обновлении адресной книги.",
"You do not have the permissions to delete this addressbook." => "У Вас нет полномочий для удаления этой адресной книги.",
"There was an error deleting this addressbook." => "Произошла ошибка при удалении этой адресной книги.",
"Addressbook not found: " => "Адресная книга не найдена:",
"This is not your addressbook." => "Это не Ваша адресная книга.",
"Contact could not be found." => "Контакт не может быть найден.",
"Jabber" => "Джаббер",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Твиттер",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Работа",
"Home" => "Дом",
"Other" => "Другое",
"Mobile" => "Мобильный",
"Text" => "Текст",
"Voice" => "Голос",
"Message" => "Сообщение",
"Fax" => "Факс",
"Video" => "Видео",
"Pager" => "Пейджер",
"Internet" => "Интернет",
"Birthday" => "День рождения",
"Business" => "Бизнес",
"Call" => "Вызов",
"Clients" => "Клиенты",
"Deliverer" => "Поставщик",
"Holidays" => "Праздники",
"Ideas" => "Идеи",
"Journey" => "Путешествие",
"Jubilee" => "Юбилей",
"Meeting" => "Встреча",
"Personal" => "Персональный",
"Projects" => "Проекты",
"Questions" => "Вопросы",
"{name}'s Birthday" => "{имя} день рождения",
"Contact" => "Контакт",
"You do not have the permissions to add contacts to this addressbook." => "У Вас нет разрешения для добавления контактов в эту адресную книгу.",
"Could not find the vCard with ID." => "Не удалось найти визитную карточку с ID.",
"You do not have the permissions to edit this contact." => "У Вас нет полномочий для редактирования этого контакта.",
"Could not find the vCard with ID: " => "Не удалось найти визитную карточку с ID:",
"Could not find the Addressbook with ID: " => "Не удалось найти адресную книгу с ID:",
"You do not have the permissions to delete this contact." => "У Вас нет полномочий для удаления этого контакта.",
"There was an error deleting this contact." => "Произошла ошибка при удалении этого контакта.",
"Add Contact" => "Добавить контакт",
"Import" => "Импортировать",
"Settings" => "Настройки",
"Close" => "Закрыть",
"Keyboard shortcuts" => "Комбинации клавиш",
"Navigation" => "Навигация",
"Next contact in list" => "Следующий контакт в списке",
"Previous contact in list" => "Предыдущий контакт в списке",
"Expand/collapse current addressbook" => "Развернуть/свернуть текущую адресную книгу",
"Next addressbook" => "Следующая адресная книга",
"Previous addressbook" => "Предыдущая адресная книга",
"Actions" => "Действия",
"Refresh contacts list" => "Обновить контактный лист",
"Add new contact" => "Добавить новый контакт",
"Add new addressbook" => "Добавить новую адресную книгу",
"Delete current contact" => "Удалить текущий контакт",
"Drop photo to upload" => "Перетащите фотографию для загрузки",
"Delete current photo" => "Удалить текущую фотографию",
"Edit current photo" => "Редактировать текущую фотографию",
"Upload new photo" => "Загрузить новую фотографию",
"Select photo from ownCloud" => "Выбрать фотографию из ownCloud",
"Edit name details" => "Редактировать детали имени",
"Organization" => "Организация",
"Nickname" => "Имя",
"Enter nickname" => "Введите имя",
"Web site" => "Веб-сайт",
"http://www.somesite.com" => "http://www.somesite.com",
"Go to web site" => "Перейти к веб-сайту",
"dd-mm-yyyy" => "дд-мм-гггг",
"Groups" => "Группы",
"Separate groups with commas" => "Разделите группы запятыми",
"Edit groups" => "Редактировать группы",
"Preferred" => "Предпочтительный",
"Please specify a valid email address." => "Пожалуйста,укажите действительный email адрес.",
"Enter email address" => "Введите email адрес",
"Mail to address" => "Послать письмо адресату",
"Delete email address" => "Удалить email адрес",
"Enter phone number" => "Введите телефонный номер",
"Delete phone number" => "Удалить телефонный номер",
"Instant Messenger" => "Служба обмена мгновенными сообщениями",
"Delete IM" => "Удалить IM",
"View on map" => "Посмотреть на карте",
"Edit address details" => "Детальное редактирование адреса",
"Add notes here." => "Добавить здесь заметок.",
"Add field" => "Добавить поле",
"Phone" => "Телефон",
"Email" => "Email",
"Instant Messaging" => "Обмен мгновенными сообщениями",
"Address" => "Адрес",
"Note" => "Заметки",
"Download contact" => "загрузить контакт",
"Delete contact" => "Удалить контакт",
"The temporary image has been removed from cache." => "Временное изображение было удалено из кэша.",
"Edit address" => "Редактировать адрес",
"Type" => "Тип",
"PO Box" => "Почтовый ящик",
"Street address" => "Улица",
"Street and number" => "Улица и номер",
"Extended" => "Расширенный",
"Apartment number etc." => "Квартира и т.д.",
"City" => "Город",
"Region" => "Регион (область)",
"E.g. state or province" => "Напр., штат или область",
"Zipcode" => "Индекс",
"Postal code" => "Почтовый код",
"Country" => "Страна",
"Addressbook" => "Адресная книга",
"Hon. prefixes" => "Почетные префиксы",
"Miss" => "мисс",
"Ms" => "Г-жа",
"Mr" => "Г-н",
"Sir" => "сэр",
"Mrs" => "Г-жа",
"Dr" => "Доктор",
"Given name" => "Имя",
"Additional names" => "Дополнительные имена",
"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>",
"Add contact" => "Добавить контакт",
"Select Address Books" => "Выбрать адресные книги",
"Enter description" => "Ввод описания",
"CardDAV syncing addresses" => "CardDAV ",
"more info" => "Больше информации",
"Primary address (Kontact et al)" => "Первичный адрес",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Адресные книги",
"Share" => "Сделать общим",
"New Address Book" => "Новая адресная книга",
"Name" => "Имя",
"Description" => "Описание",
"Save" => "Сохранить"
);

65
l10n/si_LK.php Normal file
View File

@ -0,0 +1,65 @@
<?php $TRANSLATIONS = array(
"id is not set." => "අංකය සකසා නැත.",
"No ID provided" => "ID සපයා නැත",
"No categories selected for deletion." => "මකා දැමීම සඳහා ප්‍රවර්ගයන් තෝරා නොමැත.",
"No address books found." => "ලිපින පොත් හමු නොවිනි",
"No contacts found." => "සබඳතා හමු නොවිනි",
"Cannot add empty property." => "අයිතිය ශුන්‍යව එක් කළ නොහැක.",
"At least one of the address fields has to be filled out." => "අඩුම තරමින් එක් යොමු ක්‍ෂේත්‍රයක්වත් පිරවිය යුතුයි.",
"Trying to add duplicate property: " => "අයිතියෙහි අනුපිටපතක් එක් කිරීමට උත්සාහ කිරීම:",
"Information about vCard is incorrect. Please reload the page." => "vCard පිළිබඳ තොරතුරු අසත්‍යයි. කරුණාකර පිටුව නැවත බාගත කරන්න.",
"Missing ID" => "හැඳුනුම් අංකය නොමැත",
"No contact ID was submitted." => "සබඳතා අංකය සපයා නැත.",
"Error reading contact photo." => "හඳුනාගැනීමේ ඡායාරූපය කියවීම දෝෂ සහිතයි.",
"Error saving temporary file." => "තාවකාලික ගොනුව සුරැකීම දෝෂ සහිතයි.",
"Contact ID is missing." => "සබඳතා හැඳිනුම් අංකය නොමැත.",
"File doesn't exist:" => "ගොනුව නොපවතී",
"Error loading image." => "රූපය පූරණය දෝෂ සහිතයි.",
"Contacts" => "සබඳතා",
"Download" => "බාගත කිරීම",
"Edit" => "සකසන්න",
"Delete" => "මකන්න",
"Cancel" => "එපා",
"This is not your addressbook." => "මේ ඔබේ ලිපින පොත නොවේ",
"Contact could not be found." => "සබඳතාවය සොයා ගත නොහැක.",
"Work" => "රාජකාරී",
"Home" => "නිවස",
"Mobile" => "ජංගම",
"Text" => "පෙළ",
"Voice" => "හඬ",
"Message" => "පණිවිඩය",
"Fax" => "ෆැක්ස්",
"Video" => "වීඩියෝව",
"Pager" => "පේජරය",
"Internet" => "අන්තර්ජාලය",
"Birthday" => "උපන් දිනය",
"{name}'s Birthday" => "{name}ගේ උපන්දිනය",
"Contact" => "සබඳතාව",
"Add Contact" => "සබඳතාවක් එක් කරන්න",
"Drop photo to upload" => "උඩුගත කිරීමට මෙතැනට දමන්න",
"Edit name details" => "නමේ විස්තර සංස්කරණය කරන්න",
"Organization" => "ආයතනය",
"Nickname" => "පටබැඳි නම",
"Enter nickname" => "පටබැඳි නම ඇතුලත් කරන්න",
"dd-mm-yyyy" => "දිදි-මාමා-වවවව",
"Groups" => "කණ්ඩායම්",
"Separate groups with commas" => "කණ්ඩායම් කොමා භාවිතයෙන් වෙන් කරන්න",
"Edit groups" => "කණ්ඩායම් සංස්කරණය කරන්න",
"Preferred" => "රුචි",
"Phone" => "දුරකථන",
"Email" => "ඉ-තැපැල්",
"Address" => "ලිපිනය",
"Download contact" => "සබඳතා බාගත කරන්න",
"Delete contact" => "සබඳතාව මකන්න",
"Type" => "වර්ගය",
"PO Box" => "තැ.පෙ.",
"Extended" => "දීඝී කිරීම",
"City" => "නගරය",
"Region" => "කළාපය",
"Zipcode" => "තැපැල් කේතය",
"Country" => "රට",
"Addressbook" => "ලිපින පොත",
"Addressbooks" => "ලිපින පොත්",
"New Address Book" => "නව ලිපින පොතක් ",
"Save" => "සුරකින්න"
);

View File

@ -8,9 +8,12 @@
"No address books found." => "Žiadny adresár nenájdený.",
"No contacts found." => "Žiadne kontakty nenájdené.",
"element name is not set." => "meno elementu nie je nastavené.",
"Could not parse contact: " => "Nedá sa spracovať kontakt:",
"Cannot add empty property." => "Nemôžem pridať prázdny údaj.",
"At least one of the address fields has to be filled out." => "Musí byť uvedený aspoň jeden adresný údaj.",
"Trying to add duplicate property: " => "Pokúšate sa pridať rovnaký atribút:",
"Missing IM parameter." => "Chýba údaj o IM.",
"Unknown IM: " => "Neznáme IM:",
"Information about vCard is incorrect. Please reload the page." => "Informácie o vCard sú neplatné. Prosím obnovte stránku.",
"Missing ID" => "Chýba ID",
"Error parsing VCard for ID: \"" => "Chyba pri vyňatí ID z VCard:",
@ -47,18 +50,71 @@
"Not implemented" => "Neimplementované",
"Couldn't get a valid address." => "Nemôžem získať platnú adresu.",
"Error" => "Chyba",
"Please enter an email address." => "Zadať e-mailovú adresu",
"Enter name" => "Zadaj meno",
"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",
"Select type" => "Vybrať typ",
"Select photo" => "Vybrať fotku",
"You do not have permission to add contacts to " => "Nemáte oprávnenie pre pridanie kontaktu do",
"Please select one of your own address books." => "Zvoľte jeden z vašich adresárov.",
"Permission error" => "Porucha oprávnenia.",
"Click to undo deletion of \"" => "Kliknite pre zrušenie zmazania \"",
"Cancelled deletion of: \"" => "Zrušené mazanie: \"",
"This property has to be non-empty." => "Tento parameter nemôže byť prázdny.",
"Couldn't serialize elements." => "Nemôžem previesť prvky.",
"Unknown error. Please check logs." => "Neznáma chyba. Prosím skontrolujte záznamy.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' zavolané bez argument. Prosím oznámte chybu na bugs.owncloud.org",
"Edit name" => "Upraviť meno",
"No files selected for upload." => "Žiadne súbory neboli vybrané k nahratiu",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Súbor, ktorý sa pokúšate nahrať, presahuje maximálnu povolenú veľkosť.",
"Select type" => "Vybrať typ",
"Error loading profile picture." => "Chyba pri nahrávaní profilového obrázku.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Počkajte prosím do skončenia mazania kontaktov označených na mazanie.",
"Do you want to merge these address books?" => "Chcete zlúčiť tieto adresáre?",
"Shared by " => "Zdieľané",
"Upload too large" => "Nahrávanie je príliš veľké",
"Only image files can be used as profile picture." => "Ako profilový obrázok sa dajú použiť len obrázkové súbory.",
"Wrong file type" => "Nesprávny typ súboru",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Váš prehliadač nepodporuje odosielanie cez AJAX. Prosím kliknite na profilový obrázok pre výber fotografie na odoslanie.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Nedá sa odoslať Váš súbor, pretože je to adresár, alebo je jeho veľkosť 0 bajtov",
"Upload Error" => "Chyba pri posielaní",
"Pending" => "Prebieha",
"Import done" => "Import ukončený",
"Not all files uploaded. Retrying..." => "Všetky súbory neboli odoslané. Opakujem...",
"Something went wrong with the upload, please retry." => "Stalo sa niečo zlé s odosielaným súborom, skúste ho prosím odoslať znovu.",
"Importing..." => "Importujem...",
"The address book name cannot be empty." => "Názov adresára nemôže byť prázdny.",
"Result: " => "Výsledok: ",
" imported, " => " importovaných, ",
" failed." => " zlyhaných.",
"Displayname cannot be empty." => "Zobrazované meno nemôže byť prázdne",
"Show CardDav link" => "Zobraz odkaz pre CardDav",
"Show read-only VCF link" => "Zobraz VCF odkaz len na čítanie",
"Download" => "Stiahnuť",
"Edit" => "Upraviť",
"Delete" => "Odstrániť",
"Cancel" => "Zrušiť",
"More..." => "Viac...",
"Less..." => "Menej...",
"You do not have the permissions to read this addressbook." => "Nemáte oprávnenie na čítanie tejto adresnej knihy.",
"You do not have the permissions to update this addressbook." => "Nemáte oprávnenie k zmenám v tomto adresári.",
"There was an error updating the addressbook." => "Nastala chyba pri pokuse o úpravy v adresári.",
"You do not have the permissions to delete this addressbook." => "Nemáte oprávnenie pre zmazanie tohto adresára.",
"There was an error deleting this addressbook." => "Vyskytla sa chyba pri mazaní tohto adresára.",
"Addressbook not found: " => "Adresár nebol nájdený:",
"This is not your addressbook." => "Toto nie je váš adresár.",
"Contact could not be found." => "Kontakt nebol nájdený.",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Práca",
"Home" => "Domov",
"Other" => "Iné",
@ -72,20 +128,37 @@
"Internet" => "Internet",
"Birthday" => "Narodeniny",
"Business" => "Biznis",
"Call" => "Zavolať",
"Clients" => "Klienti",
"Deliverer" => "Dodávateľ",
"Holidays" => "Prázdniny",
"Ideas" => "Nápady",
"Journey" => "Cesta",
"Jubilee" => "Jubileum",
"Meeting" => "Stretnutie",
"Personal" => "Osobné",
"Projects" => "Projekty",
"Questions" => "Otázky",
"{name}'s Birthday" => "Narodeniny {name}",
"Contact" => "Kontakt",
"You do not have the permissions to add contacts to this addressbook." => "Nemáte oprávnenie pridať kontakt do adresára.",
"Could not find the vCard with ID." => "Nie je možné nájsť vCard s ID.",
"You do not have the permissions to edit this contact." => "Nemáte oprávnenie pre úpravu tohto kontaktu.",
"Could not find the vCard with ID: " => "Nie je možné nájsť vCard s ID:",
"Could not find the Addressbook with ID: " => "Nie je možné nájsť adresár s ID:",
"You do not have the permissions to delete this contact." => "Nemáte oprávnenie pre zmazanie tohto kontaktu.",
"There was an error deleting this contact." => "Vyskytla sa chyba pri mazaní tohto kontaktu.",
"Add Contact" => "Pridať Kontakt.",
"Import" => "Importovať",
"Settings" => "Nastavenia",
"Close" => "Zatvoriť",
"Keyboard shortcuts" => "Klávesové skratky",
"Navigation" => "Navigácia",
"Next contact in list" => "Ďalší kontakt v zozname",
"Previous contact in list" => "Predchádzajúci kontakt v zozname",
"Expand/collapse current addressbook" => "Roztiahnuť/stiahnuť aktuálny adresár",
"Next addressbook" => "Ďalší adresár",
"Previous addressbook" => "Predošlý adresár",
"Actions" => "Akcie",
"Refresh contacts list" => "Obnov zoznam kontaktov",
"Add new contact" => "Pridaj nový kontakt",
@ -96,12 +169,13 @@
"Edit current photo" => "Upraviť súčasnú fotku",
"Upload new photo" => "Nahrať novú fotku",
"Select photo from ownCloud" => "Vybrať fotku z ownCloud",
"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",
"Organization" => "Organizácia",
"Delete" => "Odstrániť",
"Nickname" => "Prezývka",
"Enter nickname" => "Zadajte prezývku",
"Web site" => "Web stránka",
"http://www.somesite.com" => "http://www.stranka.sk",
"Go to web site" => "Navštíviť web",
"dd-mm-yyyy" => "dd. mm. yyyy",
"Groups" => "Skupiny",
"Separate groups with commas" => "Oddelte skupiny čiarkami",
@ -113,12 +187,15 @@
"Delete email address" => "Odstrániť e-mailové adresy",
"Enter phone number" => "Zadajte telefónne číslo",
"Delete phone number" => "Odstrániť telefónne číslo",
"Instant Messenger" => "Okamžité správy IM",
"Delete IM" => "Zmazať IM",
"View on map" => "Zobraziť na mape",
"Edit address details" => "Upraviť podrobnosti adresy",
"Add notes here." => "Tu môžete pridať poznámky.",
"Add field" => "Pridať pole",
"Phone" => "Telefón",
"Email" => "E-mail",
"Instant Messaging" => "Okamžité správy IM",
"Address" => "Adresa",
"Note" => "Poznámka",
"Download contact" => "Stiahnuť kontakt",
@ -130,8 +207,10 @@
"Street address" => "Ulica",
"Street and number" => "Ulica a číslo",
"Extended" => "Rozšírené",
"Apartment number etc." => "Číslo bytu a pod.",
"City" => "Mesto",
"Region" => "Región",
"E.g. state or province" => "Napr. štát alebo provincia",
"Zipcode" => "PSČ",
"Postal code" => "PSČ",
"Country" => "Krajina",
@ -160,16 +239,18 @@
"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>",
"Add contact" => "Pridať kontakt",
"Enter name" => "Zadaj meno",
"Select Address Books" => "Zvoliť adresáre",
"Enter description" => "Zadať popis",
"CardDAV syncing addresses" => "Adresy pre synchronizáciu s CardDAV",
"more info" => "viac informácií",
"Primary address (Kontact et al)" => "Predvolená adresa (Kontakt etc)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adresáre",
"Download" => "Stiahnuť",
"Edit" => "Upraviť",
"Share" => "Zdieľať",
"New Address Book" => "Nový adresár",
"Save" => "Uložiť",
"Cancel" => "Zrušiť"
"Name" => "Meno",
"Description" => "Popis",
"Save" => "Uložiť"
);

View File

@ -1,88 +1,107 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "Napaka med (de)aktivacijo adresarja.",
"id is not set." => "id ni nastavljen.",
"Cannot update addressbook with an empty name." => "Adresarja ni mogoče posodobiti s praznim imenom.",
"No ID provided" => "ID ni bil podan",
"Error setting checksum." => "Napaka pri nastavljanju nadzorne vsote.",
"No categories selected for deletion." => "Nobena kategorija ni bila izbrana za izbris.",
"No address books found." => "Adresarjev ni bilo mogoče najti.",
"No contacts found." => "Ni bilo najdenih stikov.",
"element name is not set." => "ime elementa ni nastavljeno.",
"Could not parse contact: " => "Ne morem razčleniti stika:",
"Cannot add empty property." => "Ne morem dodati prazne lastnosti.",
"At least one of the address fields has to be filled out." => "Vsaj eno izmed polj je še potrebno izpolniti.",
"Trying to add duplicate property: " => "Poskušam dodati podvojeno lastnost:",
"Missing IM parameter." => "Manjkajoč IM parameter.",
"Error (de)activating addressbook." => "Napaka med omogočanjem ali onemogočanjem imenika.",
"id is not set." => "ID ni nastavljen.",
"Cannot update addressbook with an empty name." => "Imenika s praznim imenom ni mogoče posodobiti.",
"No ID provided" => "Vrednost ID ni podana",
"Error setting checksum." => "Napaka med nastavljanjem nadzorne vsote.",
"No categories selected for deletion." => "Ni izbrane kategorije za izbris.",
"No address books found." => "Ni mogoče najti nobenega imenika.",
"No contacts found." => "Ni najdenih stikov.",
"element name is not set." => "ime predmeta ni nastavljeno.",
"Could not parse contact: " => "Stika ni mogoče razčleniti:",
"Cannot add empty property." => "Prazne lastnosti ni mogoče dodati.",
"At least one of the address fields has to be filled out." => "Izpolniti je treba vsak eno polje imenika.",
"Trying to add duplicate property: " => "Izveden je poskus dodajanja podvojene lastnost:",
"Missing IM parameter." => "Manjka parameter IM.",
"Unknown IM: " => "Neznan IM:",
"Information about vCard is incorrect. Please reload the page." => "Informacije o vCard niso pravilne. Prosimo, če ponovno naložite stran.",
"Missing ID" => "Manjkajoč ID",
"Error parsing VCard for ID: \"" => "Napaka pri razčlenjevanju VCard za ID: \"",
"Information about vCard is incorrect. Please reload the page." => "Podrobnosti kartice vCard niso pravilne. Ponovno naložite stran.",
"Missing ID" => "Manjka ID",
"Error parsing VCard for ID: \"" => "Napaka med razčlenjevanjem VCard za ID: \"",
"checksum is not set." => "nadzorna vsota ni nastavljena.",
"Information about vCard is incorrect. Please reload the page: " => "Informacija o vCard je napačna. Prosimo, če ponovno naložite stran: ",
"Information about vCard is incorrect. Please reload the page: " => "Podrobnosti o vCard so napačne. Ponovno naložite stran: ",
"Something went FUBAR. " => "Nekaj je šlo v franže. ",
"No contact ID was submitted." => "ID stika ni bil poslan.",
"Error reading contact photo." => "Napaka pri branju slike stika.",
"Error saving temporary file." => "Napaka pri shranjevanju začasne datoteke.",
"The loading photo is not valid." => "Slika, ki se nalaga ni veljavna.",
"No contact ID was submitted." => "ID stika ni poslan.",
"Error reading contact photo." => "Napaka branja slike stika.",
"Error saving temporary file." => "Napaka shranjevanja začasne datoteke.",
"The loading photo is not valid." => "Slika, ki se nalaga, ni veljavna.",
"Contact ID is missing." => "Manjka ID stika.",
"No photo path was submitted." => "Pot slike ni bila poslana.",
"No photo path was submitted." => "Pot slike ni poslana.",
"File doesn't exist:" => "Datoteka ne obstaja:",
"Error loading image." => "Napaka pri nalaganju slike.",
"Error getting contact object." => "Napaka pri pridobivanju kontakta predmeta.",
"Error getting PHOTO property." => "Napaka pri pridobivanju lastnosti fotografije.",
"Error saving contact." => "Napaka pri shranjevanju stika.",
"Error resizing image" => "Napaka pri spreminjanju velikosti slike",
"Error cropping image" => "Napaka pri obrezovanju slike",
"Error creating temporary image" => "Napaka pri ustvarjanju začasne slike",
"Error finding image: " => "Napaka pri iskanju datoteke: ",
"Error uploading contacts to storage." => "Napaka pri nalaganju stikov v hrambo.",
"There is no error, the file uploaded with success" => "Datoteka je bila uspešno naložena.",
"Error loading image." => "Napaka med nalaganjem slike.",
"Error getting contact object." => "Napaka med pridobivanjem predmeta stika.",
"Error getting PHOTO property." => "Napaka med pridobivanjem lastnosti fotografije.",
"Error saving contact." => "Napaka med shranjevanjem stika.",
"Error resizing image" => "Napaka med spreminjanjem velikosti slike",
"Error cropping image" => "Napaka med obrezovanjem slike",
"Error creating temporary image" => "Napaka med ustvarjanjem začasne slike",
"Error finding image: " => "Napaka med iskanjem datoteke: ",
"Error uploading contacts to storage." => "Napaka med nalaganjem stikov v hrambo.",
"There is no error, the file uploaded with success" => "Datoteka je uspešno naložena brez napak.",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Naložena datoteka presega velikost, ki jo določa parameter upload_max_filesize v datoteki php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Naložena datoteka presega velikost, ki jo določa parameter MAX_FILE_SIZE v HTML obrazcu",
"The uploaded file was only partially uploaded" => "Datoteka je bila le delno naložena",
"No file was uploaded" => "Nobena datoteka ni bila naložena",
"The uploaded file was only partially uploaded" => "Datoteka je le delno naložena.",
"No file was uploaded" => "Nobena datoteka ni naložena",
"Missing a temporary folder" => "Manjka začasna mapa",
"Couldn't save temporary image: " => "Začasne slike ni bilo mogoče shraniti: ",
"Couldn't load temporary image: " => "Začasne slike ni bilo mogoče naložiti: ",
"No file was uploaded. Unknown error" => "Nobena datoteka ni bila naložena. Neznana napaka",
"Couldn't save temporary image: " => "Začasne slike ni mogoče shraniti: ",
"Couldn't load temporary image: " => "Začasne slike ni mogoče naložiti: ",
"No file was uploaded. Unknown error" => "Nobena datoteka ni naložena. Neznana napaka.",
"Contacts" => "Stiki",
"Sorry, this functionality has not been implemented yet" => "Žal ta funkcionalnost še ni podprta",
"Sorry, this functionality has not been implemented yet" => "Žal ta zmožnost še ni podprta",
"Not implemented" => "Ni podprto",
"Couldn't get a valid address." => "Ne morem dobiti veljavnega naslova.",
"Couldn't get a valid address." => "Ni mogoče pridobiti veljavnega naslova.",
"Error" => "Napaka",
"You do not have permission to add contacts to " => "Nimate dovoljenja za dodajanje stikov v",
"Please select one of your own address books." => "Prosimo, če izberete enega izmed vaših adresarjev.",
"Permission error" => "Napaka dovoljenj",
"This property has to be non-empty." => "Ta lastnost ne sme biti prazna",
"Couldn't serialize elements." => "Predmetov ni bilo mogoče dati v zaporedje.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty\" je bila klicana brez vrste argumenta. Prosimo, če oddate poročilo o napaki na bugs.owncloud.org",
"Edit name" => "Uredi ime",
"No files selected for upload." => "Nobena datoteka ni bila izbrana za nalaganje.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za nalaganje na tem strežniku.",
"Error loading profile picture." => "Napaka pri nalaganju slike profila.",
"Please enter an email address." => "Vpišite elektronski poštni naslov.",
"Enter name" => "Vnesi ime",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Format po meri, Kratko ime, Polno ime, Obratno ali Obratno z vejico",
"Select type" => "Izberite vrsto",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Nekateri stiki so označeni za izbris, vendar še niso izbrisani. Prosimo, če počakate na njihov izbris.",
"Do you want to merge these address books?" => "Ali želite združiti adresarje?",
"Unable to upload your file as it is a directory or has 0 bytes" => "Datoteke ni mogoče naložiti, saj je v resnici mapa ali pa je velika 0 bajtov.",
"Upload Error" => "Napaka pri nalaganju",
"Upload too large" => "Datoteke za nalaganje so prevelike",
"Pending" => "Na čakanju",
"Select photo" => "Izbor slike",
"You do not have permission to add contacts to " => "Ni ustreznih dovoljenj za dodajanje stikov v",
"Please select one of your own address books." => "Izberite enega izmed imenikov.",
"Permission error" => "Napaka dovoljenj",
"Click to undo deletion of \"" => "Kliknite za preklic izbrisa \"",
"Cancelled deletion of: \"" => "Preklican izbris: \"",
"This property has to be non-empty." => "Ta lastnost ne sme biti prazna",
"Couldn't serialize elements." => "Predmetov ni mogoče dati v zaporedje.",
"Unknown error. Please check logs." => "Neznana napaka. Preverite dnevniški zapis za več podrobnosti.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "Lastnost \"deleteProperty\" je bila klicana brez vrste argumenta. Oddajte poročilo o napaki na bugs.owncloud.org",
"Edit name" => "Uredi ime",
"No files selected for upload." => "Ni izbrane datoteke za nalaganje.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteka, ki jo poskušate naložiti, presega največjo dovoljeno velikost za pošiljanje na tem strežniku.",
"Error loading profile picture." => "Napaka med nalaganjem slike profila.",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "Nekateri stiki so označeni za izbris, vendar še niso izbrisani. Počakajte na izbris.",
"Do you want to merge these address books?" => "Ali želite združiti imenike?",
"Shared by " => "V souporabi z",
"Upload too large" => "Datoteke za pošiljanje so prevelike",
"Only image files can be used as profile picture." => "Kot slike profila so lahko uporabljene le slikovne datoteke.",
"Wrong file type" => "Napačna vrsta datoteke",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Brskalnik ne podpira pošiljanja AJAX. Preverite sliko profila za izbor fotografije za pošiljanje.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Datoteke ni mogoče naložiti, saj je mapa ali pa je velikosti 0 bajtov.",
"Upload Error" => "Napaka med pošiljanjem",
"Pending" => "V čakanju",
"Import done" => "Uvoz je končan",
"Not all files uploaded. Retrying..." => "Vse datoteke niso bile naložene. Ponovni poskus...",
"Something went wrong with the upload, please retry." => "Pri nalaganju je prišlo do napake. Prosimo, če poskusite znova.",
"Not all files uploaded. Retrying..." => "Vse datoteke niso bile poslane. Poskus bo ponovljen ...",
"Something went wrong with the upload, please retry." => "Med nalaganjem je prišlo do napake. Poskusite znova.",
"Importing..." => "Uvažanje ...",
"The address book name cannot be empty." => "Adresar mora imeti ime.",
"The address book name cannot be empty." => "Imenika mora imeti določeno ime.",
"Result: " => "Rezultati: ",
" imported, " => " uvoženih, ",
" failed." => " je spodletelo.",
"Displayname cannot be empty." => "Ime za prikaz ne more biti prazno.",
"You do not have the permissions to read this addressbook." => "Nimate dovoljenj za branje tega adresarja.",
"You do not have the permissions to update this addressbook." => "Nimate dovoljenj za posodobitev tega adresarja.",
"There was an error updating the addressbook." => "Med posodabljanjem adresarja je prišlo do napake.",
"You do not have the permissions to delete this addressbook." => "Nimate dovoljenj za izbris tega adresarja.",
"There was an error deleting this addressbook." => "Med brisanjem adresarja je prišlo do napake.",
"Addressbook not found: " => "Adresar ni bil najden:",
"This is not your addressbook." => "To ni vaš adresar.",
"Displayname cannot be empty." => "Prikazno ime ne sme biti prazno.",
"Show CardDav link" => "Pokaži povezavo CardDav",
"Show read-only VCF link" => "Pokaži povezavo VCF samo za branje",
"Download" => "Prejmi",
"Edit" => "Uredi",
"Delete" => "Izbriši",
"Cancel" => "Prekliči",
"More..." => "Več ...",
"Less..." => "Manj ...",
"You do not have the permissions to read this addressbook." => "Ni ustreznih dovoljenj za branje tega imenika.",
"You do not have the permissions to update this addressbook." => "Ni ustreznih dovoljenj za posodobitev tega imenika.",
"There was an error updating the addressbook." => "Med posodabljanjem imenika je prišlo do napake.",
"You do not have the permissions to delete this addressbook." => "Ni ustreznih dovoljenj za izbris tega imenika.",
"There was an error deleting this addressbook." => "Med brisanjem imenika je prišlo do napake.",
"Addressbook not found: " => "Imenika ni mogoče najti:",
"This is not your addressbook." => "To ni vaš imenik.",
"Contact could not be found." => "Stika ni bilo mogoče najti.",
"Jabber" => "Jabber",
"AIM" => "AIM",
@ -115,19 +134,19 @@
"Holidays" => "Prazniki",
"Ideas" => "Ideje",
"Journey" => "Potovanje",
"Jubilee" => "Jubilej",
"Meeting" => "Sestanek",
"Jubilee" => "Obletnica",
"Meeting" => "Srečanje",
"Personal" => "Osebno",
"Projects" => "Projekti",
"Questions" => "Vprašanja",
"{name}'s Birthday" => "{name} - rojstni dan",
"Contact" => "Stik",
"You do not have the permissions to add contacts to this addressbook." => "Nimate dovoljenj za dodajanje stikov v ta adresar.",
"Could not find the vCard with ID." => "Ni bilo mogoče najti vCard z ID:",
"You do not have the permissions to edit this contact." => "Nimate dovoljenj za urejanje tega stika.",
"Could not find the vCard with ID: " => "Ni bilo mogoče najti vCard z ID:",
"Could not find the Addressbook with ID: " => "Ni bilo mogoče najti adresarja z ID:",
"You do not have the permissions to delete this contact." => "Nimate dovoljenj za izbris tega stika.",
"You do not have the permissions to add contacts to this addressbook." => "Ni ustreznih dovoljenj za dodajanje stikov v ta imenik.",
"Could not find the vCard with ID." => "Ni mogoče najti vCard z ID:",
"You do not have the permissions to edit this contact." => "Ni ustreznih dovoljenj za urejanje tega stika.",
"Could not find the vCard with ID: " => "Ni mogoče najti vCard z ID:",
"Could not find the Addressbook with ID: " => "Ni mogoče najti imenika z ID:",
"You do not have the permissions to delete this contact." => "Ni ustreznih dovoljenj za izbris tega stika.",
"There was an error deleting this contact." => "Med brisanjem stika je prišlo do napake.",
"Add Contact" => "Dodaj stik",
"Import" => "Uvozi",
@ -137,53 +156,51 @@
"Navigation" => "Krmarjenje",
"Next contact in list" => "Naslednji stik na seznamu",
"Previous contact in list" => "Predhodni stik na seznamu",
"Expand/collapse current addressbook" => "Razširi/skrči trenutni adresar",
"Next addressbook" => "Naslednji adresar",
"Previous addressbook" => "Predhodni adresar",
"Expand/collapse current addressbook" => "Razširi/Skrči trenutni imenik",
"Next addressbook" => "Naslednji imenik",
"Previous addressbook" => "Predhodni imenik",
"Actions" => "Dejanja",
"Refresh contacts list" => "Osveži seznam stikov",
"Add new contact" => "Dodaj nov stik",
"Add new addressbook" => "Dodaj nov adresar",
"Add new addressbook" => "Dodaj nov imenik",
"Delete current contact" => "Izbriši trenutni stik",
"Drop photo to upload" => "Spustite sliko tukaj, da bi jo naložili",
"Drop photo to upload" => "Spustite sliko tukaj, da bi jo poslali na strežnik",
"Delete current photo" => "Izbriši trenutno sliko",
"Edit current photo" => "Uredi trenutno sliko",
"Upload new photo" => "Naloži novo sliko",
"Select photo from ownCloud" => "Izberi sliko iz ownCloud",
"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" => "Uredite podrobnosti imena",
"Organization" => "Organizacija",
"Delete" => "Izbriši",
"Edit name details" => "Uredi podrobnosti imena",
"Organization" => "Ustanova",
"Nickname" => "Vzdevek",
"Enter nickname" => "Vnesite vzdevek",
"Enter nickname" => "Vnos vzdevka",
"Web site" => "Spletna stran",
"http://www.somesite.com" => "http://www.nekastran.si",
"http://www.somesite.com" => "http://www.spletnastran.si",
"Go to web site" => "Pojdi na spletno stran",
"dd-mm-yyyy" => "dd. mm. yyyy",
"Groups" => "Skupine",
"Separate groups with commas" => "Skupine ločite z vejicami",
"Edit groups" => "Uredi skupine",
"Preferred" => "Prednosten",
"Please specify a valid email address." => "Prosimo, če navedete veljaven e-poštni naslov.",
"Enter email address" => "Vnesite e-poštni naslov",
"Mail to address" => "E-pošta naslovnika",
"Delete email address" => "Izbriši e-poštni naslov",
"Enter phone number" => "Vpišite telefonsko številko",
"Preferred" => "Prednostno",
"Please specify a valid email address." => "Navesti je treba veljaven elektronski poštni naslov.",
"Enter email address" => "Vnesite elektronski poštni naslov",
"Mail to address" => "Elektronski naslov prejemnika",
"Delete email address" => "Izbriši elektronski poštni naslov",
"Enter phone number" => "Vpiši telefonsko številko",
"Delete phone number" => "Izbriši telefonsko številko",
"Instant Messenger" => "Takojšnji sporočilnik",
"Instant Messenger" => "Hipni sporočilnik",
"Delete IM" => "Izbriši IM",
"View on map" => "Prikaz na zemljevidu",
"View on map" => "Pokaži na zemljevidu",
"Edit address details" => "Uredi podrobnosti",
"Add notes here." => "Opombe dodajte tukaj.",
"Add field" => "Dodaj polje",
"Phone" => "Telefon",
"Email" => "E-pošta",
"Instant Messaging" => "Neposredno sporočanje",
"Email" => "Elektronska pošta",
"Instant Messaging" => "Hipno sporočanje",
"Address" => "Naslov",
"Note" => "Opomba",
"Download contact" => "Prenesi stik",
"Download contact" => "Prejmi stik",
"Delete contact" => "Izbriši stik",
"The temporary image has been removed from cache." => "Začasna slika je bila odstranjena iz predpomnilnika.",
"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",
@ -194,10 +211,10 @@
"City" => "Mesto",
"Region" => "Regija",
"E.g. state or province" => "Npr. dežela ali pokrajina",
"Zipcode" => "Poštna št.",
"Zipcode" => "Poštna številka",
"Postal code" => "Poštna številka",
"Country" => "Dežela",
"Addressbook" => "Adresar",
"Country" => "Država",
"Addressbook" => "Imenik",
"Hon. prefixes" => "Predpone",
"Miss" => "gdč.",
"Ms" => "ga.",
@ -206,7 +223,7 @@
"Mrs" => "ga.",
"Dr" => "dr.",
"Given name" => "Ime",
"Additional names" => "Dodatna imena",
"Additional names" => "Druga imena",
"Family name" => "Priimek",
"Hon. suffixes" => "Pripone",
"J.D." => "univ. dipl. prav.",
@ -215,32 +232,25 @@
"D.C." => "dr. med., spec. kiropraktike",
"Ph.D." => "dr.",
"Esq." => "Esq.",
"Jr." => "mlajši",
"Sn." => "starejši",
"Jr." => "ml.",
"Sn." => "st.",
"Import a contacts file" => "Uvozi datoteko s stiki",
"Please choose the addressbook" => "Prosimo, če izberete adresar",
"create a new addressbook" => "Ustvari nov adresar",
"Name of new addressbook" => "Ime novega adresarja",
"Importing contacts" => "Uvažam stike",
"<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 adresarju nimate stikov.</h3><p>VCF datoteke lahko uvozite tako, da jih povlečete na obstoječ seznam stikov ali na prazno mesto. Pri slednjem bo ustvarjen nov adresar in stiki bodo uvoženi vanj.<br />Stike lahko uvažate tudi s klikom na gumb uvozi, ki ga najdete na dnu seznama.</p>",
"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>",
"Add contact" => "Dodaj stik",
"Select Address Books" => "Izberite adresarje",
"Enter name" => "Vnesite ime",
"Enter description" => "Vnesite opis",
"CardDAV syncing addresses" => "CardDAV naslovi za sinhronizacijo",
"more info" => "več informacij",
"Primary address (Kontact et al)" => "Primarni naslov (za kontakt et al)",
"Select Address Books" => "Izbor imenikov",
"Enter description" => "Vnesi opis",
"CardDAV syncing addresses" => "Naslovi CardDAV za usklajevanje",
"more info" => "več podrobnosti",
"Primary address (Kontact et al)" => "Osnovni naslov (za stik)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adresarji",
"Show CardDav link" => "Pokaži CardDav povezavo",
"Show read-only VCF link" => "Pokaži VCF povezavo samo za branje",
"Addressbooks" => "Imeniki",
"Share" => "Souporaba",
"Download" => "Prenesi",
"Edit" => "Uredi",
"New Address Book" => "Nov adresar",
"New Address Book" => "Nov imenik",
"Name" => "Ime",
"Description" => "Opis",
"Save" => "Shrani",
"Cancel" => "Prekliči",
"More..." => "Več..."
"Save" => "Shrani"
);

View File

@ -1,6 +1,10 @@
<?php $TRANSLATIONS = array(
"Information about vCard is incorrect. Please reload the page." => "Подаци о вКарти су неисправни. Поново учитајте страницу.",
"Contacts" => "Контакти",
"Download" => "Преузимање",
"Edit" => "Уреди",
"Delete" => "Обриши",
"Cancel" => "Откажи",
"This is not your addressbook." => "Ово није ваш адресар.",
"Contact could not be found." => "Контакт се не може наћи.",
"Work" => "Посао",
@ -15,7 +19,6 @@
"Contact" => "Контакт",
"Add Contact" => "Додај контакт",
"Organization" => "Организација",
"Delete" => "Обриши",
"Preferred" => "Пожељан",
"Phone" => "Телефон",
"Email" => "Е-маил",
@ -31,9 +34,6 @@
"Country" => "Земља",
"Addressbook" => "Адресар",
"Addressbooks" => "Адресар",
"Download" => "Преузимање",
"Edit" => "Уреди",
"New Address Book" => "Нови адресар",
"Save" => "Сними",
"Cancel" => "Откажи"
"Save" => "Сними"
);

View File

@ -1,5 +1,7 @@
<?php $TRANSLATIONS = array(
"Information about vCard is incorrect. Please reload the page." => "Podaci o vKarti su neispravni. Ponovo učitajte stranicu.",
"Edit" => "Uredi",
"Delete" => "Obriši",
"This is not your addressbook." => "Ovo nije vaš adresar.",
"Contact could not be found." => "Kontakt se ne može naći.",
"Work" => "Posao",
@ -13,7 +15,6 @@
"Birthday" => "Rođendan",
"Add Contact" => "Dodaj kontakt",
"Organization" => "Organizacija",
"Delete" => "Obriši",
"Phone" => "Telefon",
"Email" => "E-mail",
"Address" => "Adresa",
@ -22,6 +23,5 @@
"City" => "Grad",
"Region" => "Regija",
"Zipcode" => "Zip kod",
"Country" => "Zemlja",
"Edit" => "Uredi"
"Country" => "Zemlja"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "Inte införd",
"Couldn't get a valid address." => "Kunde inte hitta en giltig adress.",
"Error" => "Fel",
"Please enter an email address." => "Ange en e-postadress.",
"Enter name" => "Ange namn",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => " anpassad, korta namn, hela namn, bakåt eller bakåt med komma",
"Select type" => "Välj typ",
"Select photo" => "Välj foto",
"You do not have permission to add contacts to " => "Du saknar behörighet att skapa kontakter i",
"Please select one of your own address books." => "Välj en av dina egna adressböcker.",
"Permission error" => "Behörighetsfel",
"Click to undo deletion of \"" => "Klicka för att ångra radering av \"",
"Cancelled deletion of: \"" => "Avbruten radering av: \"",
"This property has to be non-empty." => "Denna egenskap får inte vara tom.",
"Couldn't serialize elements." => "Kunde inte serialisera element.",
"Unknown error. Please check logs." => "Okänt fel. Kontrollera loggarna.",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "\"deleteProperty\" anropades utan typargument. Vänligen rapportera till bugs.owncloud.org",
"Edit name" => "Ändra namn",
"No files selected for upload." => "Inga filer valda för uppladdning",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Filen du försöker ladda upp är större än den maximala storleken för filuppladdning på denna server.",
"Error loading profile picture." => "Fel vid hämtning av profilbild.",
"Select type" => "Välj typ",
"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.",
"Do you want to merge these address books?" => "Vill du slå samman dessa adressböcker?",
"Shared by " => "Delad av",
"Upload too large" => "För stor uppladdning",
"Only image files can be used as profile picture." => "Endast bildfiler kan användas som profilbild.",
"Wrong file type" => "Felaktig filtyp",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "Din webbläsare saknar stöd för uppladdning med AJAX. Klicka på profilbilden för att välja ett foto att ladda upp.",
"Unable to upload your file as it is a directory or has 0 bytes" => "Kan inte ladda upp din fil eftersom det är en katalog eller har 0 bytes",
"Upload Error" => "Fel vid uppladdning",
"Upload too large" => "För stor uppladdning",
"Pending" => "Väntar",
"Import done" => "Import klar",
"Not all files uploaded. Retrying..." => "Alla filer är inte uppladdade. Försöker igen...",
@ -76,6 +87,14 @@
" imported, " => "importerad,",
" failed." => "misslyckades.",
"Displayname cannot be empty." => "Visningsnamn får inte vara tomt.",
"Show CardDav link" => "Visa CardDav-länk",
"Show read-only VCF link" => "Visa skrivskyddad VCF-länk",
"Download" => "Nedladdning",
"Edit" => "Redigera",
"Delete" => "Radera",
"Cancel" => "Avbryt",
"More..." => "Mer...",
"Less..." => "Mindre...",
"You do not have the permissions to read this addressbook." => "Du har inte behörighet att läsa denna adressbok.",
"You do not have the permissions to update this addressbook." => "Du har inte behörighet att ändra denna adressbok.",
"There was an error updating the addressbook." => "Ett fel uppstod när adressboken skulle uppdateras.",
@ -150,10 +169,8 @@
"Edit current photo" => "Redigera aktuellt foto",
"Upload new photo" => "Ladda upp ett nytt foto",
"Select photo from ownCloud" => "Välj foto från ownCloud",
"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",
"Organization" => "Organisation",
"Delete" => "Radera",
"Nickname" => "Smeknamn",
"Enter nickname" => "Ange smeknamn",
"Web site" => "Webbplats",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "Lägg till en kontakt",
"Select Address Books" => "Välj adressböcker",
"Enter name" => "Ange namn",
"Enter description" => "Ange beskrivning",
"CardDAV syncing addresses" => "CardDAV synkningsadresser",
"more info" => "mer information",
"Primary address (Kontact et al)" => "Primär adress (Kontakt o.a.)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adressböcker",
"Show CardDav link" => "Visa CardDav-länk",
"Show read-only VCF link" => "Visa skrivskyddad VCF-länk",
"Share" => "Dela",
"Download" => "Nedladdning",
"Edit" => "Redigera",
"New Address Book" => "Ny adressbok",
"Name" => "Namn",
"Description" => "Beskrivning",
"Save" => "Spara",
"Cancel" => "Avbryt",
"More..." => "Mer..."
"Save" => "Spara"
);

View File

@ -50,22 +50,33 @@
"Not implemented" => "ยังไม่ได้ถูกดำเนินการ",
"Couldn't get a valid address." => "ไม่สามารถดึงที่อยู่ที่ถูกต้องได้",
"Error" => "พบข้อผิดพลาด",
"Please enter an email address." => "กรุณากรอกที่อยู่อีเมล",
"Enter name" => "กรอกชื่อ",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "กำหนดรูปแบบของชื่อย่อ, ชื่อจริง, ย้อนค่ากลัีบด้วยคอมม่าเอง",
"Select type" => "เลือกชนิด",
"Select photo" => "เลือกรูปถ่าย",
"You do not have permission to add contacts to " => "คุณไม่ได้รับสิทธิ์ให้เพิ่มข้อมูลผู้ติดต่อเข้าไปที่",
"Please select one of your own address books." => "กรุณาเลือกสมุดบันทึกที่อยู่ที่คุณเป็นเจ้าของ",
"Permission error" => "เกิดข้อผิดพลาดเกี่ยวกับสิทธิ์การเข้าใช้งาน",
"Click to undo deletion of \"" => "คลิกเพื่อเลิกทำการลบทิ้งของ \"",
"Cancelled deletion of: \"" => "ยกเลิกแล้ว สำหรับการลบทิ้งของ: \"",
"This property has to be non-empty." => "คุณสมบัตินี้ต้องไม่มีข้อมูลว่างอยู่",
"Couldn't serialize elements." => "ไม่สามารถทำสัญลักษณ์องค์ประกอบต่างๆให้เป็นตัวเลขตามลำดับได้",
"Unknown error. Please check logs." => "เกิดข้อผิดพลาดโดยไม่ทราบสาเหตุ กรุณาตรวจสอบบันทึกการเปลี่ยนแปลง",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' ถูกเรียกใช้โดยไม่มีอาร์กิวเมนต์ กรุณาแจ้งได้ที่ bugs.owncloud.org",
"Edit name" => "แก้ไขชื่อ",
"No files selected for upload." => "ยังไม่ได้เลือกไฟล์ำสำหรับอัพโหลด",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "ไฟล์ที่คุณกำลังพยายามที่จะอัพโหลดมีขนาดเกินจำนวนสูงสุดที่สามารถอัพโหลดได้สำหรับเซิร์ฟเวอร์นี้",
"Error loading profile picture." => "เกิดข้อผิดพลาดในการโหลดรูปภาพประจำตัว",
"Select type" => "เลือกชนิด",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "ข้อมูลผู้ติดต่อบางรายการได้ถูกทำเครื่องหมายสำหรับลบทิ้งเอาไว้, แต่ยังไม่ได้ถูกลบทิ้ง, กรุณารอให้รายการดังกล่าวถูกลบทิ้งเสียก่อน",
"Do you want to merge these address books?" => "คุณต้องการผสานข้อมูลสมุดบันทึกที่อยู่เหล่านี้หรือไม่?",
"Shared by " => "แชร์โดย",
"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",
"Only image files can be used as profile picture." => "เฉพาะไฟล์รูปภาพเท่านั้นที่สามารถใช้งานเป็นรูปภาพโปรไฟล์ได้",
"Wrong file type" => "ชนิดของไฟล์ไม่ถูกต้อง",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "โปรแกรมบราวเซอร์ของคุณไม่รองรับคุณสมบัติการอัพโหลดไฟล์แบบ AJAX กรุณาคลิกที่รูปภาพโปรไฟล์เพื่อเลือกรูปภาพที่ต้องการอัพโหลด",
"Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่ หรือ มีขนาดไฟล์ 0 ไบต์",
"Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด",
"Upload too large" => "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป",
"Pending" => "อยู่ระหว่างดำเนินการ",
"Import done" => "เสร็จสิ้นการนำเข้าข้อมูล",
"Not all files uploaded. Retrying..." => "ไม่ใช่ไฟล์ทั้งหมดที่จะถูกอัพโหลด กำลังลองใหม่...",
@ -76,6 +87,14 @@
" imported, " => " นำเข้าข้อมูลแล้ว, ",
" failed." => " ล้มเหลว.",
"Displayname cannot be empty." => "ชื่อที่ใช้แสดงไม่สามารถเว้นว่างได้",
"Show CardDav link" => "แสดงลิงก์ CardDav",
"Show read-only VCF link" => "แสดงลิงก์ VCF สำหรับอ่านเท่านั้น",
"Download" => "ดาวน์โหลด",
"Edit" => "แก้ไข",
"Delete" => "ลบ",
"Cancel" => "ยกเลิก",
"More..." => "เพิ่มเติม...",
"Less..." => "ย่อ...",
"You do not have the permissions to read this addressbook." => "คุณไม่ได้รับสิทธิ์ให้เปิดอ่านสมุดบันทึกที่อยู่",
"You do not have the permissions to update this addressbook." => "คุณไม่ได้รับสิทธิ์ให้อัพเดทสมุดบันทึกที่อยู่นี้",
"There was an error updating the addressbook." => "เกิดข้อผิดพลาดบางประการในการอัพเดทข้อมูลในสมุดบันทึกที่อยู่",
@ -150,10 +169,8 @@
"Edit current photo" => "แก้ไขรูปภาพปัจจุบัน",
"Upload new photo" => "อัพโหลดรูปภาพใหม่",
"Select photo from ownCloud" => "เลือกรูปภาพจาก ownCloud",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "กำหนดรูปแบบของชื่อย่อ, ชื่อจริง, ย้อนค่ากลัีบด้วยคอมม่าเอง",
"Edit name details" => "แก้ไขรายละเอียดของชื่อ",
"Organization" => "หน่วยงาน",
"Delete" => "ลบ",
"Nickname" => "ชื่อเล่น",
"Enter nickname" => "กรอกชื่อเล่น",
"Web site" => "เว็บไซต์",
@ -225,22 +242,15 @@
"<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>",
"Add contact" => "เพิ่มชื่อผู้ติดต่อ",
"Select Address Books" => "เลือกสมุดบันทึกที่อยู่",
"Enter name" => "กรอกชื่อ",
"Enter description" => "กรอกคำอธิบาย",
"CardDAV syncing addresses" => "ที่อยู่ที่ใช้เชื่อมข้อมูลกับ CardDAV",
"more info" => "ข้อมูลเพิ่มเติม",
"Primary address (Kontact et al)" => "ที่อยู่หลัก (สำหรับติดต่อ)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "สมุดบันทึกที่อยู่",
"Show CardDav link" => "แสดงลิงก์ CardDav",
"Show read-only VCF link" => "แสดงลิงก์ VCF สำหรับอ่านเท่านั้น",
"Share" => "แชร์",
"Download" => "ดาวน์โหลด",
"Edit" => "แก้ไข",
"New Address Book" => "สร้างสมุดบันทึกข้อมูลการติดต่อใหม่",
"Name" => "ชื่อ",
"Description" => "คำอธิบาย",
"Save" => "บันทึก",
"Cancel" => "ยกเลิก",
"More..." => "เพิ่มเติม..."
"Save" => "บันทึก"
);

View File

@ -50,6 +50,9 @@
"Not implemented" => "Tamamlanmadı.",
"Couldn't get a valid address." => "Geçerli bir adres alınamadı.",
"Error" => "Hata",
"Enter name" => "İsim giriniz",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "Biçin özel, Kısa isim, Tam isim, Ters veya noktalı ters",
"Select type" => "Tür seç",
"You do not have permission to add contacts to " => "Yeni bir kişi eklemek için yetkiniz yok.",
"Please select one of your own address books." => "Adres defterlerinizden birini seçiniz.",
"Permission error" => "Yetki hatası",
@ -60,13 +63,22 @@
"No files selected for upload." => "Yükleme için dosya seçilmedi.",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosya sunucudaki dosya yükleme maksimum boyutunu aşmaktadır. ",
"Error loading profile picture." => "Profil resmi yüklenirken hata oluştu.",
"Select type" => "Tür seç",
"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.",
"Do you want to merge these address books?" => "Bu adres defterlerini birleştirmek istiyor musunuz?",
"Wrong file type" => "Yanlış dosya tipi",
"Upload Error" => "Yükleme Hatası",
"Importing..." => "İçeri aktarılıyor...",
"Result: " => "Sonuç: ",
" imported, " => " içe aktarıldı, ",
" failed." => " hatalı.",
"Displayname cannot be empty." => "GörünenAd boş olamaz.",
"Show CardDav link" => "CardDav bağlantısı göster",
"Show read-only VCF link" => "Salt-okur VCF bağlantısı göster",
"Download" => "İndir",
"Edit" => "Düzenle",
"Delete" => "Sil",
"Cancel" => "İptal",
"More..." => "Devamı...",
"You do not have the permissions to update this addressbook." => "Bu adresdefterini güncellemek için yetkiniz yok.",
"There was an error updating the addressbook." => "Adresdefteri güncellenirken hata oluştu.",
"You do not have the permissions to delete this addressbook." => "Bu adresdefterini silmek için yetkiniz yok.",
@ -112,6 +124,7 @@
"Questions" => "Sorular",
"{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.",
"You do not have the permissions to edit this contact." => "Bu kişiyi düzenlemek için yetkiniz yok.",
"You do not have the permissions to delete this contact." => "Bu kişiyi silmek için yetkiniz yok.",
"There was an error deleting this contact." => "Kişi silinirken hata oluştu.",
@ -136,10 +149,8 @@
"Edit current photo" => "Mevcut fotoğrafı düzenle",
"Upload new photo" => "Yeni fotoğraf yükle",
"Select photo from ownCloud" => "ownCloud'dan bir fotoğraf seç",
"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",
"Organization" => "Organizasyon",
"Delete" => "Sil",
"Nickname" => "Takma ad",
"Enter nickname" => "Takma adı girin",
"Web site" => "Web sitesi",
@ -210,22 +221,15 @@
"Importing contacts" => "Bağlantıları içe aktar",
"Add contact" => "Bağlatı ekle",
"Select Address Books" => "Adres deftelerini seçiniz",
"Enter name" => "İsim giriniz",
"Enter description" => "Tanım giriniz",
"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ı)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Adres defterleri",
"Show CardDav link" => "CardDav bağlantısı göster",
"Show read-only VCF link" => "Salt-okur VCF bağlantısı göster",
"Share" => "Paylaş",
"Download" => "İndir",
"Edit" => "Düzenle",
"New Address Book" => "Yeni Adres Defteri",
"Name" => "Ad",
"Description" => "Tanımlama",
"Save" => "Kaydet",
"Cancel" => "İptal",
"More..." => "Devamı..."
"Save" => "Kaydet"
);

View File

@ -1,6 +1,9 @@
<?php $TRANSLATIONS = array(
"At least one of the address fields has to be filled out." => "Має бути заповнено щонайменше одне поле.",
"Error" => "Помилка",
"Download" => "Завантажити",
"Delete" => "Видалити",
"Cancel" => "Відмінити",
"This is not your addressbook." => "Це не ваша адресна книга.",
"Mobile" => "Мобільний",
"Text" => "Текст",
@ -13,7 +16,6 @@
"Add Contact" => "Додати контакт",
"Settings" => "Налаштування",
"Organization" => "Організація",
"Delete" => "Видалити",
"Phone" => "Телефон",
"Email" => "Ел.пошта",
"Address" => "Адреса",
@ -24,9 +26,7 @@
"Country" => "Країна",
"Given name" => "Ім'я",
"Add contact" => "Додати контакт",
"Download" => "Завантажити",
"New Address Book" => "Нова адресна книга",
"Name" => "Ім'я",
"Save" => "Зберегти",
"Cancel" => "Відмінити"
"Save" => "Зберегти"
);

View File

@ -1,53 +1,191 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "Lỗi (tắt) kích hoạt sổ địa chỉ",
"id is not set." => "id không được thiết lập.",
"Cannot update addressbook with an empty name." => "Không thể cập nhật sổ liên lạc mà không có tên",
"No ID provided" => "Không có ID được cung cấp",
"Error setting checksum." => "Lỗi thiết lập kiểm tra.",
"No categories selected for deletion." => "Bạn chưa chọn mục để xóa",
"No address books found." => "Không tìm thấy sổ địa chỉ.",
"No contacts found." => "Không tìm thấy danh sách",
"element name is not set." => "tên phần tử không được thiết lập.",
"Cannot add empty property." => "Không thể thêm thuộc tính rỗng",
"At least one of the address fields has to be filled out." => "Ít nhất một địa chỉ phải được điền.",
"Trying to add duplicate property: " => "Thêm hai thuộc tính trùng nhau",
"Missing IM parameter." => "Thiếu tham số IM",
"Unknown IM: " => "Không biết IM:",
"Information about vCard is incorrect. Please reload the page." => "Thông tin vCard không chính xác. Vui lòng tải lại trang.",
"Missing ID" => "Missing ID",
"checksum is not set." => "tổng kiểm tra không được thiết lập.",
"Information about vCard is incorrect. Please reload the page: " => "Thông tin về vCard không chính xác. Vui lòng tải lại trang:",
"No contact ID was submitted." => "Không có ID của liên lạc được tìm thấy",
"Error reading contact photo." => "Lỗi đọc liên lạc hình ảnh.",
"Error saving temporary file." => "Lỗi trong quá trình lưu file tạm",
"The loading photo is not valid." => "Các hình ảnh tải không hợp lệ.",
"Contact ID is missing." => "ID của liên lạc bị thiếu",
"No photo path was submitted." => "Đường dẫn hình ảnh bị thiếu",
"File doesn't exist:" => "Tập tin không tồn tại",
"Error loading image." => "Lỗi khi tải hình ảnh.",
"Error getting contact object." => "Lỗi liên lạc đối tượng.",
"Error getting PHOTO property." => "Lỗi lấy thuộc tính ảnh",
"Error saving contact." => "Lỗi khi lưu liên lạc",
"Error resizing image" => "Lỗi khi chỉnh kích thước ảnh",
"Error cropping image" => "Lỗi khi cắt ảnh",
"Error creating temporary image" => "Lỗi khi tạo tệp tin tạm",
"Error finding image: " => "Lỗi khi tìm hình ảnh:",
"Error uploading contacts to storage." => "Lỗi tải lên danh sách địa chỉ để lưu trữ.",
"There is no error, the file uploaded with success" => "Không có lỗi, các tập tin tải lên thành công",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "Dung lượng file tải lên vượt quá giới hạn cho phép.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Tập tin được tải lên vượt quá MAX_FILE_SIZE được quy định trong mẫu HTML",
"The uploaded file was only partially uploaded" => "Các tập tin được tải lên chỉ tải lên được một phần",
"No file was uploaded" => "Chưa có file nào được tải lên",
"Missing a temporary folder" => "Không tìm thấy thư mục tạm",
"Couldn't save temporary image: " => "Không thể lưu ảnh tạm thời:",
"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",
"Enter name" => "Nhập tê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",
"You do not have permission to add contacts to " => "Bạn không có quyền để thêm địa chỉ liên lạc",
"Please select one of your own address books." => "Vui lòng chọn một trong những danh bạ địa chỉ của riêng bạn.",
"Permission error" => "Lỗi quyền truy cập",
"Edit name" => "Sửa tên",
"Error loading profile picture." => "Lỗi khi tải lên hồ sơ hình ảnh.",
"Do you want to merge these address books?" => "Bạn có muốn kết hợp những cuốn sách địa chỉ?",
"Result: " => "Kết quả:",
"Download" => "Tải về",
"Edit" => "Sửa",
"Delete" => "Xóa",
"Cancel" => "Hủy",
"You do not have the permissions to update this addressbook." => "Bạn không có quyền truy cập để cập nhật danh bạ này.",
"There was an error updating the addressbook." => "Có một lỗi khi cập nhật danh bạ.",
"You do not have the permissions to delete this addressbook." => "Bạn không có quyền truy cập để xóa danh bạ này.",
"There was an error deleting this addressbook." => "Có một lỗi khi xóa danh bạ này.",
"This is not your addressbook." => "Đây không phải là sổ địa chỉ của bạn.",
"Contact could not be found." => "Liên lạc không được tìm thấy",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "Twitter",
"GoogleTalk" => "GoogleTalk",
"Facebook" => "Facebook",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "Yahoo",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "Công việc",
"Home" => "Nhà",
"Mobile" => "Di động",
"Text" => "Văn bản",
"Voice" => "Giọng nói",
"Message" => "Tin nhắn",
"Fax" => "Fax",
"Video" => "Video",
"Pager" => "số trang",
"Internet" => "Mạng internet",
"Birthday" => "Ngày sinh nhật",
"Call" => "Gọi",
"{name}'s Birthday" => "Sinh nhật của {name}",
"Contact" => "Danh sách",
"Could not find the vCard with ID." => "Không thể tìm thấy ID vCard.",
"You do not have the permissions to edit this contact." => "Bạn không có quyền truy cập để chỉnh sửa địa chỉ liên hệ này.",
"Could not find the vCard with ID: " => "Không thể tìm thấy ID vCard: ",
"Could not find the Addressbook with ID: " => "Không thể tìm thấy ID danh bạ:",
"You do not have the permissions to delete this contact." => "Bạn không có quyền truy cập để xóa địa chỉ liên hệ này.",
"There was an error deleting this contact." => "Có một lỗi khi xóa địa chỉ liên lạc này.",
"Add Contact" => "Thêm liên lạc",
"Import" => "Nhập",
"Settings" => "Tùy chỉnh",
"Close" => "Đóng",
"Next contact in list" => "Liên lạc tiếp theo",
"Previous contact in list" => "Liên lạc trước",
"Expand/collapse current addressbook" => "Đóng/mở sổ địa chỉ",
"Refresh contacts list" => "Làm mới danh sách liên lạc",
"Add new contact" => "Thêm liên lạc mới",
"Add new addressbook" => "Thêm sổ địa chỉ mới",
"Delete current contact" => "Xóa liên lạc hiện tại",
"Drop photo to upload" => "Kéo và thả hình ảnh để tải lên",
"Delete current photo" => "Xóa hình ảnh hiện tại",
"Edit current photo" => "Sửa hình ảnh hiện tại",
"Upload new photo" => "Tải hình ảnh mới",
"Select photo from ownCloud" => "Chọn hình đã tải lên Kcloud",
"Edit name details" => "Chỉnh sửa chi tiết tên",
"Organization" => "Tổ chức",
"Delete" => "Xóa",
"Nickname" => "Biệt danh",
"Enter nickname" => "Nhập nickname",
"Go to web site" => "Đi tới website",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Groups" => "Nhóm",
"Separate groups with commas" => "Phân cách bởi dấu phẩy",
"Edit groups" => "Sửa nhóm",
"Preferred" => "Được ưu tiên",
"Please specify a valid email address." => "Vui lòng nhập địa chỉ Email hợp lệ.",
"Enter email address" => "Nhập địa chỉ Email",
"Mail to address" => "Gửi email",
"Delete email address" => "Xóa Email",
"Enter phone number" => "Nhập số điện thoại",
"Delete phone number" => "Xóa số điện thoại",
"Instant Messenger" => "Tin nhắn khẩn cấp",
"Delete IM" => "Xóa IM",
"View on map" => "Xem trên bản đồ",
"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",
"Phone" => "Điện thoại",
"Email" => "Email",
"Instant Messaging" => "Hệ thống tin nhắn khẩn cấp",
"Address" => "Địa chỉ",
"Note" => "Chú thích",
"Download contact" => "Tải liên lạc",
"Delete contact" => "Xóa liên lạc",
"Edit address" => "Sửa địa chỉ",
"Type" => "Loại",
"PO Box" => "Hòm thư bưu điện",
"Street address" => "Địa chỉ nhà",
"Street and number" => "Số nhà",
"Extended" => "Mở rộng",
"Apartment number etc." => "Số nhà",
"City" => "Thành phố",
"Region" => "Vùng/miền",
"E.g. state or province" => "Vd tiểu bang hoặc tỉnh thành",
"Zipcode" => "Mã bưu điện",
"Postal code" => "Mã bưu chính",
"Country" => "Quốc gia",
"Addressbook" => "Sổ địa chỉ",
"Hon. prefixes" => "Tiền tốt Hon.",
"Miss" => "Miss",
"Ms" => "Ms",
"Mr" => "Mr",
"Sir" => "Sir",
"Mrs" => "Sir",
"Dr" => "Sir",
"Given name" => "Được đặt tên",
"Additional names" => "Tên bổ sung",
"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",
"Add contact" => "Thêm liên lạc",
"Select Address Books" => "Chọn sổ địa chỉ",
"Enter description" => "Nhập mô tả",
"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)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "Sổ địa chỉ",
"Download" => "Tải về",
"Edit" => "Sửa",
"Share" => "Chia sẽ",
"New Address Book" => "Sổ địa chỉ mới",
"Save" => "Lưu",
"Cancel" => "Hủy"
"Save" => "Lưu"
);

256
l10n/zh_CN.GB2312.php Normal file
View File

@ -0,0 +1,256 @@
<?php $TRANSLATIONS = array(
"Error (de)activating addressbook." => "激活/取消激活地址薄出错。",
"id is not set." => "未设置 ID。",
"Cannot update addressbook with an empty name." => "不能更新名称为空的地址薄。",
"No ID provided" => "没有提供 ID",
"Error setting checksum." => "设置校验和出错。",
"No categories selected for deletion." => "没有选中要删除的分类。",
"No address books found." => "没有找到地址薄。",
"No contacts found." => "没有找到联系人。",
"element name is not set." => "元素名称未设置。",
"Could not parse contact: " => "未能解析联系人:",
"Cannot add empty property." => "不能添加空属性。",
"At least one of the address fields has to be filled out." => "需填写至少一个地址栏。",
"Trying to add duplicate property: " => "尝试添加重复属性:",
"Missing IM parameter." => "缺失即时通讯参数。",
"Unknown IM: " => "未知即时通讯服务:",
"Information about vCard is incorrect. Please reload the page." => "vCard 信息不正确。请刷新页面。",
"Missing ID" => "缺失 ID",
"Error parsing VCard for ID: \"" => "解析 VCard 出错ID 是:\"",
"checksum is not set." => "校验和未设置。",
"Information about vCard is incorrect. Please reload the page: " => "vCard 信息不正确。请刷新页面:",
"Something went FUBAR. " => "FUBAR 出错。",
"No contact ID was submitted." => "没有提交联系人 ID。",
"Error reading contact photo." => "读取联系人相片出错。",
"Error saving temporary file." => "保存临时文件出错。",
"The loading photo is not valid." => "载入的相片无效。",
"Contact ID is missing." => "缺失联系人 ID。",
"No photo path was submitted." => "未提交相片路径。",
"File doesn't exist:" => "文件不存在:",
"Error loading image." => "加载相片出错。",
"Error getting contact object." => "获取联系人对象出错。",
"Error getting PHOTO property." => "获取相片属性出错。",
"Error saving contact." => "保存联系人出错。",
"Error resizing image" => "缩放相片出错",
"Error cropping image" => "剪裁相片出错",
"Error creating temporary image" => "创建临时相片出错",
"Error finding image: " => "查找相片出错:",
"Error uploading contacts to storage." => "上传联系人到存储出错。",
"There is no error, the file uploaded with success" => "文件上传成功",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "上传的文件超过了 php.ini 中的 upload_max_filesize 选项",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件超过了 HTML 表格中指定的 MAX_FILE_SIZE 选项",
"The uploaded file was only partially uploaded" => "文件部分上传",
"No file was uploaded" => "没有上传文件",
"Missing a temporary folder" => "缺失临时文件夹",
"Couldn't save temporary image: " => "不能保存临时相片:",
"Couldn't load temporary image: " => "不能载入临时相片:",
"No file was uploaded. Unknown error" => "没有上传文件。未知错误",
"Contacts" => "联系人",
"Sorry, this functionality has not been implemented yet" => "对不起,该功能尚未实现",
"Not implemented" => "未实现",
"Couldn't get a valid address." => "未能获取有效地址。",
"Error" => "出错",
"Please enter an email address." => "请输入电子邮件地址。",
"Enter name" => "输入名称",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "格式自定义,短名称,全名,分隔或用逗号分隔",
"Select type" => "选择类型",
"Select photo" => "选择相片",
"You do not have permission to add contacts to " => "您没有权限添加联系人到",
"Please select one of your own address books." => "请选择一个您自己的地址薄。",
"Permission error" => "权限错误",
"Click to undo deletion of \"" => "点击以取消删除 \"",
"Cancelled deletion of: \"" => "取消删除:\"",
"This property has to be non-empty." => "该属性不能为空。",
"Couldn't serialize elements." => "不能序列化元素",
"Unknown error. Please check logs." => "未知错误。请检查日志。",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' 没有带类型参数调用。请到 bugs.owncloud.org 报告",
"Edit name" => "编辑名称",
"No files selected for upload." => "未选择要上传的文件。",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "您试图上传的文件超出了此服务器允许的上传文件最大尺寸。",
"Error loading profile picture." => "加载档案相片出错。",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "一些联系人标记为删除,但尚未删除。请等待它们被删除。",
"Do you want to merge these address books?" => "您想要合并这些地址薄吗?",
"Shared by " => "分享自",
"Upload too large" => "上传过大",
"Only image files can be used as profile picture." => "只有图片文件可用于资料相片。",
"Wrong file type" => "错误文件格式",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "您的浏览器不支持 AJAX 上传。请点击资料相片来选择要上传的相片。",
"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传您的文件,由于它是文件夹或者为空文件",
"Upload Error" => "上传错误",
"Pending" => "等待中",
"Import done" => "导入完成",
"Not all files uploaded. Retrying..." => "有文件未上传。重试中...",
"Something went wrong with the upload, please retry." => "上传出错,请重试。",
"Importing..." => "导入中...",
"The address book name cannot be empty." => "地址薄名称不能为空。",
"Result: " => "结果:",
" imported, " => "已导入,",
" failed." => "失败。",
"Displayname cannot be empty." => "显示名称不能为空。",
"Show CardDav link" => "显示 CardDav 链接",
"Show read-only VCF link" => "显示只读 VCF 链接",
"Download" => "下载",
"Edit" => "编辑",
"Delete" => "删除",
"Cancel" => "取消",
"More..." => "更多...",
"Less..." => "更少...",
"You do not have the permissions to read this addressbook." => "您没有权限读取此地址薄。",
"You do not have the permissions to update this addressbook." => "您没有权限更新此地址薄。",
"There was an error updating the addressbook." => "更新地址薄出错。",
"You do not have the permissions to delete this addressbook." => "您没有权限删除此地址薄。",
"There was an error deleting this addressbook." => "删除此地址薄出错。",
"Addressbook not found: " => "未找到地址薄:",
"This is not your addressbook." => "这不是您的地址薄",
"Contact could not be found." => "找不到联系人。",
"Jabber" => "Jabber",
"AIM" => "AIM",
"MSN" => "MSN",
"Twitter" => "推特",
"GoogleTalk" => "Google Talk",
"Facebook" => "脸书",
"XMPP" => "XMPP",
"ICQ" => "ICQ",
"Yahoo" => "雅虎",
"Skype" => "Skype",
"QQ" => "QQ",
"GaduGadu" => "GaduGadu",
"Work" => "单位",
"Home" => "家庭",
"Other" => "其他",
"Mobile" => "手机",
"Text" => "文本",
"Voice" => "声音",
"Message" => "信息",
"Fax" => "传真",
"Video" => "视频",
"Pager" => "分页",
"Internet" => "互联网",
"Birthday" => "生日",
"Business" => "商业",
"Call" => "呼叫",
"Clients" => "客户",
"Deliverer" => "供应商",
"Holidays" => "假日",
"Ideas" => "想法",
"Journey" => "路程",
"Jubilee" => "娱乐",
"Meeting" => "会议",
"Personal" => "私人",
"Projects" => "项目",
"Questions" => "问题",
"{name}'s Birthday" => "{name} 的生日",
"Contact" => "联系人",
"You do not have the permissions to add contacts to this addressbook." => "您没有权限添加联系人到此地址薄。",
"Could not find the vCard with ID." => "未能找到此 ID 的 vCard。",
"You do not have the permissions to edit this contact." => "您没有权限编辑此联系人。",
"Could not find the vCard with ID: " => "未能找到 vCardID 是:",
"Could not find the Addressbook with ID: " => "未能找到地址薄ID 是:",
"You do not have the permissions to delete this contact." => "您没有权限删除此联系人。",
"There was an error deleting this contact." => "删除联系人出错。",
"Add Contact" => "添加联系人",
"Import" => "导入",
"Settings" => "设置",
"Close" => "关闭",
"Keyboard shortcuts" => "热键",
"Navigation" => "导航",
"Next contact in list" => "列表中下一个联系人",
"Previous contact in list" => "列表中上一个联系人",
"Expand/collapse current addressbook" => "展开/收缩当前地址薄",
"Next addressbook" => "下一个地址薄",
"Previous addressbook" => "前一个地址薄。",
"Actions" => "操作",
"Refresh contacts list" => "刷新联系人列表",
"Add new contact" => "添加新联系人",
"Add new addressbook" => "添加新地址薄",
"Delete current contact" => "删除当前联系人",
"Drop photo to upload" => "拖拽相片上传",
"Delete current photo" => "删除当前相片",
"Edit current photo" => "编辑当前相片",
"Upload new photo" => "上传新相片",
"Select photo from ownCloud" => "从 ownCloud 选择相片",
"Edit name details" => "编辑名称细节",
"Organization" => "组织",
"Nickname" => "昵称",
"Enter nickname" => "输入昵称",
"Web site" => "网站",
"http://www.somesite.com" => "http://www.somesite.com",
"Go to web site" => "访问网站",
"dd-mm-yyyy" => "dd-mm-yyyy",
"Groups" => "群组",
"Separate groups with commas" => "用逗号分隔群组",
"Edit groups" => "编辑群组",
"Preferred" => "偏好",
"Please specify a valid email address." => "请指定有效的电子邮件地址。",
"Enter email address" => "输入电子邮件地址",
"Mail to address" => "向此地址发送邮件",
"Delete email address" => "删除电子邮件地址",
"Enter phone number" => "输入电话号码",
"Delete phone number" => "删除电话号码",
"Instant Messenger" => "即时通讯",
"Delete IM" => "删除即时通讯",
"View on map" => "查看地图",
"Edit address details" => "编辑地址细节",
"Add notes here." => "在此添加备注。",
"Add field" => "添加字段",
"Phone" => "电话",
"Email" => "电子邮件",
"Instant Messaging" => "即时通讯",
"Address" => "地址",
"Note" => "备注",
"Download contact" => "下载联系人",
"Delete contact" => "删除联系人",
"The temporary image has been removed from cache." => "临时相片已从缓存中移除。",
"Edit address" => "编辑地址",
"Type" => "类型",
"PO Box" => "信箱",
"Street address" => "街道地址",
"Street and number" => "街道和门牌号",
"Extended" => "扩展",
"Apartment number etc." => "公寓号等。",
"City" => "城市",
"Region" => "地区",
"E.g. state or province" => "例如,州或省",
"Zipcode" => "邮编",
"Postal code" => "邮编",
"Country" => "国家",
"Addressbook" => "地址薄",
"Hon. prefixes" => "荣誉头衔",
"Miss" => "小姐",
"Ms" => "小姐",
"Mr" => "先生",
"Sir" => "先生",
"Mrs" => "女士",
"Dr" => "博士",
"Given name" => "",
"Additional names" => "中间名",
"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>",
"Add contact" => "添加联系人",
"Select Address Books" => "选择地址薄",
"Enter description" => "输入描述",
"CardDAV syncing addresses" => "CardDAV 同步地址",
"more info" => "更多信息",
"Primary address (Kontact et al)" => "主要地址 (Kontact 等)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "地址薄",
"Share" => "分享",
"New Address Book" => "新地址薄",
"Name" => "名称",
"Description" => "描述",
"Save" => "保存"
);

View File

@ -8,12 +8,12 @@
"No address books found." => "找不到地址簿。",
"No contacts found." => "找不到联系人。",
"element name is not set." => "元素名称未设置",
"Could not parse contact: " => "无法解析内容",
"Could not parse contact: " => "无法解析联系人",
"Cannot add empty property." => "无法添加空属性。",
"At least one of the address fields has to be filled out." => "至少需要填写一项地址。",
"Trying to add duplicate property: " => "试图添加重复属性: ",
"Missing IM parameter." => "缺少IM参数",
"Unknown IM: " => "未知IM",
"Missing IM parameter." => "缺少即时通讯IM参数",
"Unknown IM: " => "未知即时通讯服务",
"Information about vCard is incorrect. Please reload the page." => "vCard 的信息不正确。请重新加载页面。",
"Missing ID" => "缺少 ID",
"Error parsing VCard for ID: \"" => "无法解析如下ID的 VCard",
@ -21,14 +21,14 @@
"Information about vCard is incorrect. Please reload the page: " => "vCard 信息不正确。请刷新页面: ",
"Something went FUBAR. " => "有一些信息无法被处理。",
"No contact ID was submitted." => "未提交联系人 ID。",
"Error reading contact photo." => "读取联系人照片错误。",
"Error reading contact photo." => "读取联系人照片错误。",
"Error saving temporary file." => "保存临时文件错误。",
"The loading photo is not valid." => "装入的照片不正确",
"The loading photo is not valid." => "载入的照片无效",
"Contact ID is missing." => "缺少联系人 ID。",
"No photo path was submitted." => "未提供照片路径。",
"File doesn't exist:" => "文件不存在:",
"Error loading image." => "加载图片错误。",
"Error getting contact object." => "获取联系人目标时出错。",
"Error getting contact object." => "获取联系人对象时出错。",
"Error getting PHOTO property." => "获取照片属性时出错。",
"Error saving contact." => "保存联系人时出错。",
"Error resizing image" => "缩放图像时出错",
@ -39,7 +39,7 @@
"There is no error, the file uploaded with success" => "文件上传成功,没有错误发生",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" => "上传的文件长度超出了 php.ini 中 upload_max_filesize 的限制",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上传的文件长度超出了 HTML 表单中 MAX_FILE_SIZE 的限制",
"The uploaded file was only partially uploaded" => "已上传文件只上传了部分",
"The uploaded file was only partially uploaded" => "已上传文件只上传了部分(不完整)",
"No file was uploaded" => "没有文件被上传",
"Missing a temporary folder" => "缺少临时目录",
"Couldn't save temporary image: " => "无法保存临时图像: ",
@ -50,24 +50,53 @@
"Not implemented" => "未实现",
"Couldn't get a valid address." => "无法获取一个合法的地址。",
"Error" => "错误",
"Please enter an email address." => "请输入电子邮件地址",
"Enter name" => "输入姓名",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "自定义格式,简称,全名,姓在前,姓在前并用逗号分割",
"Select type" => "选择类型",
"Select photo" => "选择图片",
"You do not have permission to add contacts to " => "您没有权限添加联系人到",
"Please select one of your own address books." => "请选择一个您的地址簿",
"Permission error" => "权限错误",
"Click to undo deletion of \"" => "撤销删除",
"Cancelled deletion of: \"" => "已取消删除:",
"This property has to be non-empty." => "这个属性必须是非空的",
"Couldn't serialize elements." => "无法序列化元素",
"Unknown error. Please check logs." => "未知错误。请检查日志",
"'deleteProperty' called without type argument. Please report at bugs.owncloud.org" => "'deleteProperty' 调用时没有类型声明。请到 bugs.owncloud.org 汇报错误",
"Edit name" => "编辑名称",
"No files selected for upload." => "没有选择文件以上传",
"The file you are trying to upload exceed the maximum size for file uploads on this server." => "您试图上传的文件超出了该服务器的最大文件限制",
"Error loading profile picture." => "载入档案图片时出错",
"Select type" => "选择类型",
"Some contacts are marked for deletion, but not deleted yet. Please wait for them to be deleted." => "一些联系人已被标注为删除,但是尚未完成,请稍候。",
"Do you want to merge these address books?" => "是否想合并这些地址簿?",
"Shared by " => "分享自",
"Upload too large" => "上传文件过大",
"Only image files can be used as profile picture." => "只有图像文件才可用作头像",
"Wrong file type" => "错误的文件类型",
"Your browser doesn't support AJAX upload. Please click on the profile picture to select a photo to upload." => "您的浏览器不支持 AJAX 方式上传。请先点击头像再选择相片上传。",
"Unable to upload your file as it is a directory or has 0 bytes" => "无法上传您的文件,文件夹或者空文件",
"Upload Error" => "上传错误",
"Pending" => "等待",
"Import done" => "导入完毕",
"Not all files uploaded. Retrying..." => "仍有文件未上传,重试中",
"Something went wrong with the upload, please retry." => "上传中出现些问题,请重试。",
"Importing..." => "导入中",
"The address book name cannot be empty." => "地址簿名称不能为空",
"Result: " => "结果: ",
" imported, " => " 已导入, ",
" failed." => " 失败。",
"Displayname cannot be empty." => "显示名称不能为空",
"You do not have the permissions to update this addressbook." => "你没有权限更新地址簿",
"Show CardDav link" => "显示CardDav连接",
"Show read-only VCF link" => "显示只读VCF连接",
"Download" => "下载",
"Edit" => "编辑",
"Delete" => "删除",
"Cancel" => "取消",
"More..." => "更多",
"Less..." => "更少...",
"You do not have the permissions to read this addressbook." => "你没有权限查看地址簿",
"You do not have the permissions to update this addressbook." => "你没有权限更新此地址簿",
"There was an error updating the addressbook." => "更新地址簿时出错",
"You do not have the permissions to delete this addressbook." => "你没有权限编辑此地址簿",
"There was an error deleting this addressbook." => "删除地址簿时出错",
@ -89,7 +118,7 @@
"Work" => "工作",
"Home" => "家庭",
"Other" => "其它",
"Mobile" => "移动电话",
"Mobile" => "手机",
"Text" => "文本",
"Voice" => "语音",
"Message" => "消息",
@ -101,7 +130,7 @@
"Business" => "商务",
"Call" => "电话",
"Clients" => "客户",
"Deliverer" => "Deliverer",
"Deliverer" => "供应商",
"Holidays" => "假期",
"Ideas" => "创意",
"Journey" => "旅行",
@ -113,7 +142,7 @@
"{name}'s Birthday" => "{name} 的生日",
"Contact" => "联系人",
"You do not have the permissions to add contacts to this addressbook." => "您没有权限增加联系人到此地址簿",
"Could not find the vCard with ID." => "无法根据ID找到联系人",
"Could not find the vCard with ID." => "未能找到此 ID 的 vCard",
"You do not have the permissions to edit this contact." => "你没有权限编辑此联系人",
"Could not find the vCard with ID: " => "无法找到联系人根据ID",
"Could not find the Addressbook with ID: " => "无法找到地址簿根据ID",
@ -127,7 +156,7 @@
"Navigation" => "导航",
"Next contact in list" => "列表中的下一个联系人",
"Previous contact in list" => "列表中的上一个联系人",
"Expand/collapse current addressbook" => "展开收起此地址簿",
"Expand/collapse current addressbook" => "展开/收起此地址簿",
"Next addressbook" => "下一个地址簿",
"Previous addressbook" => "上一个地址簿",
"Actions" => "地址",
@ -140,15 +169,13 @@
"Edit current photo" => "编辑当前照片",
"Upload new photo" => "上传新照片",
"Select photo from ownCloud" => "从 ownCloud 选择照片",
"Format custom, Short name, Full name, Reverse or Reverse with comma" => "自定义格式,简称,全名,姓在前,姓在前并用逗号分割",
"Edit name details" => "编辑名称详情",
"Organization" => "组织",
"Delete" => "删除",
"Nickname" => "昵称",
"Enter nickname" => "输入昵称",
"Web site" => "网址",
"http://www.somesite.com" => "http://www.wodewangzhan.com",
"Go to web site" => "前往网站",
"Go to web site" => "访问网址",
"dd-mm-yyyy" => "yyyy-mm-dd",
"Groups" => "分组",
"Separate groups with commas" => "用逗号隔开分组",
@ -160,15 +187,15 @@
"Delete email address" => "删除电子邮件地址",
"Enter phone number" => "输入电话号码",
"Delete phone number" => "删除电话号码",
"Instant Messenger" => "即时聊天",
"Delete IM" => "删除即时聊天工具",
"Instant Messenger" => "即时通讯",
"Delete IM" => "删除即时通讯工具",
"View on map" => "在地图上显示",
"Edit address details" => "编辑地址细节",
"Edit address details" => "编辑详细地址。",
"Add notes here." => "添加注释。",
"Add field" => "添加字段",
"Phone" => "电话",
"Email" => "电子邮件",
"Instant Messaging" => "即时信息",
"Instant Messaging" => "即时通讯",
"Address" => "地址",
"Note" => "注释",
"Download contact" => "下载联系人",
@ -178,7 +205,7 @@
"Type" => "类型",
"PO Box" => "邮箱",
"Street address" => "街道地址",
"Street and number" => "街道号码",
"Street and number" => "街道门牌号码",
"Extended" => "扩展",
"Apartment number etc." => "公寓号码",
"City" => "城市",
@ -188,7 +215,7 @@
"Postal code" => "邮政编码",
"Country" => "国家",
"Addressbook" => "地址簿",
"Hon. prefixes" => "名誉字首",
"Hon. prefixes" => "荣誉头衔",
"Miss" => "小姐",
"Ms" => "女士",
"Mr" => "先生",
@ -212,24 +239,18 @@
"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>",
"Add contact" => "添加联系人",
"Select Address Books" => "选择地址簿",
"Enter name" => "输入姓名",
"Enter description" => "输入描述",
"CardDAV syncing addresses" => "CardDAV 同步地址",
"more info" => "更多信息",
"Primary address (Kontact et al)" => "首选地址 (Kontact 等)",
"iOS/OS X" => "iOS/OS X",
"Addressbooks" => "地址簿",
"Show CardDav link" => "显示CardDav连接",
"Show read-only VCF link" => "显示只读VCF连接",
"Share" => "共享",
"Download" => "下载",
"Edit" => "编辑",
"New Address Book" => "新建地址簿",
"Name" => "姓名",
"Description" => "描述",
"Save" => "保存",
"Cancel" => "取消",
"More..." => "更多"
"Save" => "保存"
);

View File

@ -11,6 +11,10 @@
"File doesn't exist:" => "檔案不存在",
"No file was uploaded" => "沒有已上傳的檔案",
"Contacts" => "通訊錄",
"Download" => "下載",
"Edit" => "編輯",
"Delete" => "刪除",
"Cancel" => "取消",
"This is not your addressbook." => "這不是你的電話簿",
"Contact could not be found." => "通訊錄未發現",
"Work" => "公司",
@ -31,7 +35,6 @@
"Upload new photo" => "上傳新照片",
"Edit name details" => "編輯姓名詳細資訊",
"Organization" => "組織",
"Delete" => "刪除",
"Nickname" => "綽號",
"Enter nickname" => "輸入綽號",
"dd-mm-yyyy" => "dd-mm-yyyy",
@ -71,9 +74,6 @@
"Additional names" => "額外名",
"Family name" => "家族名(姓)",
"Addressbooks" => "電話簿",
"Download" => "下載",
"Edit" => "編輯",
"New Address Book" => "新電話簿",
"Save" => "儲存",
"Cancel" => "取消"
"Save" => "儲存"
);

View File

@ -130,7 +130,7 @@ class OC_Contacts_Addressbook {
return false;
}
$row = $result->fetchRow();
if($row['userid'] != OCP\USER::getUser()) {
if($row['userid'] != OCP\USER::getUser() && !OC_Group::inGroup(OCP\User::getUser(), 'admin')) {
$sharedAddressbook = OCP\Share::getItemSharedWithBySource('addressbook', $id);
if (!$sharedAddressbook || !($sharedAddressbook['permissions'] & OCP\Share::PERMISSION_READ)) {
throw new Exception(
@ -231,7 +231,7 @@ class OC_Contacts_Addressbook {
public static function edit($id,$name,$description) {
// Need these ones for checking uri
$addressbook = self::find($id);
if ($addressbook['userid'] != OCP\User::getUser()) {
if ($addressbook['userid'] != OCP\User::getUser() && !OC_Group::inGroup(OCP\User::getUser(), 'admin')) {
$sharedAddressbook = OCP\Share::getItemSharedWithBySource('addressbook', $id);
if (!$sharedAddressbook || !($sharedAddressbook['permissions'] & OCP\Share::PERMISSION_UPDATE)) {
throw new Exception(
@ -307,7 +307,7 @@ class OC_Contacts_Addressbook {
*/
public static function delete($id) {
$addressbook = self::find($id);
if ($addressbook['userid'] != OCP\User::getUser()) {
if ($addressbook['userid'] != OCP\User::getUser() && !OC_Group::inGroup(OCP\User::getUser(), 'admin')) {
$sharedAddressbook = OCP\Share::getItemSharedWithBySource('addressbook', $id);
if (!$sharedAddressbook || !($sharedAddressbook['permissions'] & OCP\Share::PERMISSION_DELETE)) {
throw new Exception(
@ -346,8 +346,7 @@ class OC_Contacts_Addressbook {
);
}
// TODO: Unshare all when that method is created
//OCP\Share::unshare('addressbook', $id);
OCP\Share::unshareAll('addressbook', $id);
if(count(self::all(OCP\User::getUser())) == 0) {
self::addDefault();

View File

@ -92,7 +92,7 @@ class OC_Contacts_Hooks{
$vevent = new OC_VObject('VEVENT');
//$vevent->setDateTime('LAST-MODIFIED', new DateTime($vcard->REV));
$vevent->setDateTime('DTSTART', $date,
Sabre_VObject_Element_DateTime::DATE);
Sabre\VObject\Property\DateTime::DATE);
$vevent->setString('DURATION', 'P1D');
$vevent->setString('UID', substr(md5(rand().time()), 0, 10));
// DESCRIPTION?

View File

@ -11,7 +11,7 @@ class OC_Search_Provider_Contacts extends OC_Search_Provider{
$vcards = OC_Contacts_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 = OCP\Util::linkTo('contacts', 'index.php').'?id='.urlencode($vcard['id']);
$results[]=new OC_Search_Result($vcard['fullname'], '', $link, (string)$l->t('Contact'));//$name,$text,$link,$type
}
}

View File

@ -132,7 +132,7 @@ class OC_Contacts_VCard {
foreach($property->parameters as $key=>&$parameter) {
$types = OC_Contacts_App::getTypesOfProperty($property->name);
if(is_array($types) && in_array(strtoupper($parameter->name), array_keys($types)) || strtoupper($parameter->name) == 'PREF') {
$property->parameters[] = new Sabre_VObject_Parameter('TYPE', $parameter->name);
$property->parameters[] = new Sabre\VObject\Parameter('TYPE', $parameter->name);
}
unset($property->parameters[$key]);
}
@ -512,7 +512,7 @@ class OC_Contacts_VCard {
);
}
if ($addressbook['userid'] != OCP\User::getUser()) {
if ($addressbook['userid'] != OCP\User::getUser() && !OC_Group::inGroup(OCP\User::getUser(), 'admin')) {
OCP\Util::writeLog('contacts', __METHOD__.', '
. $addressbook['userid'] . ' != ' . OCP\User::getUser(), OCP\Util::DEBUG);
$sharedAddressbook = OCP\Share::getItemSharedWithBySource('addressbook', $card['addressbookid'], OCP\Share::FORMAT_NONE, null, true);
@ -552,6 +552,8 @@ class OC_Contacts_VCard {
);
}
OCP\Share::unshareAll('contact', $id);
return true;
}
@ -683,6 +685,8 @@ class OC_Contacts_VCard {
return null; // Badly malformed :-(
}
}
} elseif($property->name == 'PHOTO') {
$property->value = true;
}
if(is_string($value)) {
$value = strtr($value, array('\,' => ',', '\;' => ';'));

View File

@ -1,6 +1,6 @@
<?php
$tmpl = new OCP\Template( 'contacts', 'settings');
$tmpl->assign('addressbooks', OC_Contacts_Addressbook::all(OCP\USER::getUser()), false);
$tmpl->assign('addressbooks', OC_Contacts_Addressbook::all(OCP\USER::getUser()));
$tmpl->printPage();