G+ closed down

This commit is contained in:
Tobias Diekershoff 2019-04-02 06:38:30 +02:00
commit 3fd8d7fd5f
31 changed files with 1291 additions and 0 deletions

View file

@ -0,0 +1,54 @@
# ADDON fromgplus
# Copyright (C)
# This file is distributed under the same license as the Friendica fromgplus 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: 2018-04-01 11:14-0400\n"
"PO-Revision-Date: 2018-06-11 19:37+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"
#: fromgplus.php:55 fromgplus.php:59
msgid "Google+ Mirror"
msgstr "Zrcadlení Google+"
#: fromgplus.php:64
msgid "Enable Google+ Import"
msgstr "Povolit Import z Google+"
#: fromgplus.php:67
msgid "Google Account ID"
msgstr "ID účtu Google "
#: fromgplus.php:70
msgid "Add keywords to post"
msgstr "Přidat k příspěvku klíčová slova"
#: fromgplus.php:75 fromgplus.php:105
msgid "Save Settings"
msgstr "Uložit nastavení"
#: fromgplus.php:96
msgid "Google+ Import Settings saved."
msgstr "Nastavení importu z Google+ uloženo."
#: fromgplus.php:106
msgid "Key"
msgstr "Klíč"
#: fromgplus.php:114
msgid "Settings updated."
msgstr "Nastavení aktualizována"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
$n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}}
;
$a->strings["Google+ Mirror"] = "Zrcadlení Google+";
$a->strings["Enable Google+ Import"] = "Povolit Import z Google+";
$a->strings["Google Account ID"] = "ID účtu Google ";
$a->strings["Add keywords to post"] = "Přidat k příspěvku klíčová slova";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["Google+ Import Settings saved."] = "Nastavení importu z Google+ uloženo.";
$a->strings["Key"] = "Klíč";
$a->strings["Settings updated."] = "Nastavení aktualizována";