forked from friendica/friendica-addons
14 lines
551 B
PHP
14 lines
551 B
PHP
<?php
|
|
|
|
if(! function_exists("string_plural_select_cs")) {
|
|
function string_plural_select_cs($n){
|
|
return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
|
|
}}
|
|
;
|
|
$a->strings["Current Weather"] = "Aktuální počasí";
|
|
$a->strings["Current Weather settings updated."] = "Nastavení pro Aktuální počasí aktualizováno.";
|
|
$a->strings["Current Weather Settings"] = "Nastavení Aktuálního počasí";
|
|
$a->strings["Weather Location: "] = "Poloha počasí:";
|
|
$a->strings["Enable Current Weather"] = "Povolit Aktuální počasí";
|
|
$a->strings["Submit"] = "Odeslat";
|