Skip to content

Commit 31324cf

Browse files
committed
Functions update.
1 parent 5e54e4f commit 31324cf

File tree

1 file changed

+32
-7
lines changed

1 file changed

+32
-7
lines changed

library/functions.po

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,29 +3,32 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.10\n"
109
"Report-Msgid-Bugs-To: \n"
1110
"POT-Creation-Date: 2021-12-17 23:20+0300\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14-
"Language-Team: LANGUAGE <LL@li.org>\n"
15-
"Language: \n"
11+
"PO-Revision-Date: 2021-12-19 03:27+0300\n"
12+
"Last-Translator: \n"
13+
"Language-Team: TURKISH\n"
14+
"Language: tr_TR\n"
1615
"MIME-Version: 1.0\n"
1716
"Content-Type: text/plain; charset=UTF-8\n"
1817
"Content-Transfer-Encoding: 8bit\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
19+
"X-Generator: Poedit 3.0.1\n"
1920

2021
#: library/functions.rst:11
2122
msgid "Built-in Functions"
22-
msgstr ""
23+
msgstr "Gömülü Fonksiyonlar"
2324

2425
#: library/functions.rst:7
2526
msgid ""
2627
"The Python interpreter has a number of functions and types built into it "
2728
"that are always available. They are listed here in alphabetical order."
2829
msgstr ""
30+
"Python yorumlayıcısı, içinde gömülü olarak her zaman kullanılabilen bir dizi "
31+
"fonksiyon ve tür barındırır. Burada alfabetik sıraya göre listelenmiştir."
2932

3033
#: library/functions.rst:0
3134
msgid "**A**"
@@ -397,33 +400,44 @@ msgid ""
397400
"floating point number, or an object implementing :meth:`__abs__`. If the "
398401
"argument is a complex number, its magnitude is returned."
399402
msgstr ""
403+
"Bir sayının mutlak değerini döndürür. Bu argüman bir tam sayı, ondalıklı "
404+
"sayı veya :meth:`__abs__` 'i implement eden bir obje olabilir. Eğer argüman "
405+
"bir karmaşık sayıysa, onun büyüklüğünü döndürülür."
400406

401407
#: library/functions.rst:66
402408
msgid ""
403409
"Return an :term:`asynchronous iterator` for an :term:`asynchronous "
404410
"iterable`. Equivalent to calling ``x.__aiter__()``."
405411
msgstr ""
412+
"Bir term:`asynchronous iterable` için bir :term:`asynchronous iterator` "
413+
"döndürür. ``x.__aiter__()`` çağrısına eşdeğerdir."
406414

407415
#: library/functions.rst:69
408416
msgid "Note: Unlike :func:`iter`, :func:`aiter` has no 2-argument variant."
409417
msgstr ""
418+
"Not: :func:'iter' 'ın aksine, :func:'aiter' 'ın 2 bağımsız değişkeni yoktur."
410419

411420
#: library/functions.rst:75
412421
msgid ""
413422
"Return ``True`` if all elements of the *iterable* are true (or if the "
414423
"iterable is empty). Equivalent to::"
415424
msgstr ""
425+
"Eğer *iterable* 'ın tüm elementleri doğruysa, \"True\" döndürür. Şuna "
426+
"eşittir::"
416427

417428
#: library/functions.rst:87
418429
msgid ""
419430
"When awaited, return the next item from the given :term:`asynchronous "
420431
"iterator`, or *default* if given and the iterator is exhausted."
421432
msgstr ""
433+
"Hazır olunduğunda, verilen :term:`asynchronous iterator` 'dan sıradaki "
434+
"parçayı döndürür. Eğer yineleyici tükendiyse ve *default* değer verildiyse, "
435+
"*default* değeri döndürür."
422436

423437
#: library/functions.rst:90
424438
msgid ""
425439
"This is the async variant of the :func:`next` builtin, and behaves similarly."
426-
msgstr ""
440+
msgstr "Bu :func:'next' 'in gömülü asenkron varyantı ve benzer çalışır."
427441

428442
#: library/functions.rst:93
429443
msgid ""
@@ -432,12 +446,18 @@ msgid ""
432446
"iterator. If *default* is given, it is returned if the iterator is "
433447
"exhausted, otherwise :exc:`StopAsyncIteration` is raised."
434448
msgstr ""
449+
"Bu *async_iterator* 'ın :meth:`~object.__anext__` metodunu çağırır. Bir :"
450+
"term:`awaitable` döndürür. Bunu beklemek yineleyicinin bir sonraki değerini "
451+
"döndürür. Eğer *default* değer verildiyse, yineleyici tükendiğinde o "
452+
"döndürülür. Aksi takdirde :exc:`StopAsyncIteration` hatası yükseltilir."
435453

436454
#: library/functions.rst:102
437455
msgid ""
438456
"Return ``True`` if any element of the *iterable* is true. If the iterable "
439457
"is empty, return ``False``. Equivalent to::"
440458
msgstr ""
459+
"Eğer *iterable* 'ın elementlerinden herhangi biri doğru ise \"True\" "
460+
"döndürür. Eğer *iterable* boş ise, \"False\" döndürür. Şuna eşittir::"
441461

442462
#: library/functions.rst:114
443463
msgid ""
@@ -446,6 +466,11 @@ msgid ""
446466
"`repr` using ``\\x``, ``\\u``, or ``\\U`` escapes. This generates a string "
447467
"similar to that returned by :func:`repr` in Python 2."
448468
msgstr ""
469+
":func:`repr` 'in bir nesnenin yazdırılabilir temsilini içeren bir dize "
470+
"döndürdüğü, ancak :func:`repr` tarafından döndürülen dizedeki ASCII olmayan "
471+
"karakterlerden ``\\x``, ``\\u` ` veya ``\\U`` gibi kaçış karakterlerini "
472+
"kullanarak kaçtığı gibi, bu da Python 2'deki :func:`repr` tarafından "
473+
"döndürülen değere benzeyen bir string üretir."
449474

450475
#: library/functions.rst:122
451476
msgid ""

0 commit comments

Comments
 (0)