2019-01-20 14:29:15 +00:00
|
|
|
<?php
|
|
|
|
|
2019-02-02 08:18:28 +00:00
|
|
|
if(! function_exists("string_plural_select_de")) {
|
|
|
|
function string_plural_select_de($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 17:47:38 +00:00
|
|
|
return intval($n != 1);
|
2019-02-02 08:18:28 +00:00
|
|
|
}}
|
2019-01-20 14:29:15 +00:00
|
|
|
;
|
2019-02-02 08:18:28 +00:00
|
|
|
$a->strings["OK"] = "OK";
|
2019-02-19 06:03:22 +00:00
|
|
|
$a->strings["\"cookienotice\" Settings"] = "\"cookienotice\"-Einstellungen";
|
|
|
|
$a->strings["Cookie Usage Notice"] = "Cookie-Nutzungshinweis";
|
2019-02-02 08:18:28 +00:00
|
|
|
$a->strings["The cookie usage notice"] = "Der Hinweis zur Nutzung von Cookies";
|
2019-02-19 06:03:22 +00:00
|
|
|
$a->strings["OK Button Text"] = "OK-Button-Text";
|
|
|
|
$a->strings["The OK Button text"] = "Der für den OK-Button verwendete Text";
|
2019-01-20 14:29:15 +00:00
|
|
|
$a->strings["Save Settings"] = "Einstellungen speichern";
|
2019-02-19 06:03:22 +00:00
|
|
|
$a->strings["cookienotice Settings saved."] = "cookienotice-Einstellungen wurden gespeichert";
|