Skip to content

Commit 1322a2c

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

File tree

1 file changed

+51
-25
lines changed

1 file changed

+51
-25
lines changed

locale/pl/LC_MESSAGES/index.po

Lines changed: 51 additions & 25 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: 2025-08-06 22:01+0000\n"
12+
"PO-Revision-Date: 2025-08-12 21:02+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"
@@ -9460,137 +9460,158 @@ msgid ""
94609460
"**allocated(array)** and **allocated(scalar)** check the allocation status of"
94619461
" **array** and **scalar**, respectively."
94629462
msgstr ""
9463+
"**allocated(tablica)** oraz **allocated(wielkość skalarna)** sprawdzają "
9464+
"status przydzielonej **tablicy** lub **wielkości skalarnej**."
94639465

94649466
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:28
94659467
msgid "the argument shall be an _allocatable_ array."
9466-
msgstr ""
9468+
msgstr "argumentem powinna być _możliwa do przydzielenia_ tablica."
94679469

94689470
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:30
94699471
msgid "**scalar**"
9470-
msgstr ""
9472+
msgstr "**wielkość skalarna**"
94719473

94729474
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:31
94739475
msgid "the argument shall be an _allocatable_ scalar."
9474-
msgstr ""
9476+
msgstr "argumentem powinna być _możliwa do przydzielenia_ wielkość skalarna."
94759477

94769478
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:35
94779479
msgid ""
94789480
"The return value is a scalar _logical_ with the default logical kind type "
94799481
"parameter. If the argument is allocated then the result is .true.; otherwise,"
94809482
" it returns .false.."
94819483
msgstr ""
9484+
"Wartością zwracaną jest wielkość skalarna _logiczna_ z domyślnym parametrem "
9485+
"typu logicznego. Jeśli argument jest przydzielony, wynikiem jest .true.; w "
9486+
"przeciwnym razie zwraca .false."
94829487

94839488
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:86
94849489
msgid ""
94859490
"Fortran 95 and later. Note, the scalar= keyword and allocatable scalar "
94869491
"entities are available in Fortran 2003 and later."
94879492
msgstr ""
9493+
"Fortran 95 i nowszy. Uwaga, słowo kluczowe scalar= jest dostępne w wersjach "
9494+
"Fortran 2003 i nowszych."
94889495

94899496
#: ../../source/learn/intrinsics/_pages/ALLOCATED.md:91
94909497
msgid "[**move_alloc**(3)](#move_alloc)"
9491-
msgstr ""
9498+
msgstr "[**move_alloc**(3)](#move_alloc)"
94929499

94939500
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:2
94949501
msgid "is_contiguous"
9495-
msgstr ""
9502+
msgstr "is_contiguous"
94969503

94979504
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:6
94989505
msgid "**is_contiguous**(3) - \\[ARRAY INQUIRY\\] test if object is contiguous"
94999506
msgstr ""
9507+
"**is_contiguous**(3) - \\[ZAPYTANIE TABLICY\\] test sprawdzający czy obiekt "
9508+
"jest ciągły"
95009509

95019510
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:16
95029511
msgid "True if and only if an object is contiguous."
9503-
msgstr ""
9512+
msgstr "Prawda wtedy i tylko wtedy, gdy obiekt jest ciągły."
95049513

95059514
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:18
95069515
msgid "An object is contiguous if it is"
9507-
msgstr ""
9516+
msgstr "Obiekt jest ciągły jeśli jest"
95089517

95099518
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:20
95109519
msgid "**(1)** an object with the CONTIGUOUS attribute,"
9511-
msgstr ""
9520+
msgstr "**(1)** obiektem z atrybutem CONTIGUOUS,"
95129521

95139522
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:23
95149523
msgid "**(2)** a nonpointer whole array that is not assumed-shape,"
95159524
msgstr ""
9525+
"**(2)** całą tablicą niebędącą wskaźnikiem, która nie ma przyjętego kształtu,"
95169526

95179527
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:26
95189528
msgid ""
95199529
"**(3)** an assumed-shape array that is argument associated with an array that"
95209530
" is contiguous,"
95219531
msgstr ""
9532+
"**(3)** tablicą o założonym kształcie, której argument jest powiązany z "
9533+
"tablicą ciągłą,"
95229534

95239535
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:30
95249536
msgid "**(4)** an array allocated by an ALLOCATE statement,"
9525-
msgstr ""
9537+
msgstr "**(4)** tablicą przydzieloną wyrażeniem ALLOCATE,"
95269538

95279539
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:33
95289540
msgid "**(5)** a pointer associated with a contiguous target, or"
9529-
msgstr ""
9541+
msgstr "**(5)** wskaźnikiem powiązanym z celem ciągłym lub"
95309542

95319543
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:36
95329544
msgid "**(6)** a nonzero-sized array section provided that"
9533-
msgstr ""
9545+
msgstr "**(6)** sekcją tablicy o rozmiarze różnym od zera, pod warunkiem, że"
95349546

95359547
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:39
95369548
msgid "**(a)** its base object is contiguous,"
9537-
msgstr ""
9549+
msgstr "**(a)** jej obiekt bazowy jest ciągły,"
95389550

95399551
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:42
95409552
msgid "**(b)** it does not have a vector subscript,"
9541-
msgstr ""
9553+
msgstr "**(b)** nie posiada indeksu wektorowego,"
95429554

