13 lines
476 B
PHP
13 lines
476 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["Google+ Import Settings"] = "Nastavení importu z Google+ ";
|
|
$a->strings["Enable Google+ Import"] = "Povolit Import z Google+";
|
|
$a->strings["Google Account ID"] = "název účtu Google ";
|
|
$a->strings["Submit"] = "Odeslat";
|
|
$a->strings["Google+ Import Settings saved."] = "Nastavení importu z Google+ uloženo.";
|