2013-01-12 11:23:32 +00:00
< ? php
2016-11-28 15:07:24 +01:00
2014-08-28 17:02:34 +02:00
/**
* Localizations for the Kolab Address Book plugin
*
* Copyright ( C ) 2014 , Kolab Systems AG
*
* For translation see https :// www . transifex . com / projects / p / kolab / resource / kolab_addressbook /
*/
2016-11-28 15:07:24 +01:00
$labels = array ();
2013-01-12 11:23:32 +00:00
$labels [ 'initials' ] = 'Initialen' ;
$labels [ 'profession' ] = 'Beroep' ;
$labels [ 'officelocation' ] = 'Kantoorlocatie' ;
$labels [ 'children' ] = 'Kinderen' ;
$labels [ 'pgppublickey' ] = 'PGP publieke sleutel' ;
$labels [ 'pkcs7publickey' ] = 'S/MIME publieke sleutel' ;
2014-04-24 14:45:27 +02:00
$labels [ 'freebusyurl' ] = 'Vrij/Bezet URL' ;
2013-01-12 11:23:32 +00:00
$labels [ 'typebusiness' ] = 'Zakelijk' ;
$labels [ 'typebusinessfax' ] = 'Zakelijk (Fax)' ;
$labels [ 'typecompany' ] = 'Bedrijfsnaam' ;
$labels [ 'typeprimary' ] = 'Primair' ;
$labels [ 'typetelex' ] = 'Telex' ;
$labels [ 'typeradio' ] = 'Radio' ;
$labels [ 'typeisdn' ] = 'ISDN' ;
$labels [ 'typettytdd' ] = 'TTY/TDD' ;
2014-04-24 14:45:27 +02:00
$labels [ 'typecallback' ] = 'Callback' ;
2013-01-12 11:23:32 +00:00
$labels [ 'settings' ] = 'Instellingen' ;
2016-11-28 15:07:24 +01:00
2013-01-12 11:23:32 +00:00
$labels [ 'bookcreate' ] = 'Maak adresboek aan' ;
$labels [ 'bookedit' ] = 'Wijzig adresboek' ;
$labels [ 'bookdelete' ] = 'Adresboek verwijderen' ;
2014-12-01 12:45:40 +13:00
$labels [ 'bookremove' ] = 'Remove from list' ;
2013-01-12 11:23:32 +00:00
$labels [ 'bookproperties' ] = 'Eigenschappen voor adresboek' ;
$labels [ 'bookname' ] = 'Adresboek naam' ;
$labels [ 'parentbook' ] = 'Toevoegen aan bestaand adresboek' ;
2014-04-24 14:45:27 +02:00
$labels [ 'bookshowurl' ] = 'Toon CardDAV URL' ;
$labels [ 'carddavurldescription' ] = 'Kopieer dit adres naar een <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> programma om het volledige adresboek te synchroniseren met uw computer of mobiel apparaat.' ;
2016-11-28 15:07:24 +01:00
2013-01-12 11:23:32 +00:00
$labels [ 'addressbookprio' ] = 'Gedrag voor adresboek(en)-selectie' ;
$labels [ 'personalfirst' ] = 'Eerst persoonlijke adresboek(en)' ;
$labels [ 'globalfirst' ] = 'Eerst globale adresboek(en)' ;
$labels [ 'personalonly' ] = 'Alleen persoonlijke adresboek(en)' ;
$labels [ 'globalonly' ] = 'Alleen globale adresboek(en)' ;
2016-11-28 15:07:24 +01:00
$labels [ 'findaddressbooks' ] = 'Find address books' ;
2014-12-01 12:45:40 +13:00
$labels [ 'searchterms' ] = 'Search terms' ;
2016-11-28 15:07:24 +01:00
$labels [ 'listsearchresults' ] = 'Additional address books' ;
$labels [ 'foldersearchform' ] = 'Address book search form' ;
2014-08-28 17:02:34 +02:00
$labels [ 'foldersubscribe' ] = 'Permanent weergeven' ;
2016-11-28 15:07:24 +01:00
$labels [ 'nraddressbooksfound' ] = '$nr address books found' ;
$labels [ 'noaddressbooksfound' ] = 'No address books found' ;
// history dialog
$labels [ 'showhistory' ] = 'Show History' ;
$labels [ 'objectchangelog' ] = 'Change History' ;
$labels [ 'objectdiff' ] = 'Changes from $rev1 to $rev2' ;
$labels [ 'revisionrestoreconfirm' ] = 'Do you really want to restore revision $rev of this contact? This will replace the current contact with the old version.' ;
$labels [ 'objectnotfound' ] = 'Failed to load contact data' ;
$labels [ 'objectchangelognotavailable' ] = 'Change history is not available for this contact' ;
$labels [ 'objectdiffnotavailable' ] = 'No comparison possible for the selected revisions' ;
$labels [ 'objectrestoresuccess' ] = 'Revision $rev successfully restored' ;
$labels [ 'objectrestoreerror' ] = 'Failed to restore the old revision' ;
2013-01-12 11:23:32 +00:00
$messages [ 'bookdeleteconfirm' ] = 'Weet u zeker dat u het geselecteerde adresboek inclusief inhoud wilt verwijderen?' ;
$messages [ 'bookdeleting' ] = 'Adresboek aan het verwijderen...' ;
$messages [ 'booksaving' ] = 'Adresboek aan het opslaan...' ;
$messages [ 'bookdeleted' ] = 'Adresboek succesvol verwijderd.' ;
$messages [ 'bookupdated' ] = 'Adresboek succesvol gewijzigd.' ;
$messages [ 'bookcreated' ] = 'Adresboek succesvol aangemaakt.' ;
$messages [ 'bookdeleteerror' ] = 'Er heeft zich een fout voorgedaan bij het verwijderen van het adresboek.' ;
$messages [ 'bookupdateerror' ] = 'Er heeft zich een fout voorgedaan bij het wijzigen van het adresboek.' ;
$messages [ 'bookcreateerror' ] = 'Er heeft zich een fout voorgedaan bij het aanmaken van het adresboek.' ;
2013-10-11 15:06:22 +02:00
$messages [ 'nobooknamewarning' ] = 'Voer een naam voor het adresboek in, a.u.b.' ;
$messages [ 'noemailnamewarning' ] = 'Voor een e-mail adres of contactnaam in, a.u.b.' ;
2016-11-28 15:07:24 +01:00
2013-01-12 11:23:32 +00:00
?>