@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.15\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2026-07-25 14:57 +0000\n "
15+ "POT-Creation-Date : 2026-08-03 16:16 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:02+0000\n "
1717"Last-Translator : Maciej Olko <maciej.olko@gmail.com>, 2026\n "
1818"Language-Team : Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -2894,27 +2894,33 @@ msgid "e.g. to search for an erroneously escaped turtle ;-)"
28942894msgstr "np. aby znaleźć żółwia, który błędnie uciekł ;-)"
28952895
28962896msgid "a number, x-coordinate of lower left corner of canvas"
2897- msgstr ""
2897+ msgstr "liczba, współrzędna x lewego dolnego rogu obszaru roboczego "
28982898
28992899msgid "a number, y-coordinate of lower left corner of canvas"
2900- msgstr ""
2900+ msgstr "liczba, współrzędna y lewego dolnego rogu obszaru roboczego "
29012901
29022902msgid "a number, x-coordinate of upper right corner of canvas"
2903- msgstr ""
2903+ msgstr "liczba, współrzędna x prawego górnego rogu obszaru roboczego "
29042904
29052905msgid "a number, y-coordinate of upper right corner of canvas"
2906- msgstr ""
2906+ msgstr "liczba, współrzędna y prawego górnego rogu obszaru roboczego "
29072907
29082908msgid ""
29092909"Set up user-defined coordinate system and switch to mode \" world\" if "
29102910"necessary. This performs a ``screen.reset()``. If mode \" world\" is "
29112911"already active, all drawings are redrawn according to the new coordinates."
29122912msgstr ""
2913+ "Konfiguruje układ współrzędnych zdefiniowany przez użytkownika i w razie "
2914+ "potrzeby przełącza do trybu „world”. Powoduje to wykonanie ``screen."
2915+ "reset()``. Jeśli tryb „world” jest już aktywny, wszystkie rysunki zostaną "
2916+ "ponownie wygenerowane zgodnie z nowymi współrzędnymi."
29132917
29142918msgid ""
29152919"**ATTENTION**: in user-defined coordinate systems angles may appear "
29162920"distorted."
29172921msgstr ""
2922+ "**UWAGA**: w układach współrzędnych zdefiniowanych przez użytkownika kąty "
2923+ "mogą wydawać się zniekształcone."
29182924
29192925msgid ""
29202926">>> screen.reset()\n"
@@ -2925,31 +2931,47 @@ msgid ""
29252931">>> for _ in range(8):\n"
29262932"... left(45); fd(2) # a regular octagon"
29272933msgstr ""
2934+ ">>> screen.reset()\n"
2935+ ">>> screen.setworldcoordinates(-50,-7.5,50,7.5)\n"
2936+ ">>> for _ in range(72):\n"
2937+ "... left(10)\n"
2938+ "...\n"
2939+ ">>> for _ in range(8):\n"
2940+ "... left(45); fd(2) # ośmiokąt foremny"
29282941
29292942msgid ""
29302943"Temporarily disable turtle animation. The code written inside the "
29312944"``no_animation`` block will not be animated; once the code block is exited, "
29322945"the drawing will appear."
29332946msgstr ""
2947+ "Tymczasowo wyłącza animację żółwia. Kod umieszczony w bloku ``no_animation`` "
2948+ "nie będzie animowany; po wyjściu z bloku rysunek zostanie wyświetlony."
29342949
29352950msgid ""
29362951">>> with screen.no_animation():\n"
29372952"... for dist in range(2, 400, 2):\n"
29382953"... fd(dist)\n"
29392954"... rt(90)"
29402955msgstr ""
2956+ ">>> with screen.no_animation():\n"
2957+ "... for dist in range(2, 400, 2):\n"
2958+ "... fd(dist)\n"
2959+ "... rt(90)"
29412960
29422961msgid "positive integer"
2943- msgstr ""
2962+ msgstr "dodatnia liczba całkowita "
29442963
29452964msgid ""
29462965"Set or return the drawing *delay* in milliseconds. (This is approximately "
29472966"the time interval between two consecutive canvas updates.) The longer the "
29482967"drawing delay, the slower the animation."
29492968msgstr ""
2969+ "Ustawia lub zwraca opóźnienie rysowania w milisekundach. (Jest to w "
2970+ "przybliżeniu odstęp czasu między dwiema kolejnymi aktualizacjami obszaru "
2971+ "rysowania.) Im dłuższe opóźnienie rysowania, tym wolniejsza animacja."
29502972
29512973msgid "Optional argument:"
2952- msgstr ""
2974+ msgstr "Opcjonalny argument: "
29532975
29542976msgid ""
29552977">>> screen.delay()\n"
@@ -2965,7 +2987,7 @@ msgstr ""
29652987"5"
29662988
29672989msgid "nonnegative integer"
2968- msgstr ""
2990+ msgstr "nieujemna liczba całkowita "
29692991
29702992msgid ""
29712993"Turn turtle animation on/off and set delay for update drawings. If *n* is "
@@ -2983,6 +3005,12 @@ msgid ""
29833005"... rt(90)\n"
29843006"... dist += 2"
29853007msgstr ""
3008+ ">>> screen.tracer(8, 25)\n"
3009+ ">>> dist = 2\n"
3010+ ">>> for i in range(200):\n"
3011+ "... fd(dist)\n"
3012+ "... rt(90)\n"
3013+ "... dist += 2"
29863014
29873015msgid "Perform a TurtleScreen update. To be used when tracer is turned off."
29883016msgstr ""
0 commit comments