forked from friendica/deprecated-addons
Deprecated the BLOGGER addon
This commit is contained in:
parent
6c67dde699
commit
e0cd6b99a1
40 changed files with 1546 additions and 0 deletions
16
blogger/lang/cs/strings.php
Normal file
16
blogger/lang/cs/strings.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_cs")) {
|
||||
function string_plural_select_cs($n){
|
||||
$n = intval($n);
|
||||
if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 3; }
|
||||
}}
|
||||
$a->strings['Post to blogger'] = 'Poslat na blogger';
|
||||
$a->strings['Blogger Export'] = 'Blogger Export';
|
||||
$a->strings['Enable Blogger Post Addon'] = 'Povolit doplněk Blogger Post';
|
||||
$a->strings['Blogger username'] = 'Blogger uživatelské jméno';
|
||||
$a->strings['Blogger password'] = 'Blogger heslo';
|
||||
$a->strings['Blogger API URL'] = 'Blogger API URL';
|
||||
$a->strings['Post to Blogger by default'] = 'Defaultně zaslat na Blogger';
|
||||
$a->strings['Save Settings'] = 'Uložit Nastavení';
|
||||
$a->strings['Post from Friendica'] = 'Příspěvek z Friendica';
|
Loading…
Add table
Add a link
Reference in a new issue