Jappixmini added

This commit is contained in:
Michael 2021-10-07 05:31:02 +00:00
commit 1cc8afc83f
265 changed files with 98516 additions and 0 deletions

View file

@ -0,0 +1,79 @@
# ADDON jappixmini
# Copyright (C)
# This file is distributed under the same license as the Friendica jappixmini addon package.
#
#
# Translators:
# Aditoo, 2018
# Aditoo, 2018
# michal_s <msupler@gmail.com>, 2014-2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2018-09-12 12:50+0000\n"
"Last-Translator: Aditoo\n"
"Language-Team: Czech (http://www.transifex.com/Friendica/friendica/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
#: jappixmini.php:266
msgid "Jappix Mini addon settings"
msgstr "Nastavení rozšíření Jappix Mini"
#: jappixmini.php:268
msgid "Activate addon"
msgstr "Aktivovat doplněk"
#: jappixmini.php:271
msgid ""
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
msgstr "<em>Nevkládejte</em> Jappixmini Chat-Widget do webového rozhraní"
#: jappixmini.php:274
msgid "Jabber username"
msgstr "Uživatelské jméno Jabber"
#: jappixmini.php:277
msgid "Jabber server"
msgstr "Jabber server"
#: jappixmini.php:281
msgid "Jabber BOSH host"
msgstr "Jabber BOSH host"
#: jappixmini.php:285
msgid "Jabber password"
msgstr "Heslo Jabber"
#: jappixmini.php:290
msgid "Encrypt Jabber password with Friendica password (recommended)"
msgstr "Zašifrovat heslo Jabber heslem Friendica (doporučeno)"
#: jappixmini.php:293
msgid "Friendica password"
msgstr "Heslo Friendica"
#: jappixmini.php:296
msgid "Approve subscription requests from Friendica contacts automatically"
msgstr "Automaticky schválit požadavek o odběr od kontaktů Friendica."
#: jappixmini.php:299
msgid "Subscribe to Friendica contacts automatically"
msgstr "Automaticky odebírat od kontaktů Friendica."
#: jappixmini.php:302
msgid "Purge internal list of jabber addresses of contacts"
msgstr "Očistit interní seznam jabber adres kontaktů"
#: jappixmini.php:307
msgid "Submit"
msgstr "Odeslat"
#: jappixmini.php:308
msgid "Add contact"
msgstr "Přidat kontakt"

View file

@ -0,0 +1,22 @@
<?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["Jappix Mini addon settings"] = "Nastavení rozšíření Jappix Mini";
$a->strings["Activate addon"] = "Aktivovat doplněk";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>Nevkládejte</em> Jappixmini Chat-Widget do webového rozhraní";
$a->strings["Jabber username"] = "Uživatelské jméno Jabber";
$a->strings["Jabber server"] = "Jabber server";
$a->strings["Jabber BOSH host"] = "Jabber BOSH host";
$a->strings["Jabber password"] = "Heslo Jabber";
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Zašifrovat heslo Jabber heslem Friendica (doporučeno)";
$a->strings["Friendica password"] = "Heslo Friendica";
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Automaticky schválit požadavek o odběr od kontaktů Friendica.";
$a->strings["Subscribe to Friendica contacts automatically"] = "Automaticky odebírat od kontaktů Friendica.";
$a->strings["Purge internal list of jabber addresses of contacts"] = "Očistit interní seznam jabber adres kontaktů";
$a->strings["Submit"] = "Odeslat";
$a->strings["Add contact"] = "Přidat kontakt";