diff --git a/showmore/lang/pl/messages.po b/showmore/lang/pl/messages.po index 92deeb80..39e66c54 100644 --- a/showmore/lang/pl/messages.po +++ b/showmore/lang/pl/messages.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-04-01 11:11-0400\n" -"PO-Revision-Date: 2018-04-20 21:19+0000\n" +"PO-Revision-Date: 2018-08-04 11:01+0000\n" "Last-Translator: Waldemar Stoczkowski \n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: showmore.php:41 showmore.php:45 msgid "\"Show more\" Settings" -msgstr "\"Pokaż więcej\" ustawień" +msgstr "Ustawienia \"Pokaż więcej\"" #: showmore.php:50 msgid "Enable Show More" @@ -37,8 +37,8 @@ msgstr "Zapisz ustawienia" #: showmore.php:74 msgid "Show More Settings saved." -msgstr "Pokaż więcej zapisanych ustawień." +msgstr "Zapisano ustawienia Pokaż więcej." #: showmore.php:134 msgid "show more" -msgstr "Pokaż więcej" +msgstr "pokaż więcej" diff --git a/showmore/lang/pl/strings.php b/showmore/lang/pl/strings.php index 9cf35793..eca7dd85 100644 --- a/showmore/lang/pl/strings.php +++ b/showmore/lang/pl/strings.php @@ -2,12 +2,13 @@ if(! function_exists("string_plural_select_pl")) { function string_plural_select_pl($n){ + $n = intval($n); return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);; }} ; -$a->strings["\"Show more\" Settings"] = "\"Pokaż więcej\" ustawień"; +$a->strings["\"Show more\" Settings"] = "Ustawienia \"Pokaż więcej\""; $a->strings["Enable Show More"] = "Włącz Pokaż więcej"; $a->strings["Cutting posts after how much characters"] = "Cięcie postów po ilości znaków"; $a->strings["Save Settings"] = "Zapisz ustawienia"; -$a->strings["Show More Settings saved."] = "Pokaż więcej zapisanych ustawień."; -$a->strings["show more"] = "Pokaż więcej"; +$a->strings["Show More Settings saved."] = "Zapisano ustawienia Pokaż więcej."; +$a->strings["show more"] = "pokaż więcej";