mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
PL translation update THX strebski
This commit is contained in:
parent
ba94368482
commit
ed96e0a2f6
107 changed files with 1290 additions and 1501 deletions
36
windowsphonepush/lang/pl/messages.po
Normal file
36
windowsphonepush/lang/pl/messages.po
Normal file
|
@ -0,0 +1,36 @@
|
|||
# ADDON windowsphonepush
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica windowsphonepush addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# 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: 2021-12-22 16:18+0000\n"
|
||||
"Last-Translator: Transifex Bot <>\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 ""
|
||||
|
||||
#: windowsphonepush.php:109
|
||||
msgid "WindowsPhonePush Settings"
|
||||
msgstr "Ustawienia WindowsPhonePush"
|
10
windowsphonepush/lang/pl/strings.php
Normal file
10
windowsphonepush/lang/pl/strings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?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['WindowsPhonePush Settings'] = 'Ustawienia WindowsPhonePush';
|
Loading…
Add table
Add a link
Reference in a new issue