forked from friendica/deprecated-addons
new file: windowsphonepush/lang/C/messages.po
new file: windowsphonepush/lang/ar/messages.po new file: windowsphonepush/lang/ar/strings.php new file: windowsphonepush/lang/cs/messages.po new file: windowsphonepush/lang/cs/strings.php new file: windowsphonepush/lang/da-dk/messages.po new file: windowsphonepush/lang/da-dk/strings.php new file: windowsphonepush/lang/de/messages.po new file: windowsphonepush/lang/de/strings.php new file: windowsphonepush/lang/es/messages.po new file: windowsphonepush/lang/es/strings.php new file: windowsphonepush/lang/fi-fi/messages.po new file: windowsphonepush/lang/fi-fi/strings.php new file: windowsphonepush/lang/fr/messages.po new file: windowsphonepush/lang/fr/strings.php new file: windowsphonepush/lang/hu/messages.po new file: windowsphonepush/lang/hu/strings.php new file: windowsphonepush/lang/it/messages.po new file: windowsphonepush/lang/it/strings.php new file: windowsphonepush/lang/nl/messages.po new file: windowsphonepush/lang/nl/strings.php new file: windowsphonepush/lang/pl/messages.po new file: windowsphonepush/lang/pl/strings.php new file: windowsphonepush/lang/ro/messages.po new file: windowsphonepush/lang/ro/strings.php new file: windowsphonepush/lang/sv/messages.po new file: windowsphonepush/lang/sv/strings.php new file: windowsphonepush/lang/zh-cn/messages.po new file: windowsphonepush/lang/zh-cn/strings.php new file: windowsphonepush/templates/settings.tpl new file: windowsphonepush/windowsphonepush.php
This commit is contained in:
parent
3686a143f9
commit
06fcd69f2e
31 changed files with 1164 additions and 0 deletions
37
windowsphonepush/lang/pl/messages.po
Normal file
37
windowsphonepush/lang/pl/messages.po
Normal file
|
@ -0,0 +1,37 @@
|
|||
# ADDON windowsphonepush
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica windowsphonepush addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Piotr Strębski <strebski@gmail.com>, 2022
|
||||
# Waldemar Stoczkowski, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-11-21 19:16-0500\n"
|
||||
"PO-Revision-Date: 2014-10-31 13:43+0000\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2022\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(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);\n"
|
||||
|
||||
#: windowsphonepush.php:102
|
||||
msgid "Enable WindowsPhonePush Addon"
|
||||
msgstr "Włącz dodatek WindowsPhonePush"
|
||||
|
||||
#: windowsphonepush.php:103
|
||||
msgid "Push text of new item"
|
||||
msgstr "Naciśnij tekst nowego elementu"
|
||||
|
||||
#: windowsphonepush.php:104
|
||||
msgid "Device URL"
|
||||
msgstr "URL urządzenia"
|
||||
|
||||
#: windowsphonepush.php:109
|
||||
msgid "WindowsPhonePush Settings"
|
||||
msgstr "Ustawienia WindowsPhonePush"
|
11
windowsphonepush/lang/pl/strings.php
Normal file
11
windowsphonepush/lang/pl/strings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
$n = intval($n);
|
||||
if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; }
|
||||
}}
|
||||
$a->strings['Enable WindowsPhonePush Addon'] = 'Włącz dodatek WindowsPhonePush';
|
||||
$a->strings['Push text of new item'] = 'Naciśnij tekst nowego elementu';
|
||||
$a->strings['Device URL'] = 'URL urządzenia';
|
||||
$a->strings['WindowsPhonePush Settings'] = 'Ustawienia WindowsPhonePush';
|
Loading…
Add table
Add a link
Reference in a new issue