95439555
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:45
95449556
msgid ""
95459557
"**(c)** the elements of the section, in array element order, are a subset of "
95469558
"the base object elements that are consecutive in array element order,"
95479559
msgstr ""
9560+
"**(c)** elementy sekcji, w kolejności elementów tablicy, są podzbiorem "
9561+
"elementów obiektu bazowego, które są następujące po sobie w kolejności "
9562+
"elementów tablicy,"
95489563

95499564
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:50
95509565
msgid ""
95519566
"**(d)** if the array is of type character and a substring-range appears, the "
95529567
"substring-range specifies all of the characters of the parent-string,"
95539568
msgstr ""
9569+
"**(d)** jeśli tablica jest typu znakowego i pojawia się zakres podciągów "
9570+
"znaków, zakres podciągów określa wszystkie znaki ciągu nadrzędnego,"
95549571

95559572
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:55
95569573
msgid "**(e)** only its final part-ref has nonzero rank, and"
9557-
msgstr ""
9574+
msgstr "**(e)** tylko jej końcowa część ma rangę różną od zera, a"
95589575

95599576
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:58
95609577
msgid "**(f)** it is not the real or imaginary part of an array of type complex."
9561-
msgstr ""
9578+
msgstr "**(f)** nie jest częścią rzeczywistą ani urojoną tablicy typu complex."
95629579

95639580
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:62
95649581
msgid "An object is not contiguous if it is an array subobject, and"
9565-
msgstr ""
9582+
msgstr "Obiekt nie jest ciągły jeśli jest podobiektem tablicy oraz"
95669583

95679584
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:64
95689585
msgid "the object has two or more elements,"
9569-
msgstr ""
9586+
msgstr "obiekt ma dwa lub więcej elementów,"
95709587

95719588
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:66
95729589
msgid ""
95739590
"the elements of the object in array element order are not consecutive in the "
95749591
"elements of the base object,"
95759592
msgstr ""
9593+
"elementy obiektu w kolejności elementów tablicy nie następują po sobie w "
9594+
"elementach obiektu bazowego,"
95769595

95779596
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:69
95789597
msgid "the object is not of type character with length zero, and"
9579-
msgstr ""
9598+
msgstr "obiekt nie jest typu znakowego (type character) o długości zerowej i"
95809599

95819600
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:71
95829601
msgid ""
95839602
"the object is not of a derived type that has no ultimate components other "
95849603
"than zero-sized arrays and"
95859604
msgstr ""
9605+
"obiekt nie jest typu pochodnego, który nie posiada żadnych ostatecznych "
9606+
"komponentów poza tablicami o zerowym rozmiarze i"
95869607

95879608
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:74
95889609
msgid "characters with length zero."
9589-
msgstr ""
9610+
msgstr "znaków o długości zero."
95909611

95919612
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:76
95929613
msgid "It is processor-dependent whether any other object is contiguous."
9593-
msgstr ""
9614+
msgstr "To, czy jakikolwiek inny obiekt jest ciągły, zależy od procesora."
95949615

95959616
#: ../../source/learn/intrinsics/_pages/ABS.md:39
95969617
#: ../../source/learn/intrinsics/_pages/ANINT.md:20
@@ -9613,23 +9634,27 @@ msgstr ""
96139634
#: ../../source/learn/intrinsics/_pages/SIGN.md:34
96149635
#: ../../source/learn/intrinsics/_pages/STORAGE_SIZE.md:20
96159636
msgid "**a**"
9616-
msgstr ""
9637+
msgstr "**a**"
96179638

96189639
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:81
96199640
msgid ""
96209641
"may be of any type. It shall be an array. If it is a pointer it shall be "
96219642
"associated."
96229643
msgstr ""
9644+
"może być dowolnego typu. Powinno być tablicą. Jeśli jest wskaźnikiem, "
9645+
"powinno być powiązane."
96239646

96249647
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:86
96259648
msgid "**Result**"
9626-
msgstr ""
9649+
msgstr "**Wynik**"
96279650

96289651
#: ../../source/learn/intrinsics/_pages/IS_CONTIGUOUS.md:87
96299652
msgid ""
96309653
"of type Default logical scalar. The result has the value true if **a** is "
96319654
"contiguous, and false otherwise."
96329655
msgstr ""
9656+
"logiczna wielkość skalarna typu Default. Wynikiem jest wartość true jeśli "
9657+
"**a** jest ciągle, w przeciwnym wypadku false."
96339658

96349659
#: ../../source/learn/intrinsics/_pages/ACOSH.md:60
96359660
#: ../../source/learn/intrinsics/_pages/ASINH.md:58
@@ -9674,15 +9699,16 @@ msgstr ""
96749699
#: ../../source/learn/intrinsics/_pages/STORAGE_SIZE.md:60
96759700
#: ../../source/learn/intrinsics/_pages/TRAILZ.md:109
96769701
msgid "Fortran 2008 and later"
9677-
msgstr ""
9702+
msgstr "Fortran 2008 i nowszy"
96789703

96799704
#: ../../source/learn/intrinsics/_pages/LBOUND.md:2
96809705
msgid "lbound"
9681-
msgstr ""
9706+
msgstr "lbound"
96829707

96839708
#: ../../source/learn/intrinsics/_pages/LBOUND.md:6
96849709
msgid "**lbound**(3) - \\[ARRAY INQUIRY\\] Lower dimension bounds of an array"
96859710
msgstr ""
9711+
"**lbound**(3) - \\[ZAPYTANIE TABLICY\\] zmniejsz granice wymiarów tablicy"
96869712

96879713
#: ../../source/learn/intrinsics/_pages/LBOUND.md:21
96889714
msgid ""

0 commit comments

Comments
 (0)