@@ -7,15 +7,15 @@ msgstr ""
7
7
"Project-Id-Version : Python 3.11\n "
8
8
"Report-Msgid-Bugs-To : \n "
9
9
"POT-Creation-Date : 2022-12-17 01:28+0300\n "
10
- "PO-Revision-Date : 2022-07-10 23:37 +0300\n "
10
+ "PO-Revision-Date : 2022-12-28 11:34 +0300\n "
11
11
"Last-Translator : \n "
12
12
"Language-Team : TURKISH\n "
13
13
"Language : tr\n "
14
14
"MIME-Version : 1.0\n "
15
15
"Content-Type : text/plain; charset=UTF-8\n "
16
16
"Content-Transfer-Encoding : 8bit\n "
17
17
"Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
- "X-Generator : Poedit 3.1.1 \n "
18
+ "X-Generator : Poedit 3.2 \n "
19
19
20
20
#: library/functions.rst:11
21
21
msgid "Built-in Functions"
@@ -519,7 +519,6 @@ msgid "*x* is now a positional-only parameter."
519
519
msgstr "*x* artık yalnızca konumsal bir parametredir."
520
520
521
521
#: library/functions.rst:159
522
- #, fuzzy
523
522
msgid ""
524
523
"This function drops you into the debugger at the call site. Specifically, "
525
524
"it calls :func:`sys.breakpointhook`, passing ``args`` and ``kws`` straight "
@@ -531,15 +530,16 @@ msgid ""
531
530
"you to drop into the debugger of choice. If :func:`sys.breakpointhook` is "
532
531
"not accessible, this function will raise :exc:`RuntimeError`."
533
532
msgstr ""
534
- "Bu fonksiyon sizi çağrılma bölgesindeki hata ayıklayıcıya bırakır. Spesifik "
533
+ "Bu fonksiyon sizi çağrılma bölgesindeki hata ayıklayıcıya bırakır. Spesifik "
535
534
"olarak, :func:`sys.breakpointhook` 'u çağırır, ``args`` ve ``kws`` 'yi "
536
535
"doğrudan geçer. Varsayılan olarak, ``sys.breakpointhook()`` hiçbir parametre "
537
536
"beklemeden :func:`pdb.set_trace()` fonksiyonunu çağırır. Bu durumda, bu "
538
537
"tamamen size kolaylık sağlamak içindir, bu nedenle hata ayıklayıcıya girmek "
539
538
"için :mod:`pdb` 'yi içe aktarmanız veya fazla kod yazmanız gerekmez. Buna "
540
539
"rağmen, :func:`sys.breakpointhook` başka bir fonksiyona ayarlanabilir ve :"
541
540
"func:`breakpoint` otomatik olarak bunu çağırır ve tercih ettiğiniz hata "
542
- "ayıklayıcıya girmenize izin verir."
541
+ "ayıklayıcıya girmenize izin verir. Eğer :func:`sys.breakpointhook` "
542
+ "ulaşılabilir değilse, bu fonksiyon :exc:`RuntimeError` hatasını verecektir."
543
543
544
544
#: library/functions.rst:171
545
545
msgid ""
@@ -747,13 +747,12 @@ msgstr ""
747
747
"bir ``__wrapped__`` özelliğine sahiplerdir."
748
748
749
749
#: library/functions.rst:281
750
- #, fuzzy
751
750
msgid ""
752
751
"Class methods can no longer wrap other :term:`descriptors <descriptor>` such "
753
752
"as :func:`property`."
754
753
msgstr ""
755
- "Sınıf metotları artık :func:`property` gibi diğer :term:`descriptors "
756
- "<descriptor>` 'ları sarmalayabilir ."
754
+ "Sınıf metotları artık :func:`property` gibi diğer :term:`descriptor` 'ları "
755
+ "sarmalayamaz ."
757
756
758
757
#: library/functions.rst:288
759
758
msgid ""
@@ -1407,9 +1406,9 @@ msgid ""
1407
1406
"spellings for positive infinity."
1408
1407
msgstr ""
1409
1408
":ref:`floating` kısmında açıklanan ``floatnumber``, Python floating-point "
1410
- "tanımının farklı bir biçimidir. Durum önemli değildir, örneğin \" inf\" , "
1411
- "\" Inf \" , \" INFINITY\" ve \" iNfINity\" hepsi pozitif sonsuz için kabul "
1412
- "edilebilir yazımlardır."
1409
+ "tanımının farklı bir biçimidir. Durum önemli değildir, örneğin \" inf\" , \" Inf "
1410
+ "\" , \" INFINITY\" ve \" iNfINity\" hepsi pozitif sonsuz için kabul edilebilir "
1411
+ "yazımlardır."
1413
1412
1414
1413
#: library/functions.rst:667
1415
1414
msgid ""
@@ -2223,9 +2222,9 @@ msgid ""
2223
2222
"Modes ``'w+'`` and ``'w+b'`` open and truncate the file. Modes ``'r+'`` and "
2224
2223
"``'r+b'`` open the file with no truncation."
2225
2224
msgstr ""
2226
- "Varsayılan mod ``'r'`` (okumaya açık, ``'rt'`` 'nin eşanlamlısı.) 'dir. "
2227
- "``'w +'`` ve ``'w+b'`` modları dosyayı açar ve temizlerler. ``'r+'`` ve "
2228
- "``'r+b'`` modları dosyayı temizlemeden açarlar."
2225
+ "Varsayılan mod ``'r'`` (okumaya açık, ``'rt'`` 'nin eşanlamlısı.) 'dir. ``'w "
2226
+ "+'`` ve ``'w+b'`` modları dosyayı açar ve temizlerler. ``'r+'`` ve ``'r+b'`` "
2227
+ "modları dosyayı temizlemeden açarlar."
2229
2228
2230
2229
#: library/functions.rst:1193
2231
2230
msgid ""
@@ -2751,9 +2750,9 @@ msgstr ""
2751
2750
2752
2751
#: library/functions.rst:1487
2753
2752
msgid ""
2754
- "The ``@property`` decorator turns the :meth:`voltage` method into a "
2755
- "\" getter \" for a read-only attribute with the same name, and it sets the "
2756
- "docstring for *voltage* to \" Get the current voltage.\" "
2753
+ "The ``@property`` decorator turns the :meth:`voltage` method into a \" getter "
2754
+ "\" for a read-only attribute with the same name, and it sets the docstring "
2755
+ "for *voltage* to \" Get the current voltage.\" "
2757
2756
msgstr ""
2758
2757
"``@property`` dekoratörü :meth:`voltage` metodunu aynı isimli salt-okunur "
2759
2758
"bir özellik için \" getter\" metoduna dönüştürür ve *voltage* için doküman "
0 commit comments