From ae39bd6875b4e2e5bf93d9a5ec689a84d9461959 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Mon, 18 Jun 2018 11:08:14 +0200 Subject: [PATCH] CS remote permissions addon --- remote_permissions/lang/cs/messages.po | 17 +++++++++-------- remote_permissions/lang/cs/strings.php | 5 +++-- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/remote_permissions/lang/cs/messages.po b/remote_permissions/lang/cs/messages.po index b2acbf5d..45cc232e 100644 --- a/remote_permissions/lang/cs/messages.po +++ b/remote_permissions/lang/cs/messages.po @@ -4,20 +4,21 @@ # # # Translators: -# Michal Šupler , 2014 +# Aditoo, 2018 +# michal_s , 2014 msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-06-22 13:18+0200\n" -"PO-Revision-Date: 2014-07-28 18:09+0000\n" -"Last-Translator: Michal Šupler \n" -"Language-Team: Czech (http://www.transifex.com/projects/p/friendica/language/cs/)\n" +"POT-Creation-Date: 2013-02-27 05:01-0500\n" +"PO-Revision-Date: 2018-06-13 18:01+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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\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" #: remote_permissions.php:45 msgid "Remote Permissions Settings" @@ -30,8 +31,8 @@ msgid "" msgstr "Umožnit příjemcům Vašich soukromých příspěvků vidět ostatní příjemce příspěvků" #: remote_permissions.php:48 remote_permissions.php:196 -msgid "Save Settings" -msgstr "Uložit Nastavení" +msgid "Submit" +msgstr "Odeslat" #: remote_permissions.php:58 msgid "Remote Permissions settings updated." diff --git a/remote_permissions/lang/cs/strings.php b/remote_permissions/lang/cs/strings.php index e11447f7..5ca17b28 100644 --- a/remote_permissions/lang/cs/strings.php +++ b/remote_permissions/lang/cs/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_cs")) { function string_plural_select_cs($n){ - return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;; + $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["Remote Permissions Settings"] = "Nastavení Vzdálených oprávnění"; $a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Umožnit příjemcům Vašich soukromých příspěvků vidět ostatní příjemce příspěvků"; -$a->strings["Save Settings"] = "Uložit Nastavení"; +$a->strings["Submit"] = "Odeslat"; $a->strings["Remote Permissions settings updated."] = "Nastavení Vzdálených opravnění aktualizováno."; $a->strings["Visible to:"] = "Viditelné pro:"; $a->strings["Visible to"] = "Viditelné pro";