17 lines
671 B
PHP
17 lines
671 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
function string_plural_select_de($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
;
|
|
$a->strings["OK"] = "OK";
|
|
$a->strings["\"cookienotice\" Settings"] = "\"cookienotice\"-Einstellungen";
|
|
$a->strings["Cookie Usage Notice"] = "Cookie-Nutzungshinweis";
|
|
$a->strings["The cookie usage notice"] = "Der Hinweis zur Nutzung von Cookies";
|
|
$a->strings["OK Button Text"] = "OK-Button-Text";
|
|
$a->strings["The OK Button text"] = "Der für den OK-Button verwendete Text";
|
|
$a->strings["Save Settings"] = "Einstellungen speichern";
|
|
$a->strings["cookienotice Settings saved."] = "cookienotice-Einstellungen wurden gespeichert";
|