2019-01-29 15:37:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_nl")) {
|
|
|
|
function string_plural_select_nl($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 17:47:38 +00:00
|
|
|
return intval($n != 1);
|
2019-01-29 15:37:21 +00:00
|
|
|
}}
|
|
|
|
;
|
2019-02-20 13:48:50 +00:00
|
|
|
$a->strings["OK"] = "OK";
|
|
|
|
$a->strings["\"cookienotice\" Settings"] = "\"cookienotice\" instellingen";
|
|
|
|
$a->strings["Cookie Usage Notice"] = "Cookiemelding";
|
|
|
|
$a->strings["The cookie usage notice"] = "De cookiemelding";
|
2019-01-29 15:37:21 +00:00
|
|
|
$a->strings["OK Button Text"] = "OK knop tekst";
|
2019-02-20 13:48:50 +00:00
|
|
|
$a->strings["The OK Button text"] = "De OK knop tekst";
|
|
|
|
$a->strings["Save Settings"] = "Instellingen Opslaan";
|
|
|
|
$a->strings["cookienotice Settings saved."] = "Cookienotice instellingen opgeslagen.";
|