forked from friendica/friendica-addons
96c41e5623
update strings to contain addon
11 lines
296 B
PHP
11 lines
296 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["Krynn Settings"] = "Krynn Nastavení";
|
|
$a->strings["Enable Krynn Addon"] = "Povolit Krynn addon";
|
|
$a->strings["Submit"] = "Odeslat";
|