2020-12-23 15:38:03 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_hu")) {
|
|
|
|
function string_plural_select_hu($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 12:47:38 -05:00
|
|
|
return intval($n != 1);
|
2020-12-23 15:38:03 -05:00
|
|
|
}}
|
|
|
|
;
|
|
|
|
$a->strings["OK"] = "Rendben";
|
|
|
|
$a->strings["\"cookienotice\" Settings"] = "A sütifigyelmeztetés beállításai";
|
|
|
|
$a->strings["Cookie Usage Notice"] = "Sütihasználati figyelmeztetés";
|
|
|
|
$a->strings["The cookie usage notice"] = "A sütihasználati figyelmeztetés";
|
|
|
|
$a->strings["OK Button Text"] = "Rendben gomb szövege";
|
|
|
|
$a->strings["The OK Button text"] = "A „Rendben” gomb szövege";
|
|
|
|
$a->strings["Save Settings"] = "Beállítások mentése";
|
|
|
|
$a->strings["cookienotice Settings saved."] = "A sütifigyelmeztetés beállításai elmentve.";
|