]> git.mxchange.org Git - friendica-addons.git/blob - curweather/lang/pl/strings.php
Merge pull request #843 from M-arcus/addon/phpmailer
[friendica-addons.git] / curweather / lang / pl / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_pl")) {
4 function string_plural_select_pl($n){
5         $n = intval($n);
6         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);;
7 }}
8 ;
9 $a->strings["Error fetching weather data.\\nError was: "] = "Błąd podczas pobierania danych pogodowych. \\nError był:";
10 $a->strings["Current Weather"] = "Obecna pogoda";
11 $a->strings["Relative Humidity"] = "Względna wilgotność";
12 $a->strings["Pressure"] = "Ciśnienie";
13 $a->strings["Wind"] = "Wiatr";
14 $a->strings["Last Updated"] = "Ostatnio zaktualizowano";
15 $a->strings["Data by"] = "Dane wg";
16 $a->strings["Show on map"] = "Pokaż na mapie";
17 $a->strings["There was a problem accessing the weather data. But have a look"] = "Wystąpił problem z dostępem do danych pogodowych. Ale spójrz";
18 $a->strings["at OpenWeatherMap"] = "w OpenWeatherMap";
19 $a->strings["Current Weather settings updated."] = "Zaktualizowano bieżące ustawienia pogody.";
20 $a->strings["No APPID found, please contact your admin to obtain one."] = "Nie znaleziono APPID, skontaktuj się z administratorem, aby go uzyskać.";
21 $a->strings["Save Settings"] = "Zapisz ustawienia";
22 $a->strings["Settings"] = "Ustawienia";
23 $a->strings["Enter either the name of your location or the zip code."] = "Wprowadź nazwę swojej lokalizacji lub kod pocztowy.";
24 $a->strings["Your Location"] = "Twoja lokalizacja";
25 $a->strings["Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>."] = "Identyfikator Twojej lokalizacji (nazwa lub kod pocztowy), np. <em>Lublin, LU</em> lub <em>20001, LU</em>.";
26 $a->strings["Units"] = "Jednostka";
27 $a->strings["select if the temperature should be displayed in &deg;C or &deg;F"] = "wybierz, czy temperatura powinna być wyświetlana w &deg;C lub &deg;F";
28 $a->strings["Show weather data"] = "Pokaż dane pogodowe";
29 $a->strings["Curweather settings saved."] = "Ustawienia pogodowe zostały zapisane.";
30 $a->strings["Caching Interval"] = "Interwał buforowania";
31 $a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = "Od jak dawna powinny być buforowane dane pogodowe? Wybierz zgodnie z typem konta OpenWeatherMap.";
32 $a->strings["no cache"] = "Brak pamięci podręcznej";
33 $a->strings["minutes"] = "minut";
34 $a->strings["Your APPID"] = "Twój APPID";
35 $a->strings["Your API key provided by OpenWeatherMap"] = "Twój klucz API dostarczony przez OpenWeatherMap";