Skip to content

Commit 393b0b5

Browse files
Agaxx02awvwgk
authored andcommitted
Translated using Weblate (Polish)
Currently translated at 8.2% (486 of 5921 strings) Translation: Fortran programming language/Fortran webpage Translate-URL: https://hosted.weblate.org/projects/fortran-lang/webpage/pl/
1 parent d61bc52 commit 393b0b5

File tree

1 file changed

+44
-9
lines changed

1 file changed

+44
-9
lines changed

locale/pl/LC_MESSAGES/index.po

Lines changed: 44 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ msgstr ""
99
"Project-Id-Version: Fortran-lang.org website\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2022-10-01 14:47+0530\n"
12-
"PO-Revision-Date: 2024-08-30 05:09+0000\n"
12+
"PO-Revision-Date: 2024-09-16 19:09+0000\n"
1313
"Last-Translator: Agnieszka Ziora <[email protected]>\n"
1414
"Language-Team: Polish <https://hosted.weblate.org/projects/fortran-lang/"
1515
"webpage/pl/>\n"
@@ -19,7 +19,7 @@ msgstr ""
1919
"Content-Transfer-Encoding: 8bit\n"
2020
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
2121
"|| n%100>=20) ? 1 : 2;\n"
22-
"X-Generator: Weblate 5.7.1-dev\n"
22+
"X-Generator: Weblate 5.8-dev\n"
2323
"Generated-By: Babel 2.10.3\n"
2424

2525
#: ../../source/community.md:10
@@ -3659,7 +3659,7 @@ msgstr ""
36593659
#: ../../source/learn/best_practices/floating_point.md:1
36603660
#: ../../source/learn/best_practices/index.md:12
36613661
msgid "Floating Point Numbers"
3662-
msgstr ""
3662+
msgstr "Liczby zmiennoprzecinkowe"
36633663

36643664
#: ../../source/learn/best_practices/floating_point.md:3
36653665
msgid ""
@@ -3668,16 +3668,24 @@ msgid ""
36683668
"precision is required. For this purpose a custom kind parameter can be "
36693669
"defined. The recommended way of defining kind parameters is to use"
36703670
msgstr ""
3671+
"Domyślnie liczby zmiennoprzecinkowe są reprezentowane poprzez użycie "
3672+
"pojedynczej precyzji (zwykle 32 bity / 4 bajty). Dla większości aplikacji "
3673+
"wymagana jest większa precyzja. W tym celu można zdefiniować niestandardowy "
3674+
"parametr rodzaju. Zalecanym sposobem zdefiniowania takiego parametru jest "
3675+
"użycie"
36713676

36723677
#: ../../source/learn/best_practices/floating_point.md:12
36733678
msgid ""
36743679
"For many purposes it also suffices to directly infer the kind parameter from "
36753680
"a literal like here"
36763681
msgstr ""
3682+
"W wielu przypadkach wystarcza również bezpośrednie wywnioskowanie parametru "
3683+
"rodzaju z literału, tak jak tutaj"
36773684

36783685
#: ../../source/learn/best_practices/floating_point.md:19
36793686
msgid "or to rename the imported kind parameter from the `iso_fortran_env` module"
36803687
msgstr ""
3688+
"lub zmienić nazwę importowanego parametru rodzaju z modułu `iso_fortran_env`"
36813689

36823690
#: ../../source/learn/best_practices/floating_point.md:25
36833691
msgid ""
@@ -3686,63 +3694,84 @@ msgid ""
36863694
"/doctor-fortran-in-it-takes-all-kinds/\">Doctor Fortran in it takes all "
36873695
"KINDs</a>."
36883696
msgstr ""
3697+
"Aby zapoznać się z bardziej szczegółowymi przemyśleniami na temat parametrów "
3698+
"rodzaju zobacz <a href=\"https://web.archive.org/web/20200930090137/"
3699+
"https://stevelionel.com/drfortran/2017/03/27/"
3700+
"doctor-fortran-in-it-takes-all-kinds/\">Doctor Fortran in it takes all "
3701+
"KINDs</a>."
36893702

36903703
#: ../../source/learn/best_practices/floating_point.md:28
36913704
msgid ""
36923705
"It is recommended to have a central module to define kind parameters and "
36933706
"include them with use as necessary. An example for such a module is given "
36943707
"with"
36953708
msgstr ""
3709+
"Zalecane jest posiadanie centralnego modułu do definiowania parametrów "
3710+
"rodzaju oraz używania ich tam, gdzie jest to potrzebne. Przykładem takiego "
3711+
"modułu jest"
36963712

36973713
#: ../../source/learn/best_practices/floating_point.md:56
36983714
msgid ""
36993715
"Floating point constants should always be declared including a kind parameter"
37003716
" suffix:"
37013717
msgstr ""
3718+
"Stałe zmiennoprzecinkowe powinny zawsze być deklarowane z uwzględnieniem "
3719+
"sufiksu parametru rodzaju:"
37023720

37033721
#: ../../source/learn/best_practices/floating_point.md:65
37043722
msgid ""
37053723
"It is safe to assign integers to floating point numbers without losing "
37063724
"accuracy:"
37073725
msgstr ""
3726+
"Można bezpiecznie przydzielać liczby całkowite do liczb zmiennoprzecinkowych "
3727+
"bez utraty dokładności:"
37083728

37093729
#: ../../source/learn/best_practices/floating_point.md:72
37103730
msgid ""
37113731
"In order to impose floating point division (as opposed to integer division "
37123732
"`3/4` equal to `0`), one can convert the integer to a floating point number "
37133733
"by:"
37143734
msgstr ""
3735+
"Aby wymusić dzielenie liczb zmiennoprzecinkowych (w przeciwieństwie do "
3736+
"dzielenia liczb całkowitych, gdzie `3/4` jest równe `0`), liczba całkowita "
3737+
"może zostać przekonwertowana na liczbę zmiennoprzecinkową w następujący "
3738+
"sposób:"
37153739

37163740
#: ../../source/learn/best_practices/floating_point.md:81
37173741
msgid "or simply separate the integer division with multiplication by `1.0_dp`"
37183742
msgstr ""
3743+
"lub po prostu oddzieleniem dzielenia liczb całkowitych mnożeniem przez `1."
3744+
"0_dp`"
37193745

37203746
#: ../../source/learn/best_practices/floating_point.md:88
37213747
msgid ""
37223748
"To print floating point numbers without losing precision use the unlimited "
37233749
"format specifier `(g0)` or the exponential representation `(es24.16e3)`, "
37243750
"which will give you 17 significant digits of printout."
37253751
msgstr ""
3752+
"Aby wydrukować liczbę zmiennoprzecinkową bez utraty precyzji użyj "
3753+
"nieograniczonego specyfikatora formatu `(g0)` lub reprezentacji wykładniczej "
3754+
"`(es24.16e3)`, dzięki której wydrukowane zostanie 17 najważniejszych cyfr."
37263755

37273756
#: ../../source/learn/best_practices/index.md:12
37283757
#: ../../source/learn/best_practices/style_guide.md:1
37293758
msgid "Fortran Style Guide"
3730-
msgstr ""
3759+
msgstr "Przewodnik stylu Fortran"
37313760

37323761
#: ../../source/learn/best_practices/index.md:12
37333762
#: ../../source/learn/best_practices/integer_division.md:1
37343763
msgid "Integer Division"
3735-
msgstr ""
3764+
msgstr "Dzielenie całkowite"
37363765

37373766
#: ../../source/learn/best_practices/index.md:12
37383767
#: ../../source/learn/best_practices/modules_programs.md:1
37393768
msgid "Modules and Programs"
3740-
msgstr ""
3769+
msgstr "Moduły i Programy"
37413770

37423771
#: ../../source/learn/best_practices/index.md:12
37433772
#: ../../source/learn/best_practices/multidim_arrays.md:1
37443773
msgid "Multidimensional Arrays"
3745-
msgstr ""
3774+
msgstr "Tablice wielowymiarowe"
37463775

37473776
#: ../../source/learn/best_practices/index.md:12
37483777
msgid "Element-wise Operations on Array"
@@ -3751,11 +3780,11 @@ msgstr "Operacje na tablicach z uwzględnieniem elementów"
37513780
#: ../../source/learn/best_practices/index.md:12
37523781
#: ../../source/learn/best_practices/type_casting.md:1
37533782
msgid "Type Casting in Callbacks"
3754-
msgstr ""
3783+
msgstr "Rzutowanie typów w wywołaniach zwrotnych"
37553784

37563785
#: ../../source/learn/best_practices/index.md:4
37573786
msgid "Fortran Best Practices"
3758-
msgstr ""
3787+
msgstr "Najlepsze praktyki Fortran"
37593788

37603789
#: ../../source/learn/best_practices/index.md:6
37613790
msgid ""
@@ -3765,6 +3794,12 @@ msgid ""
37653794
" discussed. It is meant for programmers with basic familiarity of the Fortran"
37663795
" syntax and programming in general."
37673796
msgstr ""
3797+
"Ten mini-poradnik zawiera nowoczesny kanoniczny sposób robienia rzeczy w "
3798+
"języku Fortran. Służy on jako przewodnik stylu i rekomenduje najlepsze "
3799+
"praktyk dla popularnych tematów i zadań. Kanoniczne rozwiązania lub wzorce "
3800+
"są tutaj przedstawiane i wyjaśniane. Jest on przeznaczony dla programistów "
3801+
"posiadających ogólną wiedzę na temat programowania oraz znających podstawy "
3802+
"składni Fortran."
37683803

37693804
#: ../../source/learn/best_practices/integer_division.md:3
37703805
msgid ""

0 commit comments

Comments
 (0)