23 lines
861 B
PHP
23 lines
861 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_nl")) {
|
|
function string_plural_select_nl($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
$a->strings['Forum Directory'] = 'Forum index';
|
|
$a->strings['Public access denied.'] = 'Publieke toegang geweigerd';
|
|
$a->strings['Global Directory'] = 'Globaal overzicht';
|
|
$a->strings['Find on this site'] = 'Zoeken';
|
|
$a->strings['Finding: '] = 'Zoeken...';
|
|
$a->strings['Site Directory'] = 'Site overzicht';
|
|
$a->strings['Find'] = 'Zoek';
|
|
$a->strings['Age: '] = 'Leeftijd:';
|
|
$a->strings['Gender: '] = 'Geslacht:';
|
|
$a->strings['Location:'] = 'Woonplaats:';
|
|
$a->strings['Gender:'] = 'Geslacht:';
|
|
$a->strings['Status:'] = 'Status:';
|
|
$a->strings['Homepage:'] = 'Website:';
|
|
$a->strings['About:'] = 'Over:';
|
|
$a->strings['No entries (some entries may be hidden).'] = 'Geen berichten (sommige berichten kunnen verborgen zijn).';
|