@@ -9,7 +9,7 @@ msgstr ""
9
9
"Project-Id-Version: Fortran-lang.org website\n"
10
10
"Report-Msgid-Bugs-To: \n"
11
11
"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"
13
13
"Last-Translator: Agnieszka Ziora <
[email protected] >\n"
14
14
"Language-Team: Polish <https://hosted.weblate.org/projects/fortran-lang/"
15
15
"webpage/pl/>\n"
@@ -19,7 +19,7 @@ msgstr ""
19
19
"Content-Transfer-Encoding: 8bit\n"
20
20
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
21
21
"|| n%100>=20) ? 1 : 2;\n"
22
- "X-Generator: Weblate 5.7.1 -dev\n"
22
+ "X-Generator: Weblate 5.8 -dev\n"
23
23
"Generated-By: Babel 2.10.3\n"
24
24
25
25
#: ../../source/community.md:10
@@ -3659,7 +3659,7 @@ msgstr ""
3659
3659
#: ../../source/learn/best_practices/floating_point.md:1
3660
3660
#: ../../source/learn/best_practices/index.md:12
3661
3661
msgid "Floating Point Numbers"
3662
- msgstr ""
3662
+ msgstr "Liczby zmiennoprzecinkowe "
3663
3663
3664
3664
#: ../../source/learn/best_practices/floating_point.md:3
3665
3665
msgid ""
@@ -3668,16 +3668,24 @@ msgid ""
3668
3668
"precision is required. For this purpose a custom kind parameter can be "
3669
3669
"defined. The recommended way of defining kind parameters is to use"
3670
3670
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"
3671
3676
3672
3677
#: ../../source/learn/best_practices/floating_point.md:12
3673
3678
msgid ""
3674
3679
"For many purposes it also suffices to directly infer the kind parameter from "
3675
3680
"a literal like here"
3676
3681
msgstr ""
3682
+ "W wielu przypadkach wystarcza również bezpośrednie wywnioskowanie parametru "
3683
+ "rodzaju z literału, tak jak tutaj"
3677
3684
3678
3685
#: ../../source/learn/best_practices/floating_point.md:19
3679
3686
msgid "or to rename the imported kind parameter from the `iso_fortran_env` module"
3680
3687
msgstr ""
3688
+ "lub zmienić nazwę importowanego parametru rodzaju z modułu `iso_fortran_env`"
3681
3689
3682
3690
#: ../../source/learn/best_practices/floating_point.md:25
3683
3691
msgid ""
@@ -3686,63 +3694,84 @@ msgid ""
3686
3694
"/doctor-fortran-in-it-takes-all-kinds/\">Doctor Fortran in it takes all "
3687
3695
"KINDs</a>."
3688
3696
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>."
3689
3702
3690
3703
#: ../../source/learn/best_practices/floating_point.md:28
3691
3704
msgid ""
3692
3705
"It is recommended to have a central module to define kind parameters and "
3693
3706
"include them with use as necessary. An example for such a module is given "
3694
3707
"with"
3695
3708
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"
3696
3712
3697
3713
#: ../../source/learn/best_practices/floating_point.md:56
3698
3714
msgid ""
3699
3715
"Floating point constants should always be declared including a kind parameter"
3700
3716
" suffix:"
3701
3717
msgstr ""
3718
+ "Stałe zmiennoprzecinkowe powinny zawsze być deklarowane z uwzględnieniem "
3719
+ "sufiksu parametru rodzaju:"
3702
3720
3703
3721
#: ../../source/learn/best_practices/floating_point.md:65
3704
3722
msgid ""
3705
3723
"It is safe to assign integers to floating point numbers without losing "
3706
3724
"accuracy:"
3707
3725
msgstr ""
3726
+ "Można bezpiecznie przydzielać liczby całkowite do liczb zmiennoprzecinkowych "
3727
+ "bez utraty dokładności:"
3708
3728
3709
3729
#: ../../source/learn/best_practices/floating_point.md:72
3710
3730
msgid ""
3711
3731
"In order to impose floating point division (as opposed to integer division "
3712
3732
"`3/4` equal to `0`), one can convert the integer to a floating point number "
3713
3733
"by:"
3714
3734
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:"
3715
3739
3716
3740
#: ../../source/learn/best_practices/floating_point.md:81
3717
3741
msgid "or simply separate the integer division with multiplication by `1.0_dp`"
3718
3742
msgstr ""
3743
+ "lub po prostu oddzieleniem dzielenia liczb całkowitych mnożeniem przez `1."
3744
+ "0_dp`"
3719
3745
3720
3746
#: ../../source/learn/best_practices/floating_point.md:88
3721
3747
msgid ""
3722
3748
"To print floating point numbers without losing precision use the unlimited "
3723
3749
"format specifier `(g0)` or the exponential representation `(es24.16e3)`, "
3724
3750
"which will give you 17 significant digits of printout."
3725
3751
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."
3726
3755
3727
3756
#: ../../source/learn/best_practices/index.md:12
3728
3757
#: ../../source/learn/best_practices/style_guide.md:1
3729
3758
msgid "Fortran Style Guide"
3730
- msgstr ""
3759
+ msgstr "Przewodnik stylu Fortran "
3731
3760
3732
3761
#: ../../source/learn/best_practices/index.md:12
3733
3762
#: ../../source/learn/best_practices/integer_division.md:1
3734
3763
msgid "Integer Division"
3735
- msgstr ""
3764
+ msgstr "Dzielenie całkowite "
3736
3765
3737
3766
#: ../../source/learn/best_practices/index.md:12
3738
3767
#: ../../source/learn/best_practices/modules_programs.md:1
3739
3768
msgid "Modules and Programs"
3740
- msgstr ""
3769
+ msgstr "Moduły i Programy "
3741
3770
3742
3771
#: ../../source/learn/best_practices/index.md:12
3743
3772
#: ../../source/learn/best_practices/multidim_arrays.md:1
3744
3773
msgid "Multidimensional Arrays"
3745
- msgstr ""
3774
+ msgstr "Tablice wielowymiarowe "
3746
3775
3747
3776
#: ../../source/learn/best_practices/index.md:12
3748
3777
msgid "Element-wise Operations on Array"
@@ -3751,11 +3780,11 @@ msgstr "Operacje na tablicach z uwzględnieniem elementów"
3751
3780
#: ../../source/learn/best_practices/index.md:12
3752
3781
#: ../../source/learn/best_practices/type_casting.md:1
3753
3782
msgid "Type Casting in Callbacks"
3754
- msgstr ""
3783
+ msgstr "Rzutowanie typów w wywołaniach zwrotnych "
3755
3784
3756
3785
#: ../../source/learn/best_practices/index.md:4
3757
3786
msgid "Fortran Best Practices"
3758
- msgstr ""
3787
+ msgstr "Najlepsze praktyki Fortran "
3759
3788
3760
3789
#: ../../source/learn/best_practices/index.md:6
3761
3790
msgid ""
@@ -3765,6 +3794,12 @@ msgid ""
3765
3794
" discussed. It is meant for programmers with basic familiarity of the Fortran"
3766
3795
" syntax and programming in general."
3767
3796
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."
3768
3803
3769
3804
#: ../../source/learn/best_practices/integer_division.md:3
3770
3805
msgid ""
0 commit comments