mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 17:42:54 +00:00
openstreetmap PL translation
This commit is contained in:
parent
6e617bb60d
commit
42e6368786
2 changed files with 59 additions and 8 deletions
46
openstreetmap/lang/pl/messages.po
Normal file
46
openstreetmap/lang/pl/messages.po
Normal file
|
@ -0,0 +1,46 @@
|
|||
# ADDON openstreetmap
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica openstreetmap addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2018-03-31 17:34+0000\n"
|
||||
"Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\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"
|
||||
|
||||
#: openstreetmap.php:94
|
||||
msgid "Submit"
|
||||
msgstr "Zatwierdź"
|
||||
|
||||
#: openstreetmap.php:95
|
||||
msgid "Tile Server URL"
|
||||
msgstr "Adres URL serwera sąsiadująco"
|
||||
|
||||
#: openstreetmap.php:95
|
||||
msgid ""
|
||||
"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
|
||||
"target=\"_blank\">public tile servers</a>"
|
||||
msgstr "Lista <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">serwerów publicznych</a>"
|
||||
|
||||
#: openstreetmap.php:96
|
||||
msgid "Default zoom"
|
||||
msgstr "Domyślny zoom"
|
||||
|
||||
#: openstreetmap.php:96
|
||||
msgid "The default zoom level. (1:world, 18:highest)"
|
||||
msgstr "Domyślny poziom powiększenia. (1:świat, 18:najwyższy)"
|
||||
|
||||
#: openstreetmap.php:104
|
||||
msgid "Settings updated."
|
||||
msgstr "Ustawienia zaktualizowane."
|
|
@ -1,8 +1,13 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Potwierdź";
|
||||
$a->strings["Tile Server URL"] = "";
|
||||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
|
||||
$a->strings["Default zoom"] = "Domyślne przybliżenie";
|
||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
|
||||
$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
|
||||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($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["Submit"] = "Zatwierdź";
|
||||
$a->strings["Tile Server URL"] = "Adres URL serwera sąsiadująco";
|
||||
$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Lista <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">serwerów publicznych</a>";
|
||||
$a->strings["Default zoom"] = "Domyślny zoom";
|
||||
$a->strings["The default zoom level. (1:world, 18:highest)"] = "Domyślny poziom powiększenia. (1:świat, 18:najwyższy)";
|
||||
$a->strings["Settings updated."] = "Ustawienia zaktualizowane.";
|
||||
|
|
Loading…
Reference in a new issue