14 lines
522 B
PHP
14 lines
522 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_hu")) {
|
|
function string_plural_select_hu($n){
|
|
$n = intval($n);
|
|
return intval($n != 1);
|
|
}}
|
|
;
|
|
$a->strings["\"Show more\" Settings"] = "„Több megjelenítése” beállításai";
|
|
$a->strings["Enable Show More"] = "Több megjelenítésének engedélyezése";
|
|
$a->strings["Cutting posts after how much characters"] = "Bejegyzések vágása ennyi karakter után";
|
|
$a->strings["Save Settings"] = "Beállítások mentése";
|
|
$a->strings["show more"] = "több megjelenítése";
|