mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 14:42:55 +00:00
13 lines
430 B
PHP
13 lines
430 B
PHP
|
<?php
|
||
|
|
||
|
if(! function_exists("string_plural_select_hu")) {
|
||
|
function string_plural_select_hu($n){
|
||
|
$n = intval($n);
|
||
|
return ($n != 1);;
|
||
|
}}
|
||
|
;
|
||
|
$a->strings["Geonames settings updated."] = "A földrajzi nevek beállításai frissítve.";
|
||
|
$a->strings["Geonames Settings"] = "Földrajzi nevek beállításai";
|
||
|
$a->strings["Enable Geonames Addon"] = "A földrajzi nevek bővítmény engedélyezése";
|
||
|
$a->strings["Submit"] = "Elküldés";
|