From 5495051e6feec641e57ca2716b4b5d7779c2e053 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 04:25:25 +0300 Subject: [PATCH 01/30] Testing something new --- .github/problem-matchers/pospell.json | 15 +++ .github/workflows/build.yml | 68 +++++------ .github/workflows/build_alt.yml | 96 ++++++++++++++++ .gitignore | 6 + Makefile | 155 +++++++++++--------------- requirements.txt | 5 +- 6 files changed, 215 insertions(+), 130 deletions(-) create mode 100644 .github/problem-matchers/pospell.json create mode 100644 .github/workflows/build_alt.yml diff --git a/.github/problem-matchers/pospell.json b/.github/problem-matchers/pospell.json new file mode 100644 index 000000000..765c1c6e9 --- /dev/null +++ b/.github/problem-matchers/pospell.json @@ -0,0 +1,15 @@ +{ + "problemMatcher": [ + { + "owner": "pospell", + "pattern": [ + { + "regexp": "^(.*):(\\d+):(.*)$", + "file": 1, + "line": 2, + "message": 3 + } + ] + } + ] +} \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61d3c83a9..0a963c8ad 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,40 +1,40 @@ -name: Build +# name: Build -on: - push: - branches: - - "**" - pull_request: +# on: +# push: +# branches: +# - "**" +# pull_request: -env: - CPYTHON_BRANCH: "3.10" - LANGUAGE: "tr" +# env: +# CPYTHON_BRANCH: "3.10" +# LANGUAGE: "tr" -jobs: - test: - name: Build - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Set Up Python ${{ env.CPYTHON_BRANCH }} - uses: actions/setup-python@v4 - with: - python-version: "${{ env.CPYTHON_BRANCH }}" - - name: Get CPython - run: | - git clone https://github.com/python/cpython.git ../cpython --branch=${{ env.CPYTHON_BRANCH }} +# jobs: +# test: +# name: Build +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v3 +# - name: Set Up Python ${{ env.CPYTHON_BRANCH }} +# uses: actions/setup-python@v4 +# with: +# python-version: "${{ env.CPYTHON_BRANCH }}" +# - name: Get CPython +# run: | +# git clone https://github.com/python/cpython.git ../cpython --branch=${{ env.CPYTHON_BRANCH }} - - name: Install dependencies - run: | - sudo apt update - sudo apt install -y gettext - python -m pip install -r requirements.txt - python -m pip install -r ../cpython/Doc/requirements.txt +# - name: Install dependencies +# run: | +# sudo apt update +# sudo apt install -y gettext +# python -m pip install -r requirements.txt +# python -m pip install -r ../cpython/Doc/requirements.txt - - name: Sphinx lint - run: | - sphinx-lint *.po */*.po +# - name: Sphinx lint +# run: | +# sphinx-lint *.po */*.po - - name: Build docs - run: | - make +# - name: Build docs +# run: | +# make diff --git a/.github/workflows/build_alt.yml b/.github/workflows/build_alt.yml new file mode 100644 index 000000000..678363920 --- /dev/null +++ b/.github/workflows/build_alt.yml @@ -0,0 +1,96 @@ +name: Tests + +on: + push: + branches: + - '*.*' + pull_request: + branches: + - '*.*' + +jobs: + checks: + strategy: + matrix: + tool: + - name: sphinx-lint + package: sphinx-lint + command: 'sphinx-lint --enable default-role --ignore .git' + - name: Yazım + package: pospell + apt_dependencies: hunspell hunspell-tr + command: 'pospell -p dict -l tr_TR $CHANGED_PO_FILES' + - name: Satır uzunluğu + command: 'awk ''{if (length($0) > 80 && length(gensub(/[^ ]/, "", "g")) > 1) {print FILENAME ":" FNR, "line too long:", $0; ERRORS+=1}} END {if (ERRORS>0) {exit 1}}'' $CHANGED_PO_FILES' + + name: ${{ matrix.tool.name }} (${{ matrix.tool.package }}) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Register problem matchers + run: echo "::add-matcher::.github/problem-matchers/pospell.json" + - uses: lots0logs/gh-action-get-changed-files@2.1.4 + id: changed_files + with: + token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Install ${{ matrix.tool.package }} + run: | + if [ -n "${{ matrix.tool.apt_dependencies }}" ]; then + sudo apt-get update && sudo apt-get install -y ${{ matrix.tool.apt_dependencies }} + fi + if [ -n "${{ matrix.tool.package }}" ]; then + python -m pip install --upgrade pip setuptools wheel + python -m pip install ${{ matrix.tool.package }} + fi + - name: Run ${{ matrix.tool.package }} + env: + ADDED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.added), ' ') }} + MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }} + run: | + CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$'; true) + if [ -n "$CHANGED_PO_FILES" ] + then + echo "Running on:" $CHANGED_PO_FILES + ${{ matrix.tool.command }} + else + echo "No changed po files, nothing to check." + fi + + sphinx: + name: 'Generate docs (sphinx)' + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v3 + - uses: actions/cache@v3 + with: + path: '~/cpython/' + key: '1' + - uses: actions/cache@v3 + with: + path: ~/.cache/pip + key: '1' + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Clone cpython + run: | + if [ ! -d ~/cpython ]; then + git clone https://github.com/python/cpython ~/cpython/ + else + git -C ~/cpython fetch + fi + - name: Prepare build hierarchy + run: | + mkdir -p ~/locales/tr/LC_MESSAGES/ + cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ + git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + - name: Prepare venv + run: | + make -C $HOME/cpython/Doc clean-venv + make -C $HOME/cpython/Doc venv + - name: sphinx-build + run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html \ No newline at end of file diff --git a/.gitignore b/.gitignore index 66a207851..320d52bd5 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,9 @@ __pycache__/ *.pot *.po.bak locales/ +venv/ +.idea/ +.DS_Store +.pospell/ +.potodo/ +.venv/ \ No newline at end of file diff --git a/Makefile b/Makefile index 8755d8fe6..c87c98905 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,14 @@ -# Makefile for tr Python Documentation +# Makefile for Turkish Python Documentation # # Here is what you can do: # # - make # Automatically build an HTML local version -# - make todo # To list remaining tasks +# - make todo # To list remaining tasks and show current progression # - make verifs # To check for correctness: wrapping, spelling -# - make wrap # To check for wrapping +# - make wrap # To rewrap modified files # - make spell # To check for spelling -# - make merge # To merge pot from upstream +# - make clean # To remove build artifacts # - make fuzzy # To find fuzzy strings -# - make progress # To compute current progression # # Modes are: autobuild-stable, autobuild-dev, and autobuild-html, # documented in gen/src/3.6/Doc/Makefile as we're only delegating the @@ -22,13 +21,41 @@ # test build, we're building with the .rst files that generated our # .po files. CPYTHON_CURRENT_COMMIT := b027dd78bbdb66f2995bb898af304e66e5508bf6 - -CPYTHON_PATH := ../cpython/ - LANGUAGE := tr BRANCH := 3.10 -EXCLUDED := whatsnew/ c-api/ +EXCLUDED := \ + whatsnew/2.?.po \ + whatsnew/3.[0-8].po \ + c-api/ \ + distutils/ \ + install/ \ + library/2to3.po \ + library/distutils.po \ + library/imp.po \ + library/tkinter.tix.po \ + library/test.po \ + library/aifc.po \ + library/asynchat.po \ + library/asyncore.po \ + library/audioop.po \ + library/cgi.po \ + library/cgitb.po \ + library/chunk.po \ + library/crypt.po \ + library/imghdr.po \ + library/msilib.po \ + library/nntplib.po \ + library/nis.po \ + library/ossaudiodev.po \ + library/pipes.po \ + library/smtpd.po \ + library/sndhdr.po \ + library/spwd.po \ + library/sunau.po \ + library/telnetlib.po \ + library/uu.po \ + library/xdrlib.po # Internal variables @@ -38,6 +65,7 @@ PYTHON := $(shell which python3) MODE := html POSPELL_TMP_DIR := .pospell/ JOBS := auto +SERVE_PORT := # Detect OS @@ -58,89 +86,54 @@ endif .PHONY: all all: ensure_prerequisites - git -C $(CPYTHON_PATH) checkout $(CPYTHON_CURRENT_COMMIT) + git -C venv/cpython checkout $(CPYTHON_CURRENT_COMMIT) || (git -C venv/cpython fetch && git -C venv/cpython checkout $(CPYTHON_CURRENT_COMMIT)) mkdir -p locales/$(LANGUAGE)/LC_MESSAGES/ $(CP_CMD) -u --parents *.po */*.po locales/$(LANGUAGE)/LC_MESSAGES/ - $(MAKE) -C $(CPYTHON_PATH)/Doc/ \ - SPHINXOPTS='-qW -j$(JOBS) \ + $(MAKE) -C venv/cpython/Doc/ \ + SPHINXOPTS='-j$(JOBS) \ -D locale_dirs=$(abspath locales) \ -D language=$(LANGUAGE) \ - -D gettext_compact=0 \ + -D gettext_compact=0 \ -D latex_engine=xelatex \ -D latex_elements.inputenc= \ -D latex_elements.fontenc=' \ $(MODE) - git -C $(CPYTHON_PATH) checkout - - @echo "Build success, open file://$(abspath $(CPYTHON_PATH))/Doc/build/html/index.html or run 'make serve' to see them." + @echo "Build success, open file://$(abspath venv/cpython/)/Doc/build/html/index.html or run 'make serve' to see them." + + +# We clone cpython/ inside venv/ because venv/ is the only directory +# excluded by cpython' Sphinx configuration. +venv/cpython/.git/HEAD: + git clone https://github.com/python/cpython venv/cpython .PHONY: ensure_prerequisites -ensure_prerequisites: - @if [ -z $(CPYTHON_PATH) ]; then \ - echo "Your CPYTHON_PATH is empty, please provide one."; \ - exit 1; \ - fi - @if ! [ -d $(CPYTHON_PATH) ]; then \ - echo "Building the translation requires a cpython clone."; \ - echo "Please provide the path to a clone using the CPYTHON_PATH variable."; \ - echo "(Currently CPYTHON_PATH is $(CPYTHON_PATH)."; \ - echo "So you may want to run:"; \ - echo ""; \ - echo " git clone $(UPSTREAM) $(CPYTHON_PATH)"; \ - exit 1; \ - fi - @if [ -n "$$(git -C $(CPYTHON_PATH) status --porcelain)" ]; then \ - echo "Your cpython clone at $(CPYTHON_PATH) is not clean."; \ - echo "In order to avoid breaking things, please clean it first."; \ - exit 1; \ - fi +ensure_prerequisites: venv/cpython/.git/HEAD @if ! (blurb help >/dev/null 2>&1 && sphinx-build --version >/dev/null 2>&1); then \ - git -C $(CPYTHON_PATH) checkout $(BRANCH); \ - echo "You're missing dependencies, please enable a venv and install:"; \ + git -C venv/cpython/ checkout $(BRANCH); \ + echo "You're missing dependencies please install:"; \ echo ""; \ - echo " python -m pip install -r requirements.txt -r $(CPYTHON_PATH)/Doc/requirements.txt"; \ + echo " python -m pip install -r requirements.txt -r venv/cpython/Doc/requirements.txt"; \ exit 1; \ fi + .PHONY: serve serve: - $(MAKE) -C $(CPYTHON_PATH)/Doc/ serve - - -.PHONY: progress -progress: -ifeq ($(file),) - @echo "No file specified, showing total progress"; \ - $(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - $(shell msgcat *.po */*.po | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat *.po */*.po | grep -c '^msgid') - +ifdef SERVE_PORT + $(MAKE) -C venv/cpython/Doc/ serve SERVE_PORT=$(SERVE_PORT) else - @$(PYTHON) -c 'import sys; print("{:.1%}".format(int(sys.argv[1]) / int(sys.argv[2])))' \ - $(shell msgcat $(file) | msgattrib --translated | grep -c '^msgid') \ - $(shell msgcat $(file) | grep -c '^msgid') + $(MAKE) -C venv/cpython/Doc/ serve endif - .PHONY: todo todo: ensure_prerequisites potodo --exclude venv .venv $(EXCLUDED) .PHONY: wrap wrap: ensure_prerequisites -ifeq ($(fix),) - @echo "Verify wrapping" - powrap --check --quiet *.po **/*.po - -else -ifeq ($(file),) - @echo "Checking and fixing wrapping" - powrap *.po **/*.po -else - @echo "Fixing wrapping in $(file)" - powrap $(file) -endif -endif + @echo "Re wrapping modified files" + powrap -m SRCS = $(shell git diff --name-only $(BRANCH) | grep '.po$$') # foo/bar.po => $(POSPELL_TMP_DIR)/foo/bar.po.out @@ -152,41 +145,19 @@ spell: ensure_prerequisites $(DESTS) $(POSPELL_TMP_DIR)/%.po.out: %.po dict @echo "Pospell checking $<..." mkdir -p $(@D) - pospell -p dict -l fr_FR $< && touch $@ + pospell -p dict -l tr_TR $< && touch $@ .PHONY: fuzzy fuzzy: ensure_prerequisites potodo -f --exclude venv .venv $(EXCLUDED) .PHONY: verifs -verifs: wrap spell - -.PHONY: merge -merge: ensure_prerequisites - @echo "Merge from $(UPSTREAM)" - git -C $(CPYTHON_PATH) checkout $(BRANCH) - git -C $(CPYTHON_PATH) pull --ff-only - (cd $(CPYTHON_PATH)/Doc; sphinx-build -Q -b gettext -D gettext_compact=0 . ../pot) - find $(CPYTHON_PATH)/pot/ -name '*.pot' |\ - while read -r POT; \ - do \ - PO="./$$(echo "$$POT" | sed "s#$(CPYTHON_PATH)/pot/##; s#\.pot\$$#.po#")"; \ - mkdir -p "$$(dirname "$$PO")"; \ - if [ -f "$$PO" ]; \ - then \ - msgmerge --backup=off --force-po -U "$$PO" "$$POT"; \ - else \ - msgcat -o "$$PO" "$$POT"; \ - fi \ - done - rm -fr $(CPYTHON_PATH)/pot/ - sed -i 's|^#: .*Doc/|#: |' *.po */*.po - powrap -m - @printf "\n%s %s\n" "Replace CPYTHON_CURRENT_COMMIT in Makefile by: " $(shell git -C $(CPYTHON_PATH) rev-parse HEAD) - @printf 'To add, you can use:\n git status -s | grep "^ M .*\.po" | cut -d" " -f3 | while read -r file; do if [ $$(git diff "$$file" | wc -l) -gt 13 ]; then git add "$$file"; fi ; done\n' +verifs: spell .PHONY: clean clean: @echo "Cleaning *.mo and $(POSPELL_TMP_DIR)" - rm -fr $(POSPELL_TMP_DIR) + rm -rf $(POSPELL_TMP_DIR) find -name '*.mo' -delete + @echo "Cleaning build directory" + $(MAKE) -C venv/cpython/Doc/ clean \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 75db2f5d2..06b487ebc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,4 @@ poutils tqdm -sphinx==4.5.0 -blurb -sphinx-lint==0.6.7 -python-docs-theme>=2022.1 +sphinx-lint pre-commit From a9eebda9026a5be80434656014a360f2dd8c131f Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 04:30:16 +0300 Subject: [PATCH 02/30] test if it can catch --- license.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/license.po b/license.po index fa3bfe07d..48272e42d 100644 --- a/license.po +++ b/license.po @@ -449,7 +449,7 @@ msgid "" "The :mod:`pyexpat` extension is built using an included copy of the expat " "sources unless the build is configured ``--with-system-expat``::" msgstr "" -":mod:`pyexpat` uzantısı, derleme ``--with-system-expat`` şeklinde " +":mod:`pyexpat` uzantısı, derleme `!--with-system-expat`` şeklinde " "yapılandırılmadığı sürece, expat kaynaklarının dahil edildiği bir kopya " "kullanılarak oluşturulur::" From 3c71b88b6328b090ea1a3b5d45c192ac0cbe6a01 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 04:37:21 +0300 Subject: [PATCH 03/30] fix --- license.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/license.po b/license.po index 48272e42d..fa3bfe07d 100644 --- a/license.po +++ b/license.po @@ -449,7 +449,7 @@ msgid "" "The :mod:`pyexpat` extension is built using an included copy of the expat " "sources unless the build is configured ``--with-system-expat``::" msgstr "" -":mod:`pyexpat` uzantısı, derleme `!--with-system-expat`` şeklinde " +":mod:`pyexpat` uzantısı, derleme ``--with-system-expat`` şeklinde " "yapılandırılmadığı sürece, expat kaynaklarının dahil edildiği bir kopya " "kullanılarak oluşturulur::" From 1fbbbef8bb6e245ac0c031e7501842a959cded84 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 04:42:53 +0300 Subject: [PATCH 04/30] Update CI --- .github/problem-matchers/pospell.json | 15 ---- .github/workflows/build.yml | 121 ++++++++++++++++++-------- .github/workflows/build_alt.yml | 96 -------------------- 3 files changed, 85 insertions(+), 147 deletions(-) delete mode 100644 .github/problem-matchers/pospell.json delete mode 100644 .github/workflows/build_alt.yml diff --git a/.github/problem-matchers/pospell.json b/.github/problem-matchers/pospell.json deleted file mode 100644 index 765c1c6e9..000000000 --- a/.github/problem-matchers/pospell.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "problemMatcher": [ - { - "owner": "pospell", - "pattern": [ - { - "regexp": "^(.*):(\\d+):(.*)$", - "file": 1, - "line": 2, - "message": 3 - } - ] - } - ] -} \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a963c8ad..5142ec6d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,40 +1,89 @@ -# name: Build +name: Tests -# on: -# push: -# branches: -# - "**" -# pull_request: +on: + push: + branches: + - '*.*' + pull_request: + branches: + - '*.*' -# env: -# CPYTHON_BRANCH: "3.10" -# LANGUAGE: "tr" +jobs: + checks: + strategy: + matrix: + tool: + - name: sphinx-lint + package: sphinx-lint + command: 'sphinx-lint --enable default-role --ignore .git' + - name: SLine length + command: 'awk ''{if (length($0) > 80 && length(gensub(/[^ ]/, "", "g")) > 1) {print FILENAME ":" FNR, "line too long:", $0; ERRORS+=1}} END {if (ERRORS>0) {exit 1}}'' $CHANGED_PO_FILES' -# jobs: -# test: -# name: Build -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v3 -# - name: Set Up Python ${{ env.CPYTHON_BRANCH }} -# uses: actions/setup-python@v4 -# with: -# python-version: "${{ env.CPYTHON_BRANCH }}" -# - name: Get CPython -# run: | -# git clone https://github.com/python/cpython.git ../cpython --branch=${{ env.CPYTHON_BRANCH }} - -# - name: Install dependencies -# run: | -# sudo apt update -# sudo apt install -y gettext -# python -m pip install -r requirements.txt -# python -m pip install -r ../cpython/Doc/requirements.txt - -# - name: Sphinx lint -# run: | -# sphinx-lint *.po */*.po + name: ${{ matrix.tool.name }} (${{ matrix.tool.package }}) + runs-on: ubuntu-latest + steps: + - uses: lots0logs/gh-action-get-changed-files@2.1.4 + id: changed_files + with: + token: ${{ secrets.GITHUB_TOKEN }} + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Install ${{ matrix.tool.package }} + run: | + if [ -n "${{ matrix.tool.apt_dependencies }}" ]; then + sudo apt-get update && sudo apt-get install -y ${{ matrix.tool.apt_dependencies }} + fi + if [ -n "${{ matrix.tool.package }}" ]; then + python -m pip install --upgrade pip setuptools wheel + python -m pip install ${{ matrix.tool.package }} + fi + - name: Run ${{ matrix.tool.package }} + env: + ADDED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.added), ' ') }} + MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }} + run: | + CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$'; true) + if [ -n "$CHANGED_PO_FILES" ] + then + echo "Running on:" $CHANGED_PO_FILES + ${{ matrix.tool.command }} + else + echo "No changed po files, nothing to check." + fi -# - name: Build docs -# run: | -# make + sphinx: + name: 'Generate docs (sphinx)' + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@v3 + - uses: actions/cache@v3 + with: + path: '~/cpython/' + key: '1' + - uses: actions/cache@v3 + with: + path: ~/.cache/pip + key: '1' + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - name: Clone cpython + run: | + if [ ! -d ~/cpython ]; then + git clone https://github.com/python/cpython ~/cpython/ + else + git -C ~/cpython fetch + fi + - name: Prepare build hierarchy + run: | + mkdir -p ~/locales/tr/LC_MESSAGES/ + cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ + git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + - name: Prepare venv + run: | + make -C $HOME/cpython/Doc clean-venv + make -C $HOME/cpython/Doc venv + - name: sphinx-build + run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html diff --git a/.github/workflows/build_alt.yml b/.github/workflows/build_alt.yml deleted file mode 100644 index 678363920..000000000 --- a/.github/workflows/build_alt.yml +++ /dev/null @@ -1,96 +0,0 @@ -name: Tests - -on: - push: - branches: - - '*.*' - pull_request: - branches: - - '*.*' - -jobs: - checks: - strategy: - matrix: - tool: - - name: sphinx-lint - package: sphinx-lint - command: 'sphinx-lint --enable default-role --ignore .git' - - name: Yazım - package: pospell - apt_dependencies: hunspell hunspell-tr - command: 'pospell -p dict -l tr_TR $CHANGED_PO_FILES' - - name: Satır uzunluğu - command: 'awk ''{if (length($0) > 80 && length(gensub(/[^ ]/, "", "g")) > 1) {print FILENAME ":" FNR, "line too long:", $0; ERRORS+=1}} END {if (ERRORS>0) {exit 1}}'' $CHANGED_PO_FILES' - - name: ${{ matrix.tool.name }} (${{ matrix.tool.package }}) - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Register problem matchers - run: echo "::add-matcher::.github/problem-matchers/pospell.json" - - uses: lots0logs/gh-action-get-changed-files@2.1.4 - id: changed_files - with: - token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - name: Install ${{ matrix.tool.package }} - run: | - if [ -n "${{ matrix.tool.apt_dependencies }}" ]; then - sudo apt-get update && sudo apt-get install -y ${{ matrix.tool.apt_dependencies }} - fi - if [ -n "${{ matrix.tool.package }}" ]; then - python -m pip install --upgrade pip setuptools wheel - python -m pip install ${{ matrix.tool.package }} - fi - - name: Run ${{ matrix.tool.package }} - env: - ADDED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.added), ' ') }} - MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }} - run: | - CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$'; true) - if [ -n "$CHANGED_PO_FILES" ] - then - echo "Running on:" $CHANGED_PO_FILES - ${{ matrix.tool.command }} - else - echo "No changed po files, nothing to check." - fi - - sphinx: - name: 'Generate docs (sphinx)' - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 - with: - path: '~/cpython/' - key: '1' - - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: '1' - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - name: Clone cpython - run: | - if [ ! -d ~/cpython ]; then - git clone https://github.com/python/cpython ~/cpython/ - else - git -C ~/cpython fetch - fi - - name: Prepare build hierarchy - run: | - mkdir -p ~/locales/tr/LC_MESSAGES/ - cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - - name: Prepare venv - run: | - make -C $HOME/cpython/Doc clean-venv - make -C $HOME/cpython/Doc venv - - name: sphinx-build - run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html \ No newline at end of file From 377606994288a4a1d2850a1490aa0e6728b75298 Mon Sep 17 00:00:00 2001 From: Ege Akman Date: Sun, 4 Dec 2022 04:43:48 +0300 Subject: [PATCH 05/30] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5142ec6d7..6002801da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: sphinx-lint package: sphinx-lint command: 'sphinx-lint --enable default-role --ignore .git' - - name: SLine length + - name: Line length command: 'awk ''{if (length($0) > 80 && length(gensub(/[^ ]/, "", "g")) > 1) {print FILENAME ":" FNR, "line too long:", $0; ERRORS+=1}} END {if (ERRORS>0) {exit 1}}'' $CHANGED_PO_FILES' name: ${{ matrix.tool.name }} (${{ matrix.tool.package }}) From 72fdcbe09086df5cebddb9f0117dd0a12dc4f38c Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 04:55:47 +0300 Subject: [PATCH 06/30] Try using newer version of sphinx --- .github/workflows/build.yml | 4 ++++ requirements.txt | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6002801da..bd194a810 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,5 +85,9 @@ jobs: run: | make -C $HOME/cpython/Doc clean-venv make -C $HOME/cpython/Doc venv + - name: Get latest stable sphinx + run: | + python -m pip install --upgrade pip setuptools wheel + python -m pip install sphinx - name: sphinx-build run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html diff --git a/requirements.txt b/requirements.txt index 06b487ebc..39e14eb9a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ poutils +sphinx tqdm sphinx-lint pre-commit From a4ebf5c615f501e30f59706dfa620a88a076d9c1 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 05:00:45 +0300 Subject: [PATCH 07/30] revert --- .github/workflows/build.yml | 4 ---- requirements.txt | 1 - 2 files changed, 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd194a810..6002801da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,9 +85,5 @@ jobs: run: | make -C $HOME/cpython/Doc clean-venv make -C $HOME/cpython/Doc venv - - name: Get latest stable sphinx - run: | - python -m pip install --upgrade pip setuptools wheel - python -m pip install sphinx - name: sphinx-build run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html diff --git a/requirements.txt b/requirements.txt index 39e14eb9a..06b487ebc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,4 @@ poutils -sphinx tqdm sphinx-lint pre-commit From 203f985a1c693977ce00d91e82c54574d05224fe Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 21:38:00 +0300 Subject: [PATCH 08/30] Upcate CI --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6002801da..87a50672a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -85,5 +85,6 @@ jobs: run: | make -C $HOME/cpython/Doc clean-venv make -C $HOME/cpython/Doc venv + ls ~/locales/tr/LC_MESSAGES/ - name: sphinx-build run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html From 934e9c00a9634be4676019fb2883b57f634132af Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 22:02:39 +0300 Subject: [PATCH 09/30] Upcate CI --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 87a50672a..667ad83fe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,11 +80,13 @@ jobs: run: | mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ + cd ~/locales/tr/LC_MESSAGES/ + find . -name \*.po -execdir sh -c 'msgfmt "$0" -o `basename $0 .po`.mo' '{}' \; git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + ls ~/locales/tr/LC_MESSAGES/ - name: Prepare venv run: | make -C $HOME/cpython/Doc clean-venv make -C $HOME/cpython/Doc venv - ls ~/locales/tr/LC_MESSAGES/ - name: sphinx-build run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html From 7b96c767e295204be1f14fd9382b3ed686459447 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 22:18:55 +0300 Subject: [PATCH 10/30] Upcate CI --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 667ad83fe..bcc1687ef 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,9 +81,9 @@ jobs: mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ cd ~/locales/tr/LC_MESSAGES/ - find . -name \*.po -execdir sh -c 'msgfmt "$0" -o `basename $0 .po`.mo' '{}' \; + #find . -name \*.po -execdir sh -c 'msgfmt "$0" -o `basename $0 .po`.mo' '{}' \; git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - ls ~/locales/tr/LC_MESSAGES/ + tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv run: | make -C $HOME/cpython/Doc clean-venv From 967d6bc4aa9871bca126085c3ccea3d44b22363f Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 22:59:23 +0300 Subject: [PATCH 11/30] Upcate CI --- .github/workflows/build.yml | 4 +++- merge.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bcc1687ef..6208ef4ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,8 +80,10 @@ jobs: run: | mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ + $cwd = pwd cd ~/locales/tr/LC_MESSAGES/ - #find . -name \*.po -execdir sh -c 'msgfmt "$0" -o `basename $0 .po`.mo' '{}' \; + find . -name '*.po' -execdir msgfmt -o {}.mo {} + cd $cwd git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv diff --git a/merge.py b/merge.py index 92f1a1ed4..08aa0dee8 100644 --- a/merge.py +++ b/merge.py @@ -22,7 +22,7 @@ def parse_args(): parser = argparse.ArgumentParser(description=__doc__) parser.add_argument( "--cpython_repo", - default=Path("../cpython"), + default=Path("venv/cpython"), type=Path, help="Use this given cpython clone.", ) From 5fcbe0a4f94b9120fc4761352fa91f6aeac24b5d Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 23:06:18 +0300 Subject: [PATCH 12/30] Upcate CI --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6208ef4ed..8b38e006a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,10 +80,9 @@ jobs: run: | mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - $cwd = pwd - cd ~/locales/tr/LC_MESSAGES/ - find . -name '*.po' -execdir msgfmt -o {}.mo {} - cd $cwd + pwd + # cd ~/locales/tr/LC_MESSAGES/ + # find . -name '*.po' -execdir msgfmt -o {}.mo {} \; git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv From 4c25617604a30142f8aa425a126755bf49c67eec Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 23:09:02 +0300 Subject: [PATCH 13/30] Upcate CI --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8b38e006a..0b35b32fb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -80,9 +80,9 @@ jobs: run: | mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - pwd - # cd ~/locales/tr/LC_MESSAGES/ - # find . -name '*.po' -execdir msgfmt -o {}.mo {} \; + cd ~/locales/tr/LC_MESSAGES/ + find . -name '*.po' -execdir msgfmt -o {}.mo {} \; + cd ~/work/python-docs-tr/python-docs-tr git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv From 5dae215ca2123926840eb7c04e518baf19be3604 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 23:13:09 +0300 Subject: [PATCH 14/30] Upcate CI --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0b35b32fb..06d44b8af 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,6 +78,7 @@ jobs: fi - name: Prepare build hierarchy run: | + sudo apt update && sudo apt install -y gettext mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ cd ~/locales/tr/LC_MESSAGES/ From c2a43fbb76cddd34c3fac25faa695a393d3229c7 Mon Sep 17 00:00:00 2001 From: egeakman Date: Sun, 4 Dec 2022 23:44:15 +0300 Subject: [PATCH 15/30] Upcate CI --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06d44b8af..d73022d6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,8 @@ jobs: mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ cd ~/locales/tr/LC_MESSAGES/ - find . -name '*.po' -execdir msgfmt -o {}.mo {} \; + find . -name "*.po" -execdir msgfmt {} -o {}.mo \; + find . -name "*.po.mo" -execdir bash -c 'mv "$1" "${1%.po.mo}.mo"' _ {} \; cd ~/work/python-docs-tr/python-docs-tr git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) tree -L 2 ~/locales/tr/LC_MESSAGES/ From 3afe852cf26a517459ea3cb7a6e0303f5e4152db Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 00:50:29 +0300 Subject: [PATCH 16/30] Upcate CI --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d73022d6e..3f4f0feb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,12 +81,12 @@ jobs: sudo apt update && sudo apt install -y gettext mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - cd ~/locales/tr/LC_MESSAGES/ - find . -name "*.po" -execdir msgfmt {} -o {}.mo \; - find . -name "*.po.mo" -execdir bash -c 'mv "$1" "${1%.po.mo}.mo"' _ {} \; - cd ~/work/python-docs-tr/python-docs-tr - git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - tree -L 2 ~/locales/tr/LC_MESSAGES/ + # cd ~/locales/tr/LC_MESSAGES/ + # find . -name "*.po" -execdir msgfmt {} -o {}.mo \; + # find . -name "*.po.mo" -execdir bash -c 'mv "$1" "${1%.po.mo}.mo"' _ {} \; + # cd ~/work/python-docs-tr/python-docs-tr + # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + # tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv run: | make -C $HOME/cpython/Doc clean-venv From 8bc458a8e81f570ee38a3079c6d7bd6dfabcfc45 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 00:59:04 +0300 Subject: [PATCH 17/30] Upcate CI --- .github/workflows/build.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3f4f0feb9..5736edd55 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -76,17 +76,12 @@ jobs: else git -C ~/cpython fetch fi + git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - name: Prepare build hierarchy run: | - sudo apt update && sudo apt install -y gettext mkdir -p ~/locales/tr/LC_MESSAGES/ cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - # cd ~/locales/tr/LC_MESSAGES/ - # find . -name "*.po" -execdir msgfmt {} -o {}.mo \; - # find . -name "*.po.mo" -execdir bash -c 'mv "$1" "${1%.po.mo}.mo"' _ {} \; - # cd ~/work/python-docs-tr/python-docs-tr # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - # tree -L 2 ~/locales/tr/LC_MESSAGES/ - name: Prepare venv run: | make -C $HOME/cpython/Doc clean-venv From 543b7390e3dbde0be3448911c91e052ba74420fd Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 01:08:42 +0300 Subject: [PATCH 18/30] Upcate CI --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5736edd55..9d26dcc1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -87,4 +87,6 @@ jobs: make -C $HOME/cpython/Doc clean-venv make -C $HOME/cpython/Doc venv - name: sphinx-build - run: make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html + run: | + git -C ~/cpython branch + make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html From 1043b8a00adf6f161a3ed45be2af32ac361cda2e Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:00:00 +0300 Subject: [PATCH 19/30] Make merge --- Makefile | 2 +- about.po | 4 +- bugs.po | 4 +- c-api/abstract.po | 4 +- c-api/allocation.po | 4 +- c-api/apiabiversion.po | 4 +- c-api/arg.po | 8 +- c-api/bool.po | 4 +- c-api/buffer.po | 4 +- c-api/bytearray.po | 4 +- c-api/bytes.po | 14 +- c-api/call.po | 15 +- c-api/capsule.po | 4 +- c-api/cell.po | 4 +- c-api/code.po | 4 +- c-api/codec.po | 4 +- c-api/complex.po | 4 +- c-api/concrete.po | 4 +- c-api/contextvars.po | 4 +- c-api/conversion.po | 4 +- c-api/coro.po | 4 +- c-api/datetime.po | 4 +- c-api/descriptor.po | 4 +- c-api/dict.po | 4 +- c-api/exceptions.po | 18 +- c-api/file.po | 4 +- c-api/float.po | 4 +- c-api/function.po | 4 +- c-api/gcsupport.po | 14 +- c-api/gen.po | 4 +- c-api/import.po | 4 +- c-api/index.po | 4 +- c-api/init.po | 4 +- c-api/init_config.po | 18 +- c-api/intro.po | 4 +- c-api/iter.po | 4 +- c-api/iterator.po | 4 +- c-api/list.po | 4 +- c-api/long.po | 4 +- c-api/mapping.po | 4 +- c-api/marshal.po | 4 +- c-api/memory.po | 10 +- c-api/memoryview.po | 4 +- c-api/method.po | 4 +- c-api/module.po | 4 +- c-api/none.po | 4 +- c-api/number.po | 4 +- c-api/objbuffer.po | 4 +- c-api/object.po | 4 +- c-api/objimpl.po | 4 +- c-api/refcounting.po | 4 +- c-api/reflection.po | 4 +- c-api/sequence.po | 4 +- c-api/set.po | 4 +- c-api/slice.po | 4 +- c-api/stable.po | 4 +- c-api/structures.po | 8 +- c-api/sys.po | 8 +- c-api/tuple.po | 4 +- c-api/type.po | 4 +- c-api/typehints.po | 4 +- c-api/typeobj.po | 4 +- c-api/unicode.po | 46 +- c-api/utilities.po | 4 +- c-api/veryhigh.po | 8 +- c-api/weakref.po | 4 +- contents.po | 4 +- copyright.po | 4 +- distributing/index.po | 8 +- distutils/_setuptools_disclaimer.po | 4 +- distutils/apiref.po | 13 +- distutils/builtdist.po | 16 +- distutils/commandref.po | 4 +- distutils/configfile.po | 4 +- distutils/examples.po | 4 +- distutils/extending.po | 4 +- distutils/index.po | 4 +- distutils/introduction.po | 4 +- distutils/packageindex.po | 4 +- distutils/setupscript.po | 4 +- distutils/sourcedist.po | 4 +- distutils/uploading.po | 4 +- extending/building.po | 4 +- extending/embedding.po | 4 +- extending/extending.po | 8 +- extending/index.po | 4 +- extending/newtypes.po | 4 +- extending/newtypes_tutorial.po | 4 +- extending/windows.po | 4 +- faq/design.po | 4 +- faq/extending.po | 22 +- faq/general.po | 4 +- faq/gui.po | 4 +- faq/index.po | 4 +- faq/installed.po | 4 +- faq/library.po | 8 +- faq/programming.po | 4 +- faq/windows.po | 4 +- glossary.po | 2628 +++++++++++++--------- howto/annotations.po | 4 +- howto/argparse.po | 4 +- howto/clinic.po | 24 +- howto/cporting.po | 4 +- howto/curses.po | 4 +- howto/descriptor.po | 8 +- howto/functional.po | 8 +- howto/index.po | 4 +- howto/instrumentation.po | 14 +- howto/ipaddress.po | 4 +- howto/logging-cookbook.po | 4 +- howto/logging.po | 4 +- howto/pyporting.po | 4 +- howto/regex.po | 48 +- howto/sockets.po | 12 +- howto/sorting.po | 4 +- howto/unicode.po | 4 +- howto/urllib2.po | 16 +- install/index.po | 37 +- installing/index.po | 4 +- library/2to3.po | 4 +- library/__future__.po | 4 +- library/__main__.po | 4 +- library/_thread.po | 4 +- library/abc.po | 4 +- library/aifc.po | 4 +- library/allos.po | 4 +- library/archiving.po | 4 +- library/argparse.po | 8 +- library/array.po | 4 +- library/ast.po | 12 +- library/asynchat.po | 4 +- library/asyncio-api-index.po | 4 +- library/asyncio-dev.po | 4 +- library/asyncio-eventloop.po | 751 ++++--- library/asyncio-exceptions.po | 4 +- library/asyncio-future.po | 4 +- library/asyncio-llapi-index.po | 4 +- library/asyncio-platforms.po | 4 +- library/asyncio-policy.po | 4 +- library/asyncio-protocol.po | 4 +- library/asyncio-queue.po | 4 +- library/asyncio-stream.po | 4 +- library/asyncio-subprocess.po | 4 +- library/asyncio-sync.po | 4 +- library/asyncio-task.po | 4 +- library/asyncio.po | 4 +- library/asyncore.po | 4 +- library/atexit.po | 4 +- library/audioop.po | 9 +- library/audit_events.po | 4 +- library/base64.po | 4 +- library/bdb.po | 4 +- library/binary.po | 4 +- library/binascii.po | 4 +- library/binhex.po | 4 +- library/bisect.po | 4 +- library/builtins.po | 4 +- library/bz2.po | 8 +- library/calendar.po | 4 +- library/cgi.po | 4 +- library/cgitb.po | 8 +- library/chunk.po | 4 +- library/cmath.po | 4 +- library/cmd.po | 8 +- library/code.po | 4 +- library/codecs.po | 22 +- library/codeop.po | 4 +- library/collections.abc.po | 4 +- library/collections.po | 4 +- library/colorsys.po | 4 +- library/compileall.po | 4 +- library/concurrency.po | 4 +- library/concurrent.futures.po | 4 +- library/concurrent.po | 4 +- library/configparser.po | 16 +- library/constants.po | 4 +- library/contextlib.po | 16 +- library/contextvars.po | 4 +- library/copy.po | 4 +- library/copyreg.po | 4 +- library/crypt.po | 12 +- library/crypto.po | 4 +- library/csv.po | 4 +- library/ctypes.po | 4 +- library/curses.ascii.po | 4 +- library/curses.panel.po | 4 +- library/curses.po | 4 +- library/custominterp.po | 4 +- library/dataclasses.po | 4 +- library/datatypes.po | 4 +- library/datetime.po | 13 +- library/dbm.po | 4 +- library/debug.po | 4 +- library/decimal.po | 10 +- library/development.po | 4 +- library/devmode.po | 4 +- library/dialog.po | 4 +- library/difflib.po | 8 +- library/dis.po | 4 +- library/distribution.po | 4 +- library/distutils.po | 4 +- library/doctest.po | 8 +- library/email.charset.po | 4 +- library/email.compat32-message.po | 7 +- library/email.contentmanager.po | 4 +- library/email.encoders.po | 4 +- library/email.errors.po | 4 +- library/email.examples.po | 4 +- library/email.generator.po | 4 +- library/email.header.po | 10 +- library/email.headerregistry.po | 8 +- library/email.iterators.po | 4 +- library/email.message.po | 4 +- library/email.mime.po | 4 +- library/email.parser.po | 4 +- library/email.po | 4 +- library/email.policy.po | 8 +- library/email.utils.po | 4 +- library/ensurepip.po | 4 +- library/enum.po | 8 +- library/errno.po | 4 +- library/exceptions.po | 14 +- library/faulthandler.po | 4 +- library/fcntl.po | 4 +- library/filecmp.po | 4 +- library/fileformats.po | 4 +- library/fileinput.po | 4 +- library/filesys.po | 4 +- library/fnmatch.po | 4 +- library/fractions.po | 4 +- library/frameworks.po | 4 +- library/ftplib.po | 4 +- library/functional.po | 4 +- library/functions.po | 49 +- library/functools.po | 14 +- library/gc.po | 4 +- library/getopt.po | 4 +- library/getpass.po | 4 +- library/gettext.po | 4 +- library/glob.po | 4 +- library/graphlib.po | 4 +- library/grp.po | 4 +- library/gzip.po | 4 +- library/hashlib.po | 12 +- library/heapq.po | 18 +- library/hmac.po | 4 +- library/html.entities.po | 4 +- library/html.parser.po | 8 +- library/html.po | 10 +- library/http.client.po | 4 +- library/http.cookiejar.po | 12 +- library/http.cookies.po | 4 +- library/http.po | 4 +- library/http.server.po | 8 +- library/i18n.po | 4 +- library/idle.po | 4 +- library/imaplib.po | 4 +- library/imghdr.po | 4 +- library/imp.po | 4 +- library/importlib.metadata.po | 4 +- library/importlib.po | 4 +- library/index.po | 4 +- library/inspect.po | 8 +- library/internet.po | 4 +- library/intro.po | 16 +- library/io.po | 12 +- library/ipaddress.po | 8 +- library/ipc.po | 4 +- library/itertools.po | 4 +- library/json.po | 4 +- library/keyword.po | 4 +- library/language.po | 4 +- library/linecache.po | 4 +- library/locale.po | 4 +- library/logging.config.po | 4 +- library/logging.handlers.po | 9 +- library/logging.po | 10 +- library/lzma.po | 16 +- library/mailbox.po | 48 +- library/mailcap.po | 4 +- library/markup.po | 4 +- library/marshal.po | 4 +- library/math.po | 4 +- library/mimetypes.po | 4 +- library/mm.po | 4 +- library/mmap.po | 4 +- library/modulefinder.po | 4 +- library/modules.po | 4 +- library/msilib.po | 4 +- library/msvcrt.po | 4 +- library/multiprocessing.po | 4 +- library/multiprocessing.shared_memory.po | 4 +- library/netdata.po | 4 +- library/netrc.po | 4 +- library/nis.po | 4 +- library/nntplib.po | 4 +- library/numbers.po | 4 +- library/numeric.po | 4 +- library/operator.po | 4 +- library/optparse.po | 68 +- library/os.path.po | 4 +- library/os.po | 51 +- library/ossaudiodev.po | 4 +- library/pathlib.po | 8 +- library/pdb.po | 12 +- library/persistence.po | 4 +- library/pickle.po | 8 +- library/pickletools.po | 4 +- library/pipes.po | 4 +- library/pkgutil.po | 10 +- library/platform.po | 4 +- library/plistlib.po | 8 +- library/poplib.po | 4 +- library/posix.po | 4 +- library/pprint.po | 4 +- library/profile.po | 4 +- library/pty.po | 4 +- library/pwd.po | 4 +- library/py_compile.po | 4 +- library/pyclbr.po | 4 +- library/pydoc.po | 4 +- library/pyexpat.po | 4 +- library/python.po | 4 +- library/queue.po | 4 +- library/quopri.po | 4 +- library/random.po | 4 +- library/re.po | 50 +- library/readline.po | 4 +- library/reprlib.po | 4 +- library/resource.po | 4 +- library/rlcompleter.po | 4 +- library/runpy.po | 4 +- library/sched.po | 4 +- library/secrets.po | 11 +- library/security_warnings.po | 4 +- library/select.po | 4 +- library/selectors.po | 4 +- library/shelve.po | 4 +- library/shlex.po | 12 +- library/shutil.po | 14 +- library/signal.po | 10 +- library/site.po | 10 +- library/smtpd.po | 8 +- library/smtplib.po | 10 +- library/sndhdr.po | 4 +- library/socket.po | 8 +- library/socketserver.po | 4 +- library/spwd.po | 4 +- library/sqlite3.po | 12 +- library/ssl.po | 18 +- library/stat.po | 4 +- library/statistics.po | 10 +- library/stdtypes.po | 104 +- library/string.po | 15 +- library/stringprep.po | 4 +- library/struct.po | 4 +- library/subprocess.po | 4 +- library/sunau.po | 4 +- library/superseded.po | 4 +- library/symtable.po | 4 +- library/sys.po | 4 +- library/sysconfig.po | 4 +- library/syslog.po | 4 +- library/tabnanny.po | 4 +- library/tarfile.po | 4 +- library/telnetlib.po | 4 +- library/tempfile.po | 4 +- library/termios.po | 4 +- library/test.po | 10 +- library/text.po | 4 +- library/textwrap.po | 4 +- library/threading.po | 4 +- library/time.po | 12 +- library/timeit.po | 4 +- library/tk.po | 4 +- library/tkinter.colorchooser.po | 4 +- library/tkinter.dnd.po | 4 +- library/tkinter.font.po | 4 +- library/tkinter.messagebox.po | 4 +- library/tkinter.po | 24 +- library/tkinter.scrolledtext.po | 4 +- library/tkinter.tix.po | 4 +- library/tkinter.ttk.po | 10 +- library/token.po | 4 +- library/tokenize.po | 4 +- library/trace.po | 4 +- library/traceback.po | 10 +- library/tracemalloc.po | 4 +- library/tty.po | 4 +- library/turtle.po | 11 +- library/types.po | 4 +- library/typing.po | 10 +- library/unicodedata.po | 4 +- library/unittest.mock-examples.po | 12 +- library/unittest.mock.po | 10 +- library/unittest.po | 21 +- library/unix.po | 4 +- library/urllib.error.po | 4 +- library/urllib.parse.po | 8 +- library/urllib.po | 4 +- library/urllib.request.po | 12 +- library/urllib.robotparser.po | 4 +- library/uu.po | 4 +- library/uuid.po | 4 +- library/venv.po | 22 +- library/warnings.po | 4 +- library/wave.po | 4 +- library/weakref.po | 4 +- library/webbrowser.po | 12 +- library/windows.po | 4 +- library/winreg.po | 8 +- library/winsound.po | 4 +- library/wsgiref.po | 18 +- library/xdrlib.po | 4 +- library/xml.dom.minidom.po | 4 +- library/xml.dom.po | 10 +- library/xml.dom.pulldom.po | 4 +- library/xml.etree.elementtree.po | 111 +- library/xml.po | 4 +- library/xml.sax.handler.po | 4 +- library/xml.sax.po | 4 +- library/xml.sax.reader.po | 4 +- library/xml.sax.utils.po | 4 +- library/xmlrpc.client.po | 8 +- library/xmlrpc.po | 4 +- library/xmlrpc.server.po | 4 +- library/zipapp.po | 4 +- library/zipfile.po | 4 +- library/zipimport.po | 4 +- library/zlib.po | 4 +- library/zoneinfo.po | 4 +- license.po | 4 +- reference/compound_stmts.po | 4 +- reference/datamodel.po | 52 +- reference/executionmodel.po | 4 +- reference/expressions.po | 8 +- reference/grammar.po | 4 +- reference/import.po | 4 +- reference/index.po | 4 +- reference/introduction.po | 4 +- reference/lexical_analysis.po | 8 +- reference/simple_stmts.po | 4 +- reference/toplevel_components.po | 4 +- sphinx.po | 4 +- tutorial/appendix.po | 8 +- tutorial/appetite.po | 4 +- tutorial/classes.po | 18 +- tutorial/controlflow.po | 36 +- tutorial/datastructures.po | 10 +- tutorial/errors.po | 13 +- tutorial/floatingpoint.po | 17 +- tutorial/index.po | 4 +- tutorial/inputoutput.po | 22 +- tutorial/interactive.po | 4 +- tutorial/interpreter.po | 4 +- tutorial/introduction.po | 20 +- tutorial/modules.po | 12 +- tutorial/stdlib.po | 4 +- tutorial/stdlib2.po | 29 +- tutorial/venv.po | 10 +- tutorial/whatnow.po | 4 +- using/cmdline.po | 8 +- using/configure.po | 4 +- using/editors.po | 4 +- using/index.po | 4 +- using/mac.po | 4 +- using/unix.po | 8 +- using/windows.po | 39 +- whatsnew/2.0.po | 17 +- whatsnew/2.1.po | 14 +- whatsnew/2.2.po | 24 +- whatsnew/2.3.po | 32 +- whatsnew/2.4.po | 8 +- whatsnew/2.5.po | 4 +- whatsnew/2.6.po | 26 +- whatsnew/2.7.po | 18 +- whatsnew/3.0.po | 10 +- whatsnew/3.1.po | 4 +- whatsnew/3.10.po | 8 +- whatsnew/3.2.po | 17 +- whatsnew/3.3.po | 12 +- whatsnew/3.4.po | 10 +- whatsnew/3.5.po | 38 +- whatsnew/3.6.po | 8 +- whatsnew/3.7.po | 8 +- whatsnew/3.8.po | 32 +- whatsnew/3.9.po | 4 +- whatsnew/index.po | 4 +- 488 files changed, 3753 insertions(+), 3308 deletions(-) diff --git a/Makefile b/Makefile index c87c98905..3d423414d 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ # from which we generated our po files. We use it here so when we # test build, we're building with the .rst files that generated our # .po files. -CPYTHON_CURRENT_COMMIT := b027dd78bbdb66f2995bb898af304e66e5508bf6 +CPYTHON_CURRENT_COMMIT := e699e5c20fc495952905597edfa82de0c1848f8c LANGUAGE := tr BRANCH := 3.10 diff --git a/about.po b/about.po index 3df5e835a..127d27f44 100644 --- a/about.po +++ b/about.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2021-12-17 21:04+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/bugs.po b/bugs.po index 2cc37d93e..015ec6920 100644 --- a/bugs.po +++ b/bugs.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2021-12-17 22:58+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/abstract.po b/c-api/abstract.po index 8a591bb4f..2182528d6 100644 --- a/c-api/abstract.po +++ b/c-api/abstract.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/allocation.po b/c-api/allocation.po index c4c284186..1b7e30394 100644 --- a/c-api/allocation.po +++ b/c-api/allocation.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/apiabiversion.po b/c-api/apiabiversion.po index 0b5059e97..2e9996f4f 100644 --- a/c-api/apiabiversion.po +++ b/c-api/apiabiversion.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/arg.po b/c-api/arg.po index cbf0bb8f0..9e434c2f3 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -403,8 +403,8 @@ msgstr "" #: c-api/arg.rst:231 msgid "" "If *\\*buffer* points a ``NULL`` pointer, the function will allocate a " -"buffer of the needed size, copy the encoded data into this buffer and set " -"*\\*buffer* to reference the newly allocated storage. The caller is " +"buffer of the needed size, copy the encoded data into this buffer and set *" +"\\*buffer* to reference the newly allocated storage. The caller is " "responsible for calling :c:func:`PyMem_Free` to free the allocated buffer " "after usage." msgstr "" diff --git a/c-api/bool.po b/c-api/bool.po index 70fe6a9c4..7dc37dd69 100644 --- a/c-api/bool.po +++ b/c-api/bool.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/buffer.po b/c-api/buffer.po index 996a1940a..a7051b581 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/bytearray.po b/c-api/bytearray.po index 0e8c3a1ec..f579194de 100644 --- a/c-api/bytearray.po +++ b/c-api/bytearray.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/bytes.po b/c-api/bytes.po index 8c4c4cb20..cf430c2b5 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -214,9 +214,9 @@ msgstr "" #: c-api/bytes.rst:102 msgid "" -"The hex representation of a C pointer. Mostly equivalent to " -"``printf(\"%p\")`` except that it is guaranteed to start with the literal " -"``0x`` regardless of what the platform's ``printf`` yields." +"The hex representation of a C pointer. Mostly equivalent to ``printf(\"%p" +"\")`` except that it is guaranteed to start with the literal ``0x`` " +"regardless of what the platform's ``printf`` yields." msgstr "" #: c-api/bytes.rst:111 @@ -320,7 +320,7 @@ msgid "" "address of an existing bytes object as an lvalue (it may be written into), " "and the new size desired. On success, *\\*bytes* holds the resized bytes " "object and ``0`` is returned; the address in *\\*bytes* may differ from its " -"input value. If the reallocation fails, the original bytes object at " -"*\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` " +"input value. If the reallocation fails, the original bytes object at *" +"\\*bytes* is deallocated, *\\*bytes* is set to ``NULL``, :exc:`MemoryError` " "is set, and ``-1`` is returned." msgstr "" diff --git a/c-api/call.po b/c-api/call.po index 9d38554af..b59b48edd 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -277,7 +277,8 @@ msgstr "" msgid ":c:func:`PyObject_Call`" msgstr "" -#: c-api/call.rst:193 c-api/call.rst:197 c-api/call.rst:203 c-api/call.rst:213 +#: c-api/call.rst:193 c-api/call.rst:197 c-api/call.rst:203 +#: c-api/call.rst:213 msgid "``PyObject *``" msgstr "" @@ -293,8 +294,8 @@ msgstr "" msgid ":c:func:`PyObject_CallNoArgs`" msgstr "" -#: c-api/call.rst:195 c-api/call.rst:199 c-api/call.rst:203 c-api/call.rst:207 -#: c-api/call.rst:209 +#: c-api/call.rst:195 c-api/call.rst:199 c-api/call.rst:203 +#: c-api/call.rst:207 c-api/call.rst:209 msgid "---" msgstr "" @@ -386,8 +387,8 @@ msgid "" "no named arguments are needed, *kwargs* can be *NULL*." msgstr "" -#: c-api/call.rst:239 c-api/call.rst:261 c-api/call.rst:293 c-api/call.rst:326 -#: c-api/call.rst:347 c-api/call.rst:394 +#: c-api/call.rst:239 c-api/call.rst:261 c-api/call.rst:293 +#: c-api/call.rst:326 c-api/call.rst:347 c-api/call.rst:394 msgid "" "Return the result of the call on success, or raise an exception and return " "*NULL* on failure." diff --git a/c-api/capsule.po b/c-api/capsule.po index c540ca22c..0f955195e 100644 --- a/c-api/capsule.po +++ b/c-api/capsule.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/cell.po b/c-api/cell.po index 2b9635d04..7eac86eda 100644 --- a/c-api/cell.po +++ b/c-api/cell.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/code.po b/c-api/code.po index 2351e7495..dac2c9c05 100644 --- a/c-api/code.po +++ b/c-api/code.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/codec.po b/c-api/codec.po index 071abd458..8f79e6ba9 100644 --- a/c-api/codec.po +++ b/c-api/codec.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/complex.po b/c-api/complex.po index 68d9c9873..c092893e7 100644 --- a/c-api/complex.po +++ b/c-api/complex.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/concrete.po b/c-api/concrete.po index 58f56de1b..5a61fa33e 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/contextvars.po b/c-api/contextvars.po index adefa3a26..7570a9d0f 100644 --- a/c-api/contextvars.po +++ b/c-api/contextvars.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/conversion.po b/c-api/conversion.po index 99d788184..bc27ef17a 100644 --- a/c-api/conversion.po +++ b/c-api/conversion.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/coro.po b/c-api/coro.po index 3f9997a27..95ed89510 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/datetime.po b/c-api/datetime.po index e6cf2f27b..48a933d65 100644 --- a/c-api/datetime.po +++ b/c-api/datetime.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/descriptor.po b/c-api/descriptor.po index b999593c6..2a12dbac0 100644 --- a/c-api/descriptor.po +++ b/c-api/descriptor.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/dict.po b/c-api/dict.po index adb08f523..ef6fe134c 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index d2661ddae..acb19e365 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -230,7 +230,8 @@ msgid "" "returns ``NULL``." msgstr "" -#: c-api/exceptions.rst:208 c-api/exceptions.rst:225 c-api/exceptions.rst:243 +#: c-api/exceptions.rst:208 c-api/exceptions.rst:225 +#: c-api/exceptions.rst:243 msgid ":ref:`Availability `: Windows." msgstr "" @@ -746,8 +747,8 @@ msgstr "" #: c-api/exceptions.rst:715 msgid "" -"Get the *start* attribute of the given exception object and place it into " -"*\\*start*. *start* must not be ``NULL``. Return ``0`` on success, ``-1`` " +"Get the *start* attribute of the given exception object and place it into *" +"\\*start*. *start* must not be ``NULL``. Return ``0`` on success, ``-1`` " "on failure." msgstr "" @@ -759,8 +760,8 @@ msgstr "" #: c-api/exceptions.rst:730 msgid "" -"Get the *end* attribute of the given exception object and place it into " -"*\\*end*. *end* must not be ``NULL``. Return ``0`` on success, ``-1`` on " +"Get the *end* attribute of the given exception object and place it into *" +"\\*end*. *end* must not be ``NULL``. Return ``0`` on success, ``-1`` on " "failure." msgstr "" @@ -903,7 +904,8 @@ msgstr "" msgid ":exc:`BaseException`" msgstr "" -#: c-api/exceptions.rst:894 c-api/exceptions.rst:942 c-api/exceptions.rst:954 +#: c-api/exceptions.rst:894 c-api/exceptions.rst:942 +#: c-api/exceptions.rst:954 msgid "[1]_" msgstr "" diff --git a/c-api/file.po b/c-api/file.po index 8d4bd3de0..e0f534d5c 100644 --- a/c-api/file.po +++ b/c-api/file.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/float.po b/c-api/float.po index b500b3e1b..10ea9a3cc 100644 --- a/c-api/float.po +++ b/c-api/float.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/function.po b/c-api/function.po index a5ab7a700..0cc337886 100644 --- a/c-api/function.po +++ b/c-api/function.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/gcsupport.po b/c-api/gcsupport.po index 43f2b9f6e..57477b07d 100644 --- a/c-api/gcsupport.po +++ b/c-api/gcsupport.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -23,11 +23,11 @@ msgstr "" #: c-api/gcsupport.rst:8 msgid "" "Python's support for detecting and collecting garbage which involves " -"circular references requires support from object types which are " -"\"containers\" for other objects which may also be containers. Types which " -"do not store references to other objects, or which only store references to " -"atomic types (such as numbers or strings), do not need to provide any " -"explicit support for garbage collection." +"circular references requires support from object types which are \"containers" +"\" for other objects which may also be containers. Types which do not store " +"references to other objects, or which only store references to atomic types " +"(such as numbers or strings), do not need to provide any explicit support " +"for garbage collection." msgstr "" #: c-api/gcsupport.rst:15 diff --git a/c-api/gen.po b/c-api/gen.po index cddfa6fb0..b43989bec 100644 --- a/c-api/gen.po +++ b/c-api/gen.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/import.po b/c-api/import.po index d33806208..d99804394 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/index.po b/c-api/index.po index a219a1856..39a83edda 100644 --- a/c-api/index.po +++ b/c-api/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/init.po b/c-api/init.po index 1e20910f5..5c6a6a76b 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/init_config.po b/c-api/init_config.po index 163b073b3..69a43757e 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1065,8 +1065,8 @@ msgstr "" #: c-api/init_config.rst:835 msgid "" "Default: value of the ``PLATLIBDIR`` macro which is set by the :option:" -"`configure --with-platlibdir option <--with-platlibdir>` (default: " -"``\"lib\"``)." +"`configure --with-platlibdir option <--with-platlibdir>` (default: ``\"lib" +"\"``)." msgstr "" #: c-api/init_config.rst:845 @@ -1330,8 +1330,8 @@ msgstr "" #: c-api/init_config.rst:1062 msgid "" "Encoding and encoding errors of :data:`sys.stdin`, :data:`sys.stdout` and :" -"data:`sys.stderr` (but :data:`sys.stderr` always uses " -"``\"backslashreplace\"`` error handler)." +"data:`sys.stderr` (but :data:`sys.stderr` always uses ``\"backslashreplace" +"\"`` error handler)." msgstr "" #: c-api/init_config.rst:1066 @@ -1635,9 +1635,9 @@ msgstr "" #: c-api/init_config.rst:1336 msgid "" -"(Windows only) Application paths in the registry under " -"\"Software\\Python\\PythonCore\\X.Y\\PythonPath\" of HKEY_CURRENT_USER and " -"HKEY_LOCAL_MACHINE (where X.Y is the Python version)." +"(Windows only) Application paths in the registry under \"Software\\Python" +"\\PythonCore\\X.Y\\PythonPath\" of HKEY_CURRENT_USER and HKEY_LOCAL_MACHINE " +"(where X.Y is the Python version)." msgstr "" #: c-api/init_config.rst:1340 diff --git a/c-api/intro.po b/c-api/intro.po index 6dd0c941a..3eac229c8 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/iter.po b/c-api/iter.po index 84419d54c..d0186553a 100644 --- a/c-api/iter.po +++ b/c-api/iter.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/iterator.po b/c-api/iterator.po index 917c922c4..29d8d15bc 100644 --- a/c-api/iterator.po +++ b/c-api/iterator.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/list.po b/c-api/list.po index 47d9dfba9..945965474 100644 --- a/c-api/list.po +++ b/c-api/list.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/long.po b/c-api/long.po index 264ac8ab6..ec8f8b63e 100644 --- a/c-api/long.po +++ b/c-api/long.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/mapping.po b/c-api/mapping.po index b75d9a259..efc132dcf 100644 --- a/c-api/mapping.po +++ b/c-api/mapping.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/marshal.po b/c-api/marshal.po index cef3ca9b0..32feb403a 100644 --- a/c-api/marshal.po +++ b/c-api/marshal.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/memory.po b/c-api/memory.po index 1245af8b6..9e564e8b5 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -788,9 +788,9 @@ msgid "" "Let *S* = ``sizeof(size_t)``. ``2*S`` bytes are added at each end of each " "block of *N* bytes requested. The memory layout is like so, where p " "represents the address returned by a malloc-like or realloc-like function " -"(``p[i:j]`` means the slice of bytes from ``*(p+i)`` inclusive up to " -"``*(p+j)`` exclusive; note that the treatment of negative indices differs " -"from a Python slice):" +"(``p[i:j]`` means the slice of bytes from ``*(p+i)`` inclusive up to ``*(p" +"+j)`` exclusive; note that the treatment of negative indices differs from a " +"Python slice):" msgstr "" #: c-api/memory.rst:553 diff --git a/c-api/memoryview.po b/c-api/memoryview.po index f9311df69..7948ad126 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/method.po b/c-api/method.po index d03fdd1af..a29e424f5 100644 --- a/c-api/method.po +++ b/c-api/method.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/module.po b/c-api/module.po index f07704b31..8c3aa2150 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/none.po b/c-api/none.po index d16d061d1..6751d3d76 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/number.po b/c-api/number.po index 50f40b923..2eef9e796 100644 --- a/c-api/number.po +++ b/c-api/number.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/objbuffer.po b/c-api/objbuffer.po index 15df1c4b4..c9ef3e81f 100644 --- a/c-api/objbuffer.po +++ b/c-api/objbuffer.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/object.po b/c-api/object.po index a047abd94..4b776fff1 100644 --- a/c-api/object.po +++ b/c-api/object.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/objimpl.po b/c-api/objimpl.po index dde6f109a..d01710de6 100644 --- a/c-api/objimpl.po +++ b/c-api/objimpl.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index 409d40e00..824c5049c 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/reflection.po b/c-api/reflection.po index a7ddae9d2..82e4fa7fa 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/sequence.po b/c-api/sequence.po index ad7dc29f1..b418ea943 100644 --- a/c-api/sequence.po +++ b/c-api/sequence.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/set.po b/c-api/set.po index d332f424d..d78401481 100644 --- a/c-api/set.po +++ b/c-api/set.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/slice.po b/c-api/slice.po index 582c21ec0..2cb51ca94 100644 --- a/c-api/slice.po +++ b/c-api/slice.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/stable.po b/c-api/stable.po index c45da9653..434517312 100644 --- a/c-api/stable.po +++ b/c-api/stable.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/structures.po b/c-api/structures.po index 027357fb2..cae5db622 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -230,8 +230,8 @@ msgstr "" msgid ":attr:`ml_name`" msgstr "" -#: c-api/structures.rst:249 c-api/structures.rst:410 c-api/structures.rst:493 -#: c-api/structures.rst:501 +#: c-api/structures.rst:249 c-api/structures.rst:410 +#: c-api/structures.rst:493 c-api/structures.rst:501 msgid "const char \\*" msgstr "" diff --git a/c-api/sys.po b/c-api/sys.po index dba8880b8..2ead95ee6 100644 --- a/c-api/sys.po +++ b/c-api/sys.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -149,8 +149,8 @@ msgstr "" msgid "" "Decode a byte string from the :term:`filesystem encoding and error handler`. " "If the error handler is :ref:`surrogateescape error handler " -"`, undecodable bytes are decoded as characters in range " -"U+DC80..U+DCFF; and if a byte sequence can be decoded as a surrogate " +"`, undecodable bytes are decoded as characters in range U" +"+DC80..U+DCFF; and if a byte sequence can be decoded as a surrogate " "character, the bytes are escaped using the surrogateescape error handler " "instead of decoding them." msgstr "" diff --git a/c-api/tuple.po b/c-api/tuple.po index 62cebd3b9..f0fa29494 100644 --- a/c-api/tuple.po +++ b/c-api/tuple.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/type.po b/c-api/type.po index f8fdb24ef..c2fff1a3d 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/typehints.po b/c-api/typehints.po index 17858fa95..7c84b83b9 100644 --- a/c-api/typehints.po +++ b/c-api/typehints.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/typeobj.po b/c-api/typeobj.po index 96dd8f673..79151c1ee 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/unicode.po b/c-api/unicode.po index 667bec57b..fe43c2036 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -200,9 +200,9 @@ msgstr "" #: c-api/unicode.rst:194 msgid "" -"Read a character from a Unicode object *o*, which must be in the " -"\"canonical\" representation. This is less efficient than :c:func:" -"`PyUnicode_READ` if you do multiple consecutive reads." +"Read a character from a Unicode object *o*, which must be in the \"canonical" +"\" representation. This is less efficient than :c:func:`PyUnicode_READ` if " +"you do multiple consecutive reads." msgstr "" #: c-api/unicode.rst:203 @@ -649,9 +649,9 @@ msgstr "" #: c-api/unicode.rst:511 msgid "" -"The hex representation of a C pointer. Mostly equivalent to " -"``printf(\"%p\")`` except that it is guaranteed to start with the literal " -"``0x`` regardless of what the platform's ``printf`` yields." +"The hex representation of a C pointer. Mostly equivalent to ``printf(\"%p" +"\")`` except that it is guaranteed to start with the literal ``0x`` " +"regardless of what the platform's ``printf`` yields." msgstr "" #: c-api/unicode.rst:519 @@ -736,8 +736,8 @@ msgstr "" #: c-api/unicode.rst:557 msgid "" -"Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, " -"``\"%U\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added." +"Support width and precision formatter for ``\"%s\"``, ``\"%A\"``, ``\"%U" +"\"``, ``\"%V\"``, ``\"%S\"``, ``\"%R\"`` added." msgstr "" #: c-api/unicode.rst:564 @@ -784,8 +784,8 @@ msgstr "" #: c-api/unicode.rst:610 msgid "" -"Fill a string with a character: write *fill_char* into ``unicode[start:" -"start+length]``." +"Fill a string with a character: write *fill_char* into ``unicode[start:start" +"+length]``." msgstr "" #: c-api/unicode.rst:613 @@ -955,9 +955,9 @@ msgstr "" #: c-api/unicode.rst:778 msgid "" "Decode a string from UTF-8 on Android and VxWorks, or from the current " -"locale encoding on other platforms. The supported error handlers are " -"``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The decoder uses " -"``\"strict\"`` error handler if *errors* is ``NULL``. *str* must end with a " +"locale encoding on other platforms. The supported error handlers are ``" +"\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The decoder uses ``" +"\"strict\"`` error handler if *errors* is ``NULL``. *str* must end with a " "null character but cannot contain embedded null characters." msgstr "" @@ -993,10 +993,10 @@ msgstr "" #: c-api/unicode.rst:814 msgid "" "Encode a Unicode object to UTF-8 on Android and VxWorks, or to the current " -"locale encoding on other platforms. The supported error handlers are " -"``\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The encoder uses " -"``\"strict\"`` error handler if *errors* is ``NULL``. Return a :class:" -"`bytes` object. *unicode* cannot contain embedded null characters." +"locale encoding on other platforms. The supported error handlers are ``" +"\"strict\"`` and ``\"surrogateescape\"`` (:pep:`383`). The encoder uses ``" +"\"strict\"`` error handler if *errors* is ``NULL``. Return a :class:`bytes` " +"object. *unicode* cannot contain embedded null characters." msgstr "" #: c-api/unicode.rst:821 @@ -1150,8 +1150,8 @@ msgstr "" #: c-api/unicode.rst:975 msgid "" "Returns a buffer allocated by :c:func:`PyMem_Alloc` (use :c:func:" -"`PyMem_Free` to free it) on success. On error, returns ``NULL`` and " -"*\\*size* is undefined. Raises a :exc:`MemoryError` if memory allocation is " +"`PyMem_Free` to free it) on success. On error, returns ``NULL`` and *" +"\\*size* is undefined. Raises a :exc:`MemoryError` if memory allocation is " "failed." msgstr "" @@ -1965,8 +1965,8 @@ msgstr "" msgid "" "Intern the argument *\\*string* in place. The argument must be the address " "of a pointer variable pointing to a Python Unicode string object. If there " -"is an existing interned string that is the same as *\\*string*, it sets " -"*\\*string* to it (decrementing the reference count of the old string object " +"is an existing interned string that is the same as *\\*string*, it sets *" +"\\*string* to it (decrementing the reference count of the old string object " "and incrementing the reference count of the interned string object), " "otherwise it leaves *\\*string* alone and interns it (incrementing its " "reference count). (Clarification: even though there is a lot of talk about " diff --git a/c-api/utilities.po b/c-api/utilities.po index 4d2a519fe..85911cc47 100644 --- a/c-api/utilities.po +++ b/c-api/utilities.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/c-api/veryhigh.po b/c-api/veryhigh.po index c74e03fe1..e494d99cd 100644 --- a/c-api/veryhigh.po +++ b/c-api/veryhigh.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -145,8 +145,8 @@ msgstr "" #: c-api/veryhigh.rst:122 msgid "" -"On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, " -"\"rb\")``). Otherwise, Python may not handle script file with LF line ending " +"On Windows, *fp* should be opened as binary mode (e.g. ``fopen(filename, \"rb" +"\")``). Otherwise, Python may not handle script file with LF line ending " "correctly." msgstr "" diff --git a/c-api/weakref.po b/c-api/weakref.po index 8b679d3e0..ff21bf6b9 100644 --- a/c-api/weakref.po +++ b/c-api/weakref.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/contents.po b/contents.po index 59e2ae97f..1a8de15a3 100644 --- a/contents.po +++ b/contents.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-03-01 14:04+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/copyright.po b/copyright.po index 890133bb7..84a95e767 100644 --- a/copyright.po +++ b/copyright.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-03-01 14:04+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distributing/index.po b/distributing/index.po index 1aef8c422..ac353c8ef 100644 --- a/distributing/index.po +++ b/distributing/index.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-10 21:47+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -133,8 +133,8 @@ msgstr "" "ölçüde) bir eklentidir. Değiştirilmemiş :mod:`distutils` araçlarına göre en " "dikkate değer ilavesi, diğer paketlere bağımlılıkları bildirme yeteneğiydi. " "Şu anda, çok çeşitli Python sürümlerinde daha yeni paketleme standartları " -"için tutarlı destek sunan :mod:`distutils` 'e daha düzenli olarak güncellenen " -"bir alternatif olarak önerilmektedir." +"için tutarlı destek sunan :mod:`distutils` 'e daha düzenli olarak " +"güncellenen bir alternatif olarak önerilmektedir." #: distributing/index.rst:57 msgid "" diff --git a/distutils/_setuptools_disclaimer.po b/distutils/_setuptools_disclaimer.po index 205c16dde..c341ae7d5 100644 --- a/distutils/_setuptools_disclaimer.po +++ b/distutils/_setuptools_disclaimer.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/apiref.po b/distutils/apiref.po index 5bc821548..437097244 100644 --- a/distutils/apiref.po +++ b/distutils/apiref.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -173,8 +173,9 @@ msgid "A list of Python packages that distutils will manipulate" msgstr "" #: distutils/apiref.rst:80 distutils/apiref.rst:100 distutils/apiref.rst:207 -#: distutils/apiref.rst:226 distutils/apiref.rst:234 distutils/apiref.rst:247 -#: distutils/apiref.rst:267 distutils/apiref.rst:275 +#: distutils/apiref.rst:226 distutils/apiref.rst:234 +#: distutils/apiref.rst:247 distutils/apiref.rst:267 +#: distutils/apiref.rst:275 msgid "a list of strings" msgstr "" @@ -1040,8 +1041,8 @@ msgid "" "component). These are on top of the system default and those supplied to :" "meth:`add_library_dir` and/or :meth:`set_library_dirs`. " "*runtime_library_dirs* is a list of directories that will be embedded into " -"the shared library and used to search for other shared libraries that " -"\\*it\\* depends on at run-time. (This may only be relevant on Unix.)" +"the shared library and used to search for other shared libraries that \\*it" +"\\* depends on at run-time. (This may only be relevant on Unix.)" msgstr "" #: distutils/apiref.rst:675 diff --git a/distutils/builtdist.po b/distutils/builtdist.po index cb492711e..a4d1937fe 100644 --- a/distutils/builtdist.po +++ b/distutils/builtdist.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -263,12 +263,12 @@ msgstr "" msgid "" "You don't have to use the :command:`bdist` command with the :option:`!--" "formats` option; you can also use the command that directly implements the " -"format you're interested in. Some of these :command:`bdist` \"sub-" -"commands\" actually generate several similar formats; for instance, the :" -"command:`bdist_dumb` command generates all the \"dumb\" archive formats " -"(``tar``, ``gztar``, ``bztar``, ``xztar``, ``ztar``, and ``zip``), and :" -"command:`bdist_rpm` generates both binary and source RPMs. The :command:" -"`bdist` sub-commands, and the formats generated by each, are:" +"format you're interested in. Some of these :command:`bdist` \"sub-commands" +"\" actually generate several similar formats; for instance, the :command:" +"`bdist_dumb` command generates all the \"dumb\" archive formats (``tar``, " +"``gztar``, ``bztar``, ``xztar``, ``ztar``, and ``zip``), and :command:" +"`bdist_rpm` generates both binary and source RPMs. The :command:`bdist` sub-" +"commands, and the formats generated by each, are:" msgstr "" #: distutils/builtdist.rst:135 diff --git a/distutils/commandref.po b/distutils/commandref.po index 0dc58c9c8..908fadd5d 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/configfile.po b/distutils/configfile.po index 99e6dc3c1..059c9a355 100644 --- a/distutils/configfile.po +++ b/distutils/configfile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/examples.po b/distutils/examples.po index b452aa70c..e37bd9082 100644 --- a/distutils/examples.po +++ b/distutils/examples.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/extending.po b/distutils/extending.po index 91264fc06..02278daf0 100644 --- a/distutils/extending.po +++ b/distutils/extending.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/index.po b/distutils/index.po index ad3ee3714..46ac3cefd 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-11 18:02+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/introduction.po b/distutils/introduction.po index 837d5c437..ecd0018f3 100644 --- a/distutils/introduction.po +++ b/distutils/introduction.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/packageindex.po b/distutils/packageindex.po index 6c7eef84f..b1d7b689a 100644 --- a/distutils/packageindex.po +++ b/distutils/packageindex.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/setupscript.po b/distutils/setupscript.po index 3875b58c3..88c01d490 100644 --- a/distutils/setupscript.po +++ b/distutils/setupscript.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/sourcedist.po b/distutils/sourcedist.po index f98cc19ec..c030b1a32 100644 --- a/distutils/sourcedist.po +++ b/distutils/sourcedist.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/distutils/uploading.po b/distutils/uploading.po index cc3d217ad..2d2f4d3ef 100644 --- a/distutils/uploading.po +++ b/distutils/uploading.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/building.po b/extending/building.po index 3761ce368..7af89657d 100644 --- a/extending/building.po +++ b/extending/building.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/embedding.po b/extending/embedding.po index b41821fb5..cd9b69e02 100644 --- a/extending/embedding.po +++ b/extending/embedding.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-03-03 01:11+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/extending.po b/extending/extending.po index 4f53329d6..2d9f16bd8 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -103,8 +103,8 @@ msgstr "" msgid "" "All user-visible symbols defined by :file:`Python.h` have a prefix of ``Py`` " "or ``PY``, except those defined in standard header files. For convenience, " -"and since they are used extensively by the Python interpreter, ``\"Python." -"h\"`` includes a few standard header files: ````, ````, " +"and since they are used extensively by the Python interpreter, ``\"Python.h" +"\"`` includes a few standard header files: ````, ````, " "````, and ````. If the latter header file does not exist " "on your system, it declares the functions :c:func:`malloc`, :c:func:`free` " "and :c:func:`realloc` directly." diff --git a/extending/index.po b/extending/index.po index 9a3a14bce..d3970587f 100644 --- a/extending/index.po +++ b/extending/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/newtypes.po b/extending/newtypes.po index 1ec60c82b..8586a07fb 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index 3af9d9da4..20025c45c 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/extending/windows.po b/extending/windows.po index b5f2db13d..f07a54d58 100644 --- a/extending/windows.po +++ b/extending/windows.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/design.po b/faq/design.po index 2f2ae5b39..77f48f6ca 100644 --- a/faq/design.po +++ b/faq/design.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/extending.po b/faq/extending.po index 607b7e0e2..b7dc97cd8 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-07-01 14:35+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -49,16 +49,16 @@ msgstr "C++'da kendi fonksiyonlarımı oluşturabilir miyim?" #: faq/extending.rst:28 msgid "" -"Yes, using the C compatibility features found in C++. Place ``extern " -"\"C\" { ... }`` around the Python include files and put ``extern \"C\"`` " -"before each function that is going to be called by the Python interpreter. " -"Global or static C++ objects with constructors are probably not a good idea." +"Yes, using the C compatibility features found in C++. Place ``extern \"C" +"\" { ... }`` around the Python include files and put ``extern \"C\"`` before " +"each function that is going to be called by the Python interpreter. Global " +"or static C++ objects with constructors are probably not a good idea." msgstr "" -"Evet, C++'da bulunan C uyumluluk özelliklerini kullanarak. ``extern " -"\"C\" { ... }`` komutunu Python include dosyalarının etrafına yerleştirin ve " -"Python yorumlayıcısı tarafından çağrılacak her fonksiyonun önüne ``extern " -"\"C\"`` koyun. Yapıcıları olan global veya statik C++ nesneleri muhtemelen " -"iyi bir fikir değildir." +"Evet, C++'da bulunan C uyumluluk özelliklerini kullanarak. ``extern \"C" +"\" { ... }`` komutunu Python include dosyalarının etrafına yerleştirin ve " +"Python yorumlayıcısı tarafından çağrılacak her fonksiyonun önüne ``extern \"C" +"\"`` koyun. Yapıcıları olan global veya statik C++ nesneleri muhtemelen iyi " +"bir fikir değildir." #: faq/extending.rst:37 msgid "Writing C is hard; are there any alternatives?" diff --git a/faq/general.po b/faq/general.po index c8eeeb976..7496fdc6c 100644 --- a/faq/general.po +++ b/faq/general.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/gui.po b/faq/gui.po index 1ba1bc424..bcdd79209 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-14 10:18+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/index.po b/faq/index.po index 9e6ae9860..1f42ff586 100644 --- a/faq/index.po +++ b/faq/index.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-06-18 00:53+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/installed.po b/faq/installed.po index b183d02df..f89760ce7 100644 --- a/faq/installed.po +++ b/faq/installed.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-06-18 01:11+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/library.po b/faq/library.po index f65ac6811..eff18cd13 100644 --- a/faq/library.po +++ b/faq/library.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -516,8 +516,8 @@ msgid "" "The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note " "that on Windows NTFS volumes, it does not copy `alternate data streams " "`_ nor " -"`resource forks `__ on macOS " -"HFS+ volumes, though both are now rarely used. It also doesn't copy file " +"`resource forks `__ on macOS HFS" +"+ volumes, though both are now rarely used. It also doesn't copy file " "permissions and metadata, though using :func:`shutil.copy2` instead will " "preserve most (though not all) of it." msgstr "" diff --git a/faq/programming.po b/faq/programming.po index a61c90890..733bed6d5 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/faq/windows.po b/faq/windows.po index e52f039f6..bd68d7287 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/glossary.po b/glossary.po index c931477da..4992e60d3 100644 --- a/glossary.po +++ b/glossary.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-12-02 23:24+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -27,11 +27,11 @@ msgstr "``>>>``" #: glossary.rst:12 #, fuzzy msgid "" -"The default Python prompt of the interactive shell. Often seen for code examples which can be executed " -"interactively in the interpreter." +"The default Python prompt of the interactive shell. Often seen for code " +"examples which can be executed interactively in the interpreter." msgstr "" -"Etkileşimli kabuğun varsayılan Python istemi. Genellikle yorumlayıcıda etkileşimli olarak yürütülebilen kod " -"örnekleri için görülür." +"Etkileşimli kabuğun varsayılan Python istemi. Genellikle yorumlayıcıda " +"etkileşimli olarak yürütülebilen kod örnekleri için görülür." #: glossary.rst:14 msgid "``...``" @@ -43,13 +43,15 @@ msgstr "Şunlara başvurabilir:" #: glossary.rst:18 msgid "" -"The default Python prompt of the interactive shell when entering the code for an indented code block, when " -"within a pair of matching left and right delimiters (parentheses, square brackets, curly braces or triple " -"quotes), or after specifying a decorator." +"The default Python prompt of the interactive shell when entering the code " +"for an indented code block, when within a pair of matching left and right " +"delimiters (parentheses, square brackets, curly braces or triple quotes), or " +"after specifying a decorator." msgstr "" -"Girintili bir kod bloğu için kod girerken, eşleşen bir çift sol ve sağ sınırlayıcı (parantez, köşeli " -"parantez, kaşlı ayraç veya üçlü tırnak) içindeyken veya bir dekoratör belirttikten sonra etkileşimli " -"kabuğun varsayılan Python istemi." +"Girintili bir kod bloğu için kod girerken, eşleşen bir çift sol ve sağ " +"sınırlayıcı (parantez, köşeli parantez, kaşlı ayraç veya üçlü tırnak) " +"içindeyken veya bir dekoratör belirttikten sonra etkileşimli kabuğun " +"varsayılan Python istemi." #: glossary.rst:23 msgid "The :const:`Ellipsis` built-in constant." @@ -61,19 +63,22 @@ msgstr "2to3" #: glossary.rst:26 msgid "" -"A tool that tries to convert Python 2.x code to Python 3.x code by handling most of the incompatibilities " -"which can be detected by parsing the source and traversing the parse tree." +"A tool that tries to convert Python 2.x code to Python 3.x code by handling " +"most of the incompatibilities which can be detected by parsing the source " +"and traversing the parse tree." msgstr "" -"Kaynağı ayrıştırarak ve ayrıştırma ağacında gezinerek tespit edilebilecek uyumsuzlukların çoğunu işleyerek " -"Python 2.x kodunu Python 3.x koduna dönüştürmeye çalışan bir araç." +"Kaynağı ayrıştırarak ve ayrıştırma ağacında gezinerek tespit edilebilecek " +"uyumsuzlukların çoğunu işleyerek Python 2.x kodunu Python 3.x koduna " +"dönüştürmeye çalışan bir araç." #: glossary.rst:30 msgid "" -"2to3 is available in the standard library as :mod:`lib2to3`; a standalone entry point is provided as :file:" -"`Tools/scripts/2to3`. See :ref:`2to3-reference`." +"2to3 is available in the standard library as :mod:`lib2to3`; a standalone " +"entry point is provided as :file:`Tools/scripts/2to3`. See :ref:`2to3-" +"reference`." msgstr "" -"2to3, standart kitaplıkta :mod:`lib2to3'; bağımsız bir giriş noktası şu şekilde sağlanır:file:`Tools/" -"scripts/2to3`. Bakınız :ref:`2to3-reference`." +"2to3, standart kitaplıkta :mod:`lib2to3'; bağımsız bir giriş noktası şu " +"şekilde sağlanır:file:`Tools/scripts/2to3`. Bakınız :ref:`2to3-reference`." #: glossary.rst:33 msgid "abstract base class" @@ -81,21 +86,27 @@ msgstr "soyut temel sınıf" #: glossary.rst:35 msgid "" -"Abstract base classes complement :term:`duck-typing` by providing a way to define interfaces when other " -"techniques like :func:`hasattr` would be clumsy or subtly wrong (for example with :ref:`magic methods " -"`). ABCs introduce virtual subclasses, which are classes that don't inherit from a class " -"but are still recognized by :func:`isinstance` and :func:`issubclass`; see the :mod:`abc` module " -"documentation. Python comes with many built-in ABCs for data structures (in the :mod:`collections.abc` " -"module), numbers (in the :mod:`numbers` module), streams (in the :mod:`io` module), import finders and " -"loaders (in the :mod:`importlib.abc` module). You can create your own ABCs with the :mod:`abc` module." -msgstr "" -"Soyut temel sınıflar :term:`duck-typing` 'i, :func:`hasattr` gibi diğer teknikler beceriksiz veya tamamen " -"yanlış olduğunda arayüzleri tanımlamanın bir yolunu sağlayarak tamamlar (örneğin :ref:`sihirli yöntemlerle " -"`). ABC'ler, bir sınıftan miras almayan ancak yine de :func:`isinstance` ve :func:" -"`issubclass` tarafından tanınan sınıflar olan sanal alt sınıfları tanıtır; :mod:`abc` modül belgelerine " -"bakın. Python comes with many built-in ABCs for data structures (in the :mod:`collections.abc` module), " -"numbers (in the :mod:`numbers` module), streams (in the :mod:`io` module), import finders and loaders (in " -"the :mod:`importlib.abc` module). :mod:`abc` modülü ile kendi ABC'lerinizi oluşturabilirsiniz." +"Abstract base classes complement :term:`duck-typing` by providing a way to " +"define interfaces when other techniques like :func:`hasattr` would be clumsy " +"or subtly wrong (for example with :ref:`magic methods `). " +"ABCs introduce virtual subclasses, which are classes that don't inherit from " +"a class but are still recognized by :func:`isinstance` and :func:" +"`issubclass`; see the :mod:`abc` module documentation. Python comes with " +"many built-in ABCs for data structures (in the :mod:`collections.abc` " +"module), numbers (in the :mod:`numbers` module), streams (in the :mod:`io` " +"module), import finders and loaders (in the :mod:`importlib.abc` module). " +"You can create your own ABCs with the :mod:`abc` module." +msgstr "" +"Soyut temel sınıflar :term:`duck-typing` 'i, :func:`hasattr` gibi diğer " +"teknikler beceriksiz veya tamamen yanlış olduğunda arayüzleri tanımlamanın " +"bir yolunu sağlayarak tamamlar (örneğin :ref:`sihirli yöntemlerle `). ABC'ler, bir sınıftan miras almayan ancak yine de :func:" +"`isinstance` ve :func:`issubclass` tarafından tanınan sınıflar olan sanal " +"alt sınıfları tanıtır; :mod:`abc` modül belgelerine bakın. Python comes " +"with many built-in ABCs for data structures (in the :mod:`collections.abc` " +"module), numbers (in the :mod:`numbers` module), streams (in the :mod:`io` " +"module), import finders and loaders (in the :mod:`importlib.abc` module). :" +"mod:`abc` modülü ile kendi ABC'lerinizi oluşturabilirsiniz." #: glossary.rst:46 msgid "annotation" @@ -104,29 +115,34 @@ msgstr "dipnot" #: glossary.rst:48 #, fuzzy msgid "" -"A label associated with a variable, a class attribute or a function parameter or return value, used by " -"convention as a :term:`type hint`." +"A label associated with a variable, a class attribute or a function " +"parameter or return value, used by convention as a :term:`type hint`." msgstr "" -"Bir değişkenle, bir sınıf niteliğiyle veya bir işlev parametresiyle veya bir dönüş değeriyle " -"ilişkilendirilen, gelenek tarafından :term:`tür ipucu ` olarak kullanılan bir etiket." +"Bir değişkenle, bir sınıf niteliğiyle veya bir işlev parametresiyle veya bir " +"dönüş değeriyle ilişkilendirilen, gelenek tarafından :term:`tür ipucu ` olarak kullanılan bir etiket." #: glossary.rst:52 msgid "" -"Annotations of local variables cannot be accessed at runtime, but annotations of global variables, class " -"attributes, and functions are stored in the :attr:`__annotations__` special attribute of modules, classes, " -"and functions, respectively." +"Annotations of local variables cannot be accessed at runtime, but " +"annotations of global variables, class attributes, and functions are stored " +"in the :attr:`__annotations__` special attribute of modules, classes, and " +"functions, respectively." msgstr "" -"Yerel değişkenlerin açıklamalarına çalışma zamanında erişilemez, ancak global değişkenlerin, sınıf " -"niteliklerinin ve işlevlerin açıklamaları, sırasıyla modüllerin, sınıfların ve işlevlerin :attr:" -"`__annotations__` özel özelliğinde saklanır." +"Yerel değişkenlerin açıklamalarına çalışma zamanında erişilemez, ancak " +"global değişkenlerin, sınıf niteliklerinin ve işlevlerin açıklamaları, " +"sırasıyla modüllerin, sınıfların ve işlevlerin :attr:`__annotations__` özel " +"özelliğinde saklanır." #: glossary.rst:58 msgid "" -"See :term:`variable annotation`, :term:`function annotation`, :pep:`484` and :pep:`526`, which describe " -"this functionality. Also see :ref:`annotations-howto` for best practices on working with annotations." +"See :term:`variable annotation`, :term:`function annotation`, :pep:`484` " +"and :pep:`526`, which describe this functionality. Also see :ref:" +"`annotations-howto` for best practices on working with annotations." msgstr "" -"Bu işlevi açıklayan :term:`variable annotation`, :term:`function annotation`, :pep:`484` ve :pep:`526`'e " -"bakın. Ek açıklamalarla çalışmaya ilişkin en iyi uygulamalar için ayrıca bkz. :ref:`annotations-howto`." +"Bu işlevi açıklayan :term:`variable annotation`, :term:`function " +"annotation`, :pep:`484` ve :pep:`526`'e bakın. Ek açıklamalarla çalışmaya " +"ilişkin en iyi uygulamalar için ayrıca bkz. :ref:`annotations-howto`." #: glossary.rst:62 msgid "argument" @@ -135,49 +151,59 @@ msgstr "argüman" #: glossary.rst:64 #, fuzzy msgid "" -"A value passed to a :term:`function` (or :term:`method`) when calling the function. There are two kinds of " -"argument:" +"A value passed to a :term:`function` (or :term:`method`) when calling the " +"function. There are two kinds of argument:" msgstr "" -"İşlev çağrılırken bir :term:`function` 'a (veya :term:`method`) geçirilen bir değer, İki tür argüman vardır:" +"İşlev çağrılırken bir :term:`function` 'a (veya :term:`method`) geçirilen " +"bir değer, İki tür argüman vardır:" #: glossary.rst:67 msgid "" -":dfn:`keyword argument`: an argument preceded by an identifier (e.g. ``name=``) in a function call or " -"passed as a value in a dictionary preceded by ``**``. For example, ``3`` and ``5`` are both keyword " -"arguments in the following calls to :func:`complex`::" +":dfn:`keyword argument`: an argument preceded by an identifier (e.g. " +"``name=``) in a function call or passed as a value in a dictionary preceded " +"by ``**``. For example, ``3`` and ``5`` are both keyword arguments in the " +"following calls to :func:`complex`::" msgstr "" -":dfn:`keyword argument`: bir işlev çağrısında bir tanımlayıcının (ör. ``ad=``) önüne geçen veya bir " -"sözlükte ``**`` ile başlayan bir değer olarak geçirilen bir argüman. Örneğin, ``3`` ve ``5``, aşağıdaki :" -"func:`complex`: çağrılarında anahtar kelimenin argümanleridir:" +":dfn:`keyword argument`: bir işlev çağrısında bir tanımlayıcının (ör. " +"``ad=``) önüne geçen veya bir sözlükte ``**`` ile başlayan bir değer olarak " +"geçirilen bir argüman. Örneğin, ``3`` ve ``5``, aşağıdaki :func:`complex`: " +"çağrılarında anahtar kelimenin argümanleridir:" #: glossary.rst:75 msgid "" -":dfn:`positional argument`: an argument that is not a keyword argument. Positional arguments can appear at " -"the beginning of an argument list and/or be passed as elements of an :term:`iterable` preceded by ``*``. " -"For example, ``3`` and ``5`` are both positional arguments in the following calls::" +":dfn:`positional argument`: an argument that is not a keyword argument. " +"Positional arguments can appear at the beginning of an argument list and/or " +"be passed as elements of an :term:`iterable` preceded by ``*``. For example, " +"``3`` and ``5`` are both positional arguments in the following calls::" msgstr "" -":dfn:`positional argument`: anahtar kelime argümanı olmayan bir argüman. Konumsal argümanler, bir " -"argüman listesinin başında görünebilir ve/veya ``*`` ile başlayan bir :term:`iterable` öğesinin " -"öğeleri olarak iletilebilir. Örneğin, ``3`` ve ``5``, aşağıdaki çağrılarda konumsal argümanlerdir:" +":dfn:`positional argument`: anahtar kelime argümanı olmayan bir argüman. " +"Konumsal argümanler, bir argüman listesinin başında görünebilir ve/veya " +"``*`` ile başlayan bir :term:`iterable` öğesinin öğeleri olarak " +"iletilebilir. Örneğin, ``3`` ve ``5``, aşağıdaki çağrılarda konumsal " +"argümanlerdir:" #: glossary.rst:84 msgid "" -"Arguments are assigned to the named local variables in a function body. See the :ref:`calls` section for " -"the rules governing this assignment. Syntactically, any expression can be used to represent an argument; " -"the evaluated value is assigned to the local variable." +"Arguments are assigned to the named local variables in a function body. See " +"the :ref:`calls` section for the rules governing this assignment. " +"Syntactically, any expression can be used to represent an argument; the " +"evaluated value is assigned to the local variable." msgstr "" -"argümanler, bir işlev gövdesindeki adlandırılmış yerel değişkenlere atanır. Bu atamayı yöneten " -"kurallar için :ref:`calls` bölümüne bakın. Sözdizimsel olarak, bir argümanı temsil etmek için herhangi bir " -"ifade kullanılabilir; değerlendirilen değer yerel değişkene atanır." +"argümanler, bir işlev gövdesindeki adlandırılmış yerel değişkenlere atanır. " +"Bu atamayı yöneten kurallar için :ref:`calls` bölümüne bakın. Sözdizimsel " +"olarak, bir argümanı temsil etmek için herhangi bir ifade kullanılabilir; " +"değerlendirilen değer yerel değişkene atanır." #: glossary.rst:89 #, fuzzy msgid "" -"See also the :term:`parameter` glossary entry, the FAQ question on :ref:`the difference between arguments " -"and parameters `, and :pep:`362`." +"See also the :term:`parameter` glossary entry, the FAQ question on :ref:`the " +"difference between arguments and parameters `, " +"and :pep:`362`." msgstr "" -"Ayrıca :term:`parameter` sözlüğü girişine, :ref:`argümanlar ve parametreler arasındaki fark ` hakkındaki SSS sorusuna ve :pep:`362` 'ye bakın." +"Ayrıca :term:`parameter` sözlüğü girişine, :ref:`argümanlar ve parametreler " +"arasındaki fark ` hakkındaki SSS sorusuna ve :pep:" +"`362` 'ye bakın." #: glossary.rst:92 msgid "asynchronous context manager" @@ -185,11 +211,13 @@ msgstr "asenkron bağlam yöneticisi" #: glossary.rst:94 msgid "" -"An object which controls the environment seen in an :keyword:`async with` statement by defining :meth:" -"`__aenter__` and :meth:`__aexit__` methods. Introduced by :pep:`492`." +"An object which controls the environment seen in an :keyword:`async with` " +"statement by defining :meth:`__aenter__` and :meth:`__aexit__` methods. " +"Introduced by :pep:`492`." msgstr "" -":keyword:`async with` ifadesinde görülen ortamı :meth:`__aenter__` ve :meth:`__aexit__` yöntemlerini " -"tanımlayarak kontrol eden bir nesne. :pep:`492` de anlatıldı." +":keyword:`async with` ifadesinde görülen ortamı :meth:`__aenter__` ve :meth:" +"`__aexit__` yöntemlerini tanımlayarak kontrol eden bir nesne. :pep:`492` de " +"anlatıldı." #: glossary.rst:97 msgid "asynchronous generator" @@ -197,30 +225,34 @@ msgstr "asenkron jeneratör" #: glossary.rst:99 msgid "" -"A function which returns an :term:`asynchronous generator iterator`. It looks like a coroutine function " -"defined with :keyword:`async def` except that it contains :keyword:`yield` expressions for producing a " -"series of values usable in an :keyword:`async for` loop." +"A function which returns an :term:`asynchronous generator iterator`. It " +"looks like a coroutine function defined with :keyword:`async def` except " +"that it contains :keyword:`yield` expressions for producing a series of " +"values usable in an :keyword:`async for` loop." msgstr "" -":term:`asynchronous generator iterator` döndüren bir işlev. Bir :keyword:`async for` döngüsünde " -"kullanılabilen bir dizi değer üretmek için :keyword:`yield` ifadeleri içermesi dışında :keyword:`async def` " -"ile tanımlanmış bir eşyordam işlevine benziyor." +":term:`asynchronous generator iterator` döndüren bir işlev. Bir :keyword:" +"`async for` döngüsünde kullanılabilen bir dizi değer üretmek için :keyword:" +"`yield` ifadeleri içermesi dışında :keyword:`async def` ile tanımlanmış bir " +"eşyordam işlevine benziyor." #: glossary.rst:104 msgid "" -"Usually refers to an asynchronous generator function, but may refer to an *asynchronous generator iterator* " -"in some contexts. In cases where the intended meaning isn't clear, using the full terms avoids ambiguity." +"Usually refers to an asynchronous generator function, but may refer to an " +"*asynchronous generator iterator* in some contexts. In cases where the " +"intended meaning isn't clear, using the full terms avoids ambiguity." msgstr "" -"Genellikle bir asenkron üreteç işlevine atıfta bulunur, ancak bazı bağlamlarda bir *asynchronous generator " -"iterator* 'e karşılık gelebilir. Amaçlanan anlamın net olmadığı durumlarda, tam terimlerin kullanılması " +"Genellikle bir asenkron üreteç işlevine atıfta bulunur, ancak bazı " +"bağlamlarda bir *asynchronous generator iterator* 'e karşılık gelebilir. " +"Amaçlanan anlamın net olmadığı durumlarda, tam terimlerin kullanılması " "belirsizliği önler." #: glossary.rst:108 msgid "" -"An asynchronous generator function may contain :keyword:`await` expressions as well as :keyword:`async " -"for`, and :keyword:`async with` statements." +"An asynchronous generator function may contain :keyword:`await` expressions " +"as well as :keyword:`async for`, and :keyword:`async with` statements." msgstr "" -"Bir asenkron üretici fonksiyonu, :keyword:`await` ifadelerinin yanı sıra :keyword:`async for` ve :keyword:" -"`async with` ifadeleri içerebilir." +"Bir asenkron üretici fonksiyonu, :keyword:`await` ifadelerinin yanı sıra :" +"keyword:`async for` ve :keyword:`async with` ifadeleri içerebilir." #: glossary.rst:111 msgid "asynchronous generator iterator" @@ -228,29 +260,33 @@ msgstr "asenkron jeneratör yineleyici" #: glossary.rst:113 msgid "An object created by a :term:`asynchronous generator` function." -msgstr "Bir :term:`asynchronous generator` işlevi tarafından oluşturulan bir nesne." +msgstr "" +"Bir :term:`asynchronous generator` işlevi tarafından oluşturulan bir nesne." #: glossary.rst:115 msgid "" -"This is an :term:`asynchronous iterator` which when called using the :meth:`__anext__` method returns an " -"awaitable object which will execute the body of the asynchronous generator function until the next :keyword:" -"`yield` expression." +"This is an :term:`asynchronous iterator` which when called using the :meth:" +"`__anext__` method returns an awaitable object which will execute the body " +"of the asynchronous generator function until the next :keyword:`yield` " +"expression." msgstr "" -"Bu, :meth:`__anext__` yöntemi kullanılarak çağrıldığında, bir sonraki :keyword:`yield` ifadesine kadar " -"asynchronous generator işlevinin gövdesini yürütecek, beklenebilir bir nesne döndüren bir :term:" -"`asynchronous iterator`." +"Bu, :meth:`__anext__` yöntemi kullanılarak çağrıldığında, bir sonraki :" +"keyword:`yield` ifadesine kadar asynchronous generator işlevinin gövdesini " +"yürütecek, beklenebilir bir nesne döndüren bir :term:`asynchronous iterator`." #: glossary.rst:120 msgid "" -"Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including " -"local variables and pending try-statements). When the *asynchronous generator iterator* effectively " -"resumes with another awaitable returned by :meth:`__anext__`, it picks up where it left off. See :pep:" -"`492` and :pep:`525`." +"Each :keyword:`yield` temporarily suspends processing, remembering the " +"location execution state (including local variables and pending try-" +"statements). When the *asynchronous generator iterator* effectively resumes " +"with another awaitable returned by :meth:`__anext__`, it picks up where it " +"left off. See :pep:`492` and :pep:`525`." msgstr "" -"Her :keyword:`yield`, konum yürütme durumunu hatırlayarak (yerel değişkenler ve bekleyen try ifadeleri " -"dahil) işlemeyi geçici olarak askıya alır. *asynchronous generator iterator*, :meth:`__anext__` tarafından " -"döndürülen başka birbeklenebilir ile etkili bir şekilde devam ettiğinde, kaldığı yerden devam eder. Bkz. :" -"pep:`492` ve :pep:`525`." +"Her :keyword:`yield`, konum yürütme durumunu hatırlayarak (yerel değişkenler " +"ve bekleyen try ifadeleri dahil) işlemeyi geçici olarak askıya alır. " +"*asynchronous generator iterator*, :meth:`__anext__` tarafından döndürülen " +"başka birbeklenebilir ile etkili bir şekilde devam ettiğinde, kaldığı yerden " +"devam eder. Bkz. :pep:`492` ve :pep:`525`." #: glossary.rst:125 msgid "asynchronous iterable" @@ -258,11 +294,13 @@ msgstr "eşzamansız yinelenebilir" #: glossary.rst:127 msgid "" -"An object, that can be used in an :keyword:`async for` statement. Must return an :term:`asynchronous " -"iterator` from its :meth:`__aiter__` method. Introduced by :pep:`492`." +"An object, that can be used in an :keyword:`async for` statement. Must " +"return an :term:`asynchronous iterator` from its :meth:`__aiter__` method. " +"Introduced by :pep:`492`." msgstr "" -"Bir :keyword:`async for` ifadesinde kullanılabilen bir nesne. :meth:`__aiter__` yönteminden bir :term:" -"`asynchronous iterator` döndürmelidir. :pep:`492` 'de tanıtıldı." +"Bir :keyword:`async for` ifadesinde kullanılabilen bir nesne. :meth:" +"`__aiter__` yönteminden bir :term:`asynchronous iterator` döndürmelidir. :" +"pep:`492` 'de tanıtıldı." #: glossary.rst:130 msgid "asynchronous iterator" @@ -271,15 +309,17 @@ msgstr "asenkron yineleyici" #: glossary.rst:132 #, fuzzy msgid "" -"An object that implements the :meth:`__aiter__` and :meth:`__anext__` methods. ``__anext__`` must return " -"an :term:`awaitable` object. :keyword:`async for` resolves the awaitables returned by an asynchronous " -"iterator's :meth:`__anext__` method until it raises a :exc:`StopAsyncIteration` exception. Introduced by :" -"pep:`492`." +"An object that implements the :meth:`__aiter__` and :meth:`__anext__` " +"methods. ``__anext__`` must return an :term:`awaitable` object. :keyword:" +"`async for` resolves the awaitables returned by an asynchronous iterator's :" +"meth:`__anext__` method until it raises a :exc:`StopAsyncIteration` " +"exception. Introduced by :pep:`492`." msgstr "" -":meth:`__aiter__` ve :meth:`__anext__` yöntemlerini uygulayan bir nesne. ``__anext__`` bir :term:" -"`awaitable` nesnesi döndürmelidir. :keyword:`async for`, bir asynchronous iterator ün :meth:`__anext__` " -"yöntemi tarafından döndürülen beklenebilirleri bir :exc:`StopAsyncIteration` istisnası oluşturana kadar " -"çözer." +":meth:`__aiter__` ve :meth:`__anext__` yöntemlerini uygulayan bir nesne. " +"``__anext__`` bir :term:`awaitable` nesnesi döndürmelidir. :keyword:`async " +"for`, bir asynchronous iterator ün :meth:`__anext__` yöntemi tarafından " +"döndürülen beklenebilirleri bir :exc:`StopAsyncIteration` istisnası " +"oluşturana kadar çözer." #: glossary.rst:137 msgid "attribute" @@ -288,21 +328,26 @@ msgstr "nitelik" #: glossary.rst:139 #, fuzzy msgid "" -"A value associated with an object which is usually referenced by name using dotted expressions. For " -"example, if an object *o* has an attribute *a* it would be referenced as *o.a*." +"A value associated with an object which is usually referenced by name using " +"dotted expressions. For example, if an object *o* has an attribute *a* it " +"would be referenced as *o.a*." msgstr "" -"Noktalı ifadeler kullanılarak adıyla başvurulan bir nesneyle ilişkili değer. Örneğin, *o* nesnesinin *a* " -"özniteliği varsa, bu nesneye *o.a* olarak başvurulur." +"Noktalı ifadeler kullanılarak adıyla başvurulan bir nesneyle ilişkili " +"değer. Örneğin, *o* nesnesinin *a* özniteliği varsa, bu nesneye *o.a* " +"olarak başvurulur." #: glossary.rst:144 msgid "" -"It is possible to give an object an attribute whose name is not an identifier as defined by :ref:" -"`identifiers`, for example using :func:`setattr`, if the object allows it. Such an attribute will not be " -"accessible using a dotted expression, and would instead need to be retrieved with :func:`getattr`." +"It is possible to give an object an attribute whose name is not an " +"identifier as defined by :ref:`identifiers`, for example using :func:" +"`setattr`, if the object allows it. Such an attribute will not be accessible " +"using a dotted expression, and would instead need to be retrieved with :func:" +"`getattr`." msgstr "" -"Bir nesneye, eğer nesne izin veriyorsa, örneğin :func:`setattr` kullanarak, adı :ref:`identifiers` " -"tarafından tanımlandığı gibi tanımlayıcı olmayan bir öznitelik vermek mümkündür. Böyle bir özniteliğe " -"noktalı bir ifade kullanılarak erişilemez ve bunun yerine :func:`getattr` ile alınması gerekir." +"Bir nesneye, eğer nesne izin veriyorsa, örneğin :func:`setattr` kullanarak, " +"adı :ref:`identifiers` tarafından tanımlandığı gibi tanımlayıcı olmayan bir " +"öznitelik vermek mümkündür. Böyle bir özniteliğe noktalı bir ifade " +"kullanılarak erişilemez ve bunun yerine :func:`getattr` ile alınması gerekir." #: glossary.rst:149 msgid "awaitable" @@ -310,11 +355,13 @@ msgstr "beklenebilir" #: glossary.rst:151 msgid "" -"An object that can be used in an :keyword:`await` expression. Can be a :term:`coroutine` or an object with " -"an :meth:`__await__` method. See also :pep:`492`." +"An object that can be used in an :keyword:`await` expression. Can be a :" +"term:`coroutine` or an object with an :meth:`__await__` method. See also :" +"pep:`492`." msgstr "" -":keyword:`await` ifadesinde kullanılabilen bir nesne. Bir :term:`coroutine` veya :meth:`__await__` " -"yöntemine sahip bir nesne olabilir. Ayrıca bakınız :pep:`492`." +":keyword:`await` ifadesinde kullanılabilen bir nesne. Bir :term:`coroutine` " +"veya :meth:`__await__` yöntemine sahip bir nesne olabilir. Ayrıca bakınız :" +"pep:`492`." #: glossary.rst:154 msgid "BDFL" @@ -322,10 +369,11 @@ msgstr "BDFL" #: glossary.rst:156 msgid "" -"Benevolent Dictator For Life, a.k.a. `Guido van Rossum `_, Python's creator." +"Benevolent Dictator For Life, a.k.a. `Guido van Rossum `_, Python's creator." msgstr "" -"Benevolent Dictator For Life, namı diğer `Guido van Rossum `_, Python'un " -"yaratıcısı." +"Benevolent Dictator For Life, namı diğer `Guido van Rossum `_, Python'un yaratıcısı." #: glossary.rst:158 msgid "binary file" @@ -333,18 +381,25 @@ msgstr "ikili dosya" #: glossary.rst:160 msgid "" -"A :term:`file object` able to read and write :term:`bytes-like objects `. Examples of " -"binary files are files opened in binary mode (``'rb'``, ``'wb'`` or ``'rb+'``), :data:`sys.stdin.buffer`, :" -"data:`sys.stdout.buffer`, and instances of :class:`io.BytesIO` and :class:`gzip.GzipFile`." +"A :term:`file object` able to read and write :term:`bytes-like objects " +"`. Examples of binary files are files opened in binary " +"mode (``'rb'``, ``'wb'`` or ``'rb+'``), :data:`sys.stdin.buffer`, :data:`sys." +"stdout.buffer`, and instances of :class:`io.BytesIO` and :class:`gzip." +"GzipFile`." msgstr "" -"Bir :term:`dosya nesnesi ` :term:`bayt benzeri nesneler ` okuyabilir ve " -"yazabilir. İkili dosya örnekleri, ikili modda açılan dosyalardır (``'rb'``, ``'wb'`` veya ``'rb+'``), :data:" -"`sys.stdin.buffer`, :data:`sys.stdout.buffer` ve :class:`io.BytesIO` ve :class:`gzip.GzipFile` örnekleri." +"Bir :term:`dosya nesnesi ` :term:`bayt benzeri nesneler ` okuyabilir ve yazabilir. İkili dosya örnekleri, ikili modda " +"açılan dosyalardır (``'rb'``, ``'wb'`` veya ``'rb+'``), :data:`sys.stdin." +"buffer`, :data:`sys.stdout.buffer` ve :class:`io.BytesIO` ve :class:`gzip." +"GzipFile` örnekleri." #: glossary.rst:167 -msgid "See also :term:`text file` for a file object able to read and write :class:`str` objects." +msgid "" +"See also :term:`text file` for a file object able to read and write :class:" +"`str` objects." msgstr "" -"Ayrıca :class:`str` nesnelerini okuyabilen ve yazabilen bir dosya nesnesi için :term:`text file` 'a bakın." +"Ayrıca :class:`str` nesnelerini okuyabilen ve yazabilen bir dosya nesnesi " +"için :term:`text file` 'a bakın." #: glossary.rst:169 #, fuzzy @@ -354,24 +409,29 @@ msgstr "ödünç alınan referans" #: glossary.rst:171 #, fuzzy msgid "" -"In Python's C API, a borrowed reference is a reference to an object. It does not modify the object " -"reference count. It becomes a dangling pointer if the object is destroyed. For example, a garbage " -"collection can remove the last :term:`strong reference` to the object and so destroy it." +"In Python's C API, a borrowed reference is a reference to an object. It does " +"not modify the object reference count. It becomes a dangling pointer if the " +"object is destroyed. For example, a garbage collection can remove the last :" +"term:`strong reference` to the object and so destroy it." msgstr "" -"Python'un C API'sinde borrowed reference, bir nesneye yapılan bir referanstır. Nesne referans sayısını " -"değiştirmez. Nesne yok edilirse sarkan bir işaretçi olur. Örneğin, bir çöp toplama, nesneye yapılan son :" -"term:`strong reference` kaldırabilir ve böylece onu yok edebilir." +"Python'un C API'sinde borrowed reference, bir nesneye yapılan bir " +"referanstır. Nesne referans sayısını değiştirmez. Nesne yok edilirse sarkan " +"bir işaretçi olur. Örneğin, bir çöp toplama, nesneye yapılan son :term:" +"`strong reference` kaldırabilir ve böylece onu yok edebilir." #: glossary.rst:176 msgid "" -"Calling :c:func:`Py_INCREF` on the :term:`borrowed reference` is recommended to convert it to a :term:" -"`strong reference` in-place, except when the object cannot be destroyed before the last usage of the " -"borrowed reference. The :c:func:`Py_NewRef` function can be used to create a new :term:`strong reference`." +"Calling :c:func:`Py_INCREF` on the :term:`borrowed reference` is recommended " +"to convert it to a :term:`strong reference` in-place, except when the object " +"cannot be destroyed before the last usage of the borrowed reference. The :c:" +"func:`Py_NewRef` function can be used to create a new :term:`strong " +"reference`." msgstr "" -":term:`borrowed reference` üzerinde :c:func:`Py_INCREF` çağırmak, nesnenin ödünç alınanın son kullanımından " -"önce yok edilemediği durumlar dışında, onu yerinde bir :term:`strong reference` 'a dönüştürmek için tavsiye " -"edilir. referans. :c:func:`Py_NewRef` işlevi, yeni bir :term:`strong reference` oluşturmak için " -"kullanılabilir." +":term:`borrowed reference` üzerinde :c:func:`Py_INCREF` çağırmak, nesnenin " +"ödünç alınanın son kullanımından önce yok edilemediği durumlar dışında, onu " +"yerinde bir :term:`strong reference` 'a dönüştürmek için tavsiye edilir. " +"referans. :c:func:`Py_NewRef` işlevi, yeni bir :term:`strong reference` " +"oluşturmak için kullanılabilir." #: glossary.rst:181 msgid "bytes-like object" @@ -379,29 +439,36 @@ msgstr "bayt benzeri nesne" #: glossary.rst:183 msgid "" -"An object that supports the :ref:`bufferobjects` and can export a C-:term:`contiguous` buffer. This " -"includes all :class:`bytes`, :class:`bytearray`, and :class:`array.array` objects, as well as many common :" -"class:`memoryview` objects. Bytes-like objects can be used for various operations that work with binary " -"data; these include compression, saving to a binary file, and sending over a socket." +"An object that supports the :ref:`bufferobjects` and can export a C-:term:" +"`contiguous` buffer. This includes all :class:`bytes`, :class:`bytearray`, " +"and :class:`array.array` objects, as well as many common :class:`memoryview` " +"objects. Bytes-like objects can be used for various operations that work " +"with binary data; these include compression, saving to a binary file, and " +"sending over a socket." msgstr "" -":ref:`bufferobjects` 'i destekleyen ve bir C-:term:`contiguous` arabelleğini dışa aktarabilen bir nesne. " -"Bu, tüm :class:`bytes`, :class:`bytearray` ve :class:`array.array` nesnelerinin yanı sıra birçok yaygın :" -"class:`memoryview` nesnesini içerir. Bayt benzeri nesneler, ikili verilerle çalışan çeşitli işlemler için " -"kullanılabilir; bunlara sıkıştırma, ikili dosyaya kaydetme ve bir soket üzerinden gönderme dahildir." +":ref:`bufferobjects` 'i destekleyen ve bir C-:term:`contiguous` arabelleğini " +"dışa aktarabilen bir nesne. Bu, tüm :class:`bytes`, :class:`bytearray` ve :" +"class:`array.array` nesnelerinin yanı sıra birçok yaygın :class:`memoryview` " +"nesnesini içerir. Bayt benzeri nesneler, ikili verilerle çalışan çeşitli " +"işlemler için kullanılabilir; bunlara sıkıştırma, ikili dosyaya kaydetme ve " +"bir soket üzerinden gönderme dahildir." #: glossary.rst:190 msgid "" -"Some operations need the binary data to be mutable. The documentation often refers to these as \"read-" -"write bytes-like objects\". Example mutable buffer objects include :class:`bytearray` and a :class:" -"`memoryview` of a :class:`bytearray`. Other operations require the binary data to be stored in immutable " -"objects (\"read-only bytes-like objects\"); examples of these include :class:`bytes` and a :class:" -"`memoryview` of a :class:`bytes` object." -msgstr "" -"Bazı işlemler, değişken olması için ikili verilere ihtiyaç duyar. Belgeler genellikle bunlara \"okuma-" -"yazma bayt benzeri nesneler\" olarak atıfta bulunur. Örnek değiştirilebilir arabellek nesneleri :class:" -"`bytearray` ve bir :class:`bytearray` :class:`memoryview` içerir. Diğer işlemler, ikili verilerin değişmez " -"nesnelerde (\"salt okunur bayt benzeri nesneler\") depolanmasını gerektirir; bunların örnekleri arasında :" -"class:`bytes` ve bir :class:`bytes` nesnesinin :class:`memoryview` bulunur." +"Some operations need the binary data to be mutable. The documentation often " +"refers to these as \"read-write bytes-like objects\". Example mutable " +"buffer objects include :class:`bytearray` and a :class:`memoryview` of a :" +"class:`bytearray`. Other operations require the binary data to be stored in " +"immutable objects (\"read-only bytes-like objects\"); examples of these " +"include :class:`bytes` and a :class:`memoryview` of a :class:`bytes` object." +msgstr "" +"Bazı işlemler, değişken olması için ikili verilere ihtiyaç duyar. Belgeler " +"genellikle bunlara \"okuma-yazma bayt benzeri nesneler\" olarak atıfta " +"bulunur. Örnek değiştirilebilir arabellek nesneleri :class:`bytearray` ve " +"bir :class:`bytearray` :class:`memoryview` içerir. Diğer işlemler, ikili " +"verilerin değişmez nesnelerde (\"salt okunur bayt benzeri nesneler\") " +"depolanmasını gerektirir; bunların örnekleri arasında :class:`bytes` ve bir :" +"class:`bytes` nesnesinin :class:`memoryview` bulunur." #: glossary.rst:198 msgid "bytecode" @@ -409,24 +476,31 @@ msgstr "bayt kodu" #: glossary.rst:200 msgid "" -"Python source code is compiled into bytecode, the internal representation of a Python program in the " -"CPython interpreter. The bytecode is also cached in ``.pyc`` files so that executing the same file is " -"faster the second time (recompilation from source to bytecode can be avoided). This \"intermediate language" -"\" is said to run on a :term:`virtual machine` that executes the machine code corresponding to each " -"bytecode. Do note that bytecodes are not expected to work between different Python virtual machines, nor to " -"be stable between Python releases." -msgstr "" -"Python kaynak kodu, bir Python programının CPython yorumlayıcısındaki dahili temsili olan bayt kodunda " -"derlenir. Bayt kodu ayrıca ``.pyc`` dosyalarında önbelleğe alınır, böylece aynı dosyanın ikinci kez " -"çalıştırılması daha hızlı olur (kaynaktan bayt koduna yeniden derleme önlenebilir). Bu \"ara dilin\", her " -"bir bayt koduna karşılık gelen makine kodunu yürüten bir :term:`sanal makine ` üzerinde " -"çalıştığı söylenir. Bayt kodlarının farklı Python sanal makineleri arasında çalışması veya Python sürümleri " +"Python source code is compiled into bytecode, the internal representation of " +"a Python program in the CPython interpreter. The bytecode is also cached in " +"``.pyc`` files so that executing the same file is faster the second time " +"(recompilation from source to bytecode can be avoided). This \"intermediate " +"language\" is said to run on a :term:`virtual machine` that executes the " +"machine code corresponding to each bytecode. Do note that bytecodes are not " +"expected to work between different Python virtual machines, nor to be stable " +"between Python releases." +msgstr "" +"Python kaynak kodu, bir Python programının CPython yorumlayıcısındaki dahili " +"temsili olan bayt kodunda derlenir. Bayt kodu ayrıca ``.pyc`` dosyalarında " +"önbelleğe alınır, böylece aynı dosyanın ikinci kez çalıştırılması daha hızlı " +"olur (kaynaktan bayt koduna yeniden derleme önlenebilir). Bu \"ara dilin\", " +"her bir bayt koduna karşılık gelen makine kodunu yürüten bir :term:`sanal " +"makine ` üzerinde çalıştığı söylenir. Bayt kodlarının " +"farklı Python sanal makineleri arasında çalışması veya Python sürümleri " "arasında kararlı olması beklenmediğini unutmayın." #: glossary.rst:210 msgid "" -"A list of bytecode instructions can be found in the documentation for :ref:`the dis module `." -msgstr "Bayt kodu talimatlarının bir listesi :ref:`bytecodes` dokümanında bulunabilir." +"A list of bytecode instructions can be found in the documentation for :ref:" +"`the dis module `." +msgstr "" +"Bayt kodu talimatlarının bir listesi :ref:`bytecodes` dokümanında " +"bulunabilir." #: glossary.rst:212 #, fuzzy @@ -435,27 +509,33 @@ msgstr "geri çağırmak" #: glossary.rst:214 msgid "" -"A callable is an object that can be called, possibly with a set of arguments (see :term:`argument`), with " -"the following syntax::" +"A callable is an object that can be called, possibly with a set of arguments " +"(see :term:`argument`), with the following syntax::" msgstr "" -"Bir çağrılabilir, muhtemelen bir dizi argümanla (bkz. :term:`argument`) ve aşağıdaki sözdizimiyle " -"çağrılabilen bir nesnedir::" +"Bir çağrılabilir, muhtemelen bir dizi argümanla (bkz. :term:`argument`) ve " +"aşağıdaki sözdizimiyle çağrılabilen bir nesnedir::" #: glossary.rst:219 msgid "" -"A :term:`function`, and by extension a :term:`method`, is a callable. An instance of a class that " -"implements the :meth:`~object.__call__` method is also a callable." +"A :term:`function`, and by extension a :term:`method`, is a callable. An " +"instance of a class that implements the :meth:`~object.__call__` method is " +"also a callable." msgstr "" -"Bir :term:`fonksiyon ` ve uzantısı olarak bir :term:`metot ` bir çağrılabilirdir. :meth:" -"`~object.__call__` yöntemini uygulayan bir sınıf örneği de bir çağrılabilirdir." +"Bir :term:`fonksiyon ` ve uzantısı olarak bir :term:`metot " +"` bir çağrılabilirdir. :meth:`~object.__call__` yöntemini uygulayan " +"bir sınıf örneği de bir çağrılabilirdir." #: glossary.rst:222 msgid "callback" msgstr "geri çağırmak" #: glossary.rst:224 -msgid "A subroutine function which is passed as an argument to be executed at some point in the future." -msgstr "Gelecekte bir noktada yürütülecek bir argüman olarak iletilen bir alt program işlevi." +msgid "" +"A subroutine function which is passed as an argument to be executed at some " +"point in the future." +msgstr "" +"Gelecekte bir noktada yürütülecek bir argüman olarak iletilen bir alt " +"program işlevi." #: glossary.rst:226 msgid "class" @@ -463,11 +543,11 @@ msgstr "sınıf" #: glossary.rst:228 msgid "" -"A template for creating user-defined objects. Class definitions normally contain method definitions which " -"operate on instances of the class." +"A template for creating user-defined objects. Class definitions normally " +"contain method definitions which operate on instances of the class." msgstr "" -"Kullanıcı tanımlı nesneler oluşturmak için bir şablon. Sınıf tanımları normalde sınıfın örnekleri üzerinde " -"çalışan yöntem tanımlarını içerir." +"Kullanıcı tanımlı nesneler oluşturmak için bir şablon. Sınıf tanımları " +"normalde sınıfın örnekleri üzerinde çalışan yöntem tanımlarını içerir." #: glossary.rst:231 msgid "class variable" @@ -475,11 +555,11 @@ msgstr "sınıf değişkeni" #: glossary.rst:233 msgid "" -"A variable defined in a class and intended to be modified only at class level (i.e., not in an instance of " -"the class)." +"A variable defined in a class and intended to be modified only at class " +"level (i.e., not in an instance of the class)." msgstr "" -"Bir sınıfta tanımlanmış ve yalnızca sınıf düzeyinde (yani sınıfın bir örneğinde değil) değiştirilmesi " -"amaçlanan bir değişken." +"Bir sınıfta tanımlanmış ve yalnızca sınıf düzeyinde (yani sınıfın bir " +"örneğinde değil) değiştirilmesi amaçlanan bir değişken." #: glossary.rst:235 msgid "coercion" @@ -487,18 +567,22 @@ msgstr "zorlama" #: glossary.rst:237 msgid "" -"The implicit conversion of an instance of one type to another during an operation which involves two " -"arguments of the same type. For example, ``int(3.15)`` converts the floating point number to the integer " -"``3``, but in ``3+4.5``, each argument is of a different type (one int, one float), and both must be " -"converted to the same type before they can be added or it will raise a :exc:`TypeError`. Without coercion, " -"all arguments of even compatible types would have to be normalized to the same value by the programmer, e." -"g., ``float(3)+4.5`` rather than just ``3+4.5``." -msgstr "" -"Aynı türden iki argüman içeren bir işlem sırasında bir tür örneğinin diğerine örtük olarak " -"dönüştürülmesi. Örneğin, ``int(3.15)``, kayan noktalı sayıyı ``3`` tamsayısına dönüştürür, ancak ``3+4.5`` " -"'te her argüman farklı türdedir (bir int, bir kayan nokta), ve her ikisi de eklenmeden önce aynı türe " -"dönüştürülmelidir, aksi takdirde bir :exc:`TypeError` yükseltir. Zorlama olmadan, uyumlu türlerin bile tüm " -"argümanlarının programcı tarafından aynı değere normalleştirilmesi gerekir, örneğin: ``3+4,5`` yerine " +"The implicit conversion of an instance of one type to another during an " +"operation which involves two arguments of the same type. For example, " +"``int(3.15)`` converts the floating point number to the integer ``3``, but " +"in ``3+4.5``, each argument is of a different type (one int, one float), and " +"both must be converted to the same type before they can be added or it will " +"raise a :exc:`TypeError`. Without coercion, all arguments of even " +"compatible types would have to be normalized to the same value by the " +"programmer, e.g., ``float(3)+4.5`` rather than just ``3+4.5``." +msgstr "" +"Aynı türden iki argüman içeren bir işlem sırasında bir tür örneğinin " +"diğerine örtük olarak dönüştürülmesi. Örneğin, ``int(3.15)``, kayan noktalı " +"sayıyı ``3`` tamsayısına dönüştürür, ancak ``3+4.5`` 'te her argüman farklı " +"türdedir (bir int, bir kayan nokta), ve her ikisi de eklenmeden önce aynı " +"türe dönüştürülmelidir, aksi takdirde bir :exc:`TypeError` yükseltir. " +"Zorlama olmadan, uyumlu türlerin bile tüm argümanlarının programcı " +"tarafından aynı değere normalleştirilmesi gerekir, örneğin: ``3+4,5`` yerine " "``float(3)+4,5``." #: glossary.rst:245 @@ -507,21 +591,26 @@ msgstr "karmaşık sayı" #: glossary.rst:247 msgid "" -"An extension of the familiar real number system in which all numbers are expressed as a sum of a real part " -"and an imaginary part. Imaginary numbers are real multiples of the imaginary unit (the square root of " -"``-1``), often written ``i`` in mathematics or ``j`` in engineering. Python has built-in support for " -"complex numbers, which are written with this latter notation; the imaginary part is written with a ``j`` " -"suffix, e.g., ``3+1j``. To get access to complex equivalents of the :mod:`math` module, use :mod:`cmath`. " -"Use of complex numbers is a fairly advanced mathematical feature. If you're not aware of a need for them, " -"it's almost certain you can safely ignore them." -msgstr "" -"Tüm sayıların bir reel kısım ve bir sanal kısım toplamı olarak ifade edildiği bilinen gerçek sayı " -"sisteminin bir uzantısı. Hayali sayılar, hayali birimin gerçek katlarıdır (``-1`` 'in karekökü), " -"genellikle matematikte ``i`` veya mühendislikte ``j`` ile yazılır. Python, bu son gösterimle yazılan " -"karmaşık sayılar için yerleşik desteğe sahiptir; hayali kısım bir ``j`` son ekiyle yazılır, örneğin " -"``3+1j``. :mod:`math` modülünün karmaşık eşdeğerlerine erişmek için :mod:`cmath` kullanın. Karmaşık " -"sayıların kullanımı oldukça gelişmiş bir matematiksel özelliktir. Onlara olan ihtiyacın farkında " -"değilseniz, onları güvenle görmezden gelebileceğiniz neredeyse kesindir." +"An extension of the familiar real number system in which all numbers are " +"expressed as a sum of a real part and an imaginary part. Imaginary numbers " +"are real multiples of the imaginary unit (the square root of ``-1``), often " +"written ``i`` in mathematics or ``j`` in engineering. Python has built-in " +"support for complex numbers, which are written with this latter notation; " +"the imaginary part is written with a ``j`` suffix, e.g., ``3+1j``. To get " +"access to complex equivalents of the :mod:`math` module, use :mod:`cmath`. " +"Use of complex numbers is a fairly advanced mathematical feature. If you're " +"not aware of a need for them, it's almost certain you can safely ignore them." +msgstr "" +"Tüm sayıların bir reel kısım ve bir sanal kısım toplamı olarak ifade " +"edildiği bilinen gerçek sayı sisteminin bir uzantısı. Hayali sayılar, " +"hayali birimin gerçek katlarıdır (``-1`` 'in karekökü), genellikle " +"matematikte ``i`` veya mühendislikte ``j`` ile yazılır. Python, bu son " +"gösterimle yazılan karmaşık sayılar için yerleşik desteğe sahiptir; hayali " +"kısım bir ``j`` son ekiyle yazılır, örneğin ``3+1j``. :mod:`math` modülünün " +"karmaşık eşdeğerlerine erişmek için :mod:`cmath` kullanın. Karmaşık " +"sayıların kullanımı oldukça gelişmiş bir matematiksel özelliktir. Onlara " +"olan ihtiyacın farkında değilseniz, onları güvenle görmezden gelebileceğiniz " +"neredeyse kesindir." #: glossary.rst:257 msgid "context manager" @@ -529,11 +618,12 @@ msgstr "bağlam yöneticisi" #: glossary.rst:259 msgid "" -"An object which controls the environment seen in a :keyword:`with` statement by defining :meth:`__enter__` " -"and :meth:`__exit__` methods. See :pep:`343`." +"An object which controls the environment seen in a :keyword:`with` statement " +"by defining :meth:`__enter__` and :meth:`__exit__` methods. See :pep:`343`." msgstr "" -":keyword:`with` ifadesinde görülen ortamı :meth:`__enter__` ve :meth:`__exit__` yöntemlerini tanımlayarak " -"kontrol eden bir nesne. Bakınız :pep:`343`." +":keyword:`with` ifadesinde görülen ortamı :meth:`__enter__` ve :meth:" +"`__exit__` yöntemlerini tanımlayarak kontrol eden bir nesne. Bakınız :pep:" +"`343`." #: glossary.rst:262 msgid "context variable" @@ -541,15 +631,19 @@ msgstr "bağlam değişkeni" #: glossary.rst:264 msgid "" -"A variable which can have different values depending on its context. This is similar to Thread-Local " -"Storage in which each execution thread may have a different value for a variable. However, with context " -"variables, there may be several contexts in one execution thread and the main usage for context variables " -"is to keep track of variables in concurrent asynchronous tasks. See :mod:`contextvars`." +"A variable which can have different values depending on its context. This is " +"similar to Thread-Local Storage in which each execution thread may have a " +"different value for a variable. However, with context variables, there may " +"be several contexts in one execution thread and the main usage for context " +"variables is to keep track of variables in concurrent asynchronous tasks. " +"See :mod:`contextvars`." msgstr "" -"Bağlamına bağlı olarak farklı değerler alabilen bir değişken. Bu, her yürütme iş parçacığının bir değişken " -"için farklı bir değere sahip olabileceği Thread-Local Storage'a benzer. Bununla birlikte, bağlam " -"değişkenleriyle, bir yürütme iş parçacığında birkaç bağlam olabilir ve bağlam değişkenlerinin ana " -"kullanımı, eşzamanlı zaman uyumsuz görevlerde değişkenleri izlemektir. Bakınız :mod:`contextvars`." +"Bağlamına bağlı olarak farklı değerler alabilen bir değişken. Bu, her " +"yürütme iş parçacığının bir değişken için farklı bir değere sahip " +"olabileceği Thread-Local Storage'a benzer. Bununla birlikte, bağlam " +"değişkenleriyle, bir yürütme iş parçacığında birkaç bağlam olabilir ve " +"bağlam değişkenlerinin ana kullanımı, eşzamanlı zaman uyumsuz görevlerde " +"değişkenleri izlemektir. Bakınız :mod:`contextvars`." #: glossary.rst:271 msgid "contiguous" @@ -557,17 +651,21 @@ msgstr "bitişik" #: glossary.rst:275 msgid "" -"A buffer is considered contiguous exactly if it is either *C-contiguous* or *Fortran contiguous*. Zero-" -"dimensional buffers are C and Fortran contiguous. In one-dimensional arrays, the items must be laid out in " -"memory next to each other, in order of increasing indexes starting from zero. In multidimensional C-" -"contiguous arrays, the last index varies the fastest when visiting items in order of memory address. " -"However, in Fortran contiguous arrays, the first index varies the fastest." -msgstr "" -"Bir arabellek, *C-bitişik* veya *Fortran bitişik* ise tam olarak bitişik olarak kabul edilir. Sıfır " -"boyutlu arabellekler C ve Fortran bitişiktir. Tek boyutlu dizilerde, öğeler sıfırdan başlayarak artan " -"dizinler sırasına göre bellekte yan yana yerleştirilmelidir. Çok boyutlu C-bitişik dizilerde, öğeleri " -"bellek adresi sırasına göre ziyaret ederken son dizin en hızlı şekilde değişir. Ancak, Fortran bitişik " -"dizilerinde, ilk dizin en hızlı şekilde değişir." +"A buffer is considered contiguous exactly if it is either *C-contiguous* or " +"*Fortran contiguous*. Zero-dimensional buffers are C and Fortran " +"contiguous. In one-dimensional arrays, the items must be laid out in memory " +"next to each other, in order of increasing indexes starting from zero. In " +"multidimensional C-contiguous arrays, the last index varies the fastest when " +"visiting items in order of memory address. However, in Fortran contiguous " +"arrays, the first index varies the fastest." +msgstr "" +"Bir arabellek, *C-bitişik* veya *Fortran bitişik* ise tam olarak bitişik " +"olarak kabul edilir. Sıfır boyutlu arabellekler C ve Fortran bitişiktir. " +"Tek boyutlu dizilerde, öğeler sıfırdan başlayarak artan dizinler sırasına " +"göre bellekte yan yana yerleştirilmelidir. Çok boyutlu C-bitişik dizilerde, " +"öğeleri bellek adresi sırasına göre ziyaret ederken son dizin en hızlı " +"şekilde değişir. Ancak, Fortran bitişik dizilerinde, ilk dizin en hızlı " +"şekilde değişir." #: glossary.rst:283 msgid "coroutine" @@ -575,13 +673,15 @@ msgstr "eşyordam" #: glossary.rst:285 msgid "" -"Coroutines are a more generalized form of subroutines. Subroutines are entered at one point and exited at " -"another point. Coroutines can be entered, exited, and resumed at many different points. They can be " +"Coroutines are a more generalized form of subroutines. Subroutines are " +"entered at one point and exited at another point. Coroutines can be " +"entered, exited, and resumed at many different points. They can be " "implemented with the :keyword:`async def` statement. See also :pep:`492`." msgstr "" -"Eşyordamlar, altyordamların daha genelleştirilmiş bir biçimidir. Alt programlara bir noktada girilir ve " -"başka bir noktada çıkılır. Eşyordamlar birçok farklı noktada girilebilir, çıkılabilir ve devam " -"ettirilebilir. :keyword:`async def` ifadesi ile uygulanabilirler. Ayrıca bakınız :pep:`492`." +"Eşyordamlar, altyordamların daha genelleştirilmiş bir biçimidir. Alt " +"programlara bir noktada girilir ve başka bir noktada çıkılır. Eşyordamlar " +"birçok farklı noktada girilebilir, çıkılabilir ve devam ettirilebilir. :" +"keyword:`async def` ifadesi ile uygulanabilirler. Ayrıca bakınız :pep:`492`." #: glossary.rst:290 msgid "coroutine function" @@ -589,13 +689,15 @@ msgstr "eşyordam işlevi" #: glossary.rst:292 msgid "" -"A function which returns a :term:`coroutine` object. A coroutine function may be defined with the :keyword:" -"`async def` statement, and may contain :keyword:`await`, :keyword:`async for`, and :keyword:`async with` " -"keywords. These were introduced by :pep:`492`." +"A function which returns a :term:`coroutine` object. A coroutine function " +"may be defined with the :keyword:`async def` statement, and may contain :" +"keyword:`await`, :keyword:`async for`, and :keyword:`async with` keywords. " +"These were introduced by :pep:`492`." msgstr "" -"Bir :term:`coroutine` nesnesi döndüren bir işlev. Bir eşyordam işlevi :keyword:`async def` ifadesiyle " -"tanımlanabilir ve :keyword:`await`, :keyword:`async for` ve :keyword:`async with` anahtar kelimelerini " -"içerebilir. Bunlar :pep:`492` tarafından tanıtıldı." +"Bir :term:`coroutine` nesnesi döndüren bir işlev. Bir eşyordam işlevi :" +"keyword:`async def` ifadesiyle tanımlanabilir ve :keyword:`await`, :keyword:" +"`async for` ve :keyword:`async with` anahtar kelimelerini içerebilir. " +"Bunlar :pep:`492` tarafından tanıtıldı." #: glossary.rst:297 msgid "CPython" @@ -603,13 +705,15 @@ msgstr "CPython" #: glossary.rst:299 msgid "" -"The canonical implementation of the Python programming language, as distributed on `python.org `_. The term \"CPython\" is used when necessary to distinguish this implementation from others " -"such as Jython or IronPython." +"The canonical implementation of the Python programming language, as " +"distributed on `python.org `_. The term \"CPython\" " +"is used when necessary to distinguish this implementation from others such " +"as Jython or IronPython." msgstr "" -"Python programlama dilinin `python.org `_ üzerinde dağıtıldığı şekliyle kurallı " -"uygulaması. \"CPython\" terimi, gerektiğinde bu uygulamayı Jython veya IronPython gibi diğerlerinden " -"ayırmak için kullanılır." +"Python programlama dilinin `python.org `_ üzerinde " +"dağıtıldığı şekliyle kurallı uygulaması. \"CPython\" terimi, gerektiğinde " +"bu uygulamayı Jython veya IronPython gibi diğerlerinden ayırmak için " +"kullanılır." #: glossary.rst:303 msgid "decorator" @@ -617,27 +721,31 @@ msgstr "dekoratör" #: glossary.rst:305 msgid "" -"A function returning another function, usually applied as a function transformation using the ``@wrapper`` " -"syntax. Common examples for decorators are :func:`classmethod` and :func:`staticmethod`." +"A function returning another function, usually applied as a function " +"transformation using the ``@wrapper`` syntax. Common examples for " +"decorators are :func:`classmethod` and :func:`staticmethod`." msgstr "" -"Genellikle ``@wrapper`` sözdizimi kullanılarak bir işlev dönüşümü olarak uygulanan, başka bir işlevi " -"döndüren bir işlev. Dekoratörler için yaygın örnekler şunlardır: :func:`classmethod` ve :func:" -"`staticmethod`." +"Genellikle ``@wrapper`` sözdizimi kullanılarak bir işlev dönüşümü olarak " +"uygulanan, başka bir işlevi döndüren bir işlev. Dekoratörler için yaygın " +"örnekler şunlardır: :func:`classmethod` ve :func:`staticmethod`." #: glossary.rst:309 msgid "" -"The decorator syntax is merely syntactic sugar, the following two function definitions are semantically " -"equivalent::" +"The decorator syntax is merely syntactic sugar, the following two function " +"definitions are semantically equivalent::" msgstr "" -"Dekoratör sözdizimi yalnızca sözdizimsel şekerdir, aşağıdaki iki işlev tanımı anlamsal olarak eşdeğerdir:" +"Dekoratör sözdizimi yalnızca sözdizimsel şekerdir, aşağıdaki iki işlev " +"tanımı anlamsal olarak eşdeğerdir:" #: glossary.rst:320 msgid "" -"The same concept exists for classes, but is less commonly used there. See the documentation for :ref:" -"`function definitions ` and :ref:`class definitions ` for more about decorators." +"The same concept exists for classes, but is less commonly used there. See " +"the documentation for :ref:`function definitions ` and :ref:`class " +"definitions ` for more about decorators." msgstr "" -"Aynı kavram sınıflar için de mevcuttur, ancak orada daha az kullanılır. Dekoratörler hakkında daha fazla " -"bilgi için :ref:`function definitions ` ve :ref:`class definitions ` belgelerine bakın." +"Aynı kavram sınıflar için de mevcuttur, ancak orada daha az kullanılır. " +"Dekoratörler hakkında daha fazla bilgi için :ref:`function definitions " +"` ve :ref:`class definitions ` belgelerine bakın." #: glossary.rst:323 msgid "descriptor" @@ -645,27 +753,33 @@ msgstr "tanımlayıcı" #: glossary.rst:325 msgid "" -"Any object which defines the methods :meth:`__get__`, :meth:`__set__`, or :meth:`__delete__`. When a class " -"attribute is a descriptor, its special binding behavior is triggered upon attribute lookup. Normally, " -"using *a.b* to get, set or delete an attribute looks up the object named *b* in the class dictionary for " -"*a*, but if *b* is a descriptor, the respective descriptor method gets called. Understanding descriptors " -"is a key to a deep understanding of Python because they are the basis for many features including " -"functions, methods, properties, class methods, static methods, and reference to super classes." -msgstr "" -":meth:`__get__`, :meth:`__set__` veya :meth:`__delete__` yöntemlerini tanımlayan herhangi bir nesne. Bir " -"sınıf özniteliği bir tanımlayıcı olduğunda, öznitelik araması üzerine özel bağlama davranışı tetiklenir. " -"Normalde, bir özniteliği almak, ayarlamak veya silmek için *a.b* kullanmak, *a* için sınıf sözlüğünde *b* " -"adlı nesneyi arar, ancak *b* bir tanımlayıcı ise, ilgili tanımlayıcı yöntemi çağrılır. Tanımlayıcıları " -"anlamak, Python'u derinlemesine anlamanın anahtarıdır çünkü bunlar, işlevler, yöntemler, özellikler, sınıf " -"yöntemleri, statik yöntemler ve süper sınıflara başvuru gibi birçok özelliğin temelidir." +"Any object which defines the methods :meth:`__get__`, :meth:`__set__`, or :" +"meth:`__delete__`. When a class attribute is a descriptor, its special " +"binding behavior is triggered upon attribute lookup. Normally, using *a.b* " +"to get, set or delete an attribute looks up the object named *b* in the " +"class dictionary for *a*, but if *b* is a descriptor, the respective " +"descriptor method gets called. Understanding descriptors is a key to a deep " +"understanding of Python because they are the basis for many features " +"including functions, methods, properties, class methods, static methods, and " +"reference to super classes." +msgstr "" +":meth:`__get__`, :meth:`__set__` veya :meth:`__delete__` yöntemlerini " +"tanımlayan herhangi bir nesne. Bir sınıf özniteliği bir tanımlayıcı " +"olduğunda, öznitelik araması üzerine özel bağlama davranışı tetiklenir. " +"Normalde, bir özniteliği almak, ayarlamak veya silmek için *a.b* kullanmak, " +"*a* için sınıf sözlüğünde *b* adlı nesneyi arar, ancak *b* bir tanımlayıcı " +"ise, ilgili tanımlayıcı yöntemi çağrılır. Tanımlayıcıları anlamak, Python'u " +"derinlemesine anlamanın anahtarıdır çünkü bunlar, işlevler, yöntemler, " +"özellikler, sınıf yöntemleri, statik yöntemler ve süper sınıflara başvuru " +"gibi birçok özelliğin temelidir." #: glossary.rst:335 msgid "" -"For more information about descriptors' methods, see :ref:`descriptors` or the :ref:`Descriptor How To " -"Guide `." +"For more information about descriptors' methods, see :ref:`descriptors` or " +"the :ref:`Descriptor How To Guide `." msgstr "" -"Tanımlayıcıların yöntemleri hakkında daha fazla bilgi için, bkz. :ref:`descriptors` veya :ref:`Descriptor " -"How To Guide `." +"Tanımlayıcıların yöntemleri hakkında daha fazla bilgi için, bkz. :ref:" +"`descriptors` veya :ref:`Descriptor How To Guide `." #: glossary.rst:337 msgid "dictionary" @@ -673,11 +787,13 @@ msgstr "sözlük" #: glossary.rst:339 msgid "" -"An associative array, where arbitrary keys are mapped to values. The keys can be any object with :meth:" -"`__hash__` and :meth:`__eq__` methods. Called a hash in Perl." +"An associative array, where arbitrary keys are mapped to values. The keys " +"can be any object with :meth:`__hash__` and :meth:`__eq__` methods. Called a " +"hash in Perl." msgstr "" -"Rasgele anahtarların değerlerle eşlendiği ilişkisel bir dizi. Anahtarlar, :meth:`__hash__` ve :meth:" -"`__eq__` yöntemleriyle herhangi bir nesne olabilir. Perl'de karma denir." +"Rasgele anahtarların değerlerle eşlendiği ilişkisel bir dizi. Anahtarlar, :" +"meth:`__hash__` ve :meth:`__eq__` yöntemleriyle herhangi bir nesne olabilir. " +"Perl'de karma denir." #: glossary.rst:342 msgid "dictionary comprehension" @@ -685,13 +801,15 @@ msgstr "sözlük anlama" #: glossary.rst:344 msgid "" -"A compact way to process all or part of the elements in an iterable and return a dictionary with the " -"results. ``results = {n: n ** 2 for n in range(10)}`` generates a dictionary containing key ``n`` mapped to " -"value ``n ** 2``. See :ref:`comprehensions`." +"A compact way to process all or part of the elements in an iterable and " +"return a dictionary with the results. ``results = {n: n ** 2 for n in " +"range(10)}`` generates a dictionary containing key ``n`` mapped to value ``n " +"** 2``. See :ref:`comprehensions`." msgstr "" -"Öğelerin tümünü veya bir kısmını yinelenebilir bir şekilde işlemenin ve sonuçları içeren bir sözlük " -"döndürmenin kompakt bir yolu. ``results = {n: n ** 2 for range(10)}``, ``n ** 2`` değerine eşlenmiş ``n`` " -"anahtarını içeren bir sözlük oluşturur. Bkz. :ref:`comprehensions`." +"Öğelerin tümünü veya bir kısmını yinelenebilir bir şekilde işlemenin ve " +"sonuçları içeren bir sözlük döndürmenin kompakt bir yolu. ``results = {n: n " +"** 2 for range(10)}``, ``n ** 2`` değerine eşlenmiş ``n`` anahtarını içeren " +"bir sözlük oluşturur. Bkz. :ref:`comprehensions`." #: glossary.rst:348 msgid "dictionary view" @@ -699,14 +817,16 @@ msgstr "sözlük görünümü" #: glossary.rst:350 msgid "" -"The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and :meth:`dict.items` are called " -"dictionary views. They provide a dynamic view on the dictionary’s entries, which means that when the " -"dictionary changes, the view reflects these changes. To force the dictionary view to become a full list use " -"``list(dictview)``. See :ref:`dict-views`." +"The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and :meth:" +"`dict.items` are called dictionary views. They provide a dynamic view on the " +"dictionary’s entries, which means that when the dictionary changes, the view " +"reflects these changes. To force the dictionary view to become a full list " +"use ``list(dictview)``. See :ref:`dict-views`." msgstr "" -":meth:`dict.keys`, :meth:`dict.values` ve :meth:`dict.items` 'den döndürülen nesnelere sözlük görünümleri " -"denir. Sözlüğün girişleri üzerinde dinamik bir görünüm sağlarlar; bu, sözlük değiştiğinde görünümün bu " -"değişiklikleri yansıttığı anlamına gelir. Sözlük görünümünü tam liste olmaya zorlamak için " +":meth:`dict.keys`, :meth:`dict.values` ve :meth:`dict.items` 'den döndürülen " +"nesnelere sözlük görünümleri denir. Sözlüğün girişleri üzerinde dinamik bir " +"görünüm sağlarlar; bu, sözlük değiştiğinde görünümün bu değişiklikleri " +"yansıttığı anlamına gelir. Sözlük görünümünü tam liste olmaya zorlamak için " "``list(dictview)`` kullanın. Bakınız :ref:`dict-views`." #: glossary.rst:356 @@ -715,15 +835,17 @@ msgstr "belge dizisi" #: glossary.rst:358 msgid "" -"A string literal which appears as the first expression in a class, function or module. While ignored when " -"the suite is executed, it is recognized by the compiler and put into the :attr:`__doc__` attribute of the " -"enclosing class, function or module. Since it is available via introspection, it is the canonical place " -"for documentation of the object." +"A string literal which appears as the first expression in a class, function " +"or module. While ignored when the suite is executed, it is recognized by " +"the compiler and put into the :attr:`__doc__` attribute of the enclosing " +"class, function or module. Since it is available via introspection, it is " +"the canonical place for documentation of the object." msgstr "" -"Bir sınıf, işlev veya modülde ilk ifade olarak görünen bir dize değişmezi. Paket yürütüldüğünde " -"yoksayılırken, derleyici tarafından tanınır ve çevreleyen sınıfın, işlevin veya modülün :attr:`__doc__` " -"özniteliğine yerleştirilir. İç gözlem yoluyla erişilebilir olduğundan, nesnenin belgelenmesi için kurallı " -"yerdir." +"Bir sınıf, işlev veya modülde ilk ifade olarak görünen bir dize değişmezi. " +"Paket yürütüldüğünde yoksayılırken, derleyici tarafından tanınır ve " +"çevreleyen sınıfın, işlevin veya modülün :attr:`__doc__` özniteliğine " +"yerleştirilir. İç gözlem yoluyla erişilebilir olduğundan, nesnenin " +"belgelenmesi için kurallı yerdir." #: glossary.rst:364 #, fuzzy @@ -732,20 +854,25 @@ msgstr "ördek yazma" #: glossary.rst:366 msgid "" -"A programming style which does not look at an object's type to determine if it has the right interface; " -"instead, the method or attribute is simply called or used (\"If it looks like a duck and quacks like a " -"duck, it must be a duck.\") By emphasizing interfaces rather than specific types, well-designed code " -"improves its flexibility by allowing polymorphic substitution. Duck-typing avoids tests using :func:`type` " -"or :func:`isinstance`. (Note, however, that duck-typing can be complemented with :term:`abstract base " -"classes `.) Instead, it typically employs :func:`hasattr` tests or :term:`EAFP` " -"programming." -msgstr "" -"Doğru arayüze sahip olup olmadığını belirlemek için bir nesnenin türüne bakmayan bir programlama stili; " -"bunun yerine, yöntem veya nitelik basitçe çağrılır veya kullanılır (\"Ördek gibi görünüyorsa ve ördek gibi " -"vaklıyorsa, ördek olmalıdır.\") İyi tasarlanmış kod, belirli türlerden ziyade arayüzleri vurgulayarak, " -"polimorfik ikameye izin vererek esnekliğini artırır. Ördek yazma, :func:`type` veya :func:`isinstance` " -"kullanan testleri önler. (Ancak, ördek yazmanın :term:`abstract base class` ile tamamlanabileceğini " -"unutmayın.) Bunun yerine, genellikle :func:`hasattr` testleri veya :term:`EAFP` programlamasını kullanır." +"A programming style which does not look at an object's type to determine if " +"it has the right interface; instead, the method or attribute is simply " +"called or used (\"If it looks like a duck and quacks like a duck, it must be " +"a duck.\") By emphasizing interfaces rather than specific types, well-" +"designed code improves its flexibility by allowing polymorphic " +"substitution. Duck-typing avoids tests using :func:`type` or :func:" +"`isinstance`. (Note, however, that duck-typing can be complemented with :" +"term:`abstract base classes `.) Instead, it typically " +"employs :func:`hasattr` tests or :term:`EAFP` programming." +msgstr "" +"Doğru arayüze sahip olup olmadığını belirlemek için bir nesnenin türüne " +"bakmayan bir programlama stili; bunun yerine, yöntem veya nitelik basitçe " +"çağrılır veya kullanılır (\"Ördek gibi görünüyorsa ve ördek gibi vaklıyorsa, " +"ördek olmalıdır.\") İyi tasarlanmış kod, belirli türlerden ziyade " +"arayüzleri vurgulayarak, polimorfik ikameye izin vererek esnekliğini " +"artırır. Ördek yazma, :func:`type` veya :func:`isinstance` kullanan " +"testleri önler. (Ancak, ördek yazmanın :term:`abstract base class` ile " +"tamamlanabileceğini unutmayın.) Bunun yerine, genellikle :func:`hasattr` " +"testleri veya :term:`EAFP` programlamasını kullanır." #: glossary.rst:375 msgid "EAFP" @@ -753,15 +880,19 @@ msgstr "EAFP" #: glossary.rst:377 msgid "" -"Easier to ask for forgiveness than permission. This common Python coding style assumes the existence of " -"valid keys or attributes and catches exceptions if the assumption proves false. This clean and fast style " -"is characterized by the presence of many :keyword:`try` and :keyword:`except` statements. The technique " -"contrasts with the :term:`LBYL` style common to many other languages such as C." +"Easier to ask for forgiveness than permission. This common Python coding " +"style assumes the existence of valid keys or attributes and catches " +"exceptions if the assumption proves false. This clean and fast style is " +"characterized by the presence of many :keyword:`try` and :keyword:`except` " +"statements. The technique contrasts with the :term:`LBYL` style common to " +"many other languages such as C." msgstr "" -"Af dilemek izin almaktan daha kolaydır. Bu yaygın Python kodlama stili, geçerli anahtarların veya " -"niteliklerin varlığını varsayar ve varsayımın yanlış çıkması durumunda istisnaları yakalar. Bu temiz ve " -"hızlı stil, birçok :keyword:`try` ve :keyword:`except` ifadesinin varlığı ile karakterize edilir. Teknik, " -"C gibi diğer birçok dilde ortak olan :term:`LBYL` stiliyle çelişir." +"Af dilemek izin almaktan daha kolaydır. Bu yaygın Python kodlama stili, " +"geçerli anahtarların veya niteliklerin varlığını varsayar ve varsayımın " +"yanlış çıkması durumunda istisnaları yakalar. Bu temiz ve hızlı stil, " +"birçok :keyword:`try` ve :keyword:`except` ifadesinin varlığı ile " +"karakterize edilir. Teknik, C gibi diğer birçok dilde ortak olan :term:" +"`LBYL` stiliyle çelişir." #: glossary.rst:383 msgid "expression" @@ -769,26 +900,32 @@ msgstr "ifade (değer döndürür)" #: glossary.rst:385 msgid "" -"A piece of syntax which can be evaluated to some value. In other words, an expression is an accumulation " -"of expression elements like literals, names, attribute access, operators or function calls which all return " -"a value. In contrast to many other languages, not all language constructs are expressions. There are " -"also :term:`statement`\\s which cannot be used as expressions, such as :keyword:`while`. Assignments are " -"also statements, not expressions." -msgstr "" -"Bir değere göre değerlendirilebilecek bir sözdizimi parçası. Başka bir deyişle, bir ifade, tümü bir değer " -"döndüren sabit değerler, adlar, öznitelik erişimi, işleçler veya işlev çağrıları gibi ifade öğelerinin bir " -"toplamıdır. Diğer birçok dilin aksine, tüm dil yapıları ifade değildir. Ayrıca :keyword:`while` gibi kullanılamayan " -":term:`ifadeler ` de vardır. Atamalar da değer döndürmeyen ifadelerdir (statement)." +"A piece of syntax which can be evaluated to some value. In other words, an " +"expression is an accumulation of expression elements like literals, names, " +"attribute access, operators or function calls which all return a value. In " +"contrast to many other languages, not all language constructs are " +"expressions. There are also :term:`statement`\\s which cannot be used as " +"expressions, such as :keyword:`while`. Assignments are also statements, not " +"expressions." +msgstr "" +"Bir değere göre değerlendirilebilecek bir sözdizimi parçası. Başka bir " +"deyişle, bir ifade, tümü bir değer döndüren sabit değerler, adlar, öznitelik " +"erişimi, işleçler veya işlev çağrıları gibi ifade öğelerinin bir " +"toplamıdır. Diğer birçok dilin aksine, tüm dil yapıları ifade değildir. " +"Ayrıca :keyword:`while` gibi kullanılamayan :term:`ifadeler ` de " +"vardır. Atamalar da değer döndürmeyen ifadelerdir (statement)." #: glossary.rst:392 msgid "extension module" msgstr "uzatma modülü" #: glossary.rst:394 -msgid "A module written in C or C++, using Python's C API to interact with the core and with user code." +msgid "" +"A module written in C or C++, using Python's C API to interact with the core " +"and with user code." msgstr "" -"Çekirdekle ve kullanıcı koduyla etkileşim kurmak için Python'un C API'sini kullanan, C veya C++ ile " -"yazılmış bir modül." +"Çekirdekle ve kullanıcı koduyla etkileşim kurmak için Python'un C API'sini " +"kullanan, C veya C++ ile yazılmış bir modül." #: glossary.rst:396 msgid "f-string" @@ -796,11 +933,13 @@ msgstr "f-string" #: glossary.rst:398 msgid "" -"String literals prefixed with ``'f'`` or ``'F'`` are commonly called \"f-strings\" which is short for :ref:" -"`formatted string literals `. See also :pep:`498`." +"String literals prefixed with ``'f'`` or ``'F'`` are commonly called \"f-" +"strings\" which is short for :ref:`formatted string literals `. " +"See also :pep:`498`." msgstr "" -"Ön eki ``'f'`` veya ``'F'`` olan dize değişmezleri genellikle \"f-strings\" olarak adlandırılır; bu, :ref:" -"`formatted string literals ` 'ın kısaltmasıdır. Ayrıca bkz. :pep:`498`." +"Ön eki ``'f'`` veya ``'F'`` olan dize değişmezleri genellikle \"f-strings\" " +"olarak adlandırılır; bu, :ref:`formatted string literals ` 'ın " +"kısaltmasıdır. Ayrıca bkz. :pep:`498`." #: glossary.rst:401 msgid "file object" @@ -808,27 +947,33 @@ msgstr "dosya nesnesi" #: glossary.rst:403 msgid "" -"An object exposing a file-oriented API (with methods such as :meth:`read()` or :meth:`write()`) to an " -"underlying resource. Depending on the way it was created, a file object can mediate access to a real on-" -"disk file or to another type of storage or communication device (for example standard input/output, in-" -"memory buffers, sockets, pipes, etc.). File objects are also called :dfn:`file-like objects` or :dfn:" -"`streams`." -msgstr "" -"Dosya yönelimli bir API'yi (:meth:`read()` veya :meth:`write()` gibi yöntemlerle) temel alınan bir kaynağa " -"gösteren bir nesne. Oluşturulma şekline bağlı olarak, bir dosya nesnesi gerçek bir disk üzerindeki dosyaya " -"veya başka bir tür depolama veya iletişim aygıtına (örneğin standart giriş/çıkış, bellek içi arabellekler, " -"yuvalar, borular vb.) erişime aracılık edebilir. . Dosya nesneleri ayrıca :dfn:`file-like objects` veya :" -"dfn:`streams` olarak da adlandırılır." +"An object exposing a file-oriented API (with methods such as :meth:`read()` " +"or :meth:`write()`) to an underlying resource. Depending on the way it was " +"created, a file object can mediate access to a real on-disk file or to " +"another type of storage or communication device (for example standard input/" +"output, in-memory buffers, sockets, pipes, etc.). File objects are also " +"called :dfn:`file-like objects` or :dfn:`streams`." +msgstr "" +"Dosya yönelimli bir API'yi (:meth:`read()` veya :meth:`write()` gibi " +"yöntemlerle) temel alınan bir kaynağa gösteren bir nesne. Oluşturulma " +"şekline bağlı olarak, bir dosya nesnesi gerçek bir disk üzerindeki dosyaya " +"veya başka bir tür depolama veya iletişim aygıtına (örneğin standart giriş/" +"çıkış, bellek içi arabellekler, yuvalar, borular vb.) erişime aracılık " +"edebilir. . Dosya nesneleri ayrıca :dfn:`file-like objects` veya :dfn:" +"`streams` olarak da adlandırılır." #: glossary.rst:411 msgid "" -"There are actually three categories of file objects: raw :term:`binary files `, buffered :term:" -"`binary files ` and :term:`text files `. Their interfaces are defined in the :mod:" -"`io` module. The canonical way to create a file object is by using the :func:`open` function." +"There are actually three categories of file objects: raw :term:`binary files " +"`, buffered :term:`binary files ` and :term:`text " +"files `. Their interfaces are defined in the :mod:`io` module. " +"The canonical way to create a file object is by using the :func:`open` " +"function." msgstr "" -"Aslında üç dosya nesnesi kategorisi vardır: ham :term:`binary files `, arabelleğe alınmış :" -"term:`binary files ` ve :term:`text files `. Arayüzleri :mod:`io` modülünde " -"tanımlanmıştır. Bir dosya nesnesi yaratmanın kurallı yolu :func:`open` işlevini kullanmaktır." +"Aslında üç dosya nesnesi kategorisi vardır: ham :term:`binary files `, arabelleğe alınmış :term:`binary files ` ve :term:`text " +"files `. Arayüzleri :mod:`io` modülünde tanımlanmıştır. Bir " +"dosya nesnesi yaratmanın kurallı yolu :func:`open` işlevini kullanmaktır." #: glossary.rst:416 msgid "file-like object" @@ -844,37 +989,43 @@ msgstr "dosya sistemi kodlaması ve hata işleyicisi" #: glossary.rst:421 msgid "" -"Encoding and error handler used by Python to decode bytes from the operating system and encode Unicode to " -"the operating system." +"Encoding and error handler used by Python to decode bytes from the operating " +"system and encode Unicode to the operating system." msgstr "" -"Python tarafından işletim sistemindeki baytların kodunu çözmek ve Unicode'u işletim sistemine kodlamak için " -"kullanılan kodlama ve hata işleyici." +"Python tarafından işletim sistemindeki baytların kodunu çözmek ve Unicode'u " +"işletim sistemine kodlamak için kullanılan kodlama ve hata işleyici." #: glossary.rst:424 msgid "" -"The filesystem encoding must guarantee to successfully decode all bytes below 128. If the file system " -"encoding fails to provide this guarantee, API functions can raise :exc:`UnicodeError`." +"The filesystem encoding must guarantee to successfully decode all bytes " +"below 128. If the file system encoding fails to provide this guarantee, API " +"functions can raise :exc:`UnicodeError`." msgstr "" -"Dosya sistemi kodlaması, 128'in altındaki tüm baytların kodunu başarıyla çözmeyi garanti etmelidir. Dosya " -"sistemi kodlaması bu garantiyi sağlayamazsa, API işlevleri :exc:`UnicodeError` değerini yükseltebilir." +"Dosya sistemi kodlaması, 128'in altındaki tüm baytların kodunu başarıyla " +"çözmeyi garanti etmelidir. Dosya sistemi kodlaması bu garantiyi " +"sağlayamazsa, API işlevleri :exc:`UnicodeError` değerini yükseltebilir." #: glossary.rst:428 msgid "" -"The :func:`sys.getfilesystemencoding` and :func:`sys.getfilesystemencodeerrors` functions can be used to " -"get the filesystem encoding and error handler." +"The :func:`sys.getfilesystemencoding` and :func:`sys." +"getfilesystemencodeerrors` functions can be used to get the filesystem " +"encoding and error handler." msgstr "" -":func:`sys.getfilesystemencoding` ve :func:`sys.getfilesystemencodeerrors` işlevleri, dosya sistemi " -"kodlamasını ve hata işleyicisini almak için kullanılabilir." +":func:`sys.getfilesystemencoding` ve :func:`sys.getfilesystemencodeerrors` " +"işlevleri, dosya sistemi kodlamasını ve hata işleyicisini almak için " +"kullanılabilir." #: glossary.rst:432 msgid "" -"The :term:`filesystem encoding and error handler` are configured at Python startup by the :c:func:" -"`PyConfig_Read` function: see :c:member:`~PyConfig.filesystem_encoding` and :c:member:`~PyConfig." -"filesystem_errors` members of :c:type:`PyConfig`." +"The :term:`filesystem encoding and error handler` are configured at Python " +"startup by the :c:func:`PyConfig_Read` function: see :c:member:`~PyConfig." +"filesystem_encoding` and :c:member:`~PyConfig.filesystem_errors` members of :" +"c:type:`PyConfig`." msgstr "" -":term:`filesystem encoding and error handler` Python başlangıcında :c:func:`PyConfig_Read` işleviyle " -"yapılandırılır: bkz. :c:member:`~PyConfig.filesystem_encoding` ve :c:member:`~PyConfig. filesystem_errors` " -"üyeleri :c:type:`PyConfig`." +":term:`filesystem encoding and error handler` Python başlangıcında :c:func:" +"`PyConfig_Read` işleviyle yapılandırılır: bkz. :c:member:`~PyConfig." +"filesystem_encoding` ve :c:member:`~PyConfig. filesystem_errors` üyeleri :c:" +"type:`PyConfig`." #: glossary.rst:437 msgid "See also the :term:`locale encoding`." @@ -885,17 +1036,23 @@ msgid "finder" msgstr "bulucu" #: glossary.rst:440 -msgid "An object that tries to find the :term:`loader` for a module that is being imported." -msgstr "İçe aktarılmakta olan bir modül için :term:`loader` 'ı bulmaya çalışan bir nesne." +msgid "" +"An object that tries to find the :term:`loader` for a module that is being " +"imported." +msgstr "" +"İçe aktarılmakta olan bir modül için :term:`loader` 'ı bulmaya çalışan bir " +"nesne." #: glossary.rst:443 msgid "" -"Since Python 3.3, there are two types of finder: :term:`meta path finders ` for use with :" -"data:`sys.meta_path`, and :term:`path entry finders ` for use with :data:`sys." -"path_hooks`." +"Since Python 3.3, there are two types of finder: :term:`meta path finders " +"` for use with :data:`sys.meta_path`, and :term:`path " +"entry finders ` for use with :data:`sys.path_hooks`." msgstr "" -"Python 3.3'ten beri, iki çeşit bulucu vardır: :data:`sys.meta_path` ile kullanılmak üzere :term:`meta yol bulucular `, " -"ve :data:`sys.path_hooks` ile kullanılmak üzere :term:`yol girişi bulucular `." +"Python 3.3'ten beri, iki çeşit bulucu vardır: :data:`sys.meta_path` ile " +"kullanılmak üzere :term:`meta yol bulucular `, ve :data:" +"`sys.path_hooks` ile kullanılmak üzere :term:`yol girişi bulucular `." #: glossary.rst:447 msgid "See :pep:`302`, :pep:`420` and :pep:`451` for much more detail." @@ -907,14 +1064,17 @@ msgstr "kat bölümü" #: glossary.rst:450 msgid "" -"Mathematical division that rounds down to nearest integer. The floor division operator is ``//``. For " -"example, the expression ``11 // 4`` evaluates to ``2`` in contrast to the ``2.75`` returned by float true " -"division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75`` rounded *downward*. See :pep:`238`." +"Mathematical division that rounds down to nearest integer. The floor " +"division operator is ``//``. For example, the expression ``11 // 4`` " +"evaluates to ``2`` in contrast to the ``2.75`` returned by float true " +"division. Note that ``(-11) // 4`` is ``-3`` because that is ``-2.75`` " +"rounded *downward*. See :pep:`238`." msgstr "" -"En yakın tam sayıya yuvarlayan matematiksel bölme. Kat bölme operatörü ``//`` şeklindedir. Örneğin, " -"``11 // 4`` ifadesi, gerçek yüzer bölme tarafından döndürülen ``2.75`` değerinin aksine ``2`` olarak " -"değerlendirilir. ``(-11) // 4`` 'ün ``-3`` olduğuna dikkat edin, çünkü bu ``-2.75`` yuvarlatılmış *aşağı*. " -"Bakınız :pep:`238`." +"En yakın tam sayıya yuvarlayan matematiksel bölme. Kat bölme operatörü ``//" +"`` şeklindedir. Örneğin, ``11 // 4`` ifadesi, gerçek yüzer bölme tarafından " +"döndürülen ``2.75`` değerinin aksine ``2`` olarak değerlendirilir. " +"``(-11) // 4`` 'ün ``-3`` olduğuna dikkat edin, çünkü bu ``-2.75`` " +"yuvarlatılmış *aşağı*. Bakınız :pep:`238`." #: glossary.rst:455 msgid "function" @@ -922,12 +1082,14 @@ msgstr "fonksiyon" #: glossary.rst:457 msgid "" -"A series of statements which returns some value to a caller. It can also be passed zero or more :term:" -"`arguments ` which may be used in the execution of the body. See also :term:`parameter`, :term:" -"`method`, and the :ref:`function` section." +"A series of statements which returns some value to a caller. It can also be " +"passed zero or more :term:`arguments ` which may be used in the " +"execution of the body. See also :term:`parameter`, :term:`method`, and the :" +"ref:`function` section." msgstr "" -"Bir arayana bir değer döndüren bir dizi ifade. Ayrıca, gövdenin yürütülmesinde kullanılabilen sıfır veya " -"daha fazla :term:`argüman ` iletilebilir. Ayrıca :term:`parameter`, :term:`method` ve :ref:" +"Bir arayana bir değer döndüren bir dizi ifade. Ayrıca, gövdenin " +"yürütülmesinde kullanılabilen sıfır veya daha fazla :term:`argüman " +"` iletilebilir. Ayrıca :term:`parameter`, :term:`method` ve :ref:" "`function` bölümüne bakın." #: glossary.rst:461 @@ -936,15 +1098,19 @@ msgstr "fonksiyon açıklaması" #: glossary.rst:463 msgid "An :term:`annotation` of a function parameter or return value." -msgstr "Bir işlev parametresinin veya dönüş değerinin :term:`ek açıklaması `." +msgstr "" +"Bir işlev parametresinin veya dönüş değerinin :term:`ek açıklaması " +"`." #: glossary.rst:465 msgid "" -"Function annotations are usually used for :term:`type hints `: for example, this function is " -"expected to take two :class:`int` arguments and is also expected to have an :class:`int` return value::" +"Function annotations are usually used for :term:`type hints `: " +"for example, this function is expected to take two :class:`int` arguments " +"and is also expected to have an :class:`int` return value::" msgstr "" -"İşlev ek açıklamaları genellikle :term:`type hints ` için kullanılır: örneğin, bu fonksiyonun " -"iki :class:`int` argüman alması ve ayrıca bir :class:`int` dönüş değerine sahip olması beklenir ::" +"İşlev ek açıklamaları genellikle :term:`type hints ` için " +"kullanılır: örneğin, bu fonksiyonun iki :class:`int` argüman alması ve " +"ayrıca bir :class:`int` dönüş değerine sahip olması beklenir ::" #: glossary.rst:473 msgid "Function annotation syntax is explained in section :ref:`function`." @@ -952,11 +1118,13 @@ msgstr "İşlev açıklama sözdizimi :ref:`function` bölümünde açıklanmakt #: glossary.rst:475 msgid "" -"See :term:`variable annotation` and :pep:`484`, which describe this functionality. Also see :ref:" -"`annotations-howto` for best practices on working with annotations." +"See :term:`variable annotation` and :pep:`484`, which describe this " +"functionality. Also see :ref:`annotations-howto` for best practices on " +"working with annotations." msgstr "" -"Bu işlevi açıklayan :term:`variable annotation` ve :pep:`484` 'e bakın. Ek açıklamalarla çalışmaya ilişkin " -"en iyi uygulamalar için ayrıca :ref:`annotations-howto` konusuna bakın." +"Bu işlevi açıklayan :term:`variable annotation` ve :pep:`484` 'e bakın. Ek " +"açıklamalarla çalışmaya ilişkin en iyi uygulamalar için ayrıca :ref:" +"`annotations-howto` konusuna bakın." #: glossary.rst:479 msgid "__future__" @@ -964,17 +1132,21 @@ msgstr "__future__" #: glossary.rst:481 msgid "" -"A :ref:`future statement `, ``from __future__ import ``, directs the compiler to compile " -"the current module using syntax or semantics that will become standard in a future release of Python. The :" -"mod:`__future__` module documents the possible values of *feature*. By importing this module and " -"evaluating its variables, you can see when a new feature was first added to the language and when it will " -"(or did) become the default::" -msgstr "" -"Bir :ref:`future ifadesi `, ``from __future__ import ``, derleyiciyi, Python'un " -"gelecekteki bir sürümünde standart hale gelecek olan sözdizimini veya semantiği kullanarak mevcut modülü " -"derlemeye yönlendirir. :mod:`__future__` modülü, *feature*'ın olası değerlerini belgeler. Bu modülü içe " -"aktararak ve değişkenlerini değerlendirerek, dile ilk kez yeni bir özelliğin ne zaman eklendiğini ve ne " -"zaman varsayılan olacağını (ya da yaptığını) görebilirsiniz:" +"A :ref:`future statement `, ``from __future__ import ``, " +"directs the compiler to compile the current module using syntax or semantics " +"that will become standard in a future release of Python. The :mod:" +"`__future__` module documents the possible values of *feature*. By " +"importing this module and evaluating its variables, you can see when a new " +"feature was first added to the language and when it will (or did) become the " +"default::" +msgstr "" +"Bir :ref:`future ifadesi `, ``from __future__ import ``, " +"derleyiciyi, Python'un gelecekteki bir sürümünde standart hale gelecek olan " +"sözdizimini veya semantiği kullanarak mevcut modülü derlemeye yönlendirir. :" +"mod:`__future__` modülü, *feature*'ın olası değerlerini belgeler. Bu modülü " +"içe aktararak ve değişkenlerini değerlendirerek, dile ilk kez yeni bir " +"özelliğin ne zaman eklendiğini ve ne zaman varsayılan olacağını (ya da " +"yaptığını) görebilirsiniz:" #: glossary.rst:492 msgid "garbage collection" @@ -982,13 +1154,15 @@ msgstr "çöp toplama" #: glossary.rst:494 msgid "" -"The process of freeing memory when it is not used anymore. Python performs garbage collection via " -"reference counting and a cyclic garbage collector that is able to detect and break reference cycles. The " -"garbage collector can be controlled using the :mod:`gc` module." +"The process of freeing memory when it is not used anymore. Python performs " +"garbage collection via reference counting and a cyclic garbage collector " +"that is able to detect and break reference cycles. The garbage collector " +"can be controlled using the :mod:`gc` module." msgstr "" -"Artık kullanılmadığında belleği boşaltma işlemi. Python, referans sayımı ve referans döngülerini algılayıp " -"kırabilen bir döngüsel çöp toplayıcı aracılığıyla çöp toplama gerçekleştirir. Çöp toplayıcı :mod:`gc` " -"modülü kullanılarak kontrol edilebilir." +"Artık kullanılmadığında belleği boşaltma işlemi. Python, referans sayımı ve " +"referans döngülerini algılayıp kırabilen bir döngüsel çöp toplayıcı " +"aracılığıyla çöp toplama gerçekleştirir. Çöp toplayıcı :mod:`gc` modülü " +"kullanılarak kontrol edilebilir." #: glossary.rst:500 msgid "generator" @@ -996,22 +1170,25 @@ msgstr "jeneratör" #: glossary.rst:502 msgid "" -"A function which returns a :term:`generator iterator`. It looks like a normal function except that it " -"contains :keyword:`yield` expressions for producing a series of values usable in a for-loop or that can be " -"retrieved one at a time with the :func:`next` function." +"A function which returns a :term:`generator iterator`. It looks like a " +"normal function except that it contains :keyword:`yield` expressions for " +"producing a series of values usable in a for-loop or that can be retrieved " +"one at a time with the :func:`next` function." msgstr "" -"Bir :term:`generator iterator` döndüren bir işlev. Bir for döngüsünde kullanılabilen bir dizi değer " -"üretmek için :keyword:`yield` ifadeleri içermesi veya :func:`next` işleviyle birer birer alınabilmesi " -"dışında normal bir işleve benziyor." +"Bir :term:`generator iterator` döndüren bir işlev. Bir for döngüsünde " +"kullanılabilen bir dizi değer üretmek için :keyword:`yield` ifadeleri " +"içermesi veya :func:`next` işleviyle birer birer alınabilmesi dışında normal " +"bir işleve benziyor." #: glossary.rst:507 msgid "" -"Usually refers to a generator function, but may refer to a *generator iterator* in some contexts. In cases " -"where the intended meaning isn't clear, using the full terms avoids ambiguity." +"Usually refers to a generator function, but may refer to a *generator " +"iterator* in some contexts. In cases where the intended meaning isn't " +"clear, using the full terms avoids ambiguity." msgstr "" -"Genellikle bir üretici işlevine atıfta bulunur, ancak bazı bağlamlarda bir *jeneratör yineleyicisine* " -"atıfta bulunabilir. Amaçlanan anlamın net olmadığı durumlarda, tam terimlerin kullanılması belirsizliği " -"önler." +"Genellikle bir üretici işlevine atıfta bulunur, ancak bazı bağlamlarda bir " +"*jeneratör yineleyicisine* atıfta bulunabilir. Amaçlanan anlamın net " +"olmadığı durumlarda, tam terimlerin kullanılması belirsizliği önler." #: glossary.rst:510 msgid "generator iterator" @@ -1023,13 +1200,15 @@ msgstr "Bir :term:`generator` işlevi tarafından oluşturulan bir nesne." #: glossary.rst:514 msgid "" -"Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including " -"local variables and pending try-statements). When the *generator iterator* resumes, it picks up where it " +"Each :keyword:`yield` temporarily suspends processing, remembering the " +"location execution state (including local variables and pending try-" +"statements). When the *generator iterator* resumes, it picks up where it " "left off (in contrast to functions which start fresh on every invocation)." msgstr "" -"Her :keyword:`yield`, konum yürütme durumunu hatırlayarak (yerel değişkenler ve bekleyen try ifadeleri " -"dahil) işlemeyi geçici olarak askıya alır. *jeneratör yineleyici* devam ettiğinde, kaldığı yerden devam " -"eder (her çağrıda yeniden başlayan işlevlerin aksine)." +"Her :keyword:`yield`, konum yürütme durumunu hatırlayarak (yerel değişkenler " +"ve bekleyen try ifadeleri dahil) işlemeyi geçici olarak askıya alır. " +"*jeneratör yineleyici* devam ettiğinde, kaldığı yerden devam eder (her " +"çağrıda yeniden başlayan işlevlerin aksine)." #: glossary.rst:521 msgid "generator expression" @@ -1037,13 +1216,15 @@ msgstr "jeneratör ifadesi" #: glossary.rst:523 msgid "" -"An expression that returns an iterator. It looks like a normal expression followed by a :keyword:`!for` " -"clause defining a loop variable, range, and an optional :keyword:`!if` clause. The combined expression " -"generates values for an enclosing function::" +"An expression that returns an iterator. It looks like a normal expression " +"followed by a :keyword:`!for` clause defining a loop variable, range, and an " +"optional :keyword:`!if` clause. The combined expression generates values " +"for an enclosing function::" msgstr "" -"Yineleyici döndüren bir ifade. Bir döngü değişkenini, aralığı ve isteğe bağlı bir :keyword:`!if` yan " -"tümcesini tanımlayan bir :keyword:`!for` yan tümcesinin takip ettiği normal bir ifadeye benziyor. " -"Birleştirilmiş ifade, bir çevreleyen için değerler üretir::" +"Yineleyici döndüren bir ifade. Bir döngü değişkenini, aralığı ve isteğe " +"bağlı bir :keyword:`!if` yan tümcesini tanımlayan bir :keyword:`!for` yan " +"tümcesinin takip ettiği normal bir ifadeye benziyor. Birleştirilmiş ifade, " +"bir çevreleyen için değerler üretir::" #: glossary.rst:530 msgid "generic function" @@ -1051,19 +1232,21 @@ msgstr "genel işlev" #: glossary.rst:532 msgid "" -"A function composed of multiple functions implementing the same operation for different types. Which " -"implementation should be used during a call is determined by the dispatch algorithm." +"A function composed of multiple functions implementing the same operation " +"for different types. Which implementation should be used during a call is " +"determined by the dispatch algorithm." msgstr "" -"Farklı türler için aynı işlemi uygulayan birden çok işlevden oluşan bir işlev. Bir çağrı sırasında hangi " -"uygulamanın kullanılması gerektiği, gönderme algoritması tarafından belirlenir." +"Farklı türler için aynı işlemi uygulayan birden çok işlevden oluşan bir " +"işlev. Bir çağrı sırasında hangi uygulamanın kullanılması gerektiği, " +"gönderme algoritması tarafından belirlenir." #: glossary.rst:536 msgid "" -"See also the :term:`single dispatch` glossary entry, the :func:`functools.singledispatch` decorator, and :" -"pep:`443`." +"See also the :term:`single dispatch` glossary entry, the :func:`functools." +"singledispatch` decorator, and :pep:`443`." msgstr "" -"Ayrıca :term:`single dispatch` sözlük girdisine, :func:`functools.singledispatch` dekoratörüne ve :pep:" -"`443` 'e bakın." +"Ayrıca :term:`single dispatch` sözlük girdisine, :func:`functools." +"singledispatch` dekoratörüne ve :pep:`443` 'e bakın." #: glossary.rst:538 msgid "generic type" @@ -1071,20 +1254,21 @@ msgstr "genel tip" #: glossary.rst:540 msgid "" -"A :term:`type` that can be parameterized; typically a :ref:`container class` such as :class:" -"`list` or :class:`dict`. Used for :term:`type hints ` and :term:`annotations `." +"A :term:`type` that can be parameterized; typically a :ref:`container " +"class` such as :class:`list` or :class:`dict`. Used for :" +"term:`type hints ` and :term:`annotations `." msgstr "" -"Parametrelendirilebilen bir :term:`type`; tipik olarak bir :ref:`konteyner sınıfı `, " -"örneğin :class:`list` veya :class:`dict`. :term:`type hint` ve :term:" -"`annotation` için kullanılır." +"Parametrelendirilebilen bir :term:`type`; tipik olarak bir :ref:`konteyner " +"sınıfı `, örneğin :class:`list` veya :class:`dict`. :term:" +"`type hint` ve :term:`annotation` için kullanılır." #: glossary.rst:545 msgid "" -"For more details, see :ref:`generic alias types`, :pep:`483`, :pep:`484`, :pep:`585`, " -"and the :mod:`typing` module." +"For more details, see :ref:`generic alias types`, :pep:" +"`483`, :pep:`484`, :pep:`585`, and the :mod:`typing` module." msgstr "" -"Daha fazla ayrıntı için :ref:`generic allias types`, :pep:`483`, :pep:`484`, :pep:`585` " -"ve :mod:`typing` modülüne bakın." +"Daha fazla ayrıntı için :ref:`generic allias types`, :" +"pep:`483`, :pep:`484`, :pep:`585` ve :mod:`typing` modülüne bakın." #: glossary.rst:547 msgid "GIL" @@ -1100,40 +1284,48 @@ msgstr "genel tercüman kilidi" #: glossary.rst:552 msgid "" -"The mechanism used by the :term:`CPython` interpreter to assure that only one thread executes Python :term:" -"`bytecode` at a time. This simplifies the CPython implementation by making the object model (including " -"critical built-in types such as :class:`dict`) implicitly safe against concurrent access. Locking the " -"entire interpreter makes it easier for the interpreter to be multi-threaded, at the expense of much of the " -"parallelism afforded by multi-processor machines." -msgstr "" -":term:`CPython` yorumlayıcısı tarafından aynı anda yalnızca bir iş parçacığının Python :term:`bytecode` 'u " -"yürütmesini sağlamak için kullanılan mekanizma. Bu, nesne modelini (:class:`dict` gibi kritik yerleşik " -"türler dahil) eşzamanlı erişime karşı örtük olarak güvenli hale getirerek CPython uygulamasını " -"basitleştirir. Tüm yorumlayıcıyı kilitlemek, çok işlemcili makinelerin sağladığı paralelliğin çoğu " -"pahasına, yorumlayıcının çok iş parçacıklı olmasını kolaylaştırır." +"The mechanism used by the :term:`CPython` interpreter to assure that only " +"one thread executes Python :term:`bytecode` at a time. This simplifies the " +"CPython implementation by making the object model (including critical built-" +"in types such as :class:`dict`) implicitly safe against concurrent access. " +"Locking the entire interpreter makes it easier for the interpreter to be " +"multi-threaded, at the expense of much of the parallelism afforded by multi-" +"processor machines." +msgstr "" +":term:`CPython` yorumlayıcısı tarafından aynı anda yalnızca bir iş " +"parçacığının Python :term:`bytecode` 'u yürütmesini sağlamak için kullanılan " +"mekanizma. Bu, nesne modelini (:class:`dict` gibi kritik yerleşik türler " +"dahil) eşzamanlı erişime karşı örtük olarak güvenli hale getirerek CPython " +"uygulamasını basitleştirir. Tüm yorumlayıcıyı kilitlemek, çok işlemcili " +"makinelerin sağladığı paralelliğin çoğu pahasına, yorumlayıcının çok iş " +"parçacıklı olmasını kolaylaştırır." #: glossary.rst:561 #, fuzzy msgid "" -"However, some extension modules, either standard or third-party, are designed so as to release the GIL when " -"doing computationally intensive tasks such as compression or hashing. Also, the GIL is always released " -"when doing I/O." +"However, some extension modules, either standard or third-party, are " +"designed so as to release the GIL when doing computationally intensive tasks " +"such as compression or hashing. Also, the GIL is always released when doing " +"I/O." msgstr "" -"Bununla birlikte, standart veya üçüncü taraf bazı genişletme modülleri, sıkıştırma veya karma gibi " -"hesaplama açısından yoğun görevler yaparken GIL'yi serbest bırakacak şekilde tasarlanmıştır. Ayrıca, GIL, " -"G/Ç yaparken her zaman serbest bırakılır." +"Bununla birlikte, standart veya üçüncü taraf bazı genişletme modülleri, " +"sıkıştırma veya karma gibi hesaplama açısından yoğun görevler yaparken " +"GIL'yi serbest bırakacak şekilde tasarlanmıştır. Ayrıca, GIL, G/Ç yaparken " +"her zaman serbest bırakılır." #: glossary.rst:566 msgid "" -"Past efforts to create a \"free-threaded\" interpreter (one which locks shared data at a much finer " -"granularity) have not been successful because performance suffered in the common single-processor case. It " -"is believed that overcoming this performance issue would make the implementation much more complicated and " -"therefore costlier to maintain." +"Past efforts to create a \"free-threaded\" interpreter (one which locks " +"shared data at a much finer granularity) have not been successful because " +"performance suffered in the common single-processor case. It is believed " +"that overcoming this performance issue would make the implementation much " +"more complicated and therefore costlier to maintain." msgstr "" -"\"Serbest iş parçacıklı\" bir yorumlayıcı (paylaşılan verileri çok daha ince bir ayrıntı düzeyinde " -"kilitleyen) oluşturma çabaları, ortak tek işlemcili durumda performans düştüğü için başarılı olmamıştır. Bu " -"performans sorununun üstesinden gelinmesinin uygulamayı çok daha karmaşık hale getireceğine ve dolayısıyla " -"bakımını daha maliyetli hale getireceğine inanılmaktadır." +"\"Serbest iş parçacıklı\" bir yorumlayıcı (paylaşılan verileri çok daha ince " +"bir ayrıntı düzeyinde kilitleyen) oluşturma çabaları, ortak tek işlemcili " +"durumda performans düştüğü için başarılı olmamıştır. Bu performans sorununun " +"üstesinden gelinmesinin uygulamayı çok daha karmaşık hale getireceğine ve " +"dolayısıyla bakımını daha maliyetli hale getireceğine inanılmaktadır." #: glossary.rst:572 msgid "hash-based pyc" @@ -1141,11 +1333,13 @@ msgstr "karma tabanlı pyc" #: glossary.rst:574 msgid "" -"A bytecode cache file that uses the hash rather than the last-modified time of the corresponding source " -"file to determine its validity. See :ref:`pyc-invalidation`." +"A bytecode cache file that uses the hash rather than the last-modified time " +"of the corresponding source file to determine its validity. See :ref:`pyc-" +"invalidation`." msgstr "" -"Geçerliliğini belirlemek için ilgili kaynak dosyanın son değiştirilme zamanı yerine karma değerini kullanan " -"bir bayt kodu önbellek dosyası. Bakınız :ref:`pyc-invalidation`." +"Geçerliliğini belirlemek için ilgili kaynak dosyanın son değiştirilme zamanı " +"yerine karma değerini kullanan bir bayt kodu önbellek dosyası. Bakınız :ref:" +"`pyc-invalidation`." #: glossary.rst:577 msgid "hashable" @@ -1153,34 +1347,41 @@ msgstr "yıkanabilir" #: glossary.rst:579 msgid "" -"An object is *hashable* if it has a hash value which never changes during its lifetime (it needs a :meth:" -"`__hash__` method), and can be compared to other objects (it needs an :meth:`__eq__` method). Hashable " -"objects which compare equal must have the same hash value." +"An object is *hashable* if it has a hash value which never changes during " +"its lifetime (it needs a :meth:`__hash__` method), and can be compared to " +"other objects (it needs an :meth:`__eq__` method). Hashable objects which " +"compare equal must have the same hash value." msgstr "" -"Bir nesne, ömrü boyunca asla değişmeyen bir karma değere sahipse (bir :meth:`__hash__` yöntemine ihtiyaç " -"duyar) ve diğer nesnelerle karşılaştırılabilirse (bir :meth:`__eq__` yöntemine ihtiyaç duyar) *hashable* " -"olur. . Eşit karşılaştıran Hashable nesneleri aynı karma değerine sahip olmalıdır." +"Bir nesne, ömrü boyunca asla değişmeyen bir karma değere sahipse (bir :meth:" +"`__hash__` yöntemine ihtiyaç duyar) ve diğer nesnelerle " +"karşılaştırılabilirse (bir :meth:`__eq__` yöntemine ihtiyaç duyar) " +"*hashable* olur. . Eşit karşılaştıran Hashable nesneleri aynı karma " +"değerine sahip olmalıdır." #: glossary.rst:584 msgid "" -"Hashability makes an object usable as a dictionary key and a set member, because these data structures use " -"the hash value internally." +"Hashability makes an object usable as a dictionary key and a set member, " +"because these data structures use the hash value internally." msgstr "" -"Hashability, bir nesneyi bir sözlük anahtarı ve bir set üyesi olarak kullanılabilir hale getirir, çünkü bu " -"veri yapıları hash değerini dahili olarak kullanır." +"Hashability, bir nesneyi bir sözlük anahtarı ve bir set üyesi olarak " +"kullanılabilir hale getirir, çünkü bu veri yapıları hash değerini dahili " +"olarak kullanır." #: glossary.rst:587 msgid "" -"Most of Python's immutable built-in objects are hashable; mutable containers (such as lists or " -"dictionaries) are not; immutable containers (such as tuples and frozensets) are only hashable if their " -"elements are hashable. Objects which are instances of user-defined classes are hashable by default. They " -"all compare unequal (except with themselves), and their hash value is derived from their :func:`id`." +"Most of Python's immutable built-in objects are hashable; mutable containers " +"(such as lists or dictionaries) are not; immutable containers (such as " +"tuples and frozensets) are only hashable if their elements are hashable. " +"Objects which are instances of user-defined classes are hashable by " +"default. They all compare unequal (except with themselves), and their hash " +"value is derived from their :func:`id`." msgstr "" -"Python'un değişmez yerleşik nesnelerinin çoğu, yıkanabilir; değiştirilebilir kaplar (listeler veya " -"sözlükler gibi) değildir; değişmez kaplar (tüpler ve donmuş kümeler gibi) yalnızca öğelerinin yıkanabilir " -"olması durumunda yıkanabilirdir. Kullanıcı tanımlı sınıfların örnekleri olan nesneler varsayılan olarak " -"hash edilebilirdir. Hepsi eşit olmayanı karşılaştırır (kendileriyle hariç) ve hash değerleri :func:`id` " -"'lerinden türetilir." +"Python'un değişmez yerleşik nesnelerinin çoğu, yıkanabilir; değiştirilebilir " +"kaplar (listeler veya sözlükler gibi) değildir; değişmez kaplar (tüpler ve " +"donmuş kümeler gibi) yalnızca öğelerinin yıkanabilir olması durumunda " +"yıkanabilirdir. Kullanıcı tanımlı sınıfların örnekleri olan nesneler " +"varsayılan olarak hash edilebilirdir. Hepsi eşit olmayanı karşılaştırır " +"(kendileriyle hariç) ve hash değerleri :func:`id` 'lerinden türetilir." #: glossary.rst:594 msgid "IDLE" @@ -1189,11 +1390,12 @@ msgstr "BOŞTA" #: glossary.rst:596 #, fuzzy msgid "" -"An Integrated Development and Learning Environment for Python. :ref:`idle` is a basic editor and " -"interpreter environment which ships with the standard distribution of Python." +"An Integrated Development and Learning Environment for Python. :ref:`idle` " +"is a basic editor and interpreter environment which ships with the standard " +"distribution of Python." msgstr "" -"Python için Entegre Geliştirme Ortamı. IDLE, Python'un standart dağıtımıyla birlikte gelen temel bir " -"düzenleyici ve yorumlayıcı ortamıdır." +"Python için Entegre Geliştirme Ortamı. IDLE, Python'un standart dağıtımıyla " +"birlikte gelen temel bir düzenleyici ve yorumlayıcı ortamıdır." #: glossary.rst:599 msgid "immutable" @@ -1201,13 +1403,17 @@ msgstr "değişmez" #: glossary.rst:601 msgid "" -"An object with a fixed value. Immutable objects include numbers, strings and tuples. Such an object " -"cannot be altered. A new object has to be created if a different value has to be stored. They play an " -"important role in places where a constant hash value is needed, for example as a key in a dictionary." +"An object with a fixed value. Immutable objects include numbers, strings " +"and tuples. Such an object cannot be altered. A new object has to be " +"created if a different value has to be stored. They play an important role " +"in places where a constant hash value is needed, for example as a key in a " +"dictionary." msgstr "" -"Sabit değeri olan bir nesne. Değişmez nesneler arasında sayılar, dizeler ve demetler bulunur. Böyle bir " -"nesne değiştirilemez. Farklı bir değerin saklanması gerekiyorsa yeni bir nesne oluşturulmalıdır. Örneğin " -"bir sözlükte anahtar olarak, sabit bir karma değerinin gerekli olduğu yerlerde önemli bir rol oynarlar." +"Sabit değeri olan bir nesne. Değişmez nesneler arasında sayılar, dizeler ve " +"demetler bulunur. Böyle bir nesne değiştirilemez. Farklı bir değerin " +"saklanması gerekiyorsa yeni bir nesne oluşturulmalıdır. Örneğin bir " +"sözlükte anahtar olarak, sabit bir karma değerinin gerekli olduğu yerlerde " +"önemli bir rol oynarlar." #: glossary.rst:606 msgid "import path" @@ -1215,29 +1421,39 @@ msgstr "içe aktarım yolu" #: glossary.rst:608 msgid "" -"A list of locations (or :term:`path entries `) that are searched by the :term:`path based " -"finder` for modules to import. During import, this list of locations usually comes from :data:`sys.path`, " -"but for subpackages it may also come from the parent package's ``__path__`` attribute." +"A list of locations (or :term:`path entries `) that are searched " +"by the :term:`path based finder` for modules to import. During import, this " +"list of locations usually comes from :data:`sys.path`, but for subpackages " +"it may also come from the parent package's ``__path__`` attribute." msgstr "" -"İçe aktarılacak modüller için :term:`path based finder` tarafından aranan konumların (veya :term:`path " -"entries `) listesi. İçe aktarma sırasında, bu konum listesi genellikle :data:`sys.path` " -"adresinden gelir, ancak alt paketler için üst paketin ``__path__`` özelliğinden de gelebilir." +"İçe aktarılacak modüller için :term:`path based finder` tarafından aranan " +"konumların (veya :term:`path entries `) listesi. İçe aktarma " +"sırasında, bu konum listesi genellikle :data:`sys.path` adresinden gelir, " +"ancak alt paketler için üst paketin ``__path__`` özelliğinden de gelebilir." #: glossary.rst:613 msgid "importing" msgstr "içe aktarma" #: glossary.rst:615 -msgid "The process by which Python code in one module is made available to Python code in another module." -msgstr "Bir modüldeki Python kodunun başka bir modüldeki Python koduna sunulması süreci." +msgid "" +"The process by which Python code in one module is made available to Python " +"code in another module." +msgstr "" +"Bir modüldeki Python kodunun başka bir modüldeki Python koduna sunulması " +"süreci." #: glossary.rst:617 msgid "importer" msgstr "içe aktarıcı" #: glossary.rst:619 -msgid "An object that both finds and loads a module; both a :term:`finder` and :term:`loader` object." -msgstr "Bir modülü hem bulan hem de yükleyen bir nesne; hem bir :term:`finder` hem de :term:`loader` nesnesi." +msgid "" +"An object that both finds and loads a module; both a :term:`finder` and :" +"term:`loader` object." +msgstr "" +"Bir modülü hem bulan hem de yükleyen bir nesne; hem bir :term:`finder` hem " +"de :term:`loader` nesnesi." #: glossary.rst:621 msgid "interactive" @@ -1245,16 +1461,18 @@ msgstr "etkileşimli" #: glossary.rst:623 msgid "" -"Python has an interactive interpreter which means you can enter statements and expressions at the " -"interpreter prompt, immediately execute them and see their results. Just launch ``python`` with no " -"arguments (possibly by selecting it from your computer's main menu). It is a very powerful way to test out " -"new ideas or inspect modules and packages (remember ``help(x)``)." +"Python has an interactive interpreter which means you can enter statements " +"and expressions at the interpreter prompt, immediately execute them and see " +"their results. Just launch ``python`` with no arguments (possibly by " +"selecting it from your computer's main menu). It is a very powerful way to " +"test out new ideas or inspect modules and packages (remember ``help(x)``)." msgstr "" -"Python'un etkileşimli bir yorumlayıcısı vardır; bu, yorumlayıcı isteminde ifadeler ve ifadeler " -"girebileceğiniz, bunları hemen çalıştırabileceğiniz ve sonuçlarını görebileceğiniz anlamına gelir. " -"Herhangi bir argüman olmadan ``python`` 'u başlatmanız yeterlidir (muhtemelen bilgisayarınızın ana " -"menüsünden seçerek). Yeni fikirleri test etmenin veya modülleri ve paketleri incelemenin çok güçlü bir " -"yoludur (``help(x)`` 'i unutmayın)." +"Python'un etkileşimli bir yorumlayıcısı vardır; bu, yorumlayıcı isteminde " +"ifadeler ve ifadeler girebileceğiniz, bunları hemen çalıştırabileceğiniz ve " +"sonuçlarını görebileceğiniz anlamına gelir. Herhangi bir argüman olmadan " +"``python`` 'u başlatmanız yeterlidir (muhtemelen bilgisayarınızın ana " +"menüsünden seçerek). Yeni fikirleri test etmenin veya modülleri ve paketleri " +"incelemenin çok güçlü bir yoludur (``help(x)`` 'i unutmayın)." #: glossary.rst:629 msgid "interpreted" @@ -1262,17 +1480,20 @@ msgstr "yorumlanmış" #: glossary.rst:631 msgid "" -"Python is an interpreted language, as opposed to a compiled one, though the distinction can be blurry " -"because of the presence of the bytecode compiler. This means that source files can be run directly without " -"explicitly creating an executable which is then run. Interpreted languages typically have a shorter " -"development/debug cycle than compiled ones, though their programs generally also run more slowly. See " -"also :term:`interactive`." -msgstr "" -"Python, derlenmiş bir dilin aksine yorumlanmış bir dildir, ancak bayt kodu derleyicisinin varlığı nedeniyle " -"ayrım bulanık olabilir. Bu, kaynak dosyaların daha sonra çalıştırılacak bir yürütülebilir dosya " -"oluşturmadan doğrudan çalıştırılabileceği anlamına gelir. Yorumlanan diller genellikle derlenmiş dillerden " -"daha kısa bir geliştirme/hata ayıklama döngüsüne sahiptir, ancak programları genellikle daha yavaş " -"çalışır. Ayrıca bkz. :term:`interactive`." +"Python is an interpreted language, as opposed to a compiled one, though the " +"distinction can be blurry because of the presence of the bytecode compiler. " +"This means that source files can be run directly without explicitly creating " +"an executable which is then run. Interpreted languages typically have a " +"shorter development/debug cycle than compiled ones, though their programs " +"generally also run more slowly. See also :term:`interactive`." +msgstr "" +"Python, derlenmiş bir dilin aksine yorumlanmış bir dildir, ancak bayt kodu " +"derleyicisinin varlığı nedeniyle ayrım bulanık olabilir. Bu, kaynak " +"dosyaların daha sonra çalıştırılacak bir yürütülebilir dosya oluşturmadan " +"doğrudan çalıştırılabileceği anlamına gelir. Yorumlanan diller genellikle " +"derlenmiş dillerden daha kısa bir geliştirme/hata ayıklama döngüsüne " +"sahiptir, ancak programları genellikle daha yavaş çalışır. Ayrıca bkz. :" +"term:`interactive`." #: glossary.rst:638 msgid "interpreter shutdown" @@ -1280,27 +1501,31 @@ msgstr "tercüman kapatma" #: glossary.rst:640 msgid "" -"When asked to shut down, the Python interpreter enters a special phase where it gradually releases all " -"allocated resources, such as modules and various critical internal structures. It also makes several calls " -"to the :term:`garbage collector `. This can trigger the execution of code in user-" -"defined destructors or weakref callbacks. Code executed during the shutdown phase can encounter various " -"exceptions as the resources it relies on may not function anymore (common examples are library modules or " +"When asked to shut down, the Python interpreter enters a special phase where " +"it gradually releases all allocated resources, such as modules and various " +"critical internal structures. It also makes several calls to the :term:" +"`garbage collector `. This can trigger the execution of " +"code in user-defined destructors or weakref callbacks. Code executed during " +"the shutdown phase can encounter various exceptions as the resources it " +"relies on may not function anymore (common examples are library modules or " "the warnings machinery)." msgstr "" -"Kapatılması istendiğinde, Python yorumlayıcısı, modüller ve çeşitli kritik iç yapılar gibi tahsis edilen " -"tüm kaynakları kademeli olarak serbest bıraktığı özel bir aşamaya girer. Ayrıca :term:`garbage collector " -"` için birkaç çağrı yapar. Bu, kullanıcı tanımlı yıkıcılarda veya zayıf referans geri " -"aramalarında kodun yürütülmesini tetikleyebilir. Kapatma aşamasında yürütülen kod, dayandığı kaynaklar " -"artık çalışmayabileceğinden çeşitli istisnalarla karşılaşabilir (yaygın örnekler kitaplık modülleri veya " +"Kapatılması istendiğinde, Python yorumlayıcısı, modüller ve çeşitli kritik " +"iç yapılar gibi tahsis edilen tüm kaynakları kademeli olarak serbest " +"bıraktığı özel bir aşamaya girer. Ayrıca :term:`garbage collector ` için birkaç çağrı yapar. Bu, kullanıcı tanımlı yıkıcılarda veya " +"zayıf referans geri aramalarında kodun yürütülmesini tetikleyebilir. Kapatma " +"aşamasında yürütülen kod, dayandığı kaynaklar artık çalışmayabileceğinden " +"çeşitli istisnalarla karşılaşabilir (yaygın örnekler kitaplık modülleri veya " "uyarı makineleridir)." #: glossary.rst:649 msgid "" -"The main reason for interpreter shutdown is that the ``__main__`` module or the script being run has " -"finished executing." +"The main reason for interpreter shutdown is that the ``__main__`` module or " +"the script being run has finished executing." msgstr "" -"Yorumlayıcının kapatılmasının ana nedeni, ``__main__`` modülünün veya çalıştırılan betiğin yürütmeyi " -"bitirmiş olmasıdır." +"Yorumlayıcının kapatılmasının ana nedeni, ``__main__`` modülünün veya " +"çalıştırılan betiğin yürütmeyi bitirmiş olmasıdır." #: glossary.rst:651 msgid "iterable" @@ -1308,33 +1533,42 @@ msgstr "yinelenebilir" #: glossary.rst:653 msgid "" -"An object capable of returning its members one at a time. Examples of iterables include all sequence types " -"(such as :class:`list`, :class:`str`, and :class:`tuple`) and some non-sequence types like :class:`dict`, :" -"term:`file objects `, and objects of any classes you define with an :meth:`__iter__` method or " -"with a :meth:`__getitem__` method that implements :term:`Sequence ` semantics." +"An object capable of returning its members one at a time. Examples of " +"iterables include all sequence types (such as :class:`list`, :class:`str`, " +"and :class:`tuple`) and some non-sequence types like :class:`dict`, :term:" +"`file objects `, and objects of any classes you define with an :" +"meth:`__iter__` method or with a :meth:`__getitem__` method that implements :" +"term:`Sequence ` semantics." msgstr "" -"Üyelerini teker teker döndürebilen bir nesne. Yineleme örnekleri, tüm dizi türlerini (:class:`list`, :class:" -"`str`, and :class:`tuple` gibi) ve :class:`dict`, :term:`dosya objeleri ` gibi bazı dizi " -"olmayan türleri ve bir :meth:`__iter__` yöntemiyle veya :term:`dizi ` semantiğini uygulayan bir :" -"meth:`__getitem__` yöntemiyle tanımladığınız tüm sınıfların nesnelerini içerir." +"Üyelerini teker teker döndürebilen bir nesne. Yineleme örnekleri, tüm dizi " +"türlerini (:class:`list`, :class:`str`, and :class:`tuple` gibi) ve :class:" +"`dict`, :term:`dosya objeleri ` gibi bazı dizi olmayan türleri " +"ve bir :meth:`__iter__` yöntemiyle veya :term:`dizi ` semantiğini " +"uygulayan bir :meth:`__getitem__` yöntemiyle tanımladığınız tüm sınıfların " +"nesnelerini içerir." #: glossary.rst:660 msgid "" -"Iterables can be used in a :keyword:`for` loop and in many other places where a sequence is needed (:func:" -"`zip`, :func:`map`, ...). When an iterable object is passed as an argument to the built-in function :func:" -"`iter`, it returns an iterator for the object. This iterator is good for one pass over the set of values. " -"When using iterables, it is usually not necessary to call :func:`iter` or deal with iterator objects " -"yourself. The ``for`` statement does that automatically for you, creating a temporary unnamed variable to " -"hold the iterator for the duration of the loop. See also :term:`iterator`, :term:`sequence`, and :term:" +"Iterables can be used in a :keyword:`for` loop and in many other places " +"where a sequence is needed (:func:`zip`, :func:`map`, ...). When an " +"iterable object is passed as an argument to the built-in function :func:" +"`iter`, it returns an iterator for the object. This iterator is good for " +"one pass over the set of values. When using iterables, it is usually not " +"necessary to call :func:`iter` or deal with iterator objects yourself. The " +"``for`` statement does that automatically for you, creating a temporary " +"unnamed variable to hold the iterator for the duration of the loop. See " +"also :term:`iterator`, :term:`sequence`, and :term:`generator`." +msgstr "" +"Yinelenebilirler bir :keyword:`for` döngüsünde ve bir dizinin gerekli olduğu " +"diğer birçok yerde kullanılabilir (:func:`zip`, :func:`map`, ...). " +"Yerleşik :func:`iter` işlevine argüman olarak yinelenebilir bir nesne " +"iletildiğinde, nesne için bir yineleyici döndürür. Bu yineleyici, değerler " +"kümesi üzerinden bir geçiş için iyidir. Yinelenebilirleri kullanırken, " +"genellikle :func:`iter` çağırmanız veya yineleyici nesnelerle kendiniz " +"ilgilenmeniz gerekmez. ``for`` ifadesi bunu sizin için otomatik olarak " +"yapar ve yineleyiciyi döngü süresince tutmak için geçici bir adsız değişken " +"oluşturur. Ayrıca bkz. :term:`iterator`, :term:`sequence` ve :term:" "`generator`." -msgstr "" -"Yinelenebilirler bir :keyword:`for` döngüsünde ve bir dizinin gerekli olduğu diğer birçok yerde " -"kullanılabilir (:func:`zip`, :func:`map`, ...). Yerleşik :func:`iter` işlevine argüman olarak " -"yinelenebilir bir nesne iletildiğinde, nesne için bir yineleyici döndürür. Bu yineleyici, değerler kümesi " -"üzerinden bir geçiş için iyidir. Yinelenebilirleri kullanırken, genellikle :func:`iter` çağırmanız veya " -"yineleyici nesnelerle kendiniz ilgilenmeniz gerekmez. ``for`` ifadesi bunu sizin için otomatik olarak " -"yapar ve yineleyiciyi döngü süresince tutmak için geçici bir adsız değişken oluşturur. Ayrıca bkz. :term:" -"`iterator`, :term:`sequence` ve :term:`generator`." #: glossary.rst:670 msgid "iterator" @@ -1342,36 +1576,48 @@ msgstr "yineleyici" #: glossary.rst:672 msgid "" -"An object representing a stream of data. Repeated calls to the iterator's :meth:`~iterator.__next__` " -"method (or passing it to the built-in function :func:`next`) return successive items in the stream. When " -"no more data are available a :exc:`StopIteration` exception is raised instead. At this point, the iterator " -"object is exhausted and any further calls to its :meth:`__next__` method just raise :exc:`StopIteration` " -"again. Iterators are required to have an :meth:`__iter__` method that returns the iterator object itself " -"so every iterator is also iterable and may be used in most places where other iterables are accepted. One " -"notable exception is code which attempts multiple iteration passes. A container object (such as a :class:" -"`list`) produces a fresh new iterator each time you pass it to the :func:`iter` function or use it in a :" -"keyword:`for` loop. Attempting this with an iterator will just return the same exhausted iterator object " -"used in the previous iteration pass, making it appear like an empty container." -msgstr "" -"Bir veri akışını temsil eden bir nesne. Yineleyicinin :meth:`~iterator.__next__` yöntemine (veya yerleşik :" -"func:`next` işlevine iletilmesi) yinelenen çağrılar, akıştaki ardışık öğeleri döndürür. Daha fazla veri " -"bulunmadığında, bunun yerine bir :exc:`StopIteration` istisnası oluşturulur. Bu noktada, yineleyici " -"nesnesi tükenir ve :meth:`__next__` yöntemine yapılan diğer çağrılar yalnızca :exc:`StopIteration` öğesini " -"yeniden yükseltir. Yineleyicilerin, yineleyici nesnesinin kendisini döndüren bir :meth:`__iter__` " -"yöntemine sahip olmaları gerekir, böylece her yineleyici de yinelenebilir ve diğer yinelenebilirlerin kabul " -"edildiği çoğu yerde kullanılabilir. Dikkate değer bir istisna, birden çok yineleme geçişini deneyen " -"koddur. Bir kapsayıcı nesnesi (örneğin bir :class:`list`), onu :func:`iter` işlevine her ilettiğinizde " -"veya onu bir :keyword:`for` döngüsünde kullandığınızda yeni bir yineleyici üretir. Bunu bir yineleyiciyle " -"denemek, önceki yineleme geçişinde kullanılan aynı tükenmiş yineleyici nesnesini döndürerek boş bir kap " -"gibi görünmesini sağlar." +"An object representing a stream of data. Repeated calls to the iterator's :" +"meth:`~iterator.__next__` method (or passing it to the built-in function :" +"func:`next`) return successive items in the stream. When no more data are " +"available a :exc:`StopIteration` exception is raised instead. At this " +"point, the iterator object is exhausted and any further calls to its :meth:" +"`__next__` method just raise :exc:`StopIteration` again. Iterators are " +"required to have an :meth:`__iter__` method that returns the iterator object " +"itself so every iterator is also iterable and may be used in most places " +"where other iterables are accepted. One notable exception is code which " +"attempts multiple iteration passes. A container object (such as a :class:" +"`list`) produces a fresh new iterator each time you pass it to the :func:" +"`iter` function or use it in a :keyword:`for` loop. Attempting this with an " +"iterator will just return the same exhausted iterator object used in the " +"previous iteration pass, making it appear like an empty container." +msgstr "" +"Bir veri akışını temsil eden bir nesne. Yineleyicinin :meth:`~iterator." +"__next__` yöntemine (veya yerleşik :func:`next` işlevine iletilmesi) " +"yinelenen çağrılar, akıştaki ardışık öğeleri döndürür. Daha fazla veri " +"bulunmadığında, bunun yerine bir :exc:`StopIteration` istisnası " +"oluşturulur. Bu noktada, yineleyici nesnesi tükenir ve :meth:`__next__` " +"yöntemine yapılan diğer çağrılar yalnızca :exc:`StopIteration` öğesini " +"yeniden yükseltir. Yineleyicilerin, yineleyici nesnesinin kendisini " +"döndüren bir :meth:`__iter__` yöntemine sahip olmaları gerekir, böylece her " +"yineleyici de yinelenebilir ve diğer yinelenebilirlerin kabul edildiği çoğu " +"yerde kullanılabilir. Dikkate değer bir istisna, birden çok yineleme " +"geçişini deneyen koddur. Bir kapsayıcı nesnesi (örneğin bir :class:`list`), " +"onu :func:`iter` işlevine her ilettiğinizde veya onu bir :keyword:`for` " +"döngüsünde kullandığınızda yeni bir yineleyici üretir. Bunu bir " +"yineleyiciyle denemek, önceki yineleme geçişinde kullanılan aynı tükenmiş " +"yineleyici nesnesini döndürerek boş bir kap gibi görünmesini sağlar." #: glossary.rst:687 msgid "More information can be found in :ref:`typeiter`." msgstr "Daha fazla bilgi :ref:`typeiter` içinde bulunabilir." #: glossary.rst:691 -msgid "CPython does not consistently apply the requirement that an iterator define :meth:`__iter__`." -msgstr "CPython, bir yineleyicinin :meth:`__iter__` tanımlaması gereksinimini tutarlı bir şekilde uygulamaz." +msgid "" +"CPython does not consistently apply the requirement that an iterator define :" +"meth:`__iter__`." +msgstr "" +"CPython, bir yineleyicinin :meth:`__iter__` tanımlaması gereksinimini " +"tutarlı bir şekilde uygulamaz." #: glossary.rst:693 msgid "key function" @@ -1379,39 +1625,47 @@ msgstr "anahtar işlev" #: glossary.rst:695 msgid "" -"A key function or collation function is a callable that returns a value used for sorting or ordering. For " -"example, :func:`locale.strxfrm` is used to produce a sort key that is aware of locale specific sort " -"conventions." +"A key function or collation function is a callable that returns a value used " +"for sorting or ordering. For example, :func:`locale.strxfrm` is used to " +"produce a sort key that is aware of locale specific sort conventions." msgstr "" -"Anahtar işlevi veya harmanlama işlevi, sıralama veya sıralama için kullanılan bir değeri döndüren bir " -"çağrılabilir. Örneğin, :func:`locale.strxfrm`, yerel ayara özgü sıralama kurallarının farkında olan bir " -"sıralama anahtarı üretmek için kullanılır." +"Anahtar işlevi veya harmanlama işlevi, sıralama veya sıralama için " +"kullanılan bir değeri döndüren bir çağrılabilir. Örneğin, :func:`locale." +"strxfrm`, yerel ayara özgü sıralama kurallarının farkında olan bir sıralama " +"anahtarı üretmek için kullanılır." #: glossary.rst:700 msgid "" -"A number of tools in Python accept key functions to control how elements are ordered or grouped. They " -"include :func:`min`, :func:`max`, :func:`sorted`, :meth:`list.sort`, :func:`heapq.merge`, :func:`heapq." -"nsmallest`, :func:`heapq.nlargest`, and :func:`itertools.groupby`." +"A number of tools in Python accept key functions to control how elements are " +"ordered or grouped. They include :func:`min`, :func:`max`, :func:`sorted`, :" +"meth:`list.sort`, :func:`heapq.merge`, :func:`heapq.nsmallest`, :func:`heapq." +"nlargest`, and :func:`itertools.groupby`." msgstr "" -"Python'daki bir dizi araç, öğelerin nasıl sıralandığını veya gruplandırıldığını kontrol etmek için temel " -"işlevleri kabul eder. Bunlar :func:`min`, :func:`max`, :func:`sorted`, :meth:`list.sort`, :func:`heapq." -"merge`, :func:`heapq.nsmallest`, :func:`heapq.nlargest` ve :func:`itertools.groupby`." +"Python'daki bir dizi araç, öğelerin nasıl sıralandığını veya " +"gruplandırıldığını kontrol etmek için temel işlevleri kabul eder. Bunlar :" +"func:`min`, :func:`max`, :func:`sorted`, :meth:`list.sort`, :func:`heapq." +"merge`, :func:`heapq.nsmallest`, :func:`heapq.nlargest` ve :func:`itertools." +"groupby`." #: glossary.rst:706 msgid "" -"There are several ways to create a key function. For example. the :meth:`str.lower` method can serve as a " -"key function for case insensitive sorts. Alternatively, a key function can be built from a :keyword:" -"`lambda` expression such as ``lambda r: (r[0], r[2])``. Also, the :mod:`operator` module provides three " -"key function constructors: :func:`~operator.attrgetter`, :func:`~operator.itemgetter`, and :func:`~operator." -"methodcaller`. See the :ref:`Sorting HOW TO ` for examples of how to create and use key " -"functions." -msgstr "" -"Bir tuş işlevi oluşturmanın birkaç yolu vardır. Örneğin. :meth:`str.lower` yöntemi, büyük/küçük harfe " -"duyarlı olmayan sıralamalar için bir anahtar işlev işlevi görebilir. Alternatif olarak, ``lambda r: (r[0], " -"r[2])`` gibi bir :keyword:`lambda` ifadesinden bir anahtar işlevi oluşturulabilir. Ayrıca, :mod:`operator` " -"modülü üç temel işlev kurucusu sağlar: :func:`~operator.attrgetter`, :func:`~operator.itemgetter` ve :func:" -"`~operator.methodcaller`. Anahtar işlevlerin nasıl oluşturulacağı ve kullanılacağına ilişkin örnekler " -"için :ref:`Sorting HOW TO ` bölümüne bakın." +"There are several ways to create a key function. For example. the :meth:" +"`str.lower` method can serve as a key function for case insensitive sorts. " +"Alternatively, a key function can be built from a :keyword:`lambda` " +"expression such as ``lambda r: (r[0], r[2])``. Also, the :mod:`operator` " +"module provides three key function constructors: :func:`~operator." +"attrgetter`, :func:`~operator.itemgetter`, and :func:`~operator." +"methodcaller`. See the :ref:`Sorting HOW TO ` for examples of " +"how to create and use key functions." +msgstr "" +"Bir tuş işlevi oluşturmanın birkaç yolu vardır. Örneğin. :meth:`str.lower` " +"yöntemi, büyük/küçük harfe duyarlı olmayan sıralamalar için bir anahtar " +"işlev işlevi görebilir. Alternatif olarak, ``lambda r: (r[0], r[2])`` gibi " +"bir :keyword:`lambda` ifadesinden bir anahtar işlevi oluşturulabilir. " +"Ayrıca, :mod:`operator` modülü üç temel işlev kurucusu sağlar: :func:" +"`~operator.attrgetter`, :func:`~operator.itemgetter` ve :func:`~operator." +"methodcaller`. Anahtar işlevlerin nasıl oluşturulacağı ve kullanılacağına " +"ilişkin örnekler için :ref:`Sorting HOW TO ` bölümüne bakın." #: glossary.rst:714 msgid "keyword argument" @@ -1427,11 +1681,13 @@ msgstr "lambda" #: glossary.rst:719 msgid "" -"An anonymous inline function consisting of a single :term:`expression` which is evaluated when the function " -"is called. The syntax to create a lambda function is ``lambda [parameters]: expression``" +"An anonymous inline function consisting of a single :term:`expression` which " +"is evaluated when the function is called. The syntax to create a lambda " +"function is ``lambda [parameters]: expression``" msgstr "" -"İşlev çağrıldığında değerlendirilen tek bir :term:`expression` 'dan oluşan anonim bir satır içi işlev. Bir " -"lambda işlevi oluşturmak için sözdizimi ``lambda [parametreler]: ifade`` şeklindedir" +"İşlev çağrıldığında değerlendirilen tek bir :term:`expression` 'dan oluşan " +"anonim bir satır içi işlev. Bir lambda işlevi oluşturmak için sözdizimi " +"``lambda [parametreler]: ifade`` şeklindedir" #: glossary.rst:722 msgid "LBYL" @@ -1439,24 +1695,28 @@ msgstr "LBYL" #: glossary.rst:724 msgid "" -"Look before you leap. This coding style explicitly tests for pre-conditions before making calls or " -"lookups. This style contrasts with the :term:`EAFP` approach and is characterized by the presence of many :" -"keyword:`if` statements." +"Look before you leap. This coding style explicitly tests for pre-conditions " +"before making calls or lookups. This style contrasts with the :term:`EAFP` " +"approach and is characterized by the presence of many :keyword:`if` " +"statements." msgstr "" -"Zıplamadan önce Bak. Bu kodlama stili, arama veya arama yapmadan önce ön koşulları açıkça test eder. Bu " -"stil, :term:`EAFP` yaklaşımıyla çelişir ve birçok :keyword:`if` ifadesinin varlığı ile karakterize edilir." +"Zıplamadan önce Bak. Bu kodlama stili, arama veya arama yapmadan önce ön " +"koşulları açıkça test eder. Bu stil, :term:`EAFP` yaklaşımıyla çelişir ve " +"birçok :keyword:`if` ifadesinin varlığı ile karakterize edilir." #: glossary.rst:729 msgid "" -"In a multi-threaded environment, the LBYL approach can risk introducing a race condition between \"the " -"looking\" and \"the leaping\". For example, the code, ``if key in mapping: return mapping[key]`` can fail " -"if another thread removes *key* from *mapping* after the test, but before the lookup. This issue can be " -"solved with locks or by using the EAFP approach." +"In a multi-threaded environment, the LBYL approach can risk introducing a " +"race condition between \"the looking\" and \"the leaping\". For example, " +"the code, ``if key in mapping: return mapping[key]`` can fail if another " +"thread removes *key* from *mapping* after the test, but before the lookup. " +"This issue can be solved with locks or by using the EAFP approach." msgstr "" -"Çok iş parçacıklı bir ortamda, LBYL yaklaşımı \"bakan\" ve \"sıçrayan\" arasında bir yarış koşulu getirme " -"riskini taşıyabilir. Örneğin, ``if key in mapping: return mapping[key]`` kodu, testten sonra, ancak " -"aramadan önce başka bir iş parçacığı *eşlemeden* *key* kaldırırsa başarısız olabilir. Bu sorun, kilitlerle " -"veya EAFP yaklaşımı kullanılarak çözülebilir." +"Çok iş parçacıklı bir ortamda, LBYL yaklaşımı \"bakan\" ve \"sıçrayan\" " +"arasında bir yarış koşulu getirme riskini taşıyabilir. Örneğin, ``if key in " +"mapping: return mapping[key]`` kodu, testten sonra, ancak aramadan önce " +"başka bir iş parçacığı *eşlemeden* *key* kaldırırsa başarısız olabilir. Bu " +"sorun, kilitlerle veya EAFP yaklaşımı kullanılarak çözülebilir." #: glossary.rst:734 msgid "locale encoding" @@ -1464,27 +1724,31 @@ msgstr "yerel kodlama" #: glossary.rst:736 msgid "" -"On Unix, it is the encoding of the LC_CTYPE locale. It can be set with ``locale.setlocale(locale.LC_CTYPE, " -"new_locale)``." +"On Unix, it is the encoding of the LC_CTYPE locale. It can be set with " +"``locale.setlocale(locale.LC_CTYPE, new_locale)``." msgstr "" -"Unix'te, LC_CTYPE yerel ayarının kodlamasıdır. ``locale.setlocale(locale.LC_CTYPE, new_locale)`` ile " -"ayarlanabilir." +"Unix'te, LC_CTYPE yerel ayarının kodlamasıdır. ``locale.setlocale(locale." +"LC_CTYPE, new_locale)`` ile ayarlanabilir." #: glossary.rst:739 msgid "On Windows, it is the ANSI code page (ex: ``cp1252``)." msgstr "Windows'ta bu, ANSI kod sayfasıdır (ör. ``cp1252``)." #: glossary.rst:741 -msgid "``locale.getpreferredencoding(False)`` can be used to get the locale encoding." -msgstr "``locale.getpreferredencoding(False)`` yerel ayar kodlamasını almak için kullanılabilir." +msgid "" +"``locale.getpreferredencoding(False)`` can be used to get the locale " +"encoding." +msgstr "" +"``locale.getpreferredencoding(False)`` yerel ayar kodlamasını almak için " +"kullanılabilir." #: glossary.rst:744 msgid "" -"Python uses the :term:`filesystem encoding and error handler` to convert between Unicode filenames and " -"bytes filenames." +"Python uses the :term:`filesystem encoding and error handler` to convert " +"between Unicode filenames and bytes filenames." msgstr "" -"Python, Unicode dosya adları ile bayt dosya adları arasında dönüştürme yapmak için :term:`filesystem " -"encoding and error handler` kullanır." +"Python, Unicode dosya adları ile bayt dosya adları arasında dönüştürme " +"yapmak için :term:`filesystem encoding and error handler` kullanır." #: glossary.rst:746 msgid "list" @@ -1492,11 +1756,13 @@ msgstr "liste" #: glossary.rst:748 msgid "" -"A built-in Python :term:`sequence`. Despite its name it is more akin to an array in other languages than " -"to a linked list since access to elements is O(1)." +"A built-in Python :term:`sequence`. Despite its name it is more akin to an " +"array in other languages than to a linked list since access to elements is " +"O(1)." msgstr "" -"Yerleşik bir Python :term:`dizi`. Adına rağmen, öğelere erişim O(1) olduğundan, diğer dillerdeki bir " -"diziye, bağlantılı bir listeden daha yakındır." +"Yerleşik bir Python :term:`dizi`. Adına rağmen, öğelere erişim O(1) " +"olduğundan, diğer dillerdeki bir diziye, bağlantılı bir listeden daha " +"yakındır." #: glossary.rst:751 msgid "list comprehension" @@ -1504,15 +1770,18 @@ msgstr "liste anlama" #: glossary.rst:753 msgid "" -"A compact way to process all or part of the elements in a sequence and return a list with the results. " -"``result = ['{:#04x}'.format(x) for x in range(256) if x % 2 == 0]`` generates a list of strings containing " -"even hex numbers (0x..) in the range from 0 to 255. The :keyword:`if` clause is optional. If omitted, all " -"elements in ``range(256)`` are processed." +"A compact way to process all or part of the elements in a sequence and " +"return a list with the results. ``result = ['{:#04x}'.format(x) for x in " +"range(256) if x % 2 == 0]`` generates a list of strings containing even hex " +"numbers (0x..) in the range from 0 to 255. The :keyword:`if` clause is " +"optional. If omitted, all elements in ``range(256)`` are processed." msgstr "" -"Bir dizideki öğelerin tümünü veya bir kısmını işlemenin ve sonuçları içeren bir liste döndürmenin kompakt " -"bir yolu. ``sonuç = ['{:#04x}'.format(x) for range(256) if x % 2 == 0]``, dizinde çift onaltılık sayılar " -"(0x..) içeren bir diziler listesi oluşturur. 0 ile 255 arasındadır. :keyword:`if` yan tümcesi isteğe " -"bağlıdır. Atlanırsa, \"aralık(256)\" içindeki tüm öğeler işlenir." +"Bir dizideki öğelerin tümünü veya bir kısmını işlemenin ve sonuçları içeren " +"bir liste döndürmenin kompakt bir yolu. ``sonuç = ['{:#04x}'.format(x) for " +"range(256) if x % 2 == 0]``, dizinde çift onaltılık sayılar (0x..) içeren " +"bir diziler listesi oluşturur. 0 ile 255 arasındadır. :keyword:`if` yan " +"tümcesi isteğe bağlıdır. Atlanırsa, \"aralık(256)\" içindeki tüm öğeler " +"işlenir." #: glossary.rst:759 msgid "loader" @@ -1520,12 +1789,14 @@ msgstr "yükleyici" #: glossary.rst:761 msgid "" -"An object that loads a module. It must define a method named :meth:`load_module`. A loader is typically " -"returned by a :term:`finder`. See :pep:`302` for details and :class:`importlib.abc.Loader` for an :term:" -"`abstract base class`." +"An object that loads a module. It must define a method named :meth:" +"`load_module`. A loader is typically returned by a :term:`finder`. See :pep:" +"`302` for details and :class:`importlib.abc.Loader` for an :term:`abstract " +"base class`." msgstr "" -"Modül yükleyen bir nesne. :meth:`load_module` adında bir yöntem tanımlamalıdır. Bir yükleyici genellikle " -"bir :term:`finder` ile döndürülür. Ayrıntılar için :pep:`302` ve bir :term:`soyut temel sınıf` için :class:" +"Modül yükleyen bir nesne. :meth:`load_module` adında bir yöntem " +"tanımlamalıdır. Bir yükleyici genellikle bir :term:`finder` ile döndürülür. " +"Ayrıntılar için :pep:`302` ve bir :term:`soyut temel sınıf` için :class:" "`importlib.abc.Loader` bölümüne bakın." #: glossary.rst:765 @@ -1542,15 +1813,19 @@ msgstr "haritalama" #: glossary.rst:772 msgid "" -"A container object that supports arbitrary key lookups and implements the methods specified in the :class:" -"`~collections.abc.Mapping` or :class:`~collections.abc.MutableMapping` :ref:`abstract base classes " -"`. Examples include :class:`dict`, :class:`collections.defaultdict`, :" -"class:`collections.OrderedDict` and :class:`collections.Counter`." +"A container object that supports arbitrary key lookups and implements the " +"methods specified in the :class:`~collections.abc.Mapping` or :class:" +"`~collections.abc.MutableMapping` :ref:`abstract base classes `. Examples include :class:`dict`, :class:" +"`collections.defaultdict`, :class:`collections.OrderedDict` and :class:" +"`collections.Counter`." msgstr "" -"Keyfi anahtar aramalarını destekleyen ve :class:`~collections.abc.Mapping` veya :class:`~collections.abc." -"MutableMapping` :ref:`collections-abstract-base-classes` içinde belirtilen " -"yöntemleri uygulayan bir kapsayıcı nesnesi temel sınıflar. Örnekler arasında :class:`dict`, :class:" -"`collections.defaultdict`, :class:`collections.OrderedDict` ve :class:`collections.Counter` sayılabilir." +"Keyfi anahtar aramalarını destekleyen ve :class:`~collections.abc.Mapping` " +"veya :class:`~collections.abc.MutableMapping` :ref:`collections-abstract-" +"base-classes` içinde belirtilen yöntemleri uygulayan bir kapsayıcı nesnesi " +"temel sınıflar. Örnekler arasında :class:`dict`, :class:`collections." +"defaultdict`, :class:`collections.OrderedDict` ve :class:`collections." +"Counter` sayılabilir." #: glossary.rst:778 msgid "meta path finder" @@ -1558,15 +1833,21 @@ msgstr "meta yol bulucu" #: glossary.rst:780 msgid "" -"A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path finders are related to, but " -"different from :term:`path entry finders `." +"A :term:`finder` returned by a search of :data:`sys.meta_path`. Meta path " +"finders are related to, but different from :term:`path entry finders `." msgstr "" -"Bir :term:`finder`, :data:`sys.meta_path` aramasıyla döndürülür. Meta yol bulucular, :term:`yol girişi " -"bulucuları ` ile ilişkilidir, ancak onlardan farklıdır." +"Bir :term:`finder`, :data:`sys.meta_path` aramasıyla döndürülür. Meta yol " +"bulucular, :term:`yol girişi bulucuları ` ile " +"ilişkilidir, ancak onlardan farklıdır." #: glossary.rst:784 -msgid "See :class:`importlib.abc.MetaPathFinder` for the methods that meta path finders implement." -msgstr "Meta yol bulucuların uyguladığı yöntemler için :class:`importlib.abc.MetaPathFinder` bölümüne bakın." +msgid "" +"See :class:`importlib.abc.MetaPathFinder` for the methods that meta path " +"finders implement." +msgstr "" +"Meta yol bulucuların uyguladığı yöntemler için :class:`importlib.abc." +"MetaPathFinder` bölümüne bakın." #: glossary.rst:786 msgid "metaclass" @@ -1574,20 +1855,25 @@ msgstr "metasınıf" #: glossary.rst:788 msgid "" -"The class of a class. Class definitions create a class name, a class dictionary, and a list of base " -"classes. The metaclass is responsible for taking those three arguments and creating the class. Most " -"object oriented programming languages provide a default implementation. What makes Python special is that " -"it is possible to create custom metaclasses. Most users never need this tool, but when the need arises, " -"metaclasses can provide powerful, elegant solutions. They have been used for logging attribute access, " -"adding thread-safety, tracking object creation, implementing singletons, and many other tasks." -msgstr "" -"Bir sınıfın sınıfı. Sınıf tanımları, bir sınıf adı, bir sınıf sözlüğü ve temel sınıfların bir listesini " -"oluşturur. Metasınıf, bu üç argümanı almaktan ve sınıfı oluşturmaktan sorumludur. Çoğu nesne yönelimli " -"programlama dili, varsayılan bir uygulama sağlar. Python'u özel yapan şey, özel metasınıflar oluşturmanın " -"mümkün olmasıdır. Çoğu kullanıcı bu araca hiçbir zaman ihtiyaç duymaz, ancak ihtiyaç duyulduğunda, " -"metasınıflar güçlü ve zarif çözümler sağlayabilir. Nitelik erişimini günlüğe kaydetmek, iş parçacığı " -"güvenliği eklemek, nesne oluşturmayı izlemek, tekilleri uygulamak ve diğer birçok görev için " -"kullanılmışlardır." +"The class of a class. Class definitions create a class name, a class " +"dictionary, and a list of base classes. The metaclass is responsible for " +"taking those three arguments and creating the class. Most object oriented " +"programming languages provide a default implementation. What makes Python " +"special is that it is possible to create custom metaclasses. Most users " +"never need this tool, but when the need arises, metaclasses can provide " +"powerful, elegant solutions. They have been used for logging attribute " +"access, adding thread-safety, tracking object creation, implementing " +"singletons, and many other tasks." +msgstr "" +"Bir sınıfın sınıfı. Sınıf tanımları, bir sınıf adı, bir sınıf sözlüğü ve " +"temel sınıfların bir listesini oluşturur. Metasınıf, bu üç argümanı " +"almaktan ve sınıfı oluşturmaktan sorumludur. Çoğu nesne yönelimli " +"programlama dili, varsayılan bir uygulama sağlar. Python'u özel yapan şey, " +"özel metasınıflar oluşturmanın mümkün olmasıdır. Çoğu kullanıcı bu araca " +"hiçbir zaman ihtiyaç duymaz, ancak ihtiyaç duyulduğunda, metasınıflar güçlü " +"ve zarif çözümler sağlayabilir. Nitelik erişimini günlüğe kaydetmek, iş " +"parçacığı güvenliği eklemek, nesne oluşturmayı izlemek, tekilleri uygulamak " +"ve diğer birçok görev için kullanılmışlardır." #: glossary.rst:798 msgid "More information can be found in :ref:`metaclasses`." @@ -1599,13 +1885,15 @@ msgstr "metot" #: glossary.rst:801 msgid "" -"A function which is defined inside a class body. If called as an attribute of an instance of that class, " -"the method will get the instance object as its first :term:`argument` (which is usually called ``self``). " -"See :term:`function` and :term:`nested scope`." +"A function which is defined inside a class body. If called as an attribute " +"of an instance of that class, the method will get the instance object as its " +"first :term:`argument` (which is usually called ``self``). See :term:" +"`function` and :term:`nested scope`." msgstr "" -"Bir sınıf gövdesi içinde tanımlanan bir işlev. Bu sınıfın bir örneğinin özniteliği olarak çağrılırsa, " -"yöntem örnek nesnesini ilk :term:`argument` (genellikle ``self`` olarak adlandırılır) olarak alır. Bkz. :" -"term:`function` ve :term:`nested scope`." +"Bir sınıf gövdesi içinde tanımlanan bir işlev. Bu sınıfın bir örneğinin " +"özniteliği olarak çağrılırsa, yöntem örnek nesnesini ilk :term:`argument` " +"(genellikle ``self`` olarak adlandırılır) olarak alır. Bkz. :term:`function` " +"ve :term:`nested scope`." #: glossary.rst:805 msgid "method resolution order" @@ -1613,13 +1901,15 @@ msgstr "metot kalite sıralaması" #: glossary.rst:807 msgid "" -"Method Resolution Order is the order in which base classes are searched for a member during lookup. See " -"`The Python 2.3 Method Resolution Order `_ for details " -"of the algorithm used by the Python interpreter since the 2.3 release." +"Method Resolution Order is the order in which base classes are searched for " +"a member during lookup. See `The Python 2.3 Method Resolution Order `_ for details of the algorithm " +"used by the Python interpreter since the 2.3 release." msgstr "" -"Metot Çözüm Sırası, arama sırasında bir üye için temel sınıfların arandığı sıradır. 2.3 sürümünden bu yana " -"Python yorumlayıcısı tarafından kullanılan algoritmanın ayrıntıları için bkz. `The Python 2.3 Method Resolution " -"Order `_" +"Metot Çözüm Sırası, arama sırasında bir üye için temel sınıfların arandığı " +"sıradır. 2.3 sürümünden bu yana Python yorumlayıcısı tarafından kullanılan " +"algoritmanın ayrıntıları için bkz. `The Python 2.3 Method Resolution Order " +"`_" #: glossary.rst:811 msgid "module" @@ -1627,11 +1917,13 @@ msgstr "modül" #: glossary.rst:813 msgid "" -"An object that serves as an organizational unit of Python code. Modules have a namespace containing " -"arbitrary Python objects. Modules are loaded into Python by the process of :term:`importing`." +"An object that serves as an organizational unit of Python code. Modules " +"have a namespace containing arbitrary Python objects. Modules are loaded " +"into Python by the process of :term:`importing`." msgstr "" -"Python kodunun kuruluş birimi olarak hizmet eden bir nesne. Modüller, rastgele Python nesneleri içeren bir " -"ad alanına sahiptir. Modüller, :term:`importing` işlemiyle Python'a yüklenir." +"Python kodunun kuruluş birimi olarak hizmet eden bir nesne. Modüller, " +"rastgele Python nesneleri içeren bir ad alanına sahiptir. Modüller, :term:" +"`importing` işlemiyle Python'a yüklenir." #: glossary.rst:817 msgid "See also :term:`package`." @@ -1643,11 +1935,11 @@ msgstr "modül özelliği" #: glossary.rst:820 msgid "" -"A namespace containing the import-related information used to load a module. An instance of :class:" -"`importlib.machinery.ModuleSpec`." +"A namespace containing the import-related information used to load a module. " +"An instance of :class:`importlib.machinery.ModuleSpec`." msgstr "" -"Bir modülü yüklemek için kullanılan içe aktarmayla ilgili bilgileri içeren bir ad alanı. Bir :class:" -"`importlib.machinery.ModuleSpec` örneği." +"Bir modülü yüklemek için kullanılan içe aktarmayla ilgili bilgileri içeren " +"bir ad alanı. Bir :class:`importlib.machinery.ModuleSpec` örneği." #: glossary.rst:822 msgid "MRO" @@ -1662,10 +1954,12 @@ msgid "mutable" msgstr "değiştirilebilir" #: glossary.rst:827 -msgid "Mutable objects can change their value but keep their :func:`id`. See also :term:`immutable`." +msgid "" +"Mutable objects can change their value but keep their :func:`id`. See also :" +"term:`immutable`." msgstr "" -"Değiştirilebilir (mutable) nesneler değerlerini değiştirebilir ancak :func:`idlerini ` koruyabilirler. Ayrıca bkz. :term:" -"`immutable`." +"Değiştirilebilir (mutable) nesneler değerlerini değiştirebilir ancak :func:" +"`idlerini ` koruyabilirler. Ayrıca bkz. :term:`immutable`." #: glossary.rst:829 msgid "named tuple" @@ -1673,34 +1967,40 @@ msgstr "adlandırılmış demet" #: glossary.rst:831 msgid "" -"The term \"named tuple\" applies to any type or class that inherits from tuple and whose indexable elements " -"are also accessible using named attributes. The type or class may have other features as well." +"The term \"named tuple\" applies to any type or class that inherits from " +"tuple and whose indexable elements are also accessible using named " +"attributes. The type or class may have other features as well." msgstr "" -"\"named tuple\" terimi, demetten miras alan ve dizinlenebilir öğelerine de adlandırılmış nitelikler " -"kullanılarak erişilebilen herhangi bir tür veya sınıf için geçerlidir. Tür veya sınıfın başka özellikleri " -"de olabilir." +"\"named tuple\" terimi, demetten miras alan ve dizinlenebilir öğelerine de " +"adlandırılmış nitelikler kullanılarak erişilebilen herhangi bir tür veya " +"sınıf için geçerlidir. Tür veya sınıfın başka özellikleri de olabilir." #: glossary.rst:835 msgid "" -"Several built-in types are named tuples, including the values returned by :func:`time.localtime` and :func:" -"`os.stat`. Another example is :data:`sys.float_info`::" +"Several built-in types are named tuples, including the values returned by :" +"func:`time.localtime` and :func:`os.stat`. Another example is :data:`sys." +"float_info`::" msgstr "" -"Çeşitli yerleşik türler, :func:`time.localtime` ve :func:`os.stat` tarafından döndürülen değerler de dahil " -"olmak üzere, tanımlama grupları olarak adlandırılır. Başka bir örnek :data:`sys.float_info`::" +"Çeşitli yerleşik türler, :func:`time.localtime` ve :func:`os.stat` " +"tarafından döndürülen değerler de dahil olmak üzere, tanımlama grupları " +"olarak adlandırılır. Başka bir örnek :data:`sys.float_info`::" #: glossary.rst:846 msgid "" -"Some named tuples are built-in types (such as the above examples). Alternatively, a named tuple can be " -"created from a regular class definition that inherits from :class:`tuple` and that defines named fields. " -"Such a class can be written by hand or it can be created with the factory function :func:`collections." -"namedtuple`. The latter technique also adds some extra methods that may not be found in hand-written or " -"built-in named tuples." -msgstr "" -"Bazı adlandırılmış demetler yerleşik türlerdir (yukarıdaki örnekler gibi). Alternatif olarak, :class:" -"`tuple` öğesinden miras alan ve adlandırılmış alanları tanımlayan normal bir sınıf tanımından adlandırılmış " -"bir tanımlama grubu oluşturulabilir. Böyle bir sınıf elle yazılabilir veya fabrika işlevi :func:" -"`collections.namedtuple` ile oluşturulabilir. İkinci teknik ayrıca elle yazılmış veya yerleşik " -"adlandırılmış demetlerde bulunmayan bazı ekstra yöntemler ekler." +"Some named tuples are built-in types (such as the above examples). " +"Alternatively, a named tuple can be created from a regular class definition " +"that inherits from :class:`tuple` and that defines named fields. Such a " +"class can be written by hand or it can be created with the factory function :" +"func:`collections.namedtuple`. The latter technique also adds some extra " +"methods that may not be found in hand-written or built-in named tuples." +msgstr "" +"Bazı adlandırılmış demetler yerleşik türlerdir (yukarıdaki örnekler gibi). " +"Alternatif olarak, :class:`tuple` öğesinden miras alan ve adlandırılmış " +"alanları tanımlayan normal bir sınıf tanımından adlandırılmış bir tanımlama " +"grubu oluşturulabilir. Böyle bir sınıf elle yazılabilir veya fabrika işlevi :" +"func:`collections.namedtuple` ile oluşturulabilir. İkinci teknik ayrıca elle " +"yazılmış veya yerleşik adlandırılmış demetlerde bulunmayan bazı ekstra " +"yöntemler ekler." #: glossary.rst:853 msgid "namespace" @@ -1708,21 +2008,25 @@ msgstr "ad alanı" #: glossary.rst:855 msgid "" -"The place where a variable is stored. Namespaces are implemented as dictionaries. There are the local, " -"global and built-in namespaces as well as nested namespaces in objects (in methods). Namespaces support " -"modularity by preventing naming conflicts. For instance, the functions :func:`builtins.open <.open>` and :" -"func:`os.open` are distinguished by their namespaces. Namespaces also aid readability and maintainability " -"by making it clear which module implements a function. For instance, writing :func:`random.seed` or :func:" -"`itertools.islice` makes it clear that those functions are implemented by the :mod:`random` and :mod:" -"`itertools` modules, respectively." -msgstr "" -"Değişkenin saklandığı yer. Ad alanları sözlükler olarak uygulanır. Nesnelerde (yöntemlerde) yerel, genel ve " -"yerleşik ad alanlarının yanı sıra iç içe ad alanları vardır. Ad alanları, adlandırma çakışmalarını " -"önleyerek modülerliği destekler. Örneğin, :func:`builtins.open <.open>` ve :func:`os.open` işlevleri ad " -"alanlarıyla ayırt edilir. Ad alanları, hangi modülün bir işlevi uyguladığını açıkça belirterek " -"okunabilirliğe ve sürdürülebilirliğe de yardımcı olur. Örneğin, :func:`random.seed` veya :func:`itertools." -"islice` yazmak, bu işlevlerin sırasıyla :mod:`random` ve :mod:`itertools` modülleri tarafından " -"uygulandığını açıkça gösterir." +"The place where a variable is stored. Namespaces are implemented as " +"dictionaries. There are the local, global and built-in namespaces as well " +"as nested namespaces in objects (in methods). Namespaces support modularity " +"by preventing naming conflicts. For instance, the functions :func:`builtins." +"open <.open>` and :func:`os.open` are distinguished by their namespaces. " +"Namespaces also aid readability and maintainability by making it clear which " +"module implements a function. For instance, writing :func:`random.seed` or :" +"func:`itertools.islice` makes it clear that those functions are implemented " +"by the :mod:`random` and :mod:`itertools` modules, respectively." +msgstr "" +"Değişkenin saklandığı yer. Ad alanları sözlükler olarak uygulanır. " +"Nesnelerde (yöntemlerde) yerel, genel ve yerleşik ad alanlarının yanı sıra " +"iç içe ad alanları vardır. Ad alanları, adlandırma çakışmalarını önleyerek " +"modülerliği destekler. Örneğin, :func:`builtins.open <.open>` ve :func:`os." +"open` işlevleri ad alanlarıyla ayırt edilir. Ad alanları, hangi modülün bir " +"işlevi uyguladığını açıkça belirterek okunabilirliğe ve sürdürülebilirliğe " +"de yardımcı olur. Örneğin, :func:`random.seed` veya :func:`itertools.islice` " +"yazmak, bu işlevlerin sırasıyla :mod:`random` ve :mod:`itertools` modülleri " +"tarafından uygulandığını açıkça gösterir." #: glossary.rst:865 msgid "namespace package" @@ -1730,13 +2034,15 @@ msgstr "ad alanı paketi" #: glossary.rst:867 msgid "" -"A :pep:`420` :term:`package` which serves only as a container for subpackages. Namespace packages may have " -"no physical representation, and specifically are not like a :term:`regular package` because they have no " +"A :pep:`420` :term:`package` which serves only as a container for " +"subpackages. Namespace packages may have no physical representation, and " +"specifically are not like a :term:`regular package` because they have no " "``__init__.py`` file." msgstr "" -"A :pep:`420` :term:`package`, yalnızca alt paketler için bir kap olarak hizmet eder. Ad alanı paketlerinin " -"hiçbir fiziksel temsili olmayabilir ve ``__init__.py`` dosyası olmadığından özellikle :term:`regular " -"package` gibi değildirler." +"A :pep:`420` :term:`package`, yalnızca alt paketler için bir kap olarak " +"hizmet eder. Ad alanı paketlerinin hiçbir fiziksel temsili olmayabilir ve " +"``__init__.py`` dosyası olmadığından özellikle :term:`regular package` gibi " +"değildirler." #: glossary.rst:872 msgid "See also :term:`module`." @@ -1748,17 +2054,20 @@ msgstr "iç içe kapsam" #: glossary.rst:875 msgid "" -"The ability to refer to a variable in an enclosing definition. For instance, a function defined inside " -"another function can refer to variables in the outer function. Note that nested scopes by default work " -"only for reference and not for assignment. Local variables both read and write in the innermost scope. " -"Likewise, global variables read and write to the global namespace. The :keyword:`nonlocal` allows writing " -"to outer scopes." -msgstr "" -"Kapsamlı bir tanımdaki bir değişkene atıfta bulunma yeteneği. Örneğin, başka bir fonksiyonun içinde " -"tanımlanan bir fonksiyon, dış fonksiyondaki değişkenlere atıfta bulunabilir. İç içe kapsamların varsayılan " -"olarak yalnızca başvuru için çalıştığını ve atama için çalışmadığını unutmayın. Yerel değişkenler en içteki " -"kapsamda hem okur hem de yazar. Benzer şekilde, global değişkenler global ad alanını okur ve yazar. :" -"keyword:`nonlocal`, dış kapsamlara yazmaya izin verir." +"The ability to refer to a variable in an enclosing definition. For " +"instance, a function defined inside another function can refer to variables " +"in the outer function. Note that nested scopes by default work only for " +"reference and not for assignment. Local variables both read and write in " +"the innermost scope. Likewise, global variables read and write to the " +"global namespace. The :keyword:`nonlocal` allows writing to outer scopes." +msgstr "" +"Kapsamlı bir tanımdaki bir değişkene atıfta bulunma yeteneği. Örneğin, başka " +"bir fonksiyonun içinde tanımlanan bir fonksiyon, dış fonksiyondaki " +"değişkenlere atıfta bulunabilir. İç içe kapsamların varsayılan olarak " +"yalnızca başvuru için çalıştığını ve atama için çalışmadığını unutmayın. " +"Yerel değişkenler en içteki kapsamda hem okur hem de yazar. Benzer şekilde, " +"global değişkenler global ad alanını okur ve yazar. :keyword:`nonlocal`, dış " +"kapsamlara yazmaya izin verir." #: glossary.rst:882 msgid "new-style class" @@ -1766,13 +2075,15 @@ msgstr "yeni stil sınıf" #: glossary.rst:884 msgid "" -"Old name for the flavor of classes now used for all class objects. In earlier Python versions, only new-" -"style classes could use Python's newer, versatile features like :attr:`~object.__slots__`, descriptors, " -"properties, :meth:`__getattribute__`, class methods, and static methods." +"Old name for the flavor of classes now used for all class objects. In " +"earlier Python versions, only new-style classes could use Python's newer, " +"versatile features like :attr:`~object.__slots__`, descriptors, properties, :" +"meth:`__getattribute__`, class methods, and static methods." msgstr "" -"Artık tüm sınıf nesneleri için kullanılan sınıfların lezzetinin eski adı. Önceki Python sürümlerinde, " -"yalnızca yeni stil sınıfları Python'un :attr:`~object.__slots__`, tanımlayıcılar, özellikler, :meth:" -"`__getattribute__`, sınıf yöntemleri ve statik yöntemler gibi daha yeni, çok yönlü özelliklerini " +"Artık tüm sınıf nesneleri için kullanılan sınıfların lezzetinin eski adı. " +"Önceki Python sürümlerinde, yalnızca yeni stil sınıfları Python'un :attr:" +"`~object.__slots__`, tanımlayıcılar, özellikler, :meth:`__getattribute__`, " +"sınıf yöntemleri ve statik yöntemler gibi daha yeni, çok yönlü özelliklerini " "kullanabilirdi." #: glossary.rst:888 @@ -1781,11 +2092,12 @@ msgstr "obje" #: glossary.rst:890 msgid "" -"Any data with state (attributes or value) and defined behavior (methods). Also the ultimate base class of " -"any :term:`new-style class`." +"Any data with state (attributes or value) and defined behavior (methods). " +"Also the ultimate base class of any :term:`new-style class`." msgstr "" -"Durum (öznitelikler veya değer) ve tanımlanmış davranış (yöntemler) içeren herhangi bir veri. Ayrıca " -"herhangi bir :term:`yeni tarz sınıfın ` nihai temel sınıfı." +"Durum (öznitelikler veya değer) ve tanımlanmış davranış (yöntemler) içeren " +"herhangi bir veri. Ayrıca herhangi bir :term:`yeni tarz sınıfın ` nihai temel sınıfı." #: glossary.rst:893 msgid "package" @@ -1794,11 +2106,13 @@ msgstr "paket" #: glossary.rst:895 #, fuzzy msgid "" -"A Python :term:`module` which can contain submodules or recursively, subpackages. Technically, a package " -"is a Python module with a ``__path__`` attribute." +"A Python :term:`module` which can contain submodules or recursively, " +"subpackages. Technically, a package is a Python module with a ``__path__`` " +"attribute." msgstr "" -"Alt modüller veya yinelemeli olarak alt paketler içerebilen bir Python :term:`module`. Teknik olarak paket, " -"``__path__`` özniteliğine sahip bir Python modülüdür." +"Alt modüller veya yinelemeli olarak alt paketler içerebilen bir Python :term:" +"`module`. Teknik olarak paket, ``__path__`` özniteliğine sahip bir Python " +"modülüdür." #: glossary.rst:899 msgid "See also :term:`regular package` and :term:`namespace package`." @@ -1810,79 +2124,96 @@ msgstr "parametre" #: glossary.rst:902 msgid "" -"A named entity in a :term:`function` (or method) definition that specifies an :term:`argument` (or in some " -"cases, arguments) that the function can accept. There are five kinds of parameter:" +"A named entity in a :term:`function` (or method) definition that specifies " +"an :term:`argument` (or in some cases, arguments) that the function can " +"accept. There are five kinds of parameter:" msgstr "" -"Bir :term:`function` (veya yöntem) tanımında, işlevin kabul edebileceği bir :term:`argument` (veya bazı " -"durumlarda, argümanlar) belirten adlandırılmış bir varlık. Beş çeşit parametre vardır:" +"Bir :term:`function` (veya yöntem) tanımında, işlevin kabul edebileceği bir :" +"term:`argument` (veya bazı durumlarda, argümanlar) belirten adlandırılmış " +"bir varlık. Beş çeşit parametre vardır:" #: glossary.rst:906 msgid "" -":dfn:`positional-or-keyword`: specifies an argument that can be passed either :term:`positionally " -"` or as a :term:`keyword argument `. This is the default kind of parameter, for " -"example *foo* and *bar* in the following::" +":dfn:`positional-or-keyword`: specifies an argument that can be passed " +"either :term:`positionally ` or as a :term:`keyword argument " +"`. This is the default kind of parameter, for example *foo* and " +"*bar* in the following::" msgstr "" -":dfn:`positional-or-keyword`: :term:`pozisyonel ` veya bir :term:`keyword argümanı ` " -"olarak iletilebilen bir argüman belirtir. Bu, varsayılan parametre türüdür, örneğin aşağıdakilerde *foo* ve " -"*bar*::" +":dfn:`positional-or-keyword`: :term:`pozisyonel ` veya bir :term:" +"`keyword argümanı ` olarak iletilebilen bir argüman belirtir. Bu, " +"varsayılan parametre türüdür, örneğin aşağıdakilerde *foo* ve *bar*::" #: glossary.rst:915 msgid "" -":dfn:`positional-only`: specifies an argument that can be supplied only by position. Positional-only " -"parameters can be defined by including a ``/`` character in the parameter list of the function definition " -"after them, for example *posonly1* and *posonly2* in the following::" +":dfn:`positional-only`: specifies an argument that can be supplied only by " +"position. Positional-only parameters can be defined by including a ``/`` " +"character in the parameter list of the function definition after them, for " +"example *posonly1* and *posonly2* in the following::" msgstr "" -":dfn:`positional-only`: yalnızca konuma göre sağlanabilen bir argüman belirtir. Yalnızca konumsal " -"parametreler, onlardan sonra fonksiyon tanımının parametre listesine bir ``/`` karakteri eklenerek " -"tanımlanabilir, örneğin aşağıdakilerde *posonly1* ve *posonly2*::" +":dfn:`positional-only`: yalnızca konuma göre sağlanabilen bir argüman " +"belirtir. Yalnızca konumsal parametreler, onlardan sonra fonksiyon tanımının " +"parametre listesine bir ``/`` karakteri eklenerek tanımlanabilir, örneğin " +"aşağıdakilerde *posonly1* ve *posonly2*::" #: glossary.rst:924 msgid "" -":dfn:`keyword-only`: specifies an argument that can be supplied only by keyword. Keyword-only parameters " -"can be defined by including a single var-positional parameter or bare ``*`` in the parameter list of the " -"function definition before them, for example *kw_only1* and *kw_only2* in the following::" +":dfn:`keyword-only`: specifies an argument that can be supplied only by " +"keyword. Keyword-only parameters can be defined by including a single var-" +"positional parameter or bare ``*`` in the parameter list of the function " +"definition before them, for example *kw_only1* and *kw_only2* in the " +"following::" msgstr "" -":dfn:`keyword-only`: sadece anahtar kelime ile sağlanabilen bir argüman belirtir. Yalnızca anahtar " -"kelime (keyword-only) parametreleri, onlardan önceki fonksiyon tanımının parametre listesine tek bir değişken konumlu " -"parametre veya çıplak ``*`` dahil edilerek tanımlanabilir, örneğin aşağıdakilerde *kw_only1* ve *kw_only2*::" +":dfn:`keyword-only`: sadece anahtar kelime ile sağlanabilen bir argüman " +"belirtir. Yalnızca anahtar kelime (keyword-only) parametreleri, onlardan " +"önceki fonksiyon tanımının parametre listesine tek bir değişken konumlu " +"parametre veya çıplak ``*`` dahil edilerek tanımlanabilir, örneğin " +"aşağıdakilerde *kw_only1* ve *kw_only2*::" #: glossary.rst:932 msgid "" -":dfn:`var-positional`: specifies that an arbitrary sequence of positional arguments can be provided (in " -"addition to any positional arguments already accepted by other parameters). Such a parameter can be " -"defined by prepending the parameter name with ``*``, for example *args* in the following::" +":dfn:`var-positional`: specifies that an arbitrary sequence of positional " +"arguments can be provided (in addition to any positional arguments already " +"accepted by other parameters). Such a parameter can be defined by " +"prepending the parameter name with ``*``, for example *args* in the " +"following::" msgstr "" -":dfn:`var-positional`: keyfi bir pozisyonel argüman dizisinin sağlanabileceğini belirtir (diğer parametreler " -"tarafından zaten kabul edilmiş herhangi bir konumsal argümana ek olarak). Böyle bir parametre, parametre " -"adının başına ``*`` eklenerek tanımlanabilir, örneğin aşağıdakilerde *args*::" +":dfn:`var-positional`: keyfi bir pozisyonel argüman dizisinin " +"sağlanabileceğini belirtir (diğer parametreler tarafından zaten kabul " +"edilmiş herhangi bir konumsal argümana ek olarak). Böyle bir parametre, " +"parametre adının başına ``*`` eklenerek tanımlanabilir, örneğin " +"aşağıdakilerde *args*::" #: glossary.rst:940 msgid "" -":dfn:`var-keyword`: specifies that arbitrarily many keyword arguments can be provided (in addition to any " -"keyword arguments already accepted by other parameters). Such a parameter can be defined by prepending the " -"parameter name with ``**``, for example *kwargs* in the example above." +":dfn:`var-keyword`: specifies that arbitrarily many keyword arguments can be " +"provided (in addition to any keyword arguments already accepted by other " +"parameters). Such a parameter can be defined by prepending the parameter " +"name with ``**``, for example *kwargs* in the example above." msgstr "" -":dfn:`var-keyword`: keyfi olarak birçok anahtar kelime argümanının sağlanabileceğini belirtir (diğer " -"parametreler tarafından zaten kabul edilen herhangi bir anahtar kelime argümanına ek olarak). Böyle bir " -"parametre, parametre adının başına ``**``, örneğin yukarıdaki örnekte *kwargs* eklenerek tanımlanabilir." +":dfn:`var-keyword`: keyfi olarak birçok anahtar kelime argümanının " +"sağlanabileceğini belirtir (diğer parametreler tarafından zaten kabul edilen " +"herhangi bir anahtar kelime argümanına ek olarak). Böyle bir parametre, " +"parametre adının başına ``**``, örneğin yukarıdaki örnekte *kwargs* " +"eklenerek tanımlanabilir." #: glossary.rst:946 msgid "" -"Parameters can specify both optional and required arguments, as well as default values for some optional " -"arguments." +"Parameters can specify both optional and required arguments, as well as " +"default values for some optional arguments." msgstr "" -"Parametreler, hem isteğe bağlı hem de gerekli argümanleri ve ayrıca bazı isteğe bağlı bağımsız " -"değişkenler için varsayılan değerleri belirtebilir." +"Parametreler, hem isteğe bağlı hem de gerekli argümanleri ve ayrıca bazı " +"isteğe bağlı bağımsız değişkenler için varsayılan değerleri belirtebilir." #: glossary.rst:949 msgid "" -"See also the :term:`argument` glossary entry, the FAQ question on :ref:`the difference between arguments " -"and parameters `, the :class:`inspect.Parameter` class, the :ref:`function` " -"section, and :pep:`362`." +"See also the :term:`argument` glossary entry, the FAQ question on :ref:`the " +"difference between arguments and parameters `, " +"the :class:`inspect.Parameter` class, the :ref:`function` section, and :pep:" +"`362`." msgstr "" -"Ayrıca bkz. :term:`argüman `, :ref:`argümanlar ve parametreler arasındaki fark `, :class:`inspect.Parameter`, :ref:`function` " -"ve :pep:`362`." +"Ayrıca bkz. :term:`argüman `, :ref:`argümanlar ve parametreler " +"arasındaki fark `, :class:`inspect.Parameter`, :" +"ref:`function` ve :pep:`362`." #: glossary.rst:953 msgid "path entry" @@ -1890,11 +2221,11 @@ msgstr "yol girişi" #: glossary.rst:955 msgid "" -"A single location on the :term:`import path` which the :term:`path based finder` consults to find modules " -"for importing." +"A single location on the :term:`import path` which the :term:`path based " +"finder` consults to find modules for importing." msgstr "" -":term:`path based finder` içe aktarma modüllerini bulmak için başvurduğu :term:`import path` üzerindeki tek " -"bir konum." +":term:`path based finder` içe aktarma modüllerini bulmak için başvurduğu :" +"term:`import path` üzerindeki tek bir konum." #: glossary.rst:957 msgid "path entry finder" @@ -1902,16 +2233,21 @@ msgstr "yol girişi bulucu" #: glossary.rst:959 msgid "" -"A :term:`finder` returned by a callable on :data:`sys.path_hooks` (i.e. a :term:`path entry hook`) which " -"knows how to locate modules given a :term:`path entry`." +"A :term:`finder` returned by a callable on :data:`sys.path_hooks` (i.e. a :" +"term:`path entry hook`) which knows how to locate modules given a :term:" +"`path entry`." msgstr "" -"Bir :term:`finder` :data:`sys.path_hooks` (yani bir :term:`yol giriş kancası`) üzerinde bir çağrılabilir " -"tarafından döndürülür ve :term:`path entry` verilen modüllerin nasıl bulunacağını bilir." +"Bir :term:`finder` :data:`sys.path_hooks` (yani bir :term:`yol giriş " +"kancası`) üzerinde bir çağrılabilir tarafından döndürülür ve :term:`path " +"entry` verilen modüllerin nasıl bulunacağını bilir." #: glossary.rst:963 -msgid "See :class:`importlib.abc.PathEntryFinder` for the methods that path entry finders implement." +msgid "" +"See :class:`importlib.abc.PathEntryFinder` for the methods that path entry " +"finders implement." msgstr "" -"Yol girişi bulucularının uyguladığı yöntemler için :class:`importlib.abc.PathEntryFinder` bölümüne bakın." +"Yol girişi bulucularının uyguladığı yöntemler için :class:`importlib.abc." +"PathEntryFinder` bölümüne bakın." #: glossary.rst:965 msgid "path entry hook" @@ -1919,11 +2255,13 @@ msgstr "yol giriş kancası" #: glossary.rst:967 msgid "" -"A callable on the :data:`sys.path_hook` list which returns a :term:`path entry finder` if it knows how to " -"find modules on a specific :term:`path entry`." +"A callable on the :data:`sys.path_hook` list which returns a :term:`path " +"entry finder` if it knows how to find modules on a specific :term:`path " +"entry`." msgstr "" -":data:`sys.path_hook` listesinde, belirli bir :term:`yol girişindeki ` modülleri nasıl " -"bulacağını biliyorsa, bir :term:`yol girişi bulucu ` döndüren bir çağrılabilir." +":data:`sys.path_hook` listesinde, belirli bir :term:`yol girişindeki ` modülleri nasıl bulacağını biliyorsa, bir :term:`yol girişi bulucu " +"` döndüren bir çağrılabilir." #: glossary.rst:970 msgid "path based finder" @@ -1931,11 +2269,11 @@ msgstr "yol tabanlı bulucu" #: glossary.rst:972 msgid "" -"One of the default :term:`meta path finders ` which searches an :term:`import path` for " -"modules." +"One of the default :term:`meta path finders ` which " +"searches an :term:`import path` for modules." msgstr "" -"Modüller için bir :term:`import path` arayan varsayılan :term:`meta yol buluculardan ` " -"biri." +"Modüller için bir :term:`import path` arayan varsayılan :term:`meta yol " +"buluculardan ` biri." #: glossary.rst:974 msgid "path-like object" @@ -1943,17 +2281,22 @@ msgstr "yol benzeri nesne" #: glossary.rst:976 msgid "" -"An object representing a file system path. A path-like object is either a :class:`str` or :class:`bytes` " -"object representing a path, or an object implementing the :class:`os.PathLike` protocol. An object that " -"supports the :class:`os.PathLike` protocol can be converted to a :class:`str` or :class:`bytes` file system " -"path by calling the :func:`os.fspath` function; :func:`os.fsdecode` and :func:`os.fsencode` can be used to " -"guarantee a :class:`str` or :class:`bytes` result instead, respectively. Introduced by :pep:`519`." -msgstr "" -"Bir dosya sistemi yolunu temsil eden bir nesne. Yol benzeri bir nesne, bir yolu temsil eden bir :class:" -"`str` veya :class:`bytes` nesnesi veya :class:`os.PathLike` protokolünü uygulayan bir nesnedir. :class:`os." -"PathLike` protokolünü destekleyen bir nesne, :func:`os.fspath` işlevi çağrılarak bir :class:`str` veya :" -"class:`bytes` dosya sistemi yoluna dönüştürülebilir; :func:`os.fsdecode` ve :func:`os.fsencode`, bunun " -"yerine sırasıyla :class:`str` veya :class:`bytes` sonucunu garanti etmek için kullanılabilir. :pep:`519` " +"An object representing a file system path. A path-like object is either a :" +"class:`str` or :class:`bytes` object representing a path, or an object " +"implementing the :class:`os.PathLike` protocol. An object that supports the :" +"class:`os.PathLike` protocol can be converted to a :class:`str` or :class:" +"`bytes` file system path by calling the :func:`os.fspath` function; :func:" +"`os.fsdecode` and :func:`os.fsencode` can be used to guarantee a :class:" +"`str` or :class:`bytes` result instead, respectively. Introduced by :pep:" +"`519`." +msgstr "" +"Bir dosya sistemi yolunu temsil eden bir nesne. Yol benzeri bir nesne, bir " +"yolu temsil eden bir :class:`str` veya :class:`bytes` nesnesi veya :class:" +"`os.PathLike` protokolünü uygulayan bir nesnedir. :class:`os.PathLike` " +"protokolünü destekleyen bir nesne, :func:`os.fspath` işlevi çağrılarak bir :" +"class:`str` veya :class:`bytes` dosya sistemi yoluna dönüştürülebilir; :func:" +"`os.fsdecode` ve :func:`os.fsencode`, bunun yerine sırasıyla :class:`str` " +"veya :class:`bytes` sonucunu garanti etmek için kullanılabilir. :pep:`519` " "tarafından tanıtıldı." #: glossary.rst:984 @@ -1962,22 +2305,27 @@ msgstr "PEP" #: glossary.rst:986 msgid "" -"Python Enhancement Proposal. A PEP is a design document providing information to the Python community, or " -"describing a new feature for Python or its processes or environment. PEPs should provide a concise " -"technical specification and a rationale for proposed features." +"Python Enhancement Proposal. A PEP is a design document providing " +"information to the Python community, or describing a new feature for Python " +"or its processes or environment. PEPs should provide a concise technical " +"specification and a rationale for proposed features." msgstr "" -"Python Geliştirme Önerisi. PEP, Python topluluğuna bilgi sağlayan veya Python veya süreçleri ya da ortamı " -"için yeni bir özelliği açıklayan bir tasarım belgesidir. PEP'ler, önerilen özellikler için özlü bir teknik " +"Python Geliştirme Önerisi. PEP, Python topluluğuna bilgi sağlayan veya " +"Python veya süreçleri ya da ortamı için yeni bir özelliği açıklayan bir " +"tasarım belgesidir. PEP'ler, önerilen özellikler için özlü bir teknik " "şartname ve bir gerekçe sağlamalıdır." #: glossary.rst:992 msgid "" -"PEPs are intended to be the primary mechanisms for proposing major new features, for collecting community " -"input on an issue, and for documenting the design decisions that have gone into Python. The PEP author is " -"responsible for building consensus within the community and documenting dissenting opinions." +"PEPs are intended to be the primary mechanisms for proposing major new " +"features, for collecting community input on an issue, and for documenting " +"the design decisions that have gone into Python. The PEP author is " +"responsible for building consensus within the community and documenting " +"dissenting opinions." msgstr "" -"PEP'lerin, önemli yeni özellikler önermek, bir sorun hakkında topluluk girdisi toplamak ve Python'a giren " -"tasarım kararlarını belgelemek için birincil mekanizmalar olması amaçlanmıştır. PEP yazarı, topluluk içinde " +"PEP'lerin, önemli yeni özellikler önermek, bir sorun hakkında topluluk " +"girdisi toplamak ve Python'a giren tasarım kararlarını belgelemek için " +"birincil mekanizmalar olması amaçlanmıştır. PEP yazarı, topluluk içinde " "fikir birliği oluşturmaktan ve muhalif görüşleri belgelemekten sorumludur." #: glossary.rst:998 @@ -1990,11 +2338,11 @@ msgstr "kısım" #: glossary.rst:1001 msgid "" -"A set of files in a single directory (possibly stored in a zip file) that contribute to a namespace " -"package, as defined in :pep:`420`." +"A set of files in a single directory (possibly stored in a zip file) that " +"contribute to a namespace package, as defined in :pep:`420`." msgstr "" -":pep:`420` içinde tanımlandığı gibi, bir ad alanı paketine katkıda bulunan tek bir dizindeki (muhtemelen " -"bir zip dosyasında depolanan) bir dizi dosya." +":pep:`420` içinde tanımlandığı gibi, bir ad alanı paketine katkıda bulunan " +"tek bir dizindeki (muhtemelen bir zip dosyasında depolanan) bir dizi dosya." #: glossary.rst:1003 msgid "positional argument" @@ -2006,34 +2354,42 @@ msgstr "geçici API" #: glossary.rst:1008 msgid "" -"A provisional API is one which has been deliberately excluded from the standard library's backwards " -"compatibility guarantees. While major changes to such interfaces are not expected, as long as they are " -"marked provisional, backwards incompatible changes (up to and including removal of the interface) may occur " -"if deemed necessary by core developers. Such changes will not be made gratuitously -- they will occur only " -"if serious fundamental flaws are uncovered that were missed prior to the inclusion of the API." -msgstr "" -"Geçici bir API, standart kitaplığın geriye dönük uyumluluk garantilerinden kasıtlı olarak hariç tutulan bir " -"API'dir. Bu tür arayüzlerde büyük değişiklikler beklenmese de, geçici olarak işaretlendikleri sürece, " -"çekirdek geliştiriciler tarafından gerekli görüldüğü takdirde geriye dönük uyumsuz değişiklikler (arayüzün " -"kaldırılmasına kadar ve buna kadar) meydana gelebilir. Bu tür değişiklikler karşılıksız yapılmayacaktır - " -"bunlar yalnızca API'nin eklenmesinden önce gözden kaçan ciddi temel kusurlar ortaya çıkarsa " -"gerçekleşecektir." +"A provisional API is one which has been deliberately excluded from the " +"standard library's backwards compatibility guarantees. While major changes " +"to such interfaces are not expected, as long as they are marked provisional, " +"backwards incompatible changes (up to and including removal of the " +"interface) may occur if deemed necessary by core developers. Such changes " +"will not be made gratuitously -- they will occur only if serious fundamental " +"flaws are uncovered that were missed prior to the inclusion of the API." +msgstr "" +"Geçici bir API, standart kitaplığın geriye dönük uyumluluk garantilerinden " +"kasıtlı olarak hariç tutulan bir API'dir. Bu tür arayüzlerde büyük " +"değişiklikler beklenmese de, geçici olarak işaretlendikleri sürece, çekirdek " +"geliştiriciler tarafından gerekli görüldüğü takdirde geriye dönük uyumsuz " +"değişiklikler (arayüzün kaldırılmasına kadar ve buna kadar) meydana " +"gelebilir. Bu tür değişiklikler karşılıksız yapılmayacaktır - bunlar " +"yalnızca API'nin eklenmesinden önce gözden kaçan ciddi temel kusurlar ortaya " +"çıkarsa gerçekleşecektir." #: glossary.rst:1017 msgid "" -"Even for provisional APIs, backwards incompatible changes are seen as a \"solution of last resort\" - every " -"attempt will still be made to find a backwards compatible resolution to any identified problems." +"Even for provisional APIs, backwards incompatible changes are seen as a " +"\"solution of last resort\" - every attempt will still be made to find a " +"backwards compatible resolution to any identified problems." msgstr "" -"Geçici API'ler için bile, geriye dönük uyumsuz değişiklikler \"son çare çözümü\" olarak görülür - " -"tanımlanan herhangi bir soruna geriye dönük uyumlu bir çözüm bulmak için her türlü girişimde bulunulacaktır." +"Geçici API'ler için bile, geriye dönük uyumsuz değişiklikler \"son çare " +"çözümü\" olarak görülür - tanımlanan herhangi bir soruna geriye dönük uyumlu " +"bir çözüm bulmak için her türlü girişimde bulunulacaktır." #: glossary.rst:1021 msgid "" -"This process allows the standard library to continue to evolve over time, without locking in problematic " -"design errors for extended periods of time. See :pep:`411` for more details." +"This process allows the standard library to continue to evolve over time, " +"without locking in problematic design errors for extended periods of time. " +"See :pep:`411` for more details." msgstr "" -"Bu süreç, standart kitaplığın, uzun süreler boyunca sorunlu tasarım hatalarına kilitlenmeden zaman içinde " -"gelişmeye devam etmesini sağlar. Daha fazla ayrıntı için bkz. :pep:`411`." +"Bu süreç, standart kitaplığın, uzun süreler boyunca sorunlu tasarım " +"hatalarına kilitlenmeden zaman içinde gelişmeye devam etmesini sağlar. Daha " +"fazla ayrıntı için bkz. :pep:`411`." #: glossary.rst:1024 msgid "provisional package" @@ -2049,11 +2405,13 @@ msgstr "Python 3000" #: glossary.rst:1029 msgid "" -"Nickname for the Python 3.x release line (coined long ago when the release of version 3 was something in " -"the distant future.) This is also abbreviated \"Py3k\"." +"Nickname for the Python 3.x release line (coined long ago when the release " +"of version 3 was something in the distant future.) This is also abbreviated " +"\"Py3k\"." msgstr "" -"Python 3.x sürüm satırının takma adı (uzun zaman önce sürüm 3'ün piyasaya sürülmesi uzak bir gelecekte " -"olduğu zaman ortaya çıktı.) Bu aynı zamanda \"Py3k\" olarak da kısaltılır." +"Python 3.x sürüm satırının takma adı (uzun zaman önce sürüm 3'ün piyasaya " +"sürülmesi uzak bir gelecekte olduğu zaman ortaya çıktı.) Bu aynı zamanda " +"\"Py3k\" olarak da kısaltılır." #: glossary.rst:1032 msgid "Pythonic" @@ -2061,16 +2419,19 @@ msgstr "Pythonic" #: glossary.rst:1034 msgid "" -"An idea or piece of code which closely follows the most common idioms of the Python language, rather than " -"implementing code using concepts common to other languages. For example, a common idiom in Python is to " -"loop over all elements of an iterable using a :keyword:`for` statement. Many other languages don't have " -"this type of construct, so people unfamiliar with Python sometimes use a numerical counter instead::" +"An idea or piece of code which closely follows the most common idioms of the " +"Python language, rather than implementing code using concepts common to " +"other languages. For example, a common idiom in Python is to loop over all " +"elements of an iterable using a :keyword:`for` statement. Many other " +"languages don't have this type of construct, so people unfamiliar with " +"Python sometimes use a numerical counter instead::" msgstr "" -"Diğer dillerde ortak kavramları kullanarak kod uygulamak yerine Python dilinin en yaygın deyimlerini " -"yakından takip eden bir fikir veya kod parçası. Örneğin, Python'da yaygın bir deyim, bir :keyword:`for` " -"ifadesi kullanarak yinelenebilir bir öğenin tüm öğeleri üzerinde döngü oluşturmaktır. Diğer birçok dilde bu " -"tür bir yapı yoktur, bu nedenle Python'a aşina olmayan kişiler bazen bunun yerine sayısal bir sayaç " -"kullanır:" +"Diğer dillerde ortak kavramları kullanarak kod uygulamak yerine Python " +"dilinin en yaygın deyimlerini yakından takip eden bir fikir veya kod " +"parçası. Örneğin, Python'da yaygın bir deyim, bir :keyword:`for` ifadesi " +"kullanarak yinelenebilir bir öğenin tüm öğeleri üzerinde döngü " +"oluşturmaktır. Diğer birçok dilde bu tür bir yapı yoktur, bu nedenle " +"Python'a aşina olmayan kişiler bazen bunun yerine sayısal bir sayaç kullanır:" #: glossary.rst:1044 msgid "As opposed to the cleaner, Pythonic method::" @@ -2082,21 +2443,25 @@ msgstr "nitelikli isim" #: glossary.rst:1050 msgid "" -"A dotted name showing the \"path\" from a module's global scope to a class, function or method defined in " -"that module, as defined in :pep:`3155`. For top-level functions and classes, the qualified name is the " -"same as the object's name::" +"A dotted name showing the \"path\" from a module's global scope to a class, " +"function or method defined in that module, as defined in :pep:`3155`. For " +"top-level functions and classes, the qualified name is the same as the " +"object's name::" msgstr "" -":pep:`3155` içinde tanımlandığı gibi, bir modülün genel kapsamından o modülde tanımlanan bir sınıfa, işleve " -"veya yönteme giden \"yolu\" gösteren noktalı ad. Üst düzey işlevler ve sınıflar için nitelikli ad, nesnenin " +":pep:`3155` içinde tanımlandığı gibi, bir modülün genel kapsamından o " +"modülde tanımlanan bir sınıfa, işleve veya yönteme giden \"yolu\" gösteren " +"noktalı ad. Üst düzey işlevler ve sınıflar için nitelikli ad, nesnenin " "adıyla aynıdır::" #: glossary.rst:1067 msgid "" -"When used to refer to modules, the *fully qualified name* means the entire dotted path to the module, " -"including any parent packages, e.g. ``email.mime.text``::" +"When used to refer to modules, the *fully qualified name* means the entire " +"dotted path to the module, including any parent packages, e.g. ``email.mime." +"text``::" msgstr "" -"Modüllere atıfta bulunmak için kullanıldığında, *tam nitelenmiş ad*, herhangi bir üst paket de dahil olmak " -"üzere, modüle giden tüm noktalı yol anlamına gelir, örn. ``email.mime.text``::" +"Modüllere atıfta bulunmak için kullanıldığında, *tam nitelenmiş ad*, " +"herhangi bir üst paket de dahil olmak üzere, modüle giden tüm noktalı yol " +"anlamına gelir, örn. ``email.mime.text``::" #: glossary.rst:1074 msgid "reference count" @@ -2104,23 +2469,30 @@ msgstr "referans sayısı" #: glossary.rst:1076 msgid "" -"The number of references to an object. When the reference count of an object drops to zero, it is " -"deallocated. Reference counting is generally not visible to Python code, but it is a key element of the :" -"term:`CPython` implementation. The :mod:`sys` module defines a :func:`~sys.getrefcount` function that " -"programmers can call to return the reference count for a particular object." +"The number of references to an object. When the reference count of an " +"object drops to zero, it is deallocated. Reference counting is generally " +"not visible to Python code, but it is a key element of the :term:`CPython` " +"implementation. The :mod:`sys` module defines a :func:`~sys.getrefcount` " +"function that programmers can call to return the reference count for a " +"particular object." msgstr "" -"Bir nesneye yapılan başvuruların sayısı. Bir nesnenin referans sayısı sıfıra düştüğünde, yerinden " -"çıkarılır. Referans sayımı genellikle Python kodunda görülmez, ancak :term:`CPython` uygulamasının önemli " -"bir öğesidir. :mod:`sys` modülü, programcıların belirli bir nesne için referans sayısını döndürmek üzere " -"çağırabilecekleri bir :func:`~sys.getrefcount` işlevini tanımlar." +"Bir nesneye yapılan başvuruların sayısı. Bir nesnenin referans sayısı sıfıra " +"düştüğünde, yerinden çıkarılır. Referans sayımı genellikle Python kodunda " +"görülmez, ancak :term:`CPython` uygulamasının önemli bir öğesidir. :mod:" +"`sys` modülü, programcıların belirli bir nesne için referans sayısını " +"döndürmek üzere çağırabilecekleri bir :func:`~sys.getrefcount` işlevini " +"tanımlar." #: glossary.rst:1082 msgid "regular package" msgstr "sürekli paketleme" #: glossary.rst:1084 -msgid "A traditional :term:`package`, such as a directory containing an ``__init__.py`` file." -msgstr "``__init__.py`` dosyası içeren bir dizin gibi geleneksel bir :term:`package`." +msgid "" +"A traditional :term:`package`, such as a directory containing an ``__init__." +"py`` file." +msgstr "" +"``__init__.py`` dosyası içeren bir dizin gibi geleneksel bir :term:`package`." #: glossary.rst:1087 msgid "See also :term:`namespace package`." @@ -2132,13 +2504,17 @@ msgstr "__slots__" #: glossary.rst:1090 msgid "" -"A declaration inside a class that saves memory by pre-declaring space for instance attributes and " -"eliminating instance dictionaries. Though popular, the technique is somewhat tricky to get right and is " -"best reserved for rare cases where there are large numbers of instances in a memory-critical application." +"A declaration inside a class that saves memory by pre-declaring space for " +"instance attributes and eliminating instance dictionaries. Though popular, " +"the technique is somewhat tricky to get right and is best reserved for rare " +"cases where there are large numbers of instances in a memory-critical " +"application." msgstr "" -"Örnek öznitelikleri için önceden yer bildirerek ve örnek sözlüklerini ortadan kaldırarak bellekten tasarruf " -"sağlayan bir sınıf içindeki bildirim. Popüler olmasına rağmen, tekniğin doğru olması biraz zor ve en iyi, " -"bellek açısından kritik bir uygulamada çok sayıda örneğin bulunduğu nadir durumlar için ayrılmıştır." +"Örnek öznitelikleri için önceden yer bildirerek ve örnek sözlüklerini " +"ortadan kaldırarak bellekten tasarruf sağlayan bir sınıf içindeki bildirim. " +"Popüler olmasına rağmen, tekniğin doğru olması biraz zor ve en iyi, bellek " +"açısından kritik bir uygulamada çok sayıda örneğin bulunduğu nadir durumlar " +"için ayrılmıştır." #: glossary.rst:1095 msgid "sequence" @@ -2146,30 +2522,36 @@ msgstr "dizi" #: glossary.rst:1097 msgid "" -"An :term:`iterable` which supports efficient element access using integer indices via the :meth:" -"`__getitem__` special method and defines a :meth:`__len__` method that returns the length of the sequence. " -"Some built-in sequence types are :class:`list`, :class:`str`, :class:`tuple`, and :class:`bytes`. Note " -"that :class:`dict` also supports :meth:`__getitem__` and :meth:`__len__`, but is considered a mapping " -"rather than a sequence because the lookups use arbitrary :term:`immutable` keys rather than integers." -msgstr "" -":meth:`__getitem__` özel yöntemi aracılığıyla tamsayı dizinlerini kullanarak verimli öğe erişimini " -"destekleyen ve dizinin uzunluğunu döndüren bir :meth:`__len__` yöntemini tanımlayan bir :term:`iterable`. " -"Bazı yerleşik dizi türleri şunlardır: :class:`list`, :class:`str`, :class:`tuple` ve :class:`bytes`. :class:" -"`dict` ayrıca :meth:`__getitem__` ve :meth:`__len__` 'i de desteklediğine dikkat edin, ancak aramalar " -"tamsayılar yerine rastgele :term:`immutable` anahtarları kullandığından bir diziden ziyade bir eşleme " -"olarak kabul edilir." +"An :term:`iterable` which supports efficient element access using integer " +"indices via the :meth:`__getitem__` special method and defines a :meth:" +"`__len__` method that returns the length of the sequence. Some built-in " +"sequence types are :class:`list`, :class:`str`, :class:`tuple`, and :class:" +"`bytes`. Note that :class:`dict` also supports :meth:`__getitem__` and :meth:" +"`__len__`, but is considered a mapping rather than a sequence because the " +"lookups use arbitrary :term:`immutable` keys rather than integers." +msgstr "" +":meth:`__getitem__` özel yöntemi aracılığıyla tamsayı dizinlerini kullanarak " +"verimli öğe erişimini destekleyen ve dizinin uzunluğunu döndüren bir :meth:" +"`__len__` yöntemini tanımlayan bir :term:`iterable`. Bazı yerleşik dizi " +"türleri şunlardır: :class:`list`, :class:`str`, :class:`tuple` ve :class:" +"`bytes`. :class:`dict` ayrıca :meth:`__getitem__` ve :meth:`__len__` 'i de " +"desteklediğine dikkat edin, ancak aramalar tamsayılar yerine rastgele :term:" +"`immutable` anahtarları kullandığından bir diziden ziyade bir eşleme olarak " +"kabul edilir." #: glossary.rst:1106 msgid "" -"The :class:`collections.abc.Sequence` abstract base class defines a much richer interface that goes beyond " -"just :meth:`__getitem__` and :meth:`__len__`, adding :meth:`count`, :meth:`index`, :meth:`__contains__`, " -"and :meth:`__reversed__`. Types that implement this expanded interface can be registered explicitly using :" -"func:`~abc.ABCMeta.register`." +"The :class:`collections.abc.Sequence` abstract base class defines a much " +"richer interface that goes beyond just :meth:`__getitem__` and :meth:" +"`__len__`, adding :meth:`count`, :meth:`index`, :meth:`__contains__`, and :" +"meth:`__reversed__`. Types that implement this expanded interface can be " +"registered explicitly using :func:`~abc.ABCMeta.register`." msgstr "" -":class:`collections.abc.Sequence` soyut temel sınıfı;, :meth:`count`, :meth:`index`, :meth:`__contains__`, " -"ve :meth:`__reversed__` ekleyerek sadece :meth:`__getitem__` ve :meth:`__len__` 'in ötesine geçen çok daha " -"zengin bir arayüzü tanımlar. Bu genişletilmiş arabirimi uygulayan türler, :func:`~abc.ABCMeta.register` " -"kullanılarak açıkça kaydedilebilir." +":class:`collections.abc.Sequence` soyut temel sınıfı;, :meth:`count`, :meth:" +"`index`, :meth:`__contains__`, ve :meth:`__reversed__` ekleyerek sadece :" +"meth:`__getitem__` ve :meth:`__len__` 'in ötesine geçen çok daha zengin bir " +"arayüzü tanımlar. Bu genişletilmiş arabirimi uygulayan türler, :func:`~abc." +"ABCMeta.register` kullanılarak açıkça kaydedilebilir." #: glossary.rst:1113 msgid "set comprehension" @@ -2177,13 +2559,15 @@ msgstr "anlamak" #: glossary.rst:1115 msgid "" -"A compact way to process all or part of the elements in an iterable and return a set with the results. " -"``results = {c for c in 'abracadabra' if c not in 'abc'}`` generates the set of strings ``{'r', 'd'}``. " -"See :ref:`comprehensions`." +"A compact way to process all or part of the elements in an iterable and " +"return a set with the results. ``results = {c for c in 'abracadabra' if c " +"not in 'abc'}`` generates the set of strings ``{'r', 'd'}``. See :ref:" +"`comprehensions`." msgstr "" -"Öğelerin tümünü veya bir kısmını yinelenebilir bir şekilde işlemenin ve sonuçlarla birlikte bir küme " -"döndürmenin kompakt bir yolu. ``results = {c for c in 'abracadabra' if c not in 'abc'}``, ``{'r', 'd'}`` " -"dizelerini oluşturur. Bakınız :ref:`comprehensions`." +"Öğelerin tümünü veya bir kısmını yinelenebilir bir şekilde işlemenin ve " +"sonuçlarla birlikte bir küme döndürmenin kompakt bir yolu. ``results = {c " +"for c in 'abracadabra' if c not in 'abc'}``, ``{'r', 'd'}`` dizelerini " +"oluşturur. Bakınız :ref:`comprehensions`." #: glossary.rst:1119 msgid "single dispatch" @@ -2191,9 +2575,11 @@ msgstr "tek sevk" #: glossary.rst:1121 msgid "" -"A form of :term:`generic function` dispatch where the implementation is chosen based on the type of a " -"single argument." -msgstr "Uygulamanın tek bir argüman türüne göre seçildiği bir :term:`generic function` gönderimi biçimi." +"A form of :term:`generic function` dispatch where the implementation is " +"chosen based on the type of a single argument." +msgstr "" +"Uygulamanın tek bir argüman türüne göre seçildiği bir :term:`generic " +"function` gönderimi biçimi." #: glossary.rst:1123 msgid "slice" @@ -2201,14 +2587,16 @@ msgstr "parçalamak" #: glossary.rst:1125 msgid "" -"An object usually containing a portion of a :term:`sequence`. A slice is created using the subscript " -"notation, ``[]`` with colons between numbers when several are given, such as in ``variable_name[1:3:5]``. " -"The bracket (subscript) notation uses :class:`slice` objects internally." +"An object usually containing a portion of a :term:`sequence`. A slice is " +"created using the subscript notation, ``[]`` with colons between numbers " +"when several are given, such as in ``variable_name[1:3:5]``. The bracket " +"(subscript) notation uses :class:`slice` objects internally." msgstr "" -"Genellikle bir :term:`sequence` 'nin bir bölümünü içeren bir nesne. Bir dilim, örneğin " -"``variable_name[1:3:5]`` 'de olduğu gibi, birkaç tane verildiğinde, sayılar arasında iki nokta üst üste " -"koyarak, ``[]`` alt simge gösterimi kullanılarak oluşturulur. Köşeli ayraç (alt simge) gösterimi, dahili " -"olarak :class:`slice` nesnelerini kullanır." +"Genellikle bir :term:`sequence` 'nin bir bölümünü içeren bir nesne. Bir " +"dilim, örneğin ``variable_name[1:3:5]`` 'de olduğu gibi, birkaç tane " +"verildiğinde, sayılar arasında iki nokta üst üste koyarak, ``[]`` alt simge " +"gösterimi kullanılarak oluşturulur. Köşeli ayraç (alt simge) gösterimi, " +"dahili olarak :class:`slice` nesnelerini kullanır." #: glossary.rst:1129 msgid "special method" @@ -2216,12 +2604,14 @@ msgstr "özel metod" #: glossary.rst:1133 msgid "" -"A method that is called implicitly by Python to execute a certain operation on a type, such as addition. " -"Such methods have names starting and ending with double underscores. Special methods are documented in :" -"ref:`specialnames`." +"A method that is called implicitly by Python to execute a certain operation " +"on a type, such as addition. Such methods have names starting and ending " +"with double underscores. Special methods are documented in :ref:" +"`specialnames`." msgstr "" -"Toplama gibi bir tür üzerinde belirli bir işlemi yürütmek için Python tarafından örtük olarak çağrılan bir " -"yöntem. Bu tür yöntemlerin çift alt çizgi ile başlayan ve biten adları vardır. Özel yöntemler :ref:" +"Toplama gibi bir tür üzerinde belirli bir işlemi yürütmek için Python " +"tarafından örtük olarak çağrılan bir yöntem. Bu tür yöntemlerin çift alt " +"çizgi ile başlayan ve biten adları vardır. Özel yöntemler :ref:" "`specialnames` içinde belgelenmiştir." #: glossary.rst:1137 @@ -2230,11 +2620,13 @@ msgstr "ifade (değer döndürmez)" #: glossary.rst:1139 msgid "" -"A statement is part of a suite (a \"block\" of code). A statement is either an :term:`expression` or one " -"of several constructs with a keyword, such as :keyword:`if`, :keyword:`while` or :keyword:`for`." +"A statement is part of a suite (a \"block\" of code). A statement is either " +"an :term:`expression` or one of several constructs with a keyword, such as :" +"keyword:`if`, :keyword:`while` or :keyword:`for`." msgstr "" -"Bir ifade, bir paketin parçasıdır (kod \"bloğu\"). Bir ifade, bir :term:`expression` veya :keyword:`if`, :" -"keyword:`while` veya :keyword:`for` gibi bir anahtar kelimeye sahip birkaç yapıdan biridir." +"Bir ifade, bir paketin parçasıdır (kod \"bloğu\"). Bir ifade, bir :term:" +"`expression` veya :keyword:`if`, :keyword:`while` veya :keyword:`for` gibi " +"bir anahtar kelimeye sahip birkaç yapıdan biridir." #: glossary.rst:1142 msgid "strong reference" @@ -2242,20 +2634,24 @@ msgstr "güçlü referans" #: glossary.rst:1144 msgid "" -"In Python's C API, a strong reference is a reference to an object which increments the object's reference " -"count when it is created and decrements the object's reference count when it is deleted." +"In Python's C API, a strong reference is a reference to an object which " +"increments the object's reference count when it is created and decrements " +"the object's reference count when it is deleted." msgstr "" -"Python'un C API'sinde, güçlü bir referans, oluşturulduğunda nesnenin referans sayısını artıran ve " -"silindiğinde nesnenin referans sayısını azaltan bir nesneye yapılan referanstır." +"Python'un C API'sinde, güçlü bir referans, oluşturulduğunda nesnenin " +"referans sayısını artıran ve silindiğinde nesnenin referans sayısını azaltan " +"bir nesneye yapılan referanstır." #: glossary.rst:1148 msgid "" -"The :c:func:`Py_NewRef` function can be used to create a strong reference to an object. Usually, the :c:" -"func:`Py_DECREF` function must be called on the strong reference before exiting the scope of the strong " -"reference, to avoid leaking one reference." +"The :c:func:`Py_NewRef` function can be used to create a strong reference to " +"an object. Usually, the :c:func:`Py_DECREF` function must be called on the " +"strong reference before exiting the scope of the strong reference, to avoid " +"leaking one reference." msgstr "" -":c:func:`Py_NewRef` fonksiyonu, bir nesneye güçlü bir başvuru oluşturmak için kullanılabilir. Genellikle :c:" -"func:`Py_DECREF` fonksiyonu, bir referansın sızmasını önlemek için güçlü referans kapsamından çıkmadan önce " +":c:func:`Py_NewRef` fonksiyonu, bir nesneye güçlü bir başvuru oluşturmak " +"için kullanılabilir. Genellikle :c:func:`Py_DECREF` fonksiyonu, bir " +"referansın sızmasını önlemek için güçlü referans kapsamından çıkmadan önce " "güçlü referansta çağrılmalıdır." #: glossary.rst:1153 @@ -2268,27 +2664,30 @@ msgstr "yazı çözümleme" #: glossary.rst:1156 msgid "" -"A string in Python is a sequence of Unicode code points (in range ``U+0000``--``U+10FFFF``). To store or " -"transfer a string, it needs to be serialized as a sequence of bytes." +"A string in Python is a sequence of Unicode code points (in range ``U" +"+0000``--``U+10FFFF``). To store or transfer a string, it needs to be " +"serialized as a sequence of bytes." msgstr "" -"Python'da bir dize, bir Unicode kod noktaları dizisidir (``U+0000``--``U+10FFFF`` aralığında). Bir dizeyi " -"depolamak veya aktarmak için, bir bayt dizisi olarak seri hale getirilmesi gerekir." +"Python'da bir dize, bir Unicode kod noktaları dizisidir (``U+0000``--``U" +"+10FFFF`` aralığında). Bir dizeyi depolamak veya aktarmak için, bir bayt " +"dizisi olarak seri hale getirilmesi gerekir." #: glossary.rst:1160 msgid "" -"Serializing a string into a sequence of bytes is known as \"encoding\", and recreating the string from the " -"sequence of bytes is known as \"decoding\"." +"Serializing a string into a sequence of bytes is known as \"encoding\", and " +"recreating the string from the sequence of bytes is known as \"decoding\"." msgstr "" -"Bir dizeyi bir bayt dizisi halinde seri hale getirmek \"kodlama (encoding)\" olarak bilinir ve dizeyi bayt " -"dizisinden yeniden oluşturmak \"kod çözme (decoding)\" olarak bilinir." +"Bir dizeyi bir bayt dizisi halinde seri hale getirmek \"kodlama (encoding)\" " +"olarak bilinir ve dizeyi bayt dizisinden yeniden oluşturmak \"kod çözme " +"(decoding)\" olarak bilinir." #: glossary.rst:1163 msgid "" -"There are a variety of different text serialization :ref:`codecs `, which are " -"collectively referred to as \"text encodings\"." +"There are a variety of different text serialization :ref:`codecs `, which are collectively referred to as \"text encodings\"." msgstr "" -"Toplu olarak \"metin kodlamaları\" olarak adlandırılan çeşitli farklı metin serileştirme :ref:`kodekleri " -"` vardır." +"Toplu olarak \"metin kodlamaları\" olarak adlandırılan çeşitli farklı metin " +"serileştirme :ref:`kodekleri ` vardır." #: glossary.rst:1166 msgid "text file" @@ -2296,23 +2695,25 @@ msgstr "yazı dosyası" #: glossary.rst:1168 msgid "" -"A :term:`file object` able to read and write :class:`str` objects. Often, a text file actually accesses a " -"byte-oriented datastream and handles the :term:`text encoding` automatically. Examples of text files are " -"files opened in text mode (``'r'`` or ``'w'``), :data:`sys.stdin`, :data:`sys.stdout`, and instances of :" -"class:`io.StringIO`." +"A :term:`file object` able to read and write :class:`str` objects. Often, a " +"text file actually accesses a byte-oriented datastream and handles the :term:" +"`text encoding` automatically. Examples of text files are files opened in " +"text mode (``'r'`` or ``'w'``), :data:`sys.stdin`, :data:`sys.stdout`, and " +"instances of :class:`io.StringIO`." msgstr "" -"A :term:`file object` :class:`str` nesnelerini okuyabilir ve yazabilir. Çoğu zaman, bir metin dosyası " -"aslında bir bayt yönelimli veri akışına erişir ve otomatik olarak :term:`text encoding` işler. Metin " -"dosyalarına örnek olarak metin modunda açılan dosyalar (``'r'`` veya ``'w'``), :data:`sys.stdin`, :data:" -"`sys.stdout` ve :class:`io.StringIO` örnekleri verilebilir." +"A :term:`file object` :class:`str` nesnelerini okuyabilir ve yazabilir. Çoğu " +"zaman, bir metin dosyası aslında bir bayt yönelimli veri akışına erişir ve " +"otomatik olarak :term:`text encoding` işler. Metin dosyalarına örnek olarak " +"metin modunda açılan dosyalar (``'r'`` veya ``'w'``), :data:`sys.stdin`, :" +"data:`sys.stdout` ve :class:`io.StringIO` örnekleri verilebilir." #: glossary.rst:1175 msgid "" -"See also :term:`binary file` for a file object able to read and write :term:`bytes-like objects `." +"See also :term:`binary file` for a file object able to read and write :term:" +"`bytes-like objects `." msgstr "" -"Ayrıca :term:`ikili dosyaları ` okuyabilen ve yazabilen bir dosya nesnesi için :term:`bayt " -"benzeri nesnelere ` bakın." +"Ayrıca :term:`ikili dosyaları ` okuyabilen ve yazabilen bir " +"dosya nesnesi için :term:`bayt benzeri nesnelere ` bakın." #: glossary.rst:1177 msgid "triple-quoted string" @@ -2320,16 +2721,20 @@ msgstr "üç tırnaklı dize" #: glossary.rst:1179 msgid "" -"A string which is bound by three instances of either a quotation mark (\") or an apostrophe ('). While " -"they don't provide any functionality not available with single-quoted strings, they are useful for a number " -"of reasons. They allow you to include unescaped single and double quotes within a string and they can span " -"multiple lines without the use of the continuation character, making them especially useful when writing " +"A string which is bound by three instances of either a quotation mark (\") " +"or an apostrophe ('). While they don't provide any functionality not " +"available with single-quoted strings, they are useful for a number of " +"reasons. They allow you to include unescaped single and double quotes " +"within a string and they can span multiple lines without the use of the " +"continuation character, making them especially useful when writing " "docstrings." msgstr "" -"Üç tırnak işareti (\") veya kesme işareti (') ile sınırlanan bir dize. Tek tırnaklı dizelerde bulunmayan " -"herhangi bir işlevsellik sağlamasalar da, birkaç nedenden dolayı faydalıdırlar. bir dizeye çıkışsız tek ve " -"çift tırnak eklemeniz gerekir ve bunlar, devam karakterini kullanmadan birden çok satıra yayılabilir, bu da " -"onları özellikle belge dizileri yazarken kullanışlı hale getirir." +"Üç tırnak işareti (\") veya kesme işareti (') ile sınırlanan bir dize. Tek " +"tırnaklı dizelerde bulunmayan herhangi bir işlevsellik sağlamasalar da, " +"birkaç nedenden dolayı faydalıdırlar. bir dizeye çıkışsız tek ve çift tırnak " +"eklemeniz gerekir ve bunlar, devam karakterini kullanmadan birden çok satıra " +"yayılabilir, bu da onları özellikle belge dizileri yazarken kullanışlı hale " +"getirir." #: glossary.rst:1186 msgid "type" @@ -2337,11 +2742,13 @@ msgstr "tip" #: glossary.rst:1188 msgid "" -"The type of a Python object determines what kind of object it is; every object has a type. An object's " -"type is accessible as its :attr:`~instance.__class__` attribute or can be retrieved with ``type(obj)``." +"The type of a Python object determines what kind of object it is; every " +"object has a type. An object's type is accessible as its :attr:`~instance." +"__class__` attribute or can be retrieved with ``type(obj)``." msgstr "" -"Bir Python nesnesinin türü, onun ne tür bir nesne olduğunu belirler; her nesnenin bir türü vardır. Bir " -"nesnenin tipine :attr:`~instance.__class__` niteliği ile erişilebilir veya ``type(obj)`` ile alınabilir." +"Bir Python nesnesinin türü, onun ne tür bir nesne olduğunu belirler; her " +"nesnenin bir türü vardır. Bir nesnenin tipine :attr:`~instance.__class__` " +"niteliği ile erişilebilir veya ``type(obj)`` ile alınabilir." #: glossary.rst:1192 msgid "type alias" @@ -2352,8 +2759,12 @@ msgid "A synonym for a type, created by assigning the type to an identifier." msgstr "Bir tanımlayıcıya tür atanarak oluşturulan, bir tür için eş anlamlı." #: glossary.rst:1196 -msgid "Type aliases are useful for simplifying :term:`type hints `. For example::" -msgstr "Tür takma adları, :term:`tür ipuçlarını ` basitleştirmek için kullanışlıdır. Örneğin::" +msgid "" +"Type aliases are useful for simplifying :term:`type hints `. For " +"example::" +msgstr "" +"Tür takma adları, :term:`tür ipuçlarını ` basitleştirmek için " +"kullanışlıdır. Örneğin::" #: glossary.rst:1203 msgid "could be made more readable like this::" @@ -2369,27 +2780,30 @@ msgstr "tür ipucu" #: glossary.rst:1213 msgid "" -"An :term:`annotation` that specifies the expected type for a variable, a class attribute, or a function " -"parameter or return value." +"An :term:`annotation` that specifies the expected type for a variable, a " +"class attribute, or a function parameter or return value." msgstr "" -"Bir değişken, bir sınıf niteliği veya bir işlev parametresi veya dönüş değeri için beklenen türü belirten " -"bir :term:`ek açıklama `." +"Bir değişken, bir sınıf niteliği veya bir işlev parametresi veya dönüş " +"değeri için beklenen türü belirten bir :term:`ek açıklama `." #: glossary.rst:1216 msgid "" -"Type hints are optional and are not enforced by Python but they are useful to static type analysis tools, " -"and aid IDEs with code completion and refactoring." +"Type hints are optional and are not enforced by Python but they are useful " +"to static type analysis tools, and aid IDEs with code completion and " +"refactoring." msgstr "" -"Tür ipuçları isteğe bağlıdır ve Python tarafından uygulanmaz, ancak bunlar statik tip analiz araçları için " -"faydalıdır ve kod tamamlama ve yeniden düzenleme ile IDE'lere yardımcı olur." +"Tür ipuçları isteğe bağlıdır ve Python tarafından uygulanmaz, ancak bunlar " +"statik tip analiz araçları için faydalıdır ve kod tamamlama ve yeniden " +"düzenleme ile IDE'lere yardımcı olur." #: glossary.rst:1220 msgid "" -"Type hints of global variables, class attributes, and functions, but not local variables, can be accessed " -"using :func:`typing.get_type_hints`." +"Type hints of global variables, class attributes, and functions, but not " +"local variables, can be accessed using :func:`typing.get_type_hints`." msgstr "" -"Genel değişkenlerin, sınıf özniteliklerinin ve işlevlerin tür ipuçlarına, yerel değişkenlere değil, :func:" -"`typing.get_type_hints` kullanılarak erişilebilir." +"Genel değişkenlerin, sınıf özniteliklerinin ve işlevlerin tür ipuçlarına, " +"yerel değişkenlere değil, :func:`typing.get_type_hints` kullanılarak " +"erişilebilir." #: glossary.rst:1225 msgid "universal newlines" @@ -2397,14 +2811,16 @@ msgstr "evrensel yeni satırlar" #: glossary.rst:1227 msgid "" -"A manner of interpreting text streams in which all of the following are recognized as ending a line: the " -"Unix end-of-line convention ``'\\n'``, the Windows convention ``'\\r\\n'``, and the old Macintosh " -"convention ``'\\r'``. See :pep:`278` and :pep:`3116`, as well as :func:`bytes.splitlines` for an " -"additional use." +"A manner of interpreting text streams in which all of the following are " +"recognized as ending a line: the Unix end-of-line convention ``'\\n'``, the " +"Windows convention ``'\\r\\n'``, and the old Macintosh convention " +"``'\\r'``. See :pep:`278` and :pep:`3116`, as well as :func:`bytes." +"splitlines` for an additional use." msgstr "" -"Aşağıdakilerin tümünün bir satırın bitişi olarak kabul edildiği metin akışlarını yorumlamanın bir yolu: " -"Unix satır sonu kuralı ``\\n'``, Windows kuralı ```\\r\\n'``, ve eski Macintosh kuralı ``'\\r'``. Ek bir " -"kullanım için :pep:`278` ve :pep:`3116` ve ayrıca :func:`bytes.splitlines` bakın." +"Aşağıdakilerin tümünün bir satırın bitişi olarak kabul edildiği metin " +"akışlarını yorumlamanın bir yolu: Unix satır sonu kuralı ``\\n'``, Windows " +"kuralı ```\\r\\n'``, ve eski Macintosh kuralı ``'\\r'``. Ek bir kullanım " +"için :pep:`278` ve :pep:`3116` ve ayrıca :func:`bytes.splitlines` bakın." #: glossary.rst:1232 msgid "variable annotation" @@ -2412,19 +2828,23 @@ msgstr "değişken açıklama" #: glossary.rst:1234 msgid "An :term:`annotation` of a variable or a class attribute." -msgstr "Bir değişkenin veya bir sınıf özniteliğinin :term:`ek açıklaması `." +msgstr "" +"Bir değişkenin veya bir sınıf özniteliğinin :term:`ek açıklaması " +"`." #: glossary.rst:1236 -msgid "When annotating a variable or a class attribute, assignment is optional::" -msgstr "Bir değişkene veya sınıf niteliğine açıklama eklerken atama isteğe bağlıdır::" +msgid "" +"When annotating a variable or a class attribute, assignment is optional::" +msgstr "" +"Bir değişkene veya sınıf niteliğine açıklama eklerken atama isteğe bağlıdır::" #: glossary.rst:1241 msgid "" -"Variable annotations are usually used for :term:`type hints `: for example this variable is " -"expected to take :class:`int` values::" +"Variable annotations are usually used for :term:`type hints `: " +"for example this variable is expected to take :class:`int` values::" msgstr "" -"Değişken açıklamaları genellikle :term:`tür ipuçları ` için kullanılır: örneğin, bu değişkenin :" -"class:`int` değerlerini alması beklenir::" +"Değişken açıklamaları genellikle :term:`tür ipuçları ` için " +"kullanılır: örneğin, bu değişkenin :class:`int` değerlerini alması beklenir::" #: glossary.rst:1247 msgid "Variable annotation syntax is explained in section :ref:`annassign`." @@ -2432,11 +2852,13 @@ msgstr "Değişken açıklama sözdizimi :ref:`annassign` bölümünde açıklan #: glossary.rst:1249 msgid "" -"See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe this functionality. Also see :" -"ref:`annotations-howto` for best practices on working with annotations." +"See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe " +"this functionality. Also see :ref:`annotations-howto` for best practices on " +"working with annotations." msgstr "" -"Bu işlevi açıklayan; :term:`function annotation`, :pep:`484` ve :pep:`526` bölümlerine bakın. Ek " -"açıklamalarla çalışmaya ilişkin en iyi uygulamalar için ayrıca bkz. :ref:`annotations-howto`." +"Bu işlevi açıklayan; :term:`function annotation`, :pep:`484` ve :pep:`526` " +"bölümlerine bakın. Ek açıklamalarla çalışmaya ilişkin en iyi uygulamalar " +"için ayrıca bkz. :ref:`annotations-howto`." #: glossary.rst:1253 msgid "virtual environment" @@ -2444,13 +2866,15 @@ msgstr "sanal ortam" #: glossary.rst:1255 msgid "" -"A cooperatively isolated runtime environment that allows Python users and applications to install and " -"upgrade Python distribution packages without interfering with the behaviour of other Python applications " -"running on the same system." +"A cooperatively isolated runtime environment that allows Python users and " +"applications to install and upgrade Python distribution packages without " +"interfering with the behaviour of other Python applications running on the " +"same system." msgstr "" -"Python kullanıcılarının ve uygulamalarının, aynı sistem üzerinde çalışan diğer Python uygulamalarının " -"davranışına müdahale etmeden Python dağıtım paketlerini kurmasına ve yükseltmesine olanak tanıyan, " -"işbirliği içinde yalıtılmış bir çalışma zamanı ortamı." +"Python kullanıcılarının ve uygulamalarının, aynı sistem üzerinde çalışan " +"diğer Python uygulamalarının davranışına müdahale etmeden Python dağıtım " +"paketlerini kurmasına ve yükseltmesine olanak tanıyan, işbirliği içinde " +"yalıtılmış bir çalışma zamanı ortamı." #: glossary.rst:1260 msgid "See also :mod:`venv`." @@ -2462,11 +2886,11 @@ msgstr "sanal makine" #: glossary.rst:1263 msgid "" -"A computer defined entirely in software. Python's virtual machine executes the :term:`bytecode` emitted by " -"the bytecode compiler." +"A computer defined entirely in software. Python's virtual machine executes " +"the :term:`bytecode` emitted by the bytecode compiler." msgstr "" -"Tamamen yazılımla tanımlanmış bir bilgisayar. Python'un sanal makinesi, bayt kodu derleyicisi tarafından " -"yayınlanan :term:`bytecode` 'u çalıştırır." +"Tamamen yazılımla tanımlanmış bir bilgisayar. Python'un sanal makinesi, bayt " +"kodu derleyicisi tarafından yayınlanan :term:`bytecode` 'u çalıştırır." #: glossary.rst:1265 msgid "Zen of Python" @@ -2474,11 +2898,13 @@ msgstr "Python'un Zen'i" #: glossary.rst:1267 msgid "" -"Listing of Python design principles and philosophies that are helpful in understanding and using the " -"language. The listing can be found by typing \"``import this``\" at the interactive prompt." +"Listing of Python design principles and philosophies that are helpful in " +"understanding and using the language. The listing can be found by typing " +"\"``import this``\" at the interactive prompt." msgstr "" -"Dili anlamaya ve kullanmaya yardımcı olan Python tasarım ilkeleri ve felsefelerinin listesi. Liste, " -"etkileşimli komut isteminde \"``import this``\" yazarak bulunabilir." +"Dili anlamaya ve kullanmaya yardımcı olan Python tasarım ilkeleri ve " +"felsefelerinin listesi. Liste, etkileşimli komut isteminde \"``import this``" +"\" yazarak bulunabilir." #~ msgid "A codec which encodes Unicode strings to bytes." #~ msgstr "Unicode dizelerini baytlara kodlayan bir codec bileşeni." diff --git a/howto/annotations.po b/howto/annotations.po index eb624f44c..ca56a9b0b 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/argparse.po b/howto/argparse.po index b99d8d98b..2b7efbbdd 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/clinic.po b/howto/clinic.po index abcf07e96..0c446d6d2 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -853,9 +853,9 @@ msgstr "" #: howto/clinic.rst:762 msgid "" "The default value for this parameter when defined in C. Specifically, this " -"will be the initializer for the variable declared in the \"parse " -"function\". See :ref:`the section on default values ` for " -"how to use this. Specified as a string." +"will be the initializer for the variable declared in the \"parse function" +"\". See :ref:`the section on default values ` for how to " +"use this. Specified as a string." msgstr "" #: howto/clinic.rst:771 @@ -939,8 +939,8 @@ msgstr "" #: howto/clinic.rst:804 msgid "" "Only supported for the ``object`` and ``self`` converters. Specifies the C " -"type that will be used to declare the variable. Default value is " -"``\"PyObject *\"``." +"type that will be used to declare the variable. Default value is ``" +"\"PyObject *\"``." msgstr "" #: howto/clinic.rst:812 @@ -1663,8 +1663,8 @@ msgstr "" #: howto/clinic.rst:1145 msgid "" "All the code inside the Python block is executed at the time it's parsed. " -"All text written to stdout inside the block is redirected into the " -"\"output\" after the block." +"All text written to stdout inside the block is redirected into the \"output" +"\" after the block." msgstr "" #: howto/clinic.rst:1149 @@ -2029,9 +2029,9 @@ msgid "" "of statement the field is. Field names that end in ``\"_prototype\"`` " "represent forward declarations of that thing, without the actual body/data " "of the thing; field names that end in ``\"_definition\"`` represent the " -"actual definition of the thing, with the body/data of the thing. " -"(``\"methoddef\"`` is special, it's the only one that ends with " -"``\"_define\"``, representing that it's a preprocessor #define.)" +"actual definition of the thing, with the body/data of the thing. (``" +"\"methoddef\"`` is special, it's the only one that ends with ``\"_define" +"\"``, representing that it's a preprocessor #define.)" msgstr "" #: howto/clinic.rst:1501 diff --git a/howto/cporting.po b/howto/cporting.po index ef3ae437f..67810615d 100644 --- a/howto/cporting.po +++ b/howto/cporting.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/curses.po b/howto/curses.po index 505f2fc90..d68b01f72 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/descriptor.po b/howto/descriptor.po index 2d3d5ef57..fc822d186 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -694,8 +694,8 @@ msgstr "" msgid "" "The descriptor protocol is simple and offers exciting possibilities. " "Several use cases are so common that they have been prepackaged into built-" -"in tools. Properties, bound methods, static methods, class methods, and " -"\\_\\_slots\\_\\_ are all based on the descriptor protocol." +"in tools. Properties, bound methods, static methods, class methods, and \\_" +"\\_slots\\_\\_ are all based on the descriptor protocol." msgstr "" #: howto/descriptor.rst:957 diff --git a/howto/functional.po b/howto/functional.po index 33611f582..e7da43693 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -345,8 +345,8 @@ msgstr "" #: howto/functional.rst:246 msgid "" "Built-in functions such as :func:`max` and :func:`min` can take a single " -"iterator argument and will return the largest or smallest element. The " -"``\"in\"`` and ``\"not in\"`` operators also support iterators: ``X in " +"iterator argument and will return the largest or smallest element. The ``" +"\"in\"`` and ``\"not in\"`` operators also support iterators: ``X in " "iterator`` is true if X is found in the stream returned by the iterator. " "You'll run into obvious problems if the iterator is infinite; :func:`max`, :" "func:`min` will never return, and if the element X never appears in the " diff --git a/howto/index.po b/howto/index.po index 1d346d48a..aa111a4e9 100644 --- a/howto/index.po +++ b/howto/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index bb2afd46e..8216f5be7 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -208,8 +208,8 @@ msgstr "" #: howto/instrumentation.rst:282 msgid "" "The filename, function name, and line number are provided back to the " -"tracing script as positional arguments, which must be accessed using " -"``$arg1``, ``$arg2``, ``$arg3``:" +"tracing script as positional arguments, which must be accessed using ``" +"$arg1``, ``$arg2``, ``$arg3``:" msgstr "" #: howto/instrumentation.rst:286 @@ -287,9 +287,9 @@ msgstr "" #: howto/instrumentation.rst:347 msgid "" -"The higher-level way to use the SystemTap integration is to use a " -"\"tapset\": SystemTap's equivalent of a library, which hides some of the " -"lower-level details of the static markers." +"The higher-level way to use the SystemTap integration is to use a \"tapset" +"\": SystemTap's equivalent of a library, which hides some of the lower-level " +"details of the static markers." msgstr "" #: howto/instrumentation.rst:351 diff --git a/howto/ipaddress.po b/howto/ipaddress.po index ce4ea6b1d..8c4d1bbd8 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index 394584a33..cd30c4663 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/logging.po b/howto/logging.po index 9c1bd4d80..0ecfd00d2 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/pyporting.po b/howto/pyporting.po index 2c6ec9e60..26a6bdfbf 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/regex.po b/howto/regex.po index 331602168..5752a18f1 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -214,8 +214,8 @@ msgstr "" #: howto/regex.rst:137 msgid "" -"Matches any whitespace character; this is equivalent to the class " -"``[ \\t\\n\\r\\f\\v]``." +"Matches any whitespace character; this is equivalent to the class ``[ \\t\\n" +"\\r\\f\\v]``." msgstr "" #: howto/regex.rst:142 @@ -909,8 +909,8 @@ msgid "" "z]`` or ``[A-Z]`` are used in combination with the :const:`IGNORECASE` flag, " "they will match the 52 ASCII letters and 4 additional non-ASCII letters: " "'İ' (U+0130, Latin capital letter I with dot above), 'ı' (U+0131, Latin " -"small letter dotless i), 'ſ' (U+017F, Latin small letter long s) and " -"'K' (U+212A, Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, " +"small letter dotless i), 'ſ' (U+017F, Latin small letter long s) and 'K' (U" +"+212A, Kelvin sign). ``Spam`` will match ``'Spam'``, ``'spam'``, " "``'spAM'``, or ``'ſpam'`` (the latter is matched only in Unicode mode). This " "lowercasing doesn't take the current locale into account; it will if you " "also set the :const:`LOCALE` flag." @@ -1134,8 +1134,8 @@ msgstr "" msgid "" "There are two subtleties you should remember when using this special " "sequence. First, this is the worst collision between Python's string " -"literals and regular expression sequences. In Python's string literals, " -"``\\b`` is the backspace character, ASCII value 8. If you're not using raw " +"literals and regular expression sequences. In Python's string literals, ``" +"\\b`` is the backspace character, ASCII value 8. If you're not using raw " "strings, then Python will convert the ``\\b`` to a backspace, and your RE " "won't match as you expect it to. The following example looks the same as our " "previous RE, but omits the ``'r'`` in front of the RE string. ::" @@ -1143,8 +1143,8 @@ msgstr "" #: howto/regex.rst:774 msgid "" -"Second, inside a character class, where there's no use for this assertion, " -"``\\b`` represents the backspace character, for compatibility with Python's " +"Second, inside a character class, where there's no use for this assertion, ``" +"\\b`` represents the backspace character, for compatibility with Python's " "string literals." msgstr "" @@ -1183,8 +1183,8 @@ msgid "" "Groups are marked by the ``'('``, ``')'`` metacharacters. ``'('`` and " "``')'`` have much the same meaning as they do in mathematical expressions; " "they group together the expressions contained inside them, and you can " -"repeat the contents of a group with a repeating qualifier, such as ``*``, " -"``+``, ``?``, or ``{m,n}``. For example, ``(ab)*`` will match zero or more " +"repeat the contents of a group with a repeating qualifier, such as ``*``, ``" +"+``, ``?``, or ``{m,n}``. For example, ``(ab)*`` will match zero or more " "repetitions of ``ab``. ::" msgstr "" @@ -1260,8 +1260,8 @@ msgstr "" msgid "" "Perl 5 is well known for its powerful additions to standard regular " "expressions. For these new features the Perl developers couldn't choose new " -"single-keystroke metacharacters or new special sequences beginning with " -"``\\`` without making Perl's regular expressions confusingly different from " +"single-keystroke metacharacters or new special sequences beginning with ``" +"\\`` without making Perl's regular expressions confusingly different from " "standard REs. If they chose ``&`` as a new metacharacter, for example, old " "expressions would be assuming that ``&`` was a regular character and " "wouldn't have escaped it by writing ``\\&`` or ``[&]``." @@ -1356,8 +1356,8 @@ msgid "" "name instead of the number. This is another Python extension: ``(?P=name)`` " "indicates that the contents of the group called *name* should again be " "matched at the current point. The regular expression for finding doubled " -"words, ``\\b(\\w+)\\s+\\1\\b`` can also be written as ``\\b(?" -"P\\w+)\\s+(?P=word)\\b``::" +"words, ``\\b(\\w+)\\s+\\1\\b`` can also be written as ``\\b(?P\\w+)\\s" +"+(?P=word)\\b``::" msgstr "" #: howto/regex.rst:979 @@ -1475,11 +1475,11 @@ msgstr "" #: howto/regex.rst:1042 msgid "" "``.*[.](?!bat$)[^.]*$`` The negative lookahead means: if the expression " -"``bat`` doesn't match at this point, try the rest of the pattern; if " -"``bat$`` does match, the whole pattern will fail. The trailing ``$`` is " -"required to ensure that something like ``sample.batch``, where the extension " -"only starts with ``bat``, will be allowed. The ``[^.]*`` makes sure that " -"the pattern works when there are multiple dots in the filename." +"``bat`` doesn't match at this point, try the rest of the pattern; if ``bat" +"$`` does match, the whole pattern will fail. The trailing ``$`` is required " +"to ensure that something like ``sample.batch``, where the extension only " +"starts with ``bat``, will be allowed. The ``[^.]*`` makes sure that the " +"pattern works when there are multiple dots in the filename." msgstr "" #: howto/regex.rst:1049 @@ -1626,9 +1626,9 @@ msgstr "" msgid "" "If *replacement* is a string, any backslash escapes in it are processed. " "That is, ``\\n`` is converted to a single newline character, ``\\r`` is " -"converted to a carriage return, and so forth. Unknown escapes such as " -"``\\&`` are left alone. Backreferences, such as ``\\6``, are replaced with " -"the substring matched by the corresponding group in the RE. This lets you " +"converted to a carriage return, and so forth. Unknown escapes such as ``" +"\\&`` are left alone. Backreferences, such as ``\\6``, are replaced with the " +"substring matched by the corresponding group in the RE. This lets you " "incorporate portions of the original text in the resulting replacement " "string." msgstr "" diff --git a/howto/sockets.po b/howto/sockets.po index eea9f0130..87192220e 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -319,10 +319,10 @@ msgstr "" #: howto/sockets.rst:262 msgid "" "Socket libraries have calls for converting 16 and 32 bit integers - ``ntohl, " -"htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*, " -"\"s\" means *short* and \"l\" means *long*. Where network order is host " -"order, these do nothing, but where the machine is byte-reversed, these swap " -"the bytes around appropriately." +"htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*, \"s" +"\" means *short* and \"l\" means *long*. Where network order is host order, " +"these do nothing, but where the machine is byte-reversed, these swap the " +"bytes around appropriately." msgstr "" #: howto/sockets.rst:268 diff --git a/howto/sorting.po b/howto/sorting.po index 4773d8b74..7b6790843 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/unicode.po b/howto/unicode.po index cca912047..48a553f69 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/howto/urllib2.po b/howto/urllib2.po index afa683721..173f6102b 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -132,8 +132,8 @@ msgid "" "In the case of HTTP, there are two extra things that Request objects allow " "you to do: First, you can pass data to be sent to the server. Second, you " "can pass extra information (\"metadata\") *about* the data or about the " -"request itself, to the server - this information is sent as HTTP " -"\"headers\". Let's look at each of these in turn." +"request itself, to the server - this information is sent as HTTP \"headers" +"\". Let's look at each of these in turn." msgstr "" #: howto/urllib2.rst:105 @@ -483,10 +483,10 @@ msgstr "" #: howto/urllib2.rst:522 msgid "" "``top_level_url`` is in fact *either* a full URL (including the 'http:' " -"scheme component and the hostname and optionally the port number) e.g. " -"``\"http://example.com/\"`` *or* an \"authority\" (i.e. the hostname, " -"optionally including the port number) e.g. ``\"example.com\"`` or " -"``\"example.com:8080\"`` (the latter example includes a port number). The " +"scheme component and the hostname and optionally the port number) e.g. ``" +"\"http://example.com/\"`` *or* an \"authority\" (i.e. the hostname, " +"optionally including the port number) e.g. ``\"example.com\"`` or ``" +"\"example.com:8080\"`` (the latter example includes a port number). The " "authority, if present, must NOT contain the \"userinfo\" component - for " "example ``\"joe:password@example.com\"`` is not correct." msgstr "" diff --git a/install/index.po b/install/index.po index b1327d26a..7f6ad1ed7 100644 --- a/install/index.po +++ b/install/index.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-05-15 21:17+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -113,8 +113,8 @@ msgstr "" msgid "" "See :ref:`installing-index` and :ref:`distributing-index` for more details." msgstr "" -"Daha fazla ayrıntı için :ref:`installing-index` ve :ref:`distributing-" -"index` 'e bakın." +"Daha fazla ayrıntı için :ref:`installing-index` ve :ref:`distributing-index` " +"'e bakın." #: install/index.rst:56 msgid "" @@ -457,8 +457,8 @@ msgstr "" #: install/index.rst:234 msgid "" -"The default installation directory on Windows was :file:`C:\\\\Program " -"Files\\\\Python` under Python 1.6a1, 1.5.2, and earlier." +"The default installation directory on Windows was :file:`C:\\\\Program Files" +"\\\\Python` under Python 1.6a1, 1.5.2, and earlier." msgstr "" "Windows'ta varsayılan kurulum dizini Python 1.6a1, 1.5.2 ve önceki " "sürümlerde :file:`C:\\\\Program Files\\\\Python` idi." @@ -1182,7 +1182,8 @@ msgstr "" "dosyalarında kullanabilirsiniz, ancak Distutils ek olarak ``$PLAT`` gibi " "ortamınızda olmayabilecek birkaç ekstra değişken tanımlar. Ve elbette, Mac " "OS 9 gibi ortam değişkenlerine sahip olmayan sistemlerde, yalnızca Distutils " -"tarafından sağlanan yapılandırma değişkenlerini kullanabilirsiniz. Bkz. :ref:`inst-config-files`." +"tarafından sağlanan yapılandırma değişkenlerini kullanabilirsiniz. Bkz. :ref:" +"`inst-config-files`." #: install/index.rst:629 msgid "" @@ -1474,12 +1475,12 @@ msgid "" msgstr "" "(Ayrıca not (1)'e bakın.) Python 1.6 ve sonraki sürümlerde, Python'un " "varsayılan “kurulum öneki” :file:`C:\\\\Python` şeklindedir, bu nedenle " -"sistem yapılandırma dosyası normalde :file:`C:\\\\Python\\ şeklindedir. " -"\\Lib\\\\distutils\\\\distutils.cfg`. Python 1.5.2 altında, varsayılan önek :" -"file:`C:\\\\Program Files\\\\Python` idi ve Distutils standart kitaplığın " -"parçası değildi -- bu nedenle sistem yapılandırma dosyası :file:`C " -"olacaktır. :\\\\Program Files\\\\Python\\\\distutils\\\\distutils.cfg` " -"Windows altında standart bir Python 1.5.2 kurulumunda." +"sistem yapılandırma dosyası normalde :file:`C:\\\\Python\\ şeklindedir. \\Lib" +"\\\\distutils\\\\distutils.cfg`. Python 1.5.2 altında, varsayılan önek :file:" +"`C:\\\\Program Files\\\\Python` idi ve Distutils standart kitaplığın parçası " +"değildi -- bu nedenle sistem yapılandırma dosyası :file:`C olacaktır. :\\" +"\\Program Files\\\\Python\\\\distutils\\\\distutils.cfg` Windows altında " +"standart bir Python 1.5.2 kurulumunda." #: install/index.rst:794 msgid "" @@ -1541,8 +1542,8 @@ msgid "" "command:`build\\*` commands always forcibly rebuild all files with the " "following:" msgstr "" -"Varsayılan “temel oluşturma” dizinini geçersiz kılabilir ve :command:" -"`build\\*` komutlarını aşağıdakilerle tüm dosyaları her zaman zorla yeniden " +"Varsayılan “temel oluşturma” dizinini geçersiz kılabilir ve :command:`build" +"\\*` komutlarını aşağıdakilerle tüm dosyaları her zaman zorla yeniden " "oluşturabilirsiniz:" #: install/index.rst:835 @@ -1728,9 +1729,9 @@ msgid "" "appended to the proper command line, so in the above example the compiler " "will be passed the :option:`!-o32` option, and the linker will be passed :" "option:`!-shared`. If a compiler option requires an argument, you'll have " -"to supply multiple :option:`!-Xcompiler` options; for example, to pass ``-x " -"c++`` the :file:`Setup` file would have to contain ``-Xcompiler -x -" -"Xcompiler c++``." +"to supply multiple :option:`!-Xcompiler` options; for example, to pass ``-x c" +"++`` the :file:`Setup` file would have to contain ``-Xcompiler -x -Xcompiler " +"c++``." msgstr "" ":option:`!-Xcompiler` ve :option:`!-Xlinker` 'dan sonraki sonraki seçenek " "uygun komut satırına eklenecektir, bu nedenle yukarıdaki örnekte " diff --git a/installing/index.po b/installing/index.po index 6ab5d0afe..446c495ba 100644 --- a/installing/index.po +++ b/installing/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/2to3.po b/library/2to3.po index b5828d8b5..823e03baf 100644 --- a/library/2to3.po +++ b/library/2to3.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/__future__.po b/library/__future__.po index 4d33738a7..86f6bd112 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/__main__.po b/library/__main__.po index fe910910b..22387f22b 100644 --- a/library/__main__.po +++ b/library/__main__.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/_thread.po b/library/_thread.po index 3fd03c4e6..8c7842f96 100644 --- a/library/_thread.po +++ b/library/_thread.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/abc.po b/library/abc.po index 8747d86b6..76f701359 100644 --- a/library/abc.po +++ b/library/abc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/aifc.po b/library/aifc.po index 4de93459e..4c4fe60d1 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/allos.po b/library/allos.po index bb8bf2901..746ffa22f 100644 --- a/library/allos.po +++ b/library/allos.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/archiving.po b/library/archiving.po index d67b6735d..f2cf53a26 100644 --- a/library/archiving.po +++ b/library/archiving.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/argparse.po b/library/argparse.po index 317f13d8e..6b2f1b5ad 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1048,8 +1048,8 @@ msgid "" "The ``help`` strings can include various format specifiers to avoid " "repetition of things like the program name or the argument default_. The " "available specifiers include the program name, ``%(prog)s`` and most keyword " -"arguments to :meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, " -"``%(type)s``, etc.::" +"arguments to :meth:`~ArgumentParser.add_argument`, e.g. ``%(default)s``, ``" +"%(type)s``, etc.::" msgstr "" #: library/argparse.rst:1231 diff --git a/library/array.po b/library/array.po index b354f7502..1e7b35943 100644 --- a/library/array.po +++ b/library/array.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/ast.po b/library/ast.po index 7f86b63bc..e1cc903dc 100644 --- a/library/ast.po +++ b/library/ast.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1219,10 +1219,10 @@ msgstr "" #: library/ast.rst:2154 msgid "" "If *indent* is a non-negative integer or string, then the tree will be " -"pretty-printed with that indent level. An indent level of 0, negative, or " -"``\"\"`` will only insert newlines. ``None`` (the default) selects the " -"single line representation. Using a positive integer indent indents that " -"many spaces per level. If *indent* is a string (such as ``\"\\t\"``), that " +"pretty-printed with that indent level. An indent level of 0, negative, or ``" +"\"\"`` will only insert newlines. ``None`` (the default) selects the single " +"line representation. Using a positive integer indent indents that many " +"spaces per level. If *indent* is a string (such as ``\"\\t\"``), that " "string is used to indent each level." msgstr "" diff --git a/library/asynchat.po b/library/asynchat.po index 24373d749..188b95ee2 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index 534d46f99..58a6aad17 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-dev.po b/library/asyncio-dev.po index ea19dd176..971b4c969 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 6435e6efb..6d0f14674 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -61,125 +61,130 @@ msgid "Return the running event loop in the current OS thread." msgstr "" #: library/asyncio-eventloop.rst:36 -msgid "" -"If there is no running event loop a :exc:`RuntimeError` is raised. This " -"function can only be called from a coroutine or a callback." +msgid "Raise a :exc:`RuntimeError` if there is no running event loop." +msgstr "" + +#: library/asyncio-eventloop.rst:38 +msgid "This function can only be called from a coroutine or a callback." msgstr "" -#: library/asyncio-eventloop.rst:43 +#: library/asyncio-eventloop.rst:44 msgid "Get the current event loop." msgstr "" -#: library/asyncio-eventloop.rst:45 +#: library/asyncio-eventloop.rst:46 msgid "" "If there is no current event loop set in the current OS thread, the OS " "thread is main, and :func:`set_event_loop` has not yet been called, asyncio " "will create a new event loop and set it as the current one." msgstr "" -#: library/asyncio-eventloop.rst:50 +#: library/asyncio-eventloop.rst:51 msgid "" "Because this function has rather complex behavior (especially when custom " "event loop policies are in use), using the :func:`get_running_loop` function " "is preferred to :func:`get_event_loop` in coroutines and callbacks." msgstr "" -#: library/asyncio-eventloop.rst:55 +#: library/asyncio-eventloop.rst:56 msgid "" -"Consider also using the :func:`asyncio.run` function instead of using lower " -"level functions to manually create and close an event loop." +"As noted above, consider using the higher-level :func:`asyncio.run` " +"function, instead of using these lower level functions to manually create " +"and close an event loop." msgstr "" -#: library/asyncio-eventloop.rst:58 +#: library/asyncio-eventloop.rst:60 msgid "" -"Deprecation warning is emitted if there is no running event loop. In future " -"Python releases, this function will be an alias of :func:`get_running_loop`." +"Emits a deprecation warning if there is no running event loop. In future " +"Python releases, this function may become an alias of :func:" +"`get_running_loop` and will accordingly raise a :exc:`RuntimeError` if there " +"is no running event loop." msgstr "" -#: library/asyncio-eventloop.rst:65 -msgid "Set *loop* as a current event loop for the current OS thread." +#: library/asyncio-eventloop.rst:68 +msgid "Set *loop* as the current event loop for the current OS thread." msgstr "" -#: library/asyncio-eventloop.rst:69 +#: library/asyncio-eventloop.rst:72 msgid "Create and return a new event loop object." msgstr "" -#: library/asyncio-eventloop.rst:71 +#: library/asyncio-eventloop.rst:74 msgid "" "Note that the behaviour of :func:`get_event_loop`, :func:`set_event_loop`, " "and :func:`new_event_loop` functions can be altered by :ref:`setting a " "custom event loop policy `." msgstr "" -#: library/asyncio-eventloop.rst:77 +#: library/asyncio-eventloop.rst:80 msgid "Contents" msgstr "" -#: library/asyncio-eventloop.rst:78 +#: library/asyncio-eventloop.rst:81 msgid "This documentation page contains the following sections:" msgstr "" -#: library/asyncio-eventloop.rst:80 +#: library/asyncio-eventloop.rst:83 msgid "" "The `Event Loop Methods`_ section is the reference documentation of the " "event loop APIs;" msgstr "" -#: library/asyncio-eventloop.rst:83 +#: library/asyncio-eventloop.rst:86 msgid "" "The `Callback Handles`_ section documents the :class:`Handle` and :class:" "`TimerHandle` instances which are returned from scheduling methods such as :" "meth:`loop.call_soon` and :meth:`loop.call_later`;" msgstr "" -#: library/asyncio-eventloop.rst:87 +#: library/asyncio-eventloop.rst:90 msgid "" "The `Server Objects`_ section documents types returned from event loop " "methods like :meth:`loop.create_server`;" msgstr "" -#: library/asyncio-eventloop.rst:90 +#: library/asyncio-eventloop.rst:93 msgid "" "The `Event Loop Implementations`_ section documents the :class:" "`SelectorEventLoop` and :class:`ProactorEventLoop` classes;" msgstr "" -#: library/asyncio-eventloop.rst:93 +#: library/asyncio-eventloop.rst:96 msgid "" "The `Examples`_ section showcases how to work with some event loop APIs." msgstr "" -#: library/asyncio-eventloop.rst:100 +#: library/asyncio-eventloop.rst:103 msgid "Event Loop Methods" msgstr "" -#: library/asyncio-eventloop.rst:102 +#: library/asyncio-eventloop.rst:105 msgid "Event loops have **low-level** APIs for the following:" msgstr "" -#: library/asyncio-eventloop.rst:110 +#: library/asyncio-eventloop.rst:113 msgid "Running and stopping the loop" msgstr "" -#: library/asyncio-eventloop.rst:114 +#: library/asyncio-eventloop.rst:117 msgid "Run until the *future* (an instance of :class:`Future`) has completed." msgstr "" -#: library/asyncio-eventloop.rst:117 +#: library/asyncio-eventloop.rst:120 msgid "" "If the argument is a :ref:`coroutine object ` it is implicitly " "scheduled to run as a :class:`asyncio.Task`." msgstr "" -#: library/asyncio-eventloop.rst:120 +#: library/asyncio-eventloop.rst:123 msgid "Return the Future's result or raise its exception." msgstr "" -#: library/asyncio-eventloop.rst:124 +#: library/asyncio-eventloop.rst:127 msgid "Run the event loop until :meth:`stop` is called." msgstr "" -#: library/asyncio-eventloop.rst:126 +#: library/asyncio-eventloop.rst:129 msgid "" "If :meth:`stop` is called before :meth:`run_forever()` is called, the loop " "will poll the I/O selector once with a timeout of zero, run all callbacks " @@ -187,7 +192,7 @@ msgid "" "and then exit." msgstr "" -#: library/asyncio-eventloop.rst:131 +#: library/asyncio-eventloop.rst:134 msgid "" "If :meth:`stop` is called while :meth:`run_forever` is running, the loop " "will run the current batch of callbacks and then exit. Note that new " @@ -196,41 +201,41 @@ msgid "" "called." msgstr "" -#: library/asyncio-eventloop.rst:139 +#: library/asyncio-eventloop.rst:142 msgid "Stop the event loop." msgstr "" -#: library/asyncio-eventloop.rst:143 +#: library/asyncio-eventloop.rst:146 msgid "Return ``True`` if the event loop is currently running." msgstr "" -#: library/asyncio-eventloop.rst:147 +#: library/asyncio-eventloop.rst:150 msgid "Return ``True`` if the event loop was closed." msgstr "" -#: library/asyncio-eventloop.rst:151 +#: library/asyncio-eventloop.rst:154 msgid "Close the event loop." msgstr "" -#: library/asyncio-eventloop.rst:153 +#: library/asyncio-eventloop.rst:156 msgid "" "The loop must not be running when this function is called. Any pending " "callbacks will be discarded." msgstr "" -#: library/asyncio-eventloop.rst:156 +#: library/asyncio-eventloop.rst:159 msgid "" "This method clears all queues and shuts down the executor, but does not wait " "for the executor to finish." msgstr "" -#: library/asyncio-eventloop.rst:159 +#: library/asyncio-eventloop.rst:162 msgid "" "This method is idempotent and irreversible. No other methods should be " "called after the event loop is closed." msgstr "" -#: library/asyncio-eventloop.rst:164 +#: library/asyncio-eventloop.rst:167 msgid "" "Schedule all currently open :term:`asynchronous generator` objects to close " "with an :meth:`~agen.aclose()` call. After calling this method, the event " @@ -238,18 +243,18 @@ msgid "" "should be used to reliably finalize all scheduled asynchronous generators." msgstr "" -#: library/asyncio-eventloop.rst:170 library/asyncio-eventloop.rst:190 +#: library/asyncio-eventloop.rst:173 library/asyncio-eventloop.rst:193 msgid "" "Note that there is no need to call this function when :func:`asyncio.run` is " "used." msgstr "" -#: library/asyncio-eventloop.rst:173 library/asyncio-eventloop.rst:1109 -#: library/asyncio-eventloop.rst:1501 +#: library/asyncio-eventloop.rst:176 library/asyncio-eventloop.rst:1112 +#: library/asyncio-eventloop.rst:1504 msgid "Example::" msgstr "" -#: library/asyncio-eventloop.rst:185 +#: library/asyncio-eventloop.rst:188 msgid "" "Schedule the closure of the default executor and wait for it to join all of " "the threads in the :class:`ThreadPoolExecutor`. After calling this method, " @@ -257,193 +262,193 @@ msgid "" "called while using the default executor." msgstr "" -#: library/asyncio-eventloop.rst:197 +#: library/asyncio-eventloop.rst:200 msgid "Scheduling callbacks" msgstr "" -#: library/asyncio-eventloop.rst:201 +#: library/asyncio-eventloop.rst:204 msgid "" "Schedule the *callback* :term:`callback` to be called with *args* arguments " "at the next iteration of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:204 +#: library/asyncio-eventloop.rst:207 msgid "" "Callbacks are called in the order in which they are registered. Each " "callback will be called exactly once." msgstr "" -#: library/asyncio-eventloop.rst:207 library/asyncio-eventloop.rst:274 +#: library/asyncio-eventloop.rst:210 library/asyncio-eventloop.rst:277 msgid "" "An optional keyword-only *context* argument allows specifying a custom :" "class:`contextvars.Context` for the *callback* to run in. The current " "context is used when no *context* is provided." msgstr "" -#: library/asyncio-eventloop.rst:211 +#: library/asyncio-eventloop.rst:214 msgid "" "An instance of :class:`asyncio.Handle` is returned, which can be used later " "to cancel the callback." msgstr "" -#: library/asyncio-eventloop.rst:214 +#: library/asyncio-eventloop.rst:217 msgid "This method is not thread-safe." msgstr "" -#: library/asyncio-eventloop.rst:218 +#: library/asyncio-eventloop.rst:221 msgid "" "A thread-safe variant of :meth:`call_soon`. Must be used to schedule " "callbacks *from another thread*." msgstr "" -#: library/asyncio-eventloop.rst:221 +#: library/asyncio-eventloop.rst:224 msgid "" "Raises :exc:`RuntimeError` if called on a loop that's been closed. This can " "happen on a secondary thread when the main application is shutting down." msgstr "" -#: library/asyncio-eventloop.rst:225 +#: library/asyncio-eventloop.rst:228 msgid "" "See the :ref:`concurrency and multithreading ` " "section of the documentation." msgstr "" -#: library/asyncio-eventloop.rst:228 library/asyncio-eventloop.rst:278 -#: library/asyncio-eventloop.rst:298 +#: library/asyncio-eventloop.rst:231 library/asyncio-eventloop.rst:281 +#: library/asyncio-eventloop.rst:301 msgid "" "The *context* keyword-only parameter was added. See :pep:`567` for more " "details." msgstr "" -#: library/asyncio-eventloop.rst:236 +#: library/asyncio-eventloop.rst:239 msgid "" "Most :mod:`asyncio` scheduling functions don't allow passing keyword " "arguments. To do that, use :func:`functools.partial`::" msgstr "" -#: library/asyncio-eventloop.rst:243 +#: library/asyncio-eventloop.rst:246 msgid "" "Using partial objects is usually more convenient than using lambdas, as " "asyncio can render partial objects better in debug and error messages." msgstr "" -#: library/asyncio-eventloop.rst:251 +#: library/asyncio-eventloop.rst:254 msgid "Scheduling delayed callbacks" msgstr "" -#: library/asyncio-eventloop.rst:253 +#: library/asyncio-eventloop.rst:256 msgid "" "Event loop provides mechanisms to schedule callback functions to be called " "at some point in the future. Event loop uses monotonic clocks to track time." msgstr "" -#: library/asyncio-eventloop.rst:260 +#: library/asyncio-eventloop.rst:263 msgid "" "Schedule *callback* to be called after the given *delay* number of seconds " "(can be either an int or a float)." msgstr "" -#: library/asyncio-eventloop.rst:263 library/asyncio-eventloop.rst:295 +#: library/asyncio-eventloop.rst:266 library/asyncio-eventloop.rst:298 msgid "" "An instance of :class:`asyncio.TimerHandle` is returned which can be used to " "cancel the callback." msgstr "" -#: library/asyncio-eventloop.rst:266 +#: library/asyncio-eventloop.rst:269 msgid "" "*callback* will be called exactly once. If two callbacks are scheduled for " "exactly the same time, the order in which they are called is undefined." msgstr "" -#: library/asyncio-eventloop.rst:270 +#: library/asyncio-eventloop.rst:273 msgid "" "The optional positional *args* will be passed to the callback when it is " "called. If you want the callback to be called with keyword arguments use :" "func:`functools.partial`." msgstr "" -#: library/asyncio-eventloop.rst:282 +#: library/asyncio-eventloop.rst:285 msgid "" "In Python 3.7 and earlier with the default event loop implementation, the " "*delay* could not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:289 +#: library/asyncio-eventloop.rst:292 msgid "" "Schedule *callback* to be called at the given absolute timestamp *when* (an " "int or a float), using the same time reference as :meth:`loop.time`." msgstr "" -#: library/asyncio-eventloop.rst:293 +#: library/asyncio-eventloop.rst:296 msgid "This method's behavior is the same as :meth:`call_later`." msgstr "" -#: library/asyncio-eventloop.rst:302 +#: library/asyncio-eventloop.rst:305 msgid "" "In Python 3.7 and earlier with the default event loop implementation, the " "difference between *when* and the current time could not exceed one day. " "This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:309 +#: library/asyncio-eventloop.rst:312 msgid "" "Return the current time, as a :class:`float` value, according to the event " "loop's internal monotonic clock." msgstr "" -#: library/asyncio-eventloop.rst:313 +#: library/asyncio-eventloop.rst:316 msgid "" "In Python 3.7 and earlier timeouts (relative *delay* or absolute *when*) " "should not exceed one day. This has been fixed in Python 3.8." msgstr "" -#: library/asyncio-eventloop.rst:319 +#: library/asyncio-eventloop.rst:322 msgid "The :func:`asyncio.sleep` function." msgstr "" -#: library/asyncio-eventloop.rst:323 +#: library/asyncio-eventloop.rst:326 msgid "Creating Futures and Tasks" msgstr "" -#: library/asyncio-eventloop.rst:327 +#: library/asyncio-eventloop.rst:330 msgid "Create an :class:`asyncio.Future` object attached to the event loop." msgstr "" -#: library/asyncio-eventloop.rst:329 +#: library/asyncio-eventloop.rst:332 msgid "" "This is the preferred way to create Futures in asyncio. This lets third-" "party event loops provide alternative implementations of the Future object " "(with better performance or instrumentation)." msgstr "" -#: library/asyncio-eventloop.rst:337 +#: library/asyncio-eventloop.rst:340 msgid "" "Schedule the execution of :ref:`coroutine ` *coro*. Return a :" "class:`Task` object." msgstr "" -#: library/asyncio-eventloop.rst:340 +#: library/asyncio-eventloop.rst:343 msgid "" "Third-party event loops can use their own subclass of :class:`Task` for " "interoperability. In this case, the result type is a subclass of :class:" "`Task`." msgstr "" -#: library/asyncio-eventloop.rst:344 +#: library/asyncio-eventloop.rst:347 msgid "" "If the *name* argument is provided and not ``None``, it is set as the name " "of the task using :meth:`Task.set_name`." msgstr "" -#: library/asyncio-eventloop.rst:347 +#: library/asyncio-eventloop.rst:350 msgid "Added the *name* parameter." msgstr "" -#: library/asyncio-eventloop.rst:352 +#: library/asyncio-eventloop.rst:355 msgid "Set a task factory that will be used by :meth:`loop.create_task`." msgstr "" -#: library/asyncio-eventloop.rst:355 +#: library/asyncio-eventloop.rst:358 msgid "" "If *factory* is ``None`` the default task factory will be set. Otherwise, " "*factory* must be a *callable* with the signature matching ``(loop, coro)``, " @@ -452,80 +457,80 @@ msgid "" "compatible object." msgstr "" -#: library/asyncio-eventloop.rst:363 +#: library/asyncio-eventloop.rst:366 msgid "Return a task factory or ``None`` if the default one is in use." msgstr "" -#: library/asyncio-eventloop.rst:367 +#: library/asyncio-eventloop.rst:370 msgid "Opening network connections" msgstr "" -#: library/asyncio-eventloop.rst:376 +#: library/asyncio-eventloop.rst:379 msgid "" "Open a streaming transport connection to a given address specified by *host* " "and *port*." msgstr "" -#: library/asyncio-eventloop.rst:379 +#: library/asyncio-eventloop.rst:382 msgid "" "The socket family can be either :py:data:`~socket.AF_INET` or :py:data:" "`~socket.AF_INET6` depending on *host* (or the *family* argument, if " "provided)." msgstr "" -#: library/asyncio-eventloop.rst:383 +#: library/asyncio-eventloop.rst:386 msgid "The socket type will be :py:data:`~socket.SOCK_STREAM`." msgstr "" -#: library/asyncio-eventloop.rst:385 library/asyncio-eventloop.rst:1025 -#: library/asyncio-eventloop.rst:1041 +#: library/asyncio-eventloop.rst:388 library/asyncio-eventloop.rst:1028 +#: library/asyncio-eventloop.rst:1044 msgid "" "*protocol_factory* must be a callable returning an :ref:`asyncio protocol " "` implementation." msgstr "" -#: library/asyncio-eventloop.rst:388 +#: library/asyncio-eventloop.rst:391 msgid "" "This method will try to establish the connection in the background. When " "successful, it returns a ``(transport, protocol)`` pair." msgstr "" -#: library/asyncio-eventloop.rst:391 +#: library/asyncio-eventloop.rst:394 msgid "The chronological synopsis of the underlying operation is as follows:" msgstr "" -#: library/asyncio-eventloop.rst:393 +#: library/asyncio-eventloop.rst:396 msgid "" "The connection is established and a :ref:`transport ` is " "created for it." msgstr "" -#: library/asyncio-eventloop.rst:396 +#: library/asyncio-eventloop.rst:399 msgid "" "*protocol_factory* is called without arguments and is expected to return a :" "ref:`protocol ` instance." msgstr "" -#: library/asyncio-eventloop.rst:399 +#: library/asyncio-eventloop.rst:402 msgid "" "The protocol instance is coupled with the transport by calling its :meth:" "`~BaseProtocol.connection_made` method." msgstr "" -#: library/asyncio-eventloop.rst:402 +#: library/asyncio-eventloop.rst:405 msgid "A ``(transport, protocol)`` tuple is returned on success." msgstr "" -#: library/asyncio-eventloop.rst:404 +#: library/asyncio-eventloop.rst:407 msgid "" "The created transport is an implementation-dependent bidirectional stream." msgstr "" -#: library/asyncio-eventloop.rst:407 library/asyncio-eventloop.rst:535 +#: library/asyncio-eventloop.rst:410 library/asyncio-eventloop.rst:538 msgid "Other arguments:" msgstr "" -#: library/asyncio-eventloop.rst:409 +#: library/asyncio-eventloop.rst:412 msgid "" "*ssl*: if given and not false, a SSL/TLS transport is created (by default a " "plain TCP transport is created). If *ssl* is a :class:`ssl.SSLContext` " @@ -534,11 +539,11 @@ msgid "" "is used." msgstr "" -#: library/asyncio-eventloop.rst:415 +#: library/asyncio-eventloop.rst:418 msgid ":ref:`SSL/TLS security considerations `" msgstr "" -#: library/asyncio-eventloop.rst:417 +#: library/asyncio-eventloop.rst:420 msgid "" "*server_hostname* sets or overrides the hostname that the target server's " "certificate will be matched against. Should only be passed if *ssl* is not " @@ -549,7 +554,7 @@ msgid "" "potential man-in-the-middle attacks)." msgstr "" -#: library/asyncio-eventloop.rst:425 +#: library/asyncio-eventloop.rst:428 msgid "" "*family*, *proto*, *flags* are the optional address family, protocol and " "flags to be passed through to getaddrinfo() for *host* resolution. If given, " @@ -557,28 +562,28 @@ msgid "" "constants." msgstr "" -#: library/asyncio-eventloop.rst:430 +#: library/asyncio-eventloop.rst:433 msgid "" "*happy_eyeballs_delay*, if given, enables Happy Eyeballs for this " "connection. It should be a floating-point number representing the amount of " "time in seconds to wait for a connection attempt to complete, before " -"starting the next attempt in parallel. This is the \"Connection Attempt " -"Delay\" as defined in :rfc:`8305`. A sensible default value recommended by " -"the RFC is ``0.25`` (250 milliseconds)." +"starting the next attempt in parallel. This is the \"Connection Attempt Delay" +"\" as defined in :rfc:`8305`. A sensible default value recommended by the " +"RFC is ``0.25`` (250 milliseconds)." msgstr "" -#: library/asyncio-eventloop.rst:438 +#: library/asyncio-eventloop.rst:441 msgid "" "*interleave* controls address reordering when a host name resolves to " "multiple IP addresses. If ``0`` or unspecified, no reordering is done, and " "addresses are tried in the order returned by :meth:`getaddrinfo`. If a " "positive integer is specified, the addresses are interleaved by address " -"family, and the given integer is interpreted as \"First Address Family " -"Count\" as defined in :rfc:`8305`. The default is ``0`` if " -"*happy_eyeballs_delay* is not specified, and ``1`` if it is." +"family, and the given integer is interpreted as \"First Address Family Count" +"\" as defined in :rfc:`8305`. The default is ``0`` if *happy_eyeballs_delay* " +"is not specified, and ``1`` if it is." msgstr "" -#: library/asyncio-eventloop.rst:447 +#: library/asyncio-eventloop.rst:450 msgid "" "*sock*, if given, should be an existing, already connected :class:`socket." "socket` object to be used by the transport. If *sock* is given, none of " @@ -586,47 +591,47 @@ msgid "" "*interleave* and *local_addr* should be specified." msgstr "" -#: library/asyncio-eventloop.rst:455 library/asyncio-eventloop.rst:566 -#: library/asyncio-eventloop.rst:752 +#: library/asyncio-eventloop.rst:458 library/asyncio-eventloop.rst:569 +#: library/asyncio-eventloop.rst:755 msgid "" "The *sock* argument transfers ownership of the socket to the transport " "created. To close the socket, call the transport's :meth:`~asyncio." "BaseTransport.close` method." msgstr "" -#: library/asyncio-eventloop.rst:459 +#: library/asyncio-eventloop.rst:462 msgid "" "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " "the socket locally. The *local_host* and *local_port* are looked up using " "``getaddrinfo()``, similarly to *host* and *port*." msgstr "" -#: library/asyncio-eventloop.rst:463 library/asyncio-eventloop.rst:834 +#: library/asyncio-eventloop.rst:466 library/asyncio-eventloop.rst:837 msgid "" "*ssl_handshake_timeout* is (for a TLS connection) the time in seconds to " "wait for the TLS handshake to complete before aborting the connection. " "``60.0`` seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:469 library/asyncio-eventloop.rst:693 +#: library/asyncio-eventloop.rst:472 library/asyncio-eventloop.rst:696 msgid "Added support for SSL/TLS in :class:`ProactorEventLoop`." msgstr "" -#: library/asyncio-eventloop.rst:473 +#: library/asyncio-eventloop.rst:476 msgid "" "The socket option :py:data:`~socket.TCP_NODELAY` is set by default for all " "TCP connections." msgstr "" -#: library/asyncio-eventloop.rst:478 library/asyncio-eventloop.rst:769 +#: library/asyncio-eventloop.rst:481 library/asyncio-eventloop.rst:772 msgid "Added the *ssl_handshake_timeout* parameter." msgstr "" -#: library/asyncio-eventloop.rst:482 +#: library/asyncio-eventloop.rst:485 msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." msgstr "" -#: library/asyncio-eventloop.rst:484 +#: library/asyncio-eventloop.rst:487 msgid "" "Happy Eyeballs Algorithm: Success with Dual-Stack Hosts. When a server's " "IPv4 path and protocol are working, but the server's IPv6 path and protocol " @@ -637,32 +642,32 @@ msgid "" "visible delay and provides an algorithm." msgstr "" -#: library/asyncio-eventloop.rst:493 +#: library/asyncio-eventloop.rst:496 msgid "For more information: https://tools.ietf.org/html/rfc6555" msgstr "" -#: library/asyncio-eventloop.rst:497 +#: library/asyncio-eventloop.rst:500 msgid "" "The :func:`open_connection` function is a high-level alternative API. It " "returns a pair of (:class:`StreamReader`, :class:`StreamWriter`) that can be " "used directly in async/await code." msgstr "" -#: library/asyncio-eventloop.rst:508 +#: library/asyncio-eventloop.rst:511 msgid "" "The parameter *reuse_address* is no longer supported, as using :py:data:" "`~sockets.SO_REUSEADDR` poses a significant security concern for UDP. " "Explicitly passing ``reuse_address=True`` will raise an exception." msgstr "" -#: library/asyncio-eventloop.rst:512 +#: library/asyncio-eventloop.rst:515 msgid "" "When multiple processes with differing UIDs assign sockets to an identical " "UDP socket address with ``SO_REUSEADDR``, incoming packets can become " "randomly distributed among the sockets." msgstr "" -#: library/asyncio-eventloop.rst:516 +#: library/asyncio-eventloop.rst:519 msgid "" "For supported platforms, *reuse_port* can be used as a replacement for " "similar functionality. With *reuse_port*, :py:data:`~sockets.SO_REUSEPORT` " @@ -670,47 +675,47 @@ msgid "" "from assigning sockets to the same socket address." msgstr "" -#: library/asyncio-eventloop.rst:522 +#: library/asyncio-eventloop.rst:525 msgid "Create a datagram connection." msgstr "" -#: library/asyncio-eventloop.rst:524 +#: library/asyncio-eventloop.rst:527 msgid "" "The socket family can be either :py:data:`~socket.AF_INET`, :py:data:" "`~socket.AF_INET6`, or :py:data:`~socket.AF_UNIX`, depending on *host* (or " "the *family* argument, if provided)." msgstr "" -#: library/asyncio-eventloop.rst:528 +#: library/asyncio-eventloop.rst:531 msgid "The socket type will be :py:data:`~socket.SOCK_DGRAM`." msgstr "" -#: library/asyncio-eventloop.rst:530 library/asyncio-eventloop.rst:628 -#: library/asyncio-eventloop.rst:744 +#: library/asyncio-eventloop.rst:533 library/asyncio-eventloop.rst:631 +#: library/asyncio-eventloop.rst:747 msgid "" "*protocol_factory* must be a callable returning a :ref:`protocol ` implementation." msgstr "" -#: library/asyncio-eventloop.rst:533 library/asyncio-eventloop.rst:593 +#: library/asyncio-eventloop.rst:536 library/asyncio-eventloop.rst:596 msgid "A tuple of ``(transport, protocol)`` is returned on success." msgstr "" -#: library/asyncio-eventloop.rst:537 +#: library/asyncio-eventloop.rst:540 msgid "" "*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind " "the socket locally. The *local_host* and *local_port* are looked up using :" "meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:541 +#: library/asyncio-eventloop.rst:544 msgid "" "*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to " "connect the socket to a remote address. The *remote_host* and *remote_port* " "are looked up using :meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:545 +#: library/asyncio-eventloop.rst:548 msgid "" "*family*, *proto*, *flags* are the optional address family, protocol and " "flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If " @@ -718,7 +723,7 @@ msgid "" "module constants." msgstr "" -#: library/asyncio-eventloop.rst:550 +#: library/asyncio-eventloop.rst:553 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same " "port as other existing endpoints are bound to, so long as they all set this " @@ -727,13 +732,13 @@ msgid "" "this capability is unsupported." msgstr "" -#: library/asyncio-eventloop.rst:556 +#: library/asyncio-eventloop.rst:559 msgid "" "*allow_broadcast* tells the kernel to allow this endpoint to send messages " "to the broadcast address." msgstr "" -#: library/asyncio-eventloop.rst:559 +#: library/asyncio-eventloop.rst:562 msgid "" "*sock* can optionally be specified in order to use a preexisting, already " "connected, :class:`socket.socket` object to be used by the transport. If " @@ -741,106 +746,106 @@ msgid "" "`None`)." msgstr "" -#: library/asyncio-eventloop.rst:570 +#: library/asyncio-eventloop.rst:573 msgid "" "See :ref:`UDP echo client protocol ` and :" "ref:`UDP echo server protocol ` examples." msgstr "" -#: library/asyncio-eventloop.rst:573 +#: library/asyncio-eventloop.rst:576 msgid "" "The *family*, *proto*, *flags*, *reuse_address*, *reuse_port, " "*allow_broadcast*, and *sock* parameters were added." msgstr "" -#: library/asyncio-eventloop.rst:577 +#: library/asyncio-eventloop.rst:580 msgid "" "The *reuse_address* parameter is no longer supported due to security " "concerns." msgstr "" -#: library/asyncio-eventloop.rst:581 +#: library/asyncio-eventloop.rst:584 msgid "Added support for Windows." msgstr "" -#: library/asyncio-eventloop.rst:588 +#: library/asyncio-eventloop.rst:591 msgid "Create a Unix connection." msgstr "" -#: library/asyncio-eventloop.rst:590 +#: library/asyncio-eventloop.rst:593 msgid "" "The socket family will be :py:data:`~socket.AF_UNIX`; socket type will be :" "py:data:`~socket.SOCK_STREAM`." msgstr "" -#: library/asyncio-eventloop.rst:595 +#: library/asyncio-eventloop.rst:598 msgid "" "*path* is the name of a Unix domain socket and is required, unless a *sock* " "parameter is specified. Abstract Unix sockets, :class:`str`, :class:" "`bytes`, and :class:`~pathlib.Path` paths are supported." msgstr "" -#: library/asyncio-eventloop.rst:600 +#: library/asyncio-eventloop.rst:603 msgid "" "See the documentation of the :meth:`loop.create_connection` method for " "information about arguments to this method." msgstr "" -#: library/asyncio-eventloop.rst:604 library/asyncio-eventloop.rst:728 -#: library/asyncio-eventloop.rst:1092 +#: library/asyncio-eventloop.rst:607 library/asyncio-eventloop.rst:731 +#: library/asyncio-eventloop.rst:1095 msgid ":ref:`Availability `: Unix." msgstr "" -#: library/asyncio-eventloop.rst:605 +#: library/asyncio-eventloop.rst:608 msgid "" "Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be " "a :term:`path-like object`." msgstr "" -#: library/asyncio-eventloop.rst:611 +#: library/asyncio-eventloop.rst:614 msgid "Creating network servers" msgstr "" -#: library/asyncio-eventloop.rst:621 +#: library/asyncio-eventloop.rst:624 msgid "" "Create a TCP server (socket type :data:`~socket.SOCK_STREAM`) listening on " "*port* of the *host* address." msgstr "" -#: library/asyncio-eventloop.rst:624 +#: library/asyncio-eventloop.rst:627 msgid "Returns a :class:`Server` object." msgstr "" -#: library/asyncio-eventloop.rst:626 +#: library/asyncio-eventloop.rst:629 msgid "Arguments:" msgstr "" -#: library/asyncio-eventloop.rst:631 +#: library/asyncio-eventloop.rst:634 msgid "" "The *host* parameter can be set to several types which determine where the " "server would be listening:" msgstr "" -#: library/asyncio-eventloop.rst:634 +#: library/asyncio-eventloop.rst:637 msgid "" "If *host* is a string, the TCP server is bound to a single network interface " "specified by *host*." msgstr "" -#: library/asyncio-eventloop.rst:637 +#: library/asyncio-eventloop.rst:640 msgid "" "If *host* is a sequence of strings, the TCP server is bound to all network " "interfaces specified by the sequence." msgstr "" -#: library/asyncio-eventloop.rst:640 +#: library/asyncio-eventloop.rst:643 msgid "" "If *host* is an empty string or ``None``, all interfaces are assumed and a " "list of multiple sockets will be returned (most likely one for IPv4 and " "another one for IPv6)." msgstr "" -#: library/asyncio-eventloop.rst:644 +#: library/asyncio-eventloop.rst:647 msgid "" "The *port* parameter can be set to specify which port the server should " "listen on. If ``0`` or ``None`` (the default), a random unused port will be " @@ -848,63 +853,63 @@ msgid "" "different random port will be selected for each interface)." msgstr "" -#: library/asyncio-eventloop.rst:649 +#: library/asyncio-eventloop.rst:652 msgid "" "*family* can be set to either :data:`socket.AF_INET` or :data:`~socket." "AF_INET6` to force the socket to use IPv4 or IPv6. If not set, the *family* " "will be determined from host name (defaults to :data:`~socket.AF_UNSPEC`)." msgstr "" -#: library/asyncio-eventloop.rst:654 +#: library/asyncio-eventloop.rst:657 msgid "*flags* is a bitmask for :meth:`getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:656 +#: library/asyncio-eventloop.rst:659 msgid "" "*sock* can optionally be specified in order to use a preexisting socket " "object. If specified, *host* and *port* must not be specified." msgstr "" -#: library/asyncio-eventloop.rst:661 +#: library/asyncio-eventloop.rst:664 msgid "" "The *sock* argument transfers ownership of the socket to the server created. " "To close the socket, call the server's :meth:`~asyncio.Server.close` method." msgstr "" -#: library/asyncio-eventloop.rst:665 +#: library/asyncio-eventloop.rst:668 msgid "" "*backlog* is the maximum number of queued connections passed to :meth:" "`~socket.socket.listen` (defaults to 100)." msgstr "" -#: library/asyncio-eventloop.rst:668 +#: library/asyncio-eventloop.rst:671 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over " "the accepted connections." msgstr "" -#: library/asyncio-eventloop.rst:671 +#: library/asyncio-eventloop.rst:674 msgid "" "*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` " "state, without waiting for its natural timeout to expire. If not specified " "will automatically be set to ``True`` on Unix." msgstr "" -#: library/asyncio-eventloop.rst:676 +#: library/asyncio-eventloop.rst:679 msgid "" "*reuse_port* tells the kernel to allow this endpoint to be bound to the same " "port as other existing endpoints are bound to, so long as they all set this " "flag when being created. This option is not supported on Windows." msgstr "" -#: library/asyncio-eventloop.rst:681 +#: library/asyncio-eventloop.rst:684 msgid "" "*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait " "for the TLS handshake to complete before aborting the connection. ``60.0`` " "seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:685 +#: library/asyncio-eventloop.rst:688 msgid "" "*start_serving* set to ``True`` (the default) causes the created server to " "start accepting connections immediately. When set to ``False``, the user " @@ -912,104 +917,104 @@ msgid "" "to make the server to start accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:697 +#: library/asyncio-eventloop.rst:700 msgid "The *host* parameter can be a sequence of strings." msgstr "" -#: library/asyncio-eventloop.rst:701 +#: library/asyncio-eventloop.rst:704 msgid "" "Added *ssl_handshake_timeout* and *start_serving* parameters. The socket " "option :py:data:`~socket.TCP_NODELAY` is set by default for all TCP " "connections." msgstr "" -#: library/asyncio-eventloop.rst:707 +#: library/asyncio-eventloop.rst:710 msgid "" "The :func:`start_server` function is a higher-level alternative API that " "returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can " "be used in an async/await code." msgstr "" -#: library/asyncio-eventloop.rst:716 +#: library/asyncio-eventloop.rst:719 msgid "" "Similar to :meth:`loop.create_server` but works with the :py:data:`~socket." "AF_UNIX` socket family." msgstr "" -#: library/asyncio-eventloop.rst:719 +#: library/asyncio-eventloop.rst:722 msgid "" "*path* is the name of a Unix domain socket, and is required, unless a *sock* " "argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`, " "and :class:`~pathlib.Path` paths are supported." msgstr "" -#: library/asyncio-eventloop.rst:724 +#: library/asyncio-eventloop.rst:727 msgid "" "See the documentation of the :meth:`loop.create_server` method for " "information about arguments to this method." msgstr "" -#: library/asyncio-eventloop.rst:731 +#: library/asyncio-eventloop.rst:734 msgid "" "Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* " "parameter can now be a :class:`~pathlib.Path` object." msgstr "" -#: library/asyncio-eventloop.rst:737 +#: library/asyncio-eventloop.rst:740 msgid "Wrap an already accepted connection into a transport/protocol pair." msgstr "" -#: library/asyncio-eventloop.rst:739 +#: library/asyncio-eventloop.rst:742 msgid "" "This method can be used by servers that accept connections outside of " "asyncio but that use asyncio to handle them." msgstr "" -#: library/asyncio-eventloop.rst:742 library/asyncio-eventloop.rst:820 +#: library/asyncio-eventloop.rst:745 library/asyncio-eventloop.rst:823 msgid "Parameters:" msgstr "" -#: library/asyncio-eventloop.rst:747 +#: library/asyncio-eventloop.rst:750 msgid "" "*sock* is a preexisting socket object returned from :meth:`socket.accept " "`." msgstr "" -#: library/asyncio-eventloop.rst:756 +#: library/asyncio-eventloop.rst:759 msgid "" "*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the " "accepted connections." msgstr "" -#: library/asyncio-eventloop.rst:759 +#: library/asyncio-eventloop.rst:762 msgid "" "*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to " "wait for the SSL handshake to complete before aborting the connection. " "``60.0`` seconds if ``None`` (default)." msgstr "" -#: library/asyncio-eventloop.rst:763 +#: library/asyncio-eventloop.rst:766 msgid "Returns a ``(transport, protocol)`` pair." msgstr "" -#: library/asyncio-eventloop.rst:773 +#: library/asyncio-eventloop.rst:776 msgid "Transferring files" msgstr "" -#: library/asyncio-eventloop.rst:778 +#: library/asyncio-eventloop.rst:781 msgid "" "Send a *file* over a *transport*. Return the total number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:781 +#: library/asyncio-eventloop.rst:784 msgid "The method uses high-performance :meth:`os.sendfile` if available." msgstr "" -#: library/asyncio-eventloop.rst:783 +#: library/asyncio-eventloop.rst:786 msgid "*file* must be a regular file object opened in binary mode." msgstr "" -#: library/asyncio-eventloop.rst:785 library/asyncio-eventloop.rst:980 +#: library/asyncio-eventloop.rst:788 library/asyncio-eventloop.rst:983 msgid "" "*offset* tells from where to start reading the file. If specified, *count* " "is the total number of bytes to transmit as opposed to sending the file " @@ -1018,35 +1023,35 @@ msgid "" "obtain the actual number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:792 +#: library/asyncio-eventloop.rst:795 msgid "" "*fallback* set to ``True`` makes asyncio to manually read and send the file " "when the platform does not support the sendfile system call (e.g. Windows or " "SSL socket on Unix)." msgstr "" -#: library/asyncio-eventloop.rst:796 +#: library/asyncio-eventloop.rst:799 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support the " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: library/asyncio-eventloop.rst:803 +#: library/asyncio-eventloop.rst:806 msgid "TLS Upgrade" msgstr "" -#: library/asyncio-eventloop.rst:809 +#: library/asyncio-eventloop.rst:812 msgid "Upgrade an existing transport-based connection to TLS." msgstr "" -#: library/asyncio-eventloop.rst:811 +#: library/asyncio-eventloop.rst:814 msgid "" "Create a TLS coder/decoder instance and insert it between the *transport* " "and the *protocol*. The coder/decoder implements both *transport*-facing " "protocol and *protocol*-facing transport." msgstr "" -#: library/asyncio-eventloop.rst:815 +#: library/asyncio-eventloop.rst:818 msgid "" "Return the created two-interface instance. After *await*, the *protocol* " "must stop using the original *transport* and communicate with the returned " @@ -1054,69 +1059,69 @@ msgid "" "exchanges extra TLS session packets with *transport*." msgstr "" -#: library/asyncio-eventloop.rst:822 +#: library/asyncio-eventloop.rst:825 msgid "" "*transport* and *protocol* instances that methods like :meth:`~loop." "create_server` and :meth:`~loop.create_connection` return." msgstr "" -#: library/asyncio-eventloop.rst:826 +#: library/asyncio-eventloop.rst:829 msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`." msgstr "" -#: library/asyncio-eventloop.rst:828 +#: library/asyncio-eventloop.rst:831 msgid "" "*server_side* pass ``True`` when a server-side connection is being upgraded " "(like the one created by :meth:`~loop.create_server`)." msgstr "" -#: library/asyncio-eventloop.rst:831 +#: library/asyncio-eventloop.rst:834 msgid "" "*server_hostname*: sets or overrides the host name that the target server's " "certificate will be matched against." msgstr "" -#: library/asyncio-eventloop.rst:842 +#: library/asyncio-eventloop.rst:845 msgid "Watching file descriptors" msgstr "" -#: library/asyncio-eventloop.rst:846 +#: library/asyncio-eventloop.rst:849 msgid "" "Start monitoring the *fd* file descriptor for read availability and invoke " "*callback* with the specified arguments once *fd* is available for reading." msgstr "" -#: library/asyncio-eventloop.rst:852 +#: library/asyncio-eventloop.rst:855 msgid "Stop monitoring the *fd* file descriptor for read availability." msgstr "" -#: library/asyncio-eventloop.rst:856 +#: library/asyncio-eventloop.rst:859 msgid "" "Start monitoring the *fd* file descriptor for write availability and invoke " "*callback* with the specified arguments once *fd* is available for writing." msgstr "" -#: library/asyncio-eventloop.rst:860 library/asyncio-eventloop.rst:1079 +#: library/asyncio-eventloop.rst:863 library/asyncio-eventloop.rst:1082 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *callback*." msgstr "" -#: library/asyncio-eventloop.rst:865 +#: library/asyncio-eventloop.rst:868 msgid "Stop monitoring the *fd* file descriptor for write availability." msgstr "" -#: library/asyncio-eventloop.rst:867 +#: library/asyncio-eventloop.rst:870 msgid "" "See also :ref:`Platform Support ` section for some " "limitations of these methods." msgstr "" -#: library/asyncio-eventloop.rst:872 +#: library/asyncio-eventloop.rst:875 msgid "Working with socket objects directly" msgstr "" -#: library/asyncio-eventloop.rst:874 +#: library/asyncio-eventloop.rst:877 msgid "" "In general, protocol implementations that use transport-based APIs such as :" "meth:`loop.create_connection` and :meth:`loop.create_server` are faster than " @@ -1125,46 +1130,46 @@ msgid "" "socket` objects directly is more convenient." msgstr "" -#: library/asyncio-eventloop.rst:883 +#: library/asyncio-eventloop.rst:886 msgid "" "Receive up to *nbytes* from *sock*. Asynchronous version of :meth:`socket." "recv() `." msgstr "" -#: library/asyncio-eventloop.rst:886 +#: library/asyncio-eventloop.rst:889 msgid "Return the received data as a bytes object." msgstr "" -#: library/asyncio-eventloop.rst:888 library/asyncio-eventloop.rst:902 -#: library/asyncio-eventloop.rst:917 library/asyncio-eventloop.rst:930 -#: library/asyncio-eventloop.rst:956 library/asyncio-eventloop.rst:994 +#: library/asyncio-eventloop.rst:891 library/asyncio-eventloop.rst:905 +#: library/asyncio-eventloop.rst:920 library/asyncio-eventloop.rst:933 +#: library/asyncio-eventloop.rst:959 library/asyncio-eventloop.rst:997 msgid "*sock* must be a non-blocking socket." msgstr "" -#: library/asyncio-eventloop.rst:890 +#: library/asyncio-eventloop.rst:893 msgid "" "Even though this method was always documented as a coroutine method, " "releases before Python 3.7 returned a :class:`Future`. Since Python 3.7 this " "is an ``async def`` method." msgstr "" -#: library/asyncio-eventloop.rst:897 +#: library/asyncio-eventloop.rst:900 msgid "" "Receive data from *sock* into the *buf* buffer. Modeled after the blocking :" "meth:`socket.recv_into() ` method." msgstr "" -#: library/asyncio-eventloop.rst:900 +#: library/asyncio-eventloop.rst:903 msgid "Return the number of bytes written to the buffer." msgstr "" -#: library/asyncio-eventloop.rst:908 +#: library/asyncio-eventloop.rst:911 msgid "" "Send *data* to the *sock* socket. Asynchronous version of :meth:`socket." "sendall() `." msgstr "" -#: library/asyncio-eventloop.rst:911 +#: library/asyncio-eventloop.rst:914 msgid "" "This method continues to send to the socket until either all data in *data* " "has been sent or an error occurs. ``None`` is returned on success. On " @@ -1173,23 +1178,23 @@ msgid "" "the connection." msgstr "" -#: library/asyncio-eventloop.rst:919 +#: library/asyncio-eventloop.rst:922 msgid "" "Even though the method was always documented as a coroutine method, before " "Python 3.7 it returned an :class:`Future`. Since Python 3.7, this is an " "``async def`` method." msgstr "" -#: library/asyncio-eventloop.rst:926 +#: library/asyncio-eventloop.rst:929 msgid "Connect *sock* to a remote socket at *address*." msgstr "" -#: library/asyncio-eventloop.rst:928 +#: library/asyncio-eventloop.rst:931 msgid "" "Asynchronous version of :meth:`socket.connect() `." msgstr "" -#: library/asyncio-eventloop.rst:932 +#: library/asyncio-eventloop.rst:935 msgid "" "``address`` no longer needs to be resolved. ``sock_connect`` will try to " "check if the *address* is already resolved by calling :func:`socket." @@ -1197,19 +1202,19 @@ msgid "" "*address*." msgstr "" -#: library/asyncio-eventloop.rst:941 +#: library/asyncio-eventloop.rst:944 msgid "" ":meth:`loop.create_connection` and :func:`asyncio.open_connection() " "`." msgstr "" -#: library/asyncio-eventloop.rst:947 +#: library/asyncio-eventloop.rst:950 msgid "" "Accept a connection. Modeled after the blocking :meth:`socket.accept() " "` method." msgstr "" -#: library/asyncio-eventloop.rst:950 +#: library/asyncio-eventloop.rst:953 msgid "" "The socket must be bound to an address and listening for connections. The " "return value is a pair ``(conn, address)`` where *conn* is a *new* socket " @@ -1217,64 +1222,64 @@ msgid "" "the address bound to the socket on the other end of the connection." msgstr "" -#: library/asyncio-eventloop.rst:958 +#: library/asyncio-eventloop.rst:961 msgid "" "Even though the method was always documented as a coroutine method, before " "Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an " "``async def`` method." msgstr "" -#: library/asyncio-eventloop.rst:965 +#: library/asyncio-eventloop.rst:968 msgid ":meth:`loop.create_server` and :func:`start_server`." msgstr "" -#: library/asyncio-eventloop.rst:970 +#: library/asyncio-eventloop.rst:973 msgid "" "Send a file using high-performance :mod:`os.sendfile` if possible. Return " "the total number of bytes sent." msgstr "" -#: library/asyncio-eventloop.rst:973 +#: library/asyncio-eventloop.rst:976 msgid "" "Asynchronous version of :meth:`socket.sendfile() `." msgstr "" -#: library/asyncio-eventloop.rst:975 +#: library/asyncio-eventloop.rst:978 msgid "" "*sock* must be a non-blocking :const:`socket.SOCK_STREAM` :class:`~socket." "socket`." msgstr "" -#: library/asyncio-eventloop.rst:978 +#: library/asyncio-eventloop.rst:981 msgid "*file* must be a regular file object open in binary mode." msgstr "" -#: library/asyncio-eventloop.rst:987 +#: library/asyncio-eventloop.rst:990 msgid "" "*fallback*, when set to ``True``, makes asyncio manually read and send the " "file when the platform does not support the sendfile syscall (e.g. Windows " "or SSL socket on Unix)." msgstr "" -#: library/asyncio-eventloop.rst:991 +#: library/asyncio-eventloop.rst:994 msgid "" "Raise :exc:`SendfileNotAvailableError` if the system does not support " "*sendfile* syscall and *fallback* is ``False``." msgstr "" -#: library/asyncio-eventloop.rst:1000 +#: library/asyncio-eventloop.rst:1003 msgid "DNS" msgstr "" -#: library/asyncio-eventloop.rst:1005 +#: library/asyncio-eventloop.rst:1008 msgid "Asynchronous version of :meth:`socket.getaddrinfo`." msgstr "" -#: library/asyncio-eventloop.rst:1009 +#: library/asyncio-eventloop.rst:1012 msgid "Asynchronous version of :meth:`socket.getnameinfo`." msgstr "" -#: library/asyncio-eventloop.rst:1011 +#: library/asyncio-eventloop.rst:1014 msgid "" "Both *getaddrinfo* and *getnameinfo* methods were always documented to " "return a coroutine, but prior to Python 3.7 they were, in fact, returning :" @@ -1282,66 +1287,66 @@ msgid "" "coroutines." msgstr "" -#: library/asyncio-eventloop.rst:1019 +#: library/asyncio-eventloop.rst:1022 msgid "Working with pipes" msgstr "" -#: library/asyncio-eventloop.rst:1023 +#: library/asyncio-eventloop.rst:1026 msgid "Register the read end of *pipe* in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1028 +#: library/asyncio-eventloop.rst:1031 msgid "*pipe* is a :term:`file-like object `." msgstr "" -#: library/asyncio-eventloop.rst:1030 +#: library/asyncio-eventloop.rst:1033 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports the :class:" "`ReadTransport` interface and *protocol* is an object instantiated by the " "*protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1034 library/asyncio-eventloop.rst:1050 +#: library/asyncio-eventloop.rst:1037 library/asyncio-eventloop.rst:1053 msgid "" "With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-" "blocking mode." msgstr "" -#: library/asyncio-eventloop.rst:1039 +#: library/asyncio-eventloop.rst:1042 msgid "Register the write end of *pipe* in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1044 +#: library/asyncio-eventloop.rst:1047 msgid "*pipe* is :term:`file-like object `." msgstr "" -#: library/asyncio-eventloop.rst:1046 +#: library/asyncio-eventloop.rst:1049 msgid "" "Return pair ``(transport, protocol)``, where *transport* supports :class:" "`WriteTransport` interface and *protocol* is an object instantiated by the " "*protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1055 +#: library/asyncio-eventloop.rst:1058 msgid "" ":class:`SelectorEventLoop` does not support the above methods on Windows. " "Use :class:`ProactorEventLoop` instead for Windows." msgstr "" -#: library/asyncio-eventloop.rst:1060 +#: library/asyncio-eventloop.rst:1063 msgid "" "The :meth:`loop.subprocess_exec` and :meth:`loop.subprocess_shell` methods." msgstr "" -#: library/asyncio-eventloop.rst:1065 +#: library/asyncio-eventloop.rst:1068 msgid "Unix signals" msgstr "" -#: library/asyncio-eventloop.rst:1069 +#: library/asyncio-eventloop.rst:1072 msgid "Set *callback* as the handler for the *signum* signal." msgstr "" -#: library/asyncio-eventloop.rst:1071 +#: library/asyncio-eventloop.rst:1074 msgid "" "The callback will be invoked by *loop*, along with other queued callbacks " "and runnable coroutines of that event loop. Unlike signal handlers " @@ -1349,46 +1354,46 @@ msgid "" "function is allowed to interact with the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1076 +#: library/asyncio-eventloop.rst:1079 msgid "" "Raise :exc:`ValueError` if the signal number is invalid or uncatchable. " "Raise :exc:`RuntimeError` if there is a problem setting up the handler." msgstr "" -#: library/asyncio-eventloop.rst:1082 +#: library/asyncio-eventloop.rst:1085 msgid "" "Like :func:`signal.signal`, this function must be invoked in the main thread." msgstr "" -#: library/asyncio-eventloop.rst:1087 +#: library/asyncio-eventloop.rst:1090 msgid "Remove the handler for the *sig* signal." msgstr "" -#: library/asyncio-eventloop.rst:1089 +#: library/asyncio-eventloop.rst:1092 msgid "" "Return ``True`` if the signal handler was removed, or ``False`` if no " "handler was set for the given signal." msgstr "" -#: library/asyncio-eventloop.rst:1096 +#: library/asyncio-eventloop.rst:1099 msgid "The :mod:`signal` module." msgstr "" -#: library/asyncio-eventloop.rst:1100 +#: library/asyncio-eventloop.rst:1103 msgid "Executing code in thread or process pools" msgstr "" -#: library/asyncio-eventloop.rst:1104 +#: library/asyncio-eventloop.rst:1107 msgid "Arrange for *func* to be called in the specified executor." msgstr "" -#: library/asyncio-eventloop.rst:1106 +#: library/asyncio-eventloop.rst:1109 msgid "" "The *executor* argument should be an :class:`concurrent.futures.Executor` " "instance. The default executor is used if *executor* is ``None``." msgstr "" -#: library/asyncio-eventloop.rst:1151 +#: library/asyncio-eventloop.rst:1154 msgid "" "Note that the entry point guard (``if __name__ == '__main__'``) is required " "for option 3 due to the peculiarities of :mod:`multiprocessing`, which is " @@ -1396,17 +1401,17 @@ msgid "" "importing of main module `." msgstr "" -#: library/asyncio-eventloop.rst:1156 +#: library/asyncio-eventloop.rst:1159 msgid "This method returns a :class:`asyncio.Future` object." msgstr "" -#: library/asyncio-eventloop.rst:1158 +#: library/asyncio-eventloop.rst:1161 msgid "" "Use :func:`functools.partial` :ref:`to pass keyword arguments ` to *func*." msgstr "" -#: library/asyncio-eventloop.rst:1161 +#: library/asyncio-eventloop.rst:1164 msgid "" ":meth:`loop.run_in_executor` no longer configures the ``max_workers`` of the " "thread pool executor it creates, instead leaving it up to the thread pool " @@ -1414,38 +1419,38 @@ msgid "" "default." msgstr "" -#: library/asyncio-eventloop.rst:1170 +#: library/asyncio-eventloop.rst:1173 msgid "" "Set *executor* as the default executor used by :meth:`run_in_executor`. " "*executor* should be an instance of :class:`~concurrent.futures." "ThreadPoolExecutor`." msgstr "" -#: library/asyncio-eventloop.rst:1174 +#: library/asyncio-eventloop.rst:1177 msgid "" "Using an executor that is not an instance of :class:`~concurrent.futures." "ThreadPoolExecutor` is deprecated and will trigger an error in Python 3.9." msgstr "" -#: library/asyncio-eventloop.rst:1179 +#: library/asyncio-eventloop.rst:1182 msgid "" "*executor* must be an instance of :class:`concurrent.futures." "ThreadPoolExecutor`." msgstr "" -#: library/asyncio-eventloop.rst:1184 +#: library/asyncio-eventloop.rst:1187 msgid "Error Handling API" msgstr "" -#: library/asyncio-eventloop.rst:1186 +#: library/asyncio-eventloop.rst:1189 msgid "Allows customizing how exceptions are handled in the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1190 +#: library/asyncio-eventloop.rst:1193 msgid "Set *handler* as the new event loop exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1192 +#: library/asyncio-eventloop.rst:1195 msgid "" "If *handler* is ``None``, the default exception handler will be set. " "Otherwise, *handler* must be a callable with the signature matching ``(loop, " @@ -1454,158 +1459,158 @@ msgid "" "(see :meth:`call_exception_handler` documentation for details about context)." msgstr "" -#: library/asyncio-eventloop.rst:1202 +#: library/asyncio-eventloop.rst:1205 msgid "" "Return the current exception handler, or ``None`` if no custom exception " "handler was set." msgstr "" -#: library/asyncio-eventloop.rst:1209 +#: library/asyncio-eventloop.rst:1212 msgid "Default exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1211 +#: library/asyncio-eventloop.rst:1214 msgid "" "This is called when an exception occurs and no exception handler is set. " "This can be called by a custom exception handler that wants to defer to the " "default handler behavior." msgstr "" -#: library/asyncio-eventloop.rst:1215 +#: library/asyncio-eventloop.rst:1218 msgid "" "*context* parameter has the same meaning as in :meth:" "`call_exception_handler`." msgstr "" -#: library/asyncio-eventloop.rst:1220 +#: library/asyncio-eventloop.rst:1223 msgid "Call the current event loop exception handler." msgstr "" -#: library/asyncio-eventloop.rst:1222 +#: library/asyncio-eventloop.rst:1225 msgid "" "*context* is a ``dict`` object containing the following keys (new keys may " "be introduced in future Python versions):" msgstr "" -#: library/asyncio-eventloop.rst:1225 +#: library/asyncio-eventloop.rst:1228 msgid "'message': Error message;" msgstr "" -#: library/asyncio-eventloop.rst:1226 +#: library/asyncio-eventloop.rst:1229 msgid "'exception' (optional): Exception object;" msgstr "" -#: library/asyncio-eventloop.rst:1227 +#: library/asyncio-eventloop.rst:1230 msgid "'future' (optional): :class:`asyncio.Future` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1228 +#: library/asyncio-eventloop.rst:1231 msgid "'task' (optional): :class:`asyncio.Task` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1229 +#: library/asyncio-eventloop.rst:1232 msgid "'handle' (optional): :class:`asyncio.Handle` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1230 +#: library/asyncio-eventloop.rst:1233 msgid "'protocol' (optional): :ref:`Protocol ` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1231 +#: library/asyncio-eventloop.rst:1234 msgid "'transport' (optional): :ref:`Transport ` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1232 +#: library/asyncio-eventloop.rst:1235 msgid "'socket' (optional): :class:`socket.socket` instance;" msgstr "" -#: library/asyncio-eventloop.rst:1234 +#: library/asyncio-eventloop.rst:1237 msgid "'asyncgen' (optional): Asynchronous generator that caused" msgstr "" -#: library/asyncio-eventloop.rst:1234 +#: library/asyncio-eventloop.rst:1237 msgid "the exception." msgstr "" -#: library/asyncio-eventloop.rst:1238 +#: library/asyncio-eventloop.rst:1241 msgid "" "This method should not be overloaded in subclassed event loops. For custom " "exception handling, use the :meth:`set_exception_handler()` method." msgstr "" -#: library/asyncio-eventloop.rst:1243 +#: library/asyncio-eventloop.rst:1246 msgid "Enabling debug mode" msgstr "" -#: library/asyncio-eventloop.rst:1247 +#: library/asyncio-eventloop.rst:1250 msgid "Get the debug mode (:class:`bool`) of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1249 +#: library/asyncio-eventloop.rst:1252 msgid "" "The default value is ``True`` if the environment variable :envvar:" "`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` otherwise." msgstr "" -#: library/asyncio-eventloop.rst:1255 +#: library/asyncio-eventloop.rst:1258 msgid "Set the debug mode of the event loop." msgstr "" -#: library/asyncio-eventloop.rst:1259 +#: library/asyncio-eventloop.rst:1262 msgid "" "The new :ref:`Python Development Mode ` can now also be used to " "enable the debug mode." msgstr "" -#: library/asyncio-eventloop.rst:1264 +#: library/asyncio-eventloop.rst:1267 msgid "The :ref:`debug mode of asyncio `." msgstr "" -#: library/asyncio-eventloop.rst:1268 +#: library/asyncio-eventloop.rst:1271 msgid "Running Subprocesses" msgstr "" -#: library/asyncio-eventloop.rst:1270 +#: library/asyncio-eventloop.rst:1273 msgid "" "Methods described in this subsections are low-level. In regular async/await " "code consider using the high-level :func:`asyncio.create_subprocess_shell` " "and :func:`asyncio.create_subprocess_exec` convenience functions instead." msgstr "" -#: library/asyncio-eventloop.rst:1277 +#: library/asyncio-eventloop.rst:1280 msgid "" "On Windows, the default event loop :class:`ProactorEventLoop` supports " "subprocesses, whereas :class:`SelectorEventLoop` does not. See :ref:" "`Subprocess Support on Windows ` for details." msgstr "" -#: library/asyncio-eventloop.rst:1286 +#: library/asyncio-eventloop.rst:1289 msgid "" "Create a subprocess from one or more string arguments specified by *args*." msgstr "" -#: library/asyncio-eventloop.rst:1289 +#: library/asyncio-eventloop.rst:1292 msgid "*args* must be a list of strings represented by:" msgstr "" -#: library/asyncio-eventloop.rst:1291 +#: library/asyncio-eventloop.rst:1294 msgid ":class:`str`;" msgstr "" -#: library/asyncio-eventloop.rst:1292 +#: library/asyncio-eventloop.rst:1295 msgid "" "or :class:`bytes`, encoded to the :ref:`filesystem encoding `." msgstr "" -#: library/asyncio-eventloop.rst:1295 +#: library/asyncio-eventloop.rst:1298 msgid "" "The first string specifies the program executable, and the remaining strings " "specify the arguments. Together, string arguments form the ``argv`` of the " "program." msgstr "" -#: library/asyncio-eventloop.rst:1299 +#: library/asyncio-eventloop.rst:1302 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=False`` and the list of strings passed as the first " @@ -1613,133 +1618,133 @@ msgid "" "which is list of strings, *subprocess_exec* takes multiple string arguments." msgstr "" -#: library/asyncio-eventloop.rst:1305 +#: library/asyncio-eventloop.rst:1308 msgid "" "The *protocol_factory* must be a callable returning a subclass of the :class:" "`asyncio.SubprocessProtocol` class." msgstr "" -#: library/asyncio-eventloop.rst:1308 +#: library/asyncio-eventloop.rst:1311 msgid "Other parameters:" msgstr "" -#: library/asyncio-eventloop.rst:1310 +#: library/asyncio-eventloop.rst:1313 msgid "*stdin* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1312 +#: library/asyncio-eventloop.rst:1315 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard input stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: library/asyncio-eventloop.rst:1315 library/asyncio-eventloop.rst:1327 -#: library/asyncio-eventloop.rst:1339 +#: library/asyncio-eventloop.rst:1318 library/asyncio-eventloop.rst:1330 +#: library/asyncio-eventloop.rst:1342 msgid "" "the :const:`subprocess.PIPE` constant (default) which will create a new pipe " "and connect it," msgstr "" -#: library/asyncio-eventloop.rst:1317 library/asyncio-eventloop.rst:1329 -#: library/asyncio-eventloop.rst:1341 +#: library/asyncio-eventloop.rst:1320 library/asyncio-eventloop.rst:1332 +#: library/asyncio-eventloop.rst:1344 msgid "" "the value ``None`` which will make the subprocess inherit the file " "descriptor from this process" msgstr "" -#: library/asyncio-eventloop.rst:1319 library/asyncio-eventloop.rst:1331 -#: library/asyncio-eventloop.rst:1343 +#: library/asyncio-eventloop.rst:1322 library/asyncio-eventloop.rst:1334 +#: library/asyncio-eventloop.rst:1346 msgid "" "the :const:`subprocess.DEVNULL` constant which indicates that the special :" "data:`os.devnull` file will be used" msgstr "" -#: library/asyncio-eventloop.rst:1322 +#: library/asyncio-eventloop.rst:1325 msgid "*stdout* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1324 +#: library/asyncio-eventloop.rst:1327 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard output stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: library/asyncio-eventloop.rst:1334 +#: library/asyncio-eventloop.rst:1337 msgid "*stderr* can be any of these:" msgstr "" -#: library/asyncio-eventloop.rst:1336 +#: library/asyncio-eventloop.rst:1339 msgid "" "a file-like object representing a pipe to be connected to the subprocess's " "standard error stream using :meth:`~loop.connect_write_pipe`" msgstr "" -#: library/asyncio-eventloop.rst:1345 +#: library/asyncio-eventloop.rst:1348 msgid "" "the :const:`subprocess.STDOUT` constant which will connect the standard " "error stream to the process' standard output stream" msgstr "" -#: library/asyncio-eventloop.rst:1348 +#: library/asyncio-eventloop.rst:1351 msgid "" "All other keyword arguments are passed to :class:`subprocess.Popen` without " "interpretation, except for *bufsize*, *universal_newlines*, *shell*, *text*, " "*encoding* and *errors*, which should not be specified at all." msgstr "" -#: library/asyncio-eventloop.rst:1353 +#: library/asyncio-eventloop.rst:1356 msgid "" "The ``asyncio`` subprocess API does not support decoding the streams as " "text. :func:`bytes.decode` can be used to convert the bytes returned from " "the stream to text." msgstr "" -#: library/asyncio-eventloop.rst:1357 +#: library/asyncio-eventloop.rst:1360 msgid "" "See the constructor of the :class:`subprocess.Popen` class for documentation " "on other arguments." msgstr "" -#: library/asyncio-eventloop.rst:1360 +#: library/asyncio-eventloop.rst:1363 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`asyncio.SubprocessTransport` base class and *protocol* is an " "object instantiated by the *protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1368 +#: library/asyncio-eventloop.rst:1371 msgid "" "Create a subprocess from *cmd*, which can be a :class:`str` or a :class:" "`bytes` string encoded to the :ref:`filesystem encoding `, using the platform's \"shell\" syntax." msgstr "" -#: library/asyncio-eventloop.rst:1373 +#: library/asyncio-eventloop.rst:1376 msgid "" "This is similar to the standard library :class:`subprocess.Popen` class " "called with ``shell=True``." msgstr "" -#: library/asyncio-eventloop.rst:1376 +#: library/asyncio-eventloop.rst:1379 msgid "" "The *protocol_factory* must be a callable returning a subclass of the :class:" "`SubprocessProtocol` class." msgstr "" -#: library/asyncio-eventloop.rst:1379 +#: library/asyncio-eventloop.rst:1382 msgid "" "See :meth:`~loop.subprocess_exec` for more details about the remaining " "arguments." msgstr "" -#: library/asyncio-eventloop.rst:1382 +#: library/asyncio-eventloop.rst:1385 msgid "" "Returns a pair of ``(transport, protocol)``, where *transport* conforms to " "the :class:`SubprocessTransport` base class and *protocol* is an object " "instantiated by the *protocol_factory*." msgstr "" -#: library/asyncio-eventloop.rst:1387 +#: library/asyncio-eventloop.rst:1390 msgid "" "It is the application's responsibility to ensure that all whitespace and " "special characters are quoted appropriately to avoid `shell injection " @@ -1749,105 +1754,105 @@ msgid "" "used to construct shell commands." msgstr "" -#: library/asyncio-eventloop.rst:1396 +#: library/asyncio-eventloop.rst:1399 msgid "Callback Handles" msgstr "" -#: library/asyncio-eventloop.rst:1400 +#: library/asyncio-eventloop.rst:1403 msgid "" "A callback wrapper object returned by :meth:`loop.call_soon`, :meth:`loop." "call_soon_threadsafe`." msgstr "" -#: library/asyncio-eventloop.rst:1405 +#: library/asyncio-eventloop.rst:1408 msgid "" "Cancel the callback. If the callback has already been canceled or executed, " "this method has no effect." msgstr "" -#: library/asyncio-eventloop.rst:1410 +#: library/asyncio-eventloop.rst:1413 msgid "Return ``True`` if the callback was cancelled." msgstr "" -#: library/asyncio-eventloop.rst:1416 +#: library/asyncio-eventloop.rst:1419 msgid "" "A callback wrapper object returned by :meth:`loop.call_later`, and :meth:" "`loop.call_at`." msgstr "" -#: library/asyncio-eventloop.rst:1419 +#: library/asyncio-eventloop.rst:1422 msgid "This class is a subclass of :class:`Handle`." msgstr "" -#: library/asyncio-eventloop.rst:1423 +#: library/asyncio-eventloop.rst:1426 msgid "Return a scheduled callback time as :class:`float` seconds." msgstr "" -#: library/asyncio-eventloop.rst:1425 +#: library/asyncio-eventloop.rst:1428 msgid "" "The time is an absolute timestamp, using the same time reference as :meth:" "`loop.time`." msgstr "" -#: library/asyncio-eventloop.rst:1432 +#: library/asyncio-eventloop.rst:1435 msgid "Server Objects" msgstr "" -#: library/asyncio-eventloop.rst:1434 +#: library/asyncio-eventloop.rst:1437 msgid "" "Server objects are created by :meth:`loop.create_server`, :meth:`loop." "create_unix_server`, :func:`start_server`, and :func:`start_unix_server` " "functions." msgstr "" -#: library/asyncio-eventloop.rst:1438 +#: library/asyncio-eventloop.rst:1441 msgid "Do not instantiate the class directly." msgstr "" -#: library/asyncio-eventloop.rst:1442 +#: library/asyncio-eventloop.rst:1445 msgid "" "*Server* objects are asynchronous context managers. When used in an ``async " "with`` statement, it's guaranteed that the Server object is closed and not " "accepting new connections when the ``async with`` statement is completed::" msgstr "" -#: library/asyncio-eventloop.rst:1455 +#: library/asyncio-eventloop.rst:1458 msgid "Server object is an asynchronous context manager since Python 3.7." msgstr "" -#: library/asyncio-eventloop.rst:1460 +#: library/asyncio-eventloop.rst:1463 msgid "" "Stop serving: close listening sockets and set the :attr:`sockets` attribute " "to ``None``." msgstr "" -#: library/asyncio-eventloop.rst:1463 +#: library/asyncio-eventloop.rst:1466 msgid "" "The sockets that represent existing incoming client connections are left " "open." msgstr "" -#: library/asyncio-eventloop.rst:1466 +#: library/asyncio-eventloop.rst:1469 msgid "" "The server is closed asynchronously, use the :meth:`wait_closed` coroutine " "to wait until the server is closed." msgstr "" -#: library/asyncio-eventloop.rst:1471 +#: library/asyncio-eventloop.rst:1474 msgid "Return the event loop associated with the server object." msgstr "" -#: library/asyncio-eventloop.rst:1477 +#: library/asyncio-eventloop.rst:1480 msgid "Start accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:1479 +#: library/asyncio-eventloop.rst:1482 msgid "" "This method is idempotent, so it can be called when the server is already " "being serving." msgstr "" -#: library/asyncio-eventloop.rst:1482 +#: library/asyncio-eventloop.rst:1485 msgid "" "The *start_serving* keyword-only parameter to :meth:`loop.create_server` " "and :meth:`asyncio.start_server` allows creating a Server object that is not " @@ -1856,96 +1861,96 @@ msgid "" "accepting connections." msgstr "" -#: library/asyncio-eventloop.rst:1493 +#: library/asyncio-eventloop.rst:1496 msgid "" "Start accepting connections until the coroutine is cancelled. Cancellation " "of ``serve_forever`` task causes the server to be closed." msgstr "" -#: library/asyncio-eventloop.rst:1497 +#: library/asyncio-eventloop.rst:1500 msgid "" "This method can be called if the server is already accepting connections. " "Only one ``serve_forever`` task can exist per one *Server* object." msgstr "" -#: library/asyncio-eventloop.rst:1519 +#: library/asyncio-eventloop.rst:1522 msgid "Return ``True`` if the server is accepting new connections." msgstr "" -#: library/asyncio-eventloop.rst:1525 +#: library/asyncio-eventloop.rst:1528 msgid "Wait until the :meth:`close` method completes." msgstr "" -#: library/asyncio-eventloop.rst:1529 +#: library/asyncio-eventloop.rst:1532 msgid "List of :class:`socket.socket` objects the server is listening on." msgstr "" -#: library/asyncio-eventloop.rst:1531 +#: library/asyncio-eventloop.rst:1534 msgid "" "Prior to Python 3.7 ``Server.sockets`` used to return an internal list of " "server sockets directly. In 3.7 a copy of that list is returned." msgstr "" -#: library/asyncio-eventloop.rst:1541 +#: library/asyncio-eventloop.rst:1544 msgid "Event Loop Implementations" msgstr "" -#: library/asyncio-eventloop.rst:1543 +#: library/asyncio-eventloop.rst:1546 msgid "" "asyncio ships with two different event loop implementations: :class:" "`SelectorEventLoop` and :class:`ProactorEventLoop`." msgstr "" -#: library/asyncio-eventloop.rst:1546 +#: library/asyncio-eventloop.rst:1549 msgid "" "By default asyncio is configured to use :class:`SelectorEventLoop` on Unix " "and :class:`ProactorEventLoop` on Windows." msgstr "" -#: library/asyncio-eventloop.rst:1552 +#: library/asyncio-eventloop.rst:1555 msgid "An event loop based on the :mod:`selectors` module." msgstr "" -#: library/asyncio-eventloop.rst:1554 +#: library/asyncio-eventloop.rst:1557 msgid "" "Uses the most efficient *selector* available for the given platform. It is " "also possible to manually configure the exact selector implementation to be " "used::" msgstr "" -#: library/asyncio-eventloop.rst:1569 +#: library/asyncio-eventloop.rst:1572 msgid ":ref:`Availability `: Unix, Windows." msgstr "" -#: library/asyncio-eventloop.rst:1574 +#: library/asyncio-eventloop.rst:1577 msgid "An event loop for Windows that uses \"I/O Completion Ports\" (IOCP)." msgstr "" -#: library/asyncio-eventloop.rst:1577 +#: library/asyncio-eventloop.rst:1580 msgid ":ref:`Availability `: Windows." msgstr "" -#: library/asyncio-eventloop.rst:1580 +#: library/asyncio-eventloop.rst:1583 msgid "" "`MSDN documentation on I/O Completion Ports `_." msgstr "" -#: library/asyncio-eventloop.rst:1586 +#: library/asyncio-eventloop.rst:1589 msgid "Abstract base class for asyncio-compliant event loops." msgstr "" -#: library/asyncio-eventloop.rst:1588 +#: library/asyncio-eventloop.rst:1591 msgid "" "The :ref:`asyncio-event-loop-methods` section lists all methods that an " "alternative implementation of ``AbstractEventLoop`` should have defined." msgstr "" -#: library/asyncio-eventloop.rst:1594 +#: library/asyncio-eventloop.rst:1597 msgid "Examples" msgstr "" -#: library/asyncio-eventloop.rst:1596 +#: library/asyncio-eventloop.rst:1599 msgid "" "Note that all examples in this section **purposefully** show how to use the " "low-level event loop APIs, such as :meth:`loop.run_forever` and :meth:`loop." @@ -1953,70 +1958,70 @@ msgid "" "consider using the high-level functions like :func:`asyncio.run`." msgstr "" -#: library/asyncio-eventloop.rst:1606 +#: library/asyncio-eventloop.rst:1609 msgid "Hello World with call_soon()" msgstr "" -#: library/asyncio-eventloop.rst:1608 +#: library/asyncio-eventloop.rst:1611 msgid "" "An example using the :meth:`loop.call_soon` method to schedule a callback. " "The callback displays ``\"Hello World\"`` and then stops the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1632 +#: library/asyncio-eventloop.rst:1635 msgid "" "A similar :ref:`Hello World ` example created with a coroutine " "and the :func:`run` function." msgstr "" -#: library/asyncio-eventloop.rst:1639 +#: library/asyncio-eventloop.rst:1642 msgid "Display the current date with call_later()" msgstr "" -#: library/asyncio-eventloop.rst:1641 +#: library/asyncio-eventloop.rst:1644 msgid "" "An example of a callback displaying the current date every second. The " "callback uses the :meth:`loop.call_later` method to reschedule itself after " "5 seconds, and then stops the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1669 +#: library/asyncio-eventloop.rst:1672 msgid "" "A similar :ref:`current date ` example created with a " "coroutine and the :func:`run` function." msgstr "" -#: library/asyncio-eventloop.rst:1676 +#: library/asyncio-eventloop.rst:1679 msgid "Watch a file descriptor for read events" msgstr "" -#: library/asyncio-eventloop.rst:1678 +#: library/asyncio-eventloop.rst:1681 msgid "" "Wait until a file descriptor received some data using the :meth:`loop." "add_reader` method and then close the event loop::" msgstr "" -#: library/asyncio-eventloop.rst:1716 +#: library/asyncio-eventloop.rst:1719 msgid "" "A similar :ref:`example ` using " "transports, protocols, and the :meth:`loop.create_connection` method." msgstr "" -#: library/asyncio-eventloop.rst:1720 +#: library/asyncio-eventloop.rst:1723 msgid "" "Another similar :ref:`example ` " "using the high-level :func:`asyncio.open_connection` function and streams." msgstr "" -#: library/asyncio-eventloop.rst:1728 +#: library/asyncio-eventloop.rst:1731 msgid "Set signal handlers for SIGINT and SIGTERM" msgstr "" -#: library/asyncio-eventloop.rst:1730 +#: library/asyncio-eventloop.rst:1733 msgid "(This ``signals`` example only works on Unix.)" msgstr "" -#: library/asyncio-eventloop.rst:1732 +#: library/asyncio-eventloop.rst:1735 msgid "" "Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using " "the :meth:`loop.add_signal_handler` method::" diff --git a/library/asyncio-exceptions.po b/library/asyncio-exceptions.po index ae066ed81..433e96da9 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-future.po b/library/asyncio-future.po index e242c7b26..a2829912a 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index 5aa8390a6..9b5741037 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-platforms.po b/library/asyncio-platforms.po index 43d0c183e..4eaec5823 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index 2cc45c792..ed47e9e0c 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index c4911f161..a9c9e4579 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-queue.po b/library/asyncio-queue.po index e12026ca8..95d6511bd 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 7c0c36d7b..b97267f35 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index 104ac81e6..f446f2a18 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index b0b2365a3..01506294b 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 1a76137c9..582a24ed6 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncio.po b/library/asyncio.po index 3c75c6da5..724572ec2 100644 --- a/library/asyncio.po +++ b/library/asyncio.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/asyncore.po b/library/asyncore.po index 53bc2eceb..a729ffed2 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/atexit.po b/library/atexit.po index ebafb51c4..1d0fdcecd 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/audioop.po b/library/audioop.po index fb3ec9a39..3b173f233 100644 --- a/library/audioop.po +++ b/library/audioop.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -137,9 +137,8 @@ msgstr "" #: library/audioop.rst:120 msgid "" "Search *fragment* for a slice of length *length* samples (not bytes!) with " -"maximum energy, i.e., return *i* for which ``rms(fragment[i*2:" -"(i+length)*2])`` is maximal. The fragments should both contain 2-byte " -"samples." +"maximum energy, i.e., return *i* for which ``rms(fragment[i*2:(i" +"+length)*2])`` is maximal. The fragments should both contain 2-byte samples." msgstr "" #: library/audioop.rst:124 diff --git a/library/audit_events.po b/library/audit_events.po index 3f069fec0..24dd5dbdf 100644 --- a/library/audit_events.po +++ b/library/audit_events.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/base64.po b/library/base64.po index 8d162565c..538034d4f 100644 --- a/library/base64.po +++ b/library/base64.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/bdb.po b/library/bdb.po index f89bb3121..41d7cade4 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/binary.po b/library/binary.po index 7390e8952..cb4a0342c 100644 --- a/library/binary.po +++ b/library/binary.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/binascii.po b/library/binascii.po index ee171309c..ba919eb83 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/binhex.po b/library/binhex.po index 88a5cb6e5..710887d85 100644 --- a/library/binhex.po +++ b/library/binhex.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/bisect.po b/library/bisect.po index 97030a897..dcf57ce5c 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/builtins.po b/library/builtins.po index 2b3d94daf..b94a9b85f 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/bz2.po b/library/bz2.po index 61dcf1465..69524accd 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -374,8 +374,8 @@ msgstr "" #: library/bz2.rst:305 msgid "" -"The example above uses a very \"nonrandom\" stream of data (a stream of " -"``b\"z\"`` chunks). Random data tends to compress poorly, while ordered, " +"The example above uses a very \"nonrandom\" stream of data (a stream of ``b" +"\"z\"`` chunks). Random data tends to compress poorly, while ordered, " "repetitive data usually yields a high compression ratio." msgstr "" diff --git a/library/calendar.po b/library/calendar.po index 793c30016..78436573e 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/cgi.po b/library/cgi.po index b4750aa09..0163c6cc0 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/cgitb.po b/library/cgitb.po index c26c3e3b4..da0cb02fd 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -71,8 +71,8 @@ msgid "" "argument *context* is the number of lines of context to display around the " "current line of source code in the traceback; this defaults to ``5``. If the " "optional argument *format* is ``\"html\"``, the output is formatted as " -"HTML. Any other value forces plain text output. The default value is " -"``\"html\"``." +"HTML. Any other value forces plain text output. The default value is ``" +"\"html\"``." msgstr "" #: library/cgitb.rst:64 diff --git a/library/chunk.po b/library/chunk.po index fbd320c3e..9a7bbbc50 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/cmath.po b/library/cmath.po index 4e332b747..6a394500a 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/cmd.po b/library/cmd.po index 43a74402f..b2ae1c8ce 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -132,8 +132,8 @@ msgid "" "method, called with an argument ``'bar'``, invokes the corresponding method :" "meth:`help_bar`, and if that is not present, prints the docstring of :meth:" "`do_bar`, if available. With no argument, :meth:`do_help` lists all " -"available help topics (that is, all commands with corresponding :meth:" -"`help_\\*` methods or commands that have docstrings), and also lists any " +"available help topics (that is, all commands with corresponding :meth:`help_" +"\\*` methods or commands that have docstrings), and also lists any " "undocumented commands." msgstr "" diff --git a/library/code.po b/library/code.po index 31bea362e..cdd1a5326 100644 --- a/library/code.po +++ b/library/code.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/codecs.po b/library/codecs.po index 4a7c69b53..70d3f2c67 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -413,10 +413,10 @@ msgstr "" #: library/codecs.rst:351 msgid "" -"On decoding, replace byte with individual surrogate code ranging from " -"``U+DC80`` to ``U+DCFF``. This code will then be turned back into the same " -"byte when the ``'surrogateescape'`` error handler is used when encoding the " -"data. (See :pep:`383` for more.)" +"On decoding, replace byte with individual surrogate code ranging from ``U" +"+DC80`` to ``U+DCFF``. This code will then be turned back into the same byte " +"when the ``'surrogateescape'`` error handler is used when encoding the data. " +"(See :pep:`383` for more.)" msgstr "" #: library/codecs.rst:365 @@ -581,8 +581,8 @@ msgstr "" #: library/codecs.rst:476 msgid "" "Malformed data is replaced by a backslashed escape sequence. On encoding, " -"use the hexadecimal form of Unicode code point with formats ``\\xhh`` " -"``\\uxxxx`` ``\\Uxxxxxxxx``. On decoding, use the hexadecimal form of byte " +"use the hexadecimal form of Unicode code point with formats ``\\xhh`` ``" +"\\uxxxx`` ``\\Uxxxxxxxx``. On decoding, use the hexadecimal form of byte " "value with format ``\\xhh``." msgstr "" @@ -1141,8 +1141,8 @@ msgstr "" #: library/codecs.rst:920 msgid "" -"Strings are stored internally as sequences of code points in range " -"``U+0000``--``U+10FFFF``. (See :pep:`393` for more details about the " +"Strings are stored internally as sequences of code points in range ``U" +"+0000``--``U+10FFFF``. (See :pep:`393` for more details about the " "implementation.) Once a string object is used outside of CPU and memory, " "endianness and how these arrays are stored as bytes become an issue. As with " "other codecs, serialising a string into a sequence of bytes is known as " @@ -2179,7 +2179,7 @@ msgstr "" msgid "U32, utf32" msgstr "" -#: library/codecs.rst:1274 library/codecs.rst:1278 library/codecs.rst:1282 +#: library/codecs.rst:1274library/codecs.rst:1278 library/codecs.rst:1282 #: library/codecs.rst:1286 library/codecs.rst:1288 msgid "all languages" msgstr "" diff --git a/library/codeop.po b/library/codeop.po index 9de2eacbb..50f5d96de 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/collections.abc.po b/library/collections.abc.po index d64b4040e..ffd87ed93 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/collections.po b/library/collections.po index c01bdd018..b523ad213 100644 --- a/library/collections.po +++ b/library/collections.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/colorsys.po b/library/colorsys.po index 7cce73b9a..d6169d763 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/compileall.po b/library/compileall.po index 41683102f..8120fd1aa 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/concurrency.po b/library/concurrency.po index 88fa88005..28fbfa152 100644 --- a/library/concurrency.po +++ b/library/concurrency.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index 9b5437c90..dc0381af7 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/concurrent.po b/library/concurrent.po index cf8a4ff08..fdd500f24 100644 --- a/library/concurrent.po +++ b/library/concurrent.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/configparser.po b/library/configparser.po index bf66492e7..bba727129 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -239,8 +239,8 @@ msgstr "" #: library/configparser.rst:360 msgid "" -"With ``interpolation`` set to ``None``, the parser would simply return " -"``%(my_dir)s/Pictures`` as the value of ``my_pictures`` and ``%(home_dir)s/" +"With ``interpolation`` set to ``None``, the parser would simply return ``" +"%(my_dir)s/Pictures`` as the value of ``my_pictures`` and ``%(home_dir)s/" "lumberjack`` as the value of ``my_dir``." msgstr "" @@ -520,8 +520,8 @@ msgstr "" #: library/configparser.rst:665 msgid "" -"*default_section*, default value: ``configparser.DEFAULTSECT`` (that is: " -"``\"DEFAULT\"``)" +"*default_section*, default value: ``configparser.DEFAULTSECT`` (that is: ``" +"\"DEFAULT\"``)" msgstr "" #: library/configparser.rst:668 @@ -530,8 +530,8 @@ msgid "" "sections or interpolation purposes is a powerful concept of this library, " "letting users create complex declarative configurations. This section is " "normally called ``\"DEFAULT\"`` but this can be customized to point to any " -"other valid section name. Some typical values include: ``\"general\"`` or " -"``\"common\"``. The name provided is used for recognizing default sections " +"other valid section name. Some typical values include: ``\"general\"`` or ``" +"\"common\"``. The name provided is used for recognizing default sections " "when reading from any source and is used when writing configuration back to " "a file. Its current value can be retrieved using the ``parser_instance." "default_section`` attribute and may be modified at runtime (i.e. to convert " diff --git a/library/constants.po b/library/constants.po index d379906b6..ac48a587f 100644 --- a/library/constants.po +++ b/library/constants.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/contextlib.po b/library/contextlib.po index d3ecf9114..0a038bcdb 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -768,12 +768,12 @@ msgstr "" #: library/contextlib.rst:939 msgid "" -"Distinct from both single use and reentrant context managers are " -"\"reusable\" context managers (or, to be completely explicit, \"reusable, " -"but not reentrant\" context managers, since reentrant context managers are " -"also reusable). These context managers support being used multiple times, " -"but will fail (or otherwise not work correctly) if the specific context " -"manager instance has already been used in a containing with statement." +"Distinct from both single use and reentrant context managers are \"reusable" +"\" context managers (or, to be completely explicit, \"reusable, but not " +"reentrant\" context managers, since reentrant context managers are also " +"reusable). These context managers support being used multiple times, but " +"will fail (or otherwise not work correctly) if the specific context manager " +"instance has already been used in a containing with statement." msgstr "" #: library/contextlib.rst:946 diff --git a/library/contextvars.po b/library/contextvars.po index c15c0ea19..48d8f6bd9 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/copy.po b/library/copy.po index 96e8d8442..44d97b0d5 100644 --- a/library/copy.po +++ b/library/copy.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/copyreg.po b/library/copyreg.po index b69f58ea9..cffbf43a5 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/crypt.po b/library/crypt.po index 1a1293d7d..7bdab2473 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -129,11 +129,11 @@ msgstr "" #: library/crypt.rst:107 msgid "" -"*salt* (either a random 2 or 16 character string, possibly prefixed with " -"``$digit$`` to indicate the method) which will be used to perturb the " +"*salt* (either a random 2 or 16 character string, possibly prefixed with ``" +"$digit$`` to indicate the method) which will be used to perturb the " "encryption algorithm. The characters in *salt* must be in the set ``[./a-zA-" -"Z0-9]``, with the exception of Modular Crypt Format which prefixes a " -"``$digit$``." +"Z0-9]``, with the exception of Modular Crypt Format which prefixes a ``$digit" +"$``." msgstr "" #: library/crypt.rst:113 diff --git a/library/crypto.po b/library/crypto.po index 7d7aa3ce6..fd81471f4 100644 --- a/library/crypto.po +++ b/library/crypto.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/csv.po b/library/csv.po index 0015b780c..e75f91bbe 100644 --- a/library/csv.po +++ b/library/csv.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/ctypes.po b/library/ctypes.po index 74e1cc54d..8a81730a1 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/curses.ascii.po b/library/curses.ascii.po index 2ade8da82..ef639b95c 100644 --- a/library/curses.ascii.po +++ b/library/curses.ascii.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/curses.panel.po b/library/curses.panel.po index 07ef42e22..552d68ae0 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/curses.po b/library/curses.po index e897decac..811be368c 100644 --- a/library/curses.po +++ b/library/curses.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/custominterp.po b/library/custominterp.po index 6298aa264..51a5ae6f9 100644 --- a/library/custominterp.po +++ b/library/custominterp.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/dataclasses.po b/library/dataclasses.po index 2f1a08209..c1dc3f1f0 100644 --- a/library/dataclasses.po +++ b/library/dataclasses.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/datatypes.po b/library/datatypes.po index 14defe5ee..9958cf0d5 100644 --- a/library/datatypes.po +++ b/library/datatypes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/datetime.po b/library/datetime.po index 3ab897468..bc235701b 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -152,9 +152,9 @@ msgstr "" #: library/datetime.rst:101 msgid "" "An idealized time, independent of any particular day, assuming that every " -"day has exactly 24\\*60\\*60 seconds. (There is no notion of \"leap " -"seconds\" here.) Attributes: :attr:`hour`, :attr:`minute`, :attr:`second`, :" -"attr:`microsecond`, and :attr:`.tzinfo`." +"day has exactly 24\\*60\\*60 seconds. (There is no notion of \"leap seconds" +"\" here.) Attributes: :attr:`hour`, :attr:`minute`, :attr:`second`, :attr:" +"`microsecond`, and :attr:`.tzinfo`." msgstr "" #: library/datetime.rst:110 @@ -349,7 +349,8 @@ msgid "" "example::" msgstr "" -#: library/datetime.rst:544 library/datetime.rst:1669 library/datetime.rst:2262 +#: library/datetime.rst:544 library/datetime.rst:1669 +#: library/datetime.rst:2262 msgid "Class attributes:" msgstr "" diff --git a/library/dbm.po b/library/dbm.po index ad3421f98..24733aaa6 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/debug.po b/library/debug.po index cd8fcff5c..97366be66 100644 --- a/library/debug.po +++ b/library/debug.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/decimal.po b/library/decimal.po index 2ae257702..47476d77e 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -991,9 +991,9 @@ msgstr "" #: library/decimal.rst:988 msgid "" -"The default values are :attr:`prec`\\ =\\ :const:`28`, :attr:`rounding`\\ " -"=\\ :const:`ROUND_HALF_EVEN`, and enabled traps for :class:`Overflow`, :" -"class:`InvalidOperation`, and :class:`DivisionByZero`." +"The default values are :attr:`prec`\\ =\\ :const:`28`, :attr:`rounding`\\ =" +"\\ :const:`ROUND_HALF_EVEN`, and enabled traps for :class:`Overflow`, :class:" +"`InvalidOperation`, and :class:`DivisionByZero`." msgstr "" #: library/decimal.rst:993 diff --git a/library/development.po b/library/development.po index ced96b2d2..eb0836574 100644 --- a/library/development.po +++ b/library/development.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/devmode.po b/library/devmode.po index 62105d54b..0f74ac39a 100644 --- a/library/devmode.po +++ b/library/devmode.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/dialog.po b/library/dialog.po index 01869d0c2..10ba071ca 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/difflib.po b/library/difflib.po index 2bb57342a..19340fbf7 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -541,8 +541,8 @@ msgstr "" #: library/difflib.rst:468 msgid "" "Return list of triples describing non-overlapping matching subsequences. " -"Each triple is of the form ``(i, j, n)``, and means that ``a[i:i+n] == b[j:" -"j+n]``. The triples are monotonically increasing in *i* and *j*." +"Each triple is of the form ``(i, j, n)``, and means that ``a[i:i+n] == b[j:j" +"+n]``. The triples are monotonically increasing in *i* and *j*." msgstr "" #: library/difflib.rst:473 diff --git a/library/dis.po b/library/dis.po index b39f95f9a..6c518846d 100644 --- a/library/dis.po +++ b/library/dis.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/distribution.po b/library/distribution.po index e30e58871..efa8b303c 100644 --- a/library/distribution.po +++ b/library/distribution.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/distutils.po b/library/distutils.po index 5dcd90c00..9ffd2d769 100644 --- a/library/distutils.po +++ b/library/distutils.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/doctest.po b/library/doctest.po index 647f3a284..d0db4292e 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -960,8 +960,8 @@ msgstr "" #: library/doctest.rst:956 msgid "" -"Optional argument *name* is used in failure messages, and defaults to " -"``\"NoName\"``." +"Optional argument *name* is used in failure messages, and defaults to ``" +"\"NoName\"``." msgstr "" #: library/doctest.rst:959 diff --git a/library/email.charset.po b/library/email.charset.po index 8b85c17b5..06ab5ac26 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index e470f6323..e1de4acc0 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -111,7 +111,8 @@ msgid "" "*policy* will be passed to the ``Generator``." msgstr "" -#: library/email.compat32-message.rst:79 library/email.compat32-message.rst:121 +#: library/email.compat32-message.rst:79 +#: library/email.compat32-message.rst:121 msgid "" "Flattening the message may trigger changes to the :class:`Message` if " "defaults need to be filled in to complete the transformation to a string " diff --git a/library/email.contentmanager.po b/library/email.contentmanager.po index f391e713d..942c24612 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.encoders.po b/library/email.encoders.po index eaa92657d..85483f457 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.errors.po b/library/email.errors.po index 7fdf7a2fc..c928bb67a 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.examples.po b/library/email.examples.po index 0819e37fc..483be0b4f 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.generator.po b/library/email.generator.po index 382b9d984..cad943da5 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.header.po b/library/email.header.po index c6ee484d2..c6e8426ac 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -202,9 +202,9 @@ msgstr "" #: library/email.header.rst:138 msgid "" "*linesep* specifies the characters used to separate the lines of the folded " -"header. It defaults to the most useful value for Python application code " -"(``\\n``), but ``\\r\\n`` can be specified in order to produce headers with " -"RFC-compliant line separators." +"header. It defaults to the most useful value for Python application code (``" +"\\n``), but ``\\r\\n`` can be specified in order to produce headers with RFC-" +"compliant line separators." msgstr "" #: library/email.header.rst:143 diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 5123ad1f2..d89ea5666 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -179,8 +179,8 @@ msgstr "" msgid "" ":rfc:`5322` specifies a very specific format for dates within email headers. " "The ``DateHeader`` parser recognizes that date format, as well as " -"recognizing a number of variant forms that are sometimes found \"in the " -"wild\"." +"recognizing a number of variant forms that are sometimes found \"in the wild" +"\"." msgstr "" #: library/email.headerregistry.rst:146 library/email.headerregistry.rst:188 diff --git a/library/email.iterators.po b/library/email.iterators.po index 42fa88a0f..4a53c4ed4 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.message.po b/library/email.message.po index 30733d504..22684d733 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.mime.po b/library/email.mime.po index da7930262..0b25a26d9 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.parser.po b/library/email.parser.po index 2a7cb44e4..dfaa2f7d2 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.po b/library/email.po index 3c4503a0c..2203e1507 100644 --- a/library/email.po +++ b/library/email.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/email.policy.po b/library/email.policy.po index 4fc7724fe..284add33d 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -597,8 +597,8 @@ msgstr "" #: library/email.policy.rst:520 msgid "" "An instance of ``EmailPolicy`` with all defaults unchanged. This policy " -"uses the standard Python ``\\n`` line endings rather than the RFC-correct " -"``\\r\\n``." +"uses the standard Python ``\\n`` line endings rather than the RFC-correct ``" +"\\r\\n``." msgstr "" #: library/email.policy.rst:527 diff --git a/library/email.utils.po b/library/email.utils.po index 272a20cce..90d311914 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/ensurepip.po b/library/ensurepip.po index 3aa11960f..2820fa7f9 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/enum.po b/library/enum.po index 964d66a59..21f2f3b73 100644 --- a/library/enum.po +++ b/library/enum.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -677,8 +677,8 @@ msgstr "" #: library/enum.rst:748 msgid "" "%-style formatting: `%s` and `%r` call the :class:`Enum` class's :meth:" -"`__str__` and :meth:`__repr__` respectively; other codes (such as `%i` or " -"`%h` for IntEnum) treat the enum member as its mixed-in type." +"`__str__` and :meth:`__repr__` respectively; other codes (such as `%i` or `" +"%h` for IntEnum) treat the enum member as its mixed-in type." msgstr "" #: library/enum.rst:751 diff --git a/library/errno.po b/library/errno.po index 6803804e9..875972e4c 100644 --- a/library/errno.po +++ b/library/errno.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/exceptions.po b/library/exceptions.po index e710cdb6d..48c8e2466 100644 --- a/library/exceptions.po +++ b/library/exceptions.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -33,9 +33,9 @@ msgstr "" #: library/exceptions.rst:19 msgid "" "The built-in exceptions listed below can be generated by the interpreter or " -"built-in functions. Except where mentioned, they have an \"associated " -"value\" indicating the detailed cause of the error. This may be a string or " -"a tuple of several items of information (e.g., an error code and a string " +"built-in functions. Except where mentioned, they have an \"associated value" +"\" indicating the detailed cause of the error. This may be a string or a " +"tuple of several items of information (e.g., an error code and a string " "explaining the code). The associated value is usually passed as arguments " "to the exception class's constructor." msgstr "" @@ -353,8 +353,8 @@ msgstr "" #: library/exceptions.rst:308 msgid "" "This exception is raised when a system function returns a system-related " -"error, including I/O failures such as \"file not found\" or \"disk " -"full\" (not for illegal argument types or other incidental errors)." +"error, including I/O failures such as \"file not found\" or \"disk full" +"\" (not for illegal argument types or other incidental errors)." msgstr "" #: library/exceptions.rst:312 diff --git a/library/faulthandler.po b/library/faulthandler.po index a59bfdf61..8ebc72fb1 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/fcntl.po b/library/fcntl.po index 6c2712256..159144fdc 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/filecmp.po b/library/filecmp.po index b9c5b778f..32e296b9e 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/fileformats.po b/library/fileformats.po index 4e37622fa..03c6efeec 100644 --- a/library/fileformats.po +++ b/library/fileformats.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/fileinput.po b/library/fileinput.po index 145456a0e..2b7112cfb 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/filesys.po b/library/filesys.po index 0dcfdb308..15915ac64 100644 --- a/library/filesys.po +++ b/library/filesys.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/fnmatch.po b/library/fnmatch.po index ca09b5c49..b76e65c0a 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/fractions.po b/library/fractions.po index 640b09d5a..1b721e748 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/frameworks.po b/library/frameworks.po index f768c7020..b4467a4a2 100644 --- a/library/frameworks.po +++ b/library/frameworks.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/ftplib.po b/library/ftplib.po index 4ddc16bfb..5d32a8430 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/functional.po b/library/functional.po index 234fe817a..bfb3d76c7 100644 --- a/library/functional.po +++ b/library/functional.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/functions.po b/library/functions.po index 574c222e9..388436afb 100644 --- a/library/functions.po +++ b/library/functions.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-07-10 23:37+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" @@ -511,8 +511,8 @@ msgstr "" "procedure ` kullanılarak boolean veri tipine dönüştürülür. *x* " "yanlışsa veya atlanırsa, bu ``False`` döndürür; aksi takdirde, ``True`` " "değerini döndürür. :class:`bool` sınıfı :class:`int` öğesinin bir alt " -"sınıfıdır (bkz. :ref:`typesnumeric`). Daha fazla alt sınıfa ayrılamaz. " -"Bunun tek örnekleri ``False`` ve ``True`` 'dur (bkz. :ref:`bltin-boolean-values`)." +"sınıfıdır (bkz. :ref:`typesnumeric`). Daha fazla alt sınıfa ayrılamaz. Bunun " +"tek örnekleri ``False`` ve ``True`` 'dur (bkz. :ref:`bltin-boolean-values`)." #: library/functions.rst:675 library/functions.rst:892 msgid "*x* is now a positional-only parameter." @@ -833,10 +833,10 @@ msgid "" "``__debug__`` is false) or ``2`` (docstrings are removed too)." msgstr "" "*optimize* argümanı derleyicinin optimizasyon seviyesini belirler; ``-1`` " -"varsayılan değeri, :option:`-O` seçenekleri tarafından verilen yorumlayıcının " -"optimizasyon seviyesini seçer. Belli seviyeler: ``0`` (optimizasyon yok; " -"``__debug__`` doğru), ``1`` (iddialar kaldırılır, ``__debug__`` yanlış) veya " -"``2`` (Ekstradan doküman dizeleri de kaldırıldı)." +"varsayılan değeri, :option:`-O` seçenekleri tarafından verilen " +"yorumlayıcının optimizasyon seviyesini seçer. Belli seviyeler: ``0`` " +"(optimizasyon yok; ``__debug__`` doğru), ``1`` (iddialar kaldırılır, " +"``__debug__`` yanlış) veya ``2`` (Ekstradan doküman dizeleri de kaldırıldı)." #: library/functions.rst:318 msgid "" @@ -1385,9 +1385,9 @@ msgid "" "spellings for positive infinity." msgstr "" ":ref:`floating` kısmında açıklanan ``floatnumber``, Python floating-point " -"tanımının farklı bir biçimidir. Durum önemli değildir, örneğin \"inf\", " -"\"Inf\", \"INFINITY\" ve \"iNfINity\" hepsi pozitif sonsuz için kabul " -"edilebilir yazımlardır." +"tanımının farklı bir biçimidir. Durum önemli değildir, örneğin \"inf\", \"Inf" +"\", \"INFINITY\" ve \"iNfINity\" hepsi pozitif sonsuz için kabul edilebilir " +"yazımlardır." #: library/functions.rst:646 msgid "" @@ -2193,9 +2193,9 @@ msgid "" "Modes ``'w+'`` and ``'w+b'`` open and truncate the file. Modes ``'r+'`` and " "``'r+b'`` open the file with no truncation." msgstr "" -"Varsayılan mod ``'r'`` (okumaya açık, ``'rt'`` 'nin eşanlamlısı.) 'dir. " -"``'w+'`` ve ``'w+b'`` modları dosyayı açar ve temizlerler. ``'r+'`` ve " -"``'r+b'`` modları dosyayı temizlemeden açarlar." +"Varsayılan mod ``'r'`` (okumaya açık, ``'rt'`` 'nin eşanlamlısı.) 'dir. ``'w" +"+'`` ve ``'w+b'`` modları dosyayı açar ve temizlerler. ``'r+'`` ve ``'r+b'`` " +"modları dosyayı temizlemeden açarlar." #: library/functions.rst:1161 msgid "" @@ -2733,9 +2733,9 @@ msgstr "" #: library/functions.rst:1467 msgid "" -"The ``@property`` decorator turns the :meth:`voltage` method into a " -"\"getter\" for a read-only attribute with the same name, and it sets the " -"docstring for *voltage* to \"Get the current voltage.\"" +"The ``@property`` decorator turns the :meth:`voltage` method into a \"getter" +"\" for a read-only attribute with the same name, and it sets the docstring " +"for *voltage* to \"Get the current voltage.\"" msgstr "" "``@property`` dekoratörü :meth:`voltage` metodunu aynı isimli salt-okunur " "bir özellik için \"getter\" metoduna dönüştürür ve *voltage* için doküman " @@ -2780,8 +2780,9 @@ msgid "" "Rather than being a function, :class:`range` is actually an immutable " "sequence type, as documented in :ref:`typesseq-range` and :ref:`typesseq`." msgstr "" -"Bir metot olmaktansa, :class:`range` aslında bir değiştirilemez dizi tipidir. " -"Daha fazla bilgi için :ref:`typesseq-range` ve :ref:`typesseq` 'e bakınız." +"Bir metot olmaktansa, :class:`range` aslında bir değiştirilemez dizi " +"tipidir. Daha fazla bilgi için :ref:`typesseq-range` ve :ref:`typesseq` 'e " +"bakınız." #: library/functions.rst:1515 #, fuzzy @@ -3144,8 +3145,8 @@ msgid "" "The *object-or-type* determines the :term:`method resolution order` to be " "searched. The search starts from the class right after the *type*." msgstr "" -"*object-or-type* aranacak :term:`yöntem çözümleme sırası ` 'nı belirler. " -"Arama *type* 'dan sonraki ilk sınıftan başlar." +"*object-or-type* aranacak :term:`yöntem çözümleme sırası ` 'nı belirler. Arama *type* 'dan sonraki ilk sınıftan başlar." #: library/functions.rst:1724 msgid "" @@ -3240,9 +3241,9 @@ msgstr "" ":func:`super` 'ın, ``super().__getitem__(name)`` gibi açık noktalı öznitelik " "aramaları için bağlayan işlemin bir parçası olarak uygulanır. Sınıfları " "işbirlikli çoklu kalıtımı destekleyen tahmin edilebilir bir sırada aramak " -"için kendi :meth:`__getattribute__` metodunu sağlar. Bu nedenle :func:`super`, ifadeler " -"veya ``super()[name]`` gibi operatörler kullanarak kesin aramalar için " -"tanımsızdır." +"için kendi :meth:`__getattribute__` metodunu sağlar. Bu nedenle :func:" +"`super`, ifadeler veya ``super()[name]`` gibi operatörler kullanarak kesin " +"aramalar için tanımsızdır." #: library/functions.rst:1771 msgid "" diff --git a/library/functools.po b/library/functools.po index 6e7e5e2ff..b8f795fd4 100644 --- a/library/functools.po +++ b/library/functools.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -310,11 +310,11 @@ msgstr "" #: library/functools.rst:322 msgid "" -"The :func:`partial` is used for partial function application which " -"\"freezes\" some portion of a function's arguments and/or keywords resulting " -"in a new object with a simplified signature. For example, :func:`partial` " -"can be used to create a callable that behaves like the :func:`int` function " -"where the *base* argument defaults to two:" +"The :func:`partial` is used for partial function application which \"freezes" +"\" some portion of a function's arguments and/or keywords resulting in a new " +"object with a simplified signature. For example, :func:`partial` can be " +"used to create a callable that behaves like the :func:`int` function where " +"the *base* argument defaults to two:" msgstr "" #: library/functools.rst:337 diff --git a/library/gc.po b/library/gc.po index 81e5102f7..0c7e4f13b 100644 --- a/library/gc.po +++ b/library/gc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/getopt.po b/library/getopt.po index f9b77af44..618519617 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/getpass.po b/library/getpass.po index 82c08e1e7..3d8440239 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/gettext.po b/library/gettext.po index 0519fa869..30b50b3e6 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/glob.po b/library/glob.po index 9b1543919..ffb3d660f 100644 --- a/library/glob.po +++ b/library/glob.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/graphlib.po b/library/graphlib.po index c7d6be0ed..0e5304539 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/grp.po b/library/grp.po index 87d699a0d..e3a37079f 100644 --- a/library/grp.po +++ b/library/grp.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/gzip.po b/library/gzip.po index ec6af715a..f84bc8a18 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/hashlib.po b/library/hashlib.po index b5c6a7108..50a6a4023 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -42,8 +42,8 @@ msgstr "" #: library/hashlib.rst:37 msgid "" -"Some algorithms have known hash collision weaknesses, refer to the \"See " -"also\" section at the end." +"Some algorithms have known hash collision weaknesses, refer to the \"See also" +"\" section at the end." msgstr "" #: library/hashlib.rst:44 @@ -250,8 +250,8 @@ msgid "" "Key derivation and key stretching algorithms are designed for secure " "password hashing. Naive algorithms such as ``sha1(password)`` are not " "resistant against brute-force attacks. A good password hashing function must " -"be tunable, slow, and include a `salt `_." +"be tunable, slow, and include a `salt `_." msgstr "" #: library/hashlib.rst:242 diff --git a/library/heapq.po b/library/heapq.po index a28da325c..e45b4a0dd 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -314,13 +314,13 @@ msgstr "" #: library/heapq.rst:275 msgid "" "A nice feature of this sort is that you can efficiently insert new items " -"while the sort is going on, provided that the inserted items are not " -"\"better\" than the last 0'th element you extracted. This is especially " -"useful in simulation contexts, where the tree holds all incoming events, and " -"the \"win\" condition means the smallest scheduled time. When an event " -"schedules other events for execution, they are scheduled into the future, so " -"they can easily go into the heap. So, a heap is a good structure for " -"implementing schedulers (this is what I used for my MIDI sequencer :-)." +"while the sort is going on, provided that the inserted items are not \"better" +"\" than the last 0'th element you extracted. This is especially useful in " +"simulation contexts, where the tree holds all incoming events, and the \"win" +"\" condition means the smallest scheduled time. When an event schedules " +"other events for execution, they are scheduled into the future, so they can " +"easily go into the heap. So, a heap is a good structure for implementing " +"schedulers (this is what I used for my MIDI sequencer :-)." msgstr "" #: library/heapq.rst:284 diff --git a/library/hmac.po b/library/hmac.po index fbef7c9ce..f9f601f05 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/html.entities.po b/library/html.entities.po index 448ffa0bb..964a7eb6f 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/html.parser.po b/library/html.parser.po index 560f62518..2a50ddb7a 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -131,8 +131,8 @@ msgstr "" #: library/html.parser.rst:129 msgid "" -"This method is called to handle the start tag of an element (e.g. ``
``)." +"This method is called to handle the start tag of an element (e.g. ``
``)." msgstr "" #: library/html.parser.rst:131 diff --git a/library/html.po b/library/html.po index e699bcac9..5650e2be4 100644 --- a/library/html.po +++ b/library/html.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -32,9 +32,9 @@ msgstr "" msgid "" "Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe " "sequences. Use this if you need to display text that might contain such " -"characters in HTML. If the optional flag *quote* is true, the characters " -"(``\"``) and (``'``) are also translated; this helps for inclusion in an " -"HTML attribute value delimited by quotes, as in ````." +"characters in HTML. If the optional flag *quote* is true, the characters (``" +"\"``) and (``'``) are also translated; this helps for inclusion in an HTML " +"attribute value delimited by quotes, as in ````." msgstr "" #: library/html.rst:26 diff --git a/library/http.client.po b/library/http.client.po index b692122ba..c9a3a90fb 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index f97921663..cd3543c06 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -628,10 +628,10 @@ msgid "" "cookie domain to be matched. For example, ``\"example.com\"`` matches a " "blocklist entry of ``\"example.com\"``, but ``\"www.example.com\"`` does " "not. Domains that do start with a dot are matched by more specific domains " -"too. For example, both ``\"www.example.com\"`` and ``\"www.coyote.example." -"com\"`` match ``\".example.com\"`` (but ``\"example.com\"`` itself does " -"not). IP addresses are an exception, and must match exactly. For example, " -"if blocked_domains contains ``\"192.168.1.2\"`` and ``\".168.1.2\"``, " +"too. For example, both ``\"www.example.com\"`` and ``\"www.coyote.example.com" +"\"`` match ``\".example.com\"`` (but ``\"example.com\"`` itself does not). " +"IP addresses are an exception, and must match exactly. For example, if " +"blocked_domains contains ``\"192.168.1.2\"`` and ``\".168.1.2\"``, " "192.168.1.2 is blocked, but 193.168.1.2 is not." msgstr "" diff --git a/library/http.cookies.po b/library/http.cookies.po index 9090205ae..07992f561 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/http.po b/library/http.po index ac6e4299c..192196939 100644 --- a/library/http.po +++ b/library/http.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/http.server.po b/library/http.server.po index 5a57050f6..b2a9382a5 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -224,8 +224,8 @@ msgstr "" #: library/http.server.rst:191 msgid "" -"This method will parse and dispatch the request to the appropriate :meth:" -"`do_\\*` method. You should never need to override it." +"This method will parse and dispatch the request to the appropriate :meth:`do_" +"\\*` method. You should never need to override it." msgstr "" #: library/http.server.rst:196 diff --git a/library/i18n.po b/library/i18n.po index e2fa25a2c..6ca30c285 100644 --- a/library/i18n.po +++ b/library/i18n.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/idle.po b/library/idle.po index ed1d39a03..07c49f6ad 100644 --- a/library/idle.po +++ b/library/idle.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/imaplib.po b/library/imaplib.po index b20b8dad5..2937c023c 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/imghdr.po b/library/imghdr.po index 4893b4499..2f6f97847 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/imp.po b/library/imp.po index 7de80deca..f9406b4a2 100644 --- a/library/imp.po +++ b/library/imp.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index a7d3f5930..3082b275c 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/importlib.po b/library/importlib.po index c9d7bd0c6..7c701bc24 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/index.po b/library/index.po index 51b33f96b..db970b03b 100644 --- a/library/index.po +++ b/library/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/inspect.po b/library/inspect.po index 5bf3a9886..0b9d7fae8 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -939,8 +939,8 @@ msgstr "" #: library/inspect.rst:663 msgid "" -"The \"return\" annotation for the callable. If the callable has no " -"\"return\" annotation, this attribute is set to :attr:`Signature.empty`." +"The \"return\" annotation for the callable. If the callable has no \"return" +"\" annotation, this attribute is set to :attr:`Signature.empty`." msgstr "" #: library/inspect.rst:668 diff --git a/library/internet.po b/library/internet.po index 2c3df5201..2f7f9aef9 100644 --- a/library/internet.po +++ b/library/internet.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/intro.po b/library/intro.po index 559c8d35b..cbf15f8fd 100644 --- a/library/intro.po +++ b/library/intro.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -26,12 +26,12 @@ msgstr "" #: library/intro.rst:9 msgid "" -"It contains data types that would normally be considered part of the " -"\"core\" of a language, such as numbers and lists. For these types, the " -"Python language core defines the form of literals and places some " -"constraints on their semantics, but does not fully define the semantics. " -"(On the other hand, the language core does define syntactic properties like " -"the spelling and priorities of operators.)" +"It contains data types that would normally be considered part of the \"core" +"\" of a language, such as numbers and lists. For these types, the Python " +"language core defines the form of literals and places some constraints on " +"their semantics, but does not fully define the semantics. (On the other " +"hand, the language core does define syntactic properties like the spelling " +"and priorities of operators.)" msgstr "" #: library/intro.rst:15 diff --git a/library/io.po b/library/io.po index ac1594e71..bb90b823b 100644 --- a/library/io.po +++ b/library/io.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -172,8 +172,8 @@ msgstr "" msgid "" "Accordingly, it is highly recommended that you specify the encoding " "explicitly when opening text files. If you want to use UTF-8, pass " -"``encoding=\"utf-8\"``. To use the current locale encoding, " -"``encoding=\"locale\"`` is supported in Python 3.10." +"``encoding=\"utf-8\"``. To use the current locale encoding, ``encoding=" +"\"locale\"`` is supported in Python 3.10." msgstr "" #: library/io.rst:134 @@ -1295,8 +1295,8 @@ msgid "" "marker (such as ``'?'``) to be inserted where there is malformed data. " "``'backslashreplace'`` causes malformed data to be replaced by a backslashed " "escape sequence. When writing, ``'xmlcharrefreplace'`` (replace with the " -"appropriate XML character reference) or ``'namereplace'`` (replace with " -"``\\N{...}`` escape sequences) can be used. Any other error handling name " +"appropriate XML character reference) or ``'namereplace'`` (replace with ``" +"\\N{...}`` escape sequences) can be used. Any other error handling name " "that has been registered with :func:`codecs.register_error` is also valid." msgstr "" diff --git a/library/ipaddress.po b/library/ipaddress.po index 2b5cdead2..b102279e0 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -651,8 +651,8 @@ msgstr "" #: library/ipaddress.rst:670 msgid "" -"It uses the same ordering and comparison algorithm as \"<\", \"==\", and " -"\">\"" +"It uses the same ordering and comparison algorithm as \"<\", \"==\", and \">" +"\"" msgstr "" #: library/ipaddress.rst:676 diff --git a/library/ipc.po b/library/ipc.po index 90c1bcd29..a6bac7ace 100644 --- a/library/ipc.po +++ b/library/ipc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/itertools.po b/library/itertools.po index bab3c1a45..dd2b2b858 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/json.po b/library/json.po index ea3714e3d..7d3e00a5c 100644 --- a/library/json.po +++ b/library/json.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/keyword.po b/library/keyword.po index a05af4fec..d4e6f7505 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/language.po b/library/language.po index 3bffd3ace..69d30470a 100644 --- a/library/language.po +++ b/library/language.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/linecache.po b/library/linecache.po index 5491c5617..52d0a5419 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/locale.po b/library/locale.po index 064a59cb5..aaff23480 100644 --- a/library/locale.po +++ b/library/locale.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/logging.config.po b/library/logging.config.po index 0f57cd41d..bc31dd009 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 27e14db9f..295e1ef13 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -526,9 +526,8 @@ msgstr "" #: library/logging.handlers.rst:398 msgid "" "The system will save old log files by appending extensions to the filename. " -"The extensions are date-and-time based, using the strftime format ``%Y-%m-" -"%d_%H-%M-%S`` or a leading portion thereof, depending on the rollover " -"interval." +"The extensions are date-and-time based, using the strftime format ``%Y-%m-%d_" +"%H-%M-%S`` or a leading portion thereof, depending on the rollover interval." msgstr "" #: library/logging.handlers.rst:403 diff --git a/library/logging.po b/library/logging.po index 20032f452..72bc39f52 100644 --- a/library/logging.po +++ b/library/logging.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1669,9 +1669,9 @@ msgstr "" msgid "" "Levels are internally integers (as they need to be compared in the logging " "logic). This function is used to convert between an integer level and the " -"level name displayed in the formatted log output by means of the " -"``%(levelname)s`` format specifier (see :ref:`logrecord-attributes`), and " -"vice versa." +"level name displayed in the formatted log output by means of the ``" +"%(levelname)s`` format specifier (see :ref:`logrecord-attributes`), and vice " +"versa." msgstr "" #: library/logging.rst:1225 diff --git a/library/lzma.po b/library/lzma.po index d527c58f9..1b8b510fe 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -66,10 +66,10 @@ msgstr "" #: library/lzma.rst:46 msgid "" -"The *mode* argument can be any of ``\"r\"``, ``\"rb\"``, ``\"w\"``, " -"``\"wb\"``, ``\"x\"``, ``\"xb\"``, ``\"a\"`` or ``\"ab\"`` for binary mode, " -"or ``\"rt\"``, ``\"wt\"``, ``\"xt\"``, or ``\"at\"`` for text mode. The " -"default is ``\"rb\"``." +"The *mode* argument can be any of ``\"r\"``, ``\"rb\"``, ``\"w\"``, ``\"wb" +"\"``, ``\"x\"``, ``\"xb\"``, ``\"a\"`` or ``\"ab\"`` for binary mode, or ``" +"\"rt\"``, ``\"wt\"``, ``\"xt\"``, or ``\"at\"`` for text mode. The default " +"is ``\"rb\"``." msgstr "" #: library/lzma.rst:95 @@ -125,8 +125,8 @@ msgstr "" msgid "" "The *mode* argument can be either ``\"r\"`` for reading (default), ``\"w\"`` " "for overwriting, ``\"x\"`` for exclusive creation, or ``\"a\"`` for " -"appending. These can equivalently be given as ``\"rb\"``, ``\"wb\"``, " -"``\"xb\"`` and ``\"ab\"`` respectively." +"appending. These can equivalently be given as ``\"rb\"``, ``\"wb\"``, ``\"xb" +"\"`` and ``\"ab\"`` respectively." msgstr "" #: library/lzma.rst:88 diff --git a/library/mailbox.po b/library/mailbox.po index 4deaa607c..5478723c0 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1094,8 +1094,9 @@ msgid "" msgstr "" #: library/mailbox.rst:930 library/mailbox.rst:1052 library/mailbox.rst:1084 -#: library/mailbox.rst:1166 library/mailbox.rst:1195 library/mailbox.rst:1309 -#: library/mailbox.rst:1423 library/mailbox.rst:1455 library/mailbox.rst:1471 +#: library/mailbox.rst:1166 library/mailbox.rst:1195 +#: library/mailbox.rst:1309 library/mailbox.rst:1423 +#: library/mailbox.rst:1455 library/mailbox.rst:1471 msgid "Resulting state" msgstr "" @@ -1107,8 +1108,9 @@ msgstr "" msgid "\"cur\" subdirectory" msgstr "" -#: library/mailbox.rst:1056 library/mailbox.rst:1088 library/mailbox.rst:1427 -#: library/mailbox.rst:1459 library/mailbox.rst:1475 +#: library/mailbox.rst:1056 library/mailbox.rst:1088 +#: library/mailbox.rst:1427 library/mailbox.rst:1459 +#: library/mailbox.rst:1475 msgid "O flag" msgstr "" @@ -1118,12 +1120,14 @@ msgid "F flag" msgstr "" #: library/mailbox.rst:921 library/mailbox.rst:953 library/mailbox.rst:1062 -#: library/mailbox.rst:1170 library/mailbox.rst:1425 library/mailbox.rst:1473 +#: library/mailbox.rst:1170 library/mailbox.rst:1425 +#: library/mailbox.rst:1473 msgid "R flag" msgstr "" -#: library/mailbox.rst:1062 library/mailbox.rst:1092 library/mailbox.rst:1186 -#: library/mailbox.rst:1433 library/mailbox.rst:1463 library/mailbox.rst:1481 +#: library/mailbox.rst:1062 library/mailbox.rst:1092 +#: library/mailbox.rst:1186 library/mailbox.rst:1433 +#: library/mailbox.rst:1463 library/mailbox.rst:1481 msgid "A flag" msgstr "" @@ -1135,8 +1139,8 @@ msgstr "" msgid "T flag" msgstr "" -#: library/mailbox.rst:1058 library/mailbox.rst:1105 library/mailbox.rst:1429 -#: library/mailbox.rst:1477 +#: library/mailbox.rst:1058 library/mailbox.rst:1105 +#: library/mailbox.rst:1429 library/mailbox.rst:1477 msgid "D flag" msgstr "" @@ -1150,8 +1154,8 @@ msgstr "" msgid ":class:`MHMessage` state" msgstr "" -#: library/mailbox.rst:1073 library/mailbox.rst:1184 library/mailbox.rst:1325 -#: library/mailbox.rst:1444 +#: library/mailbox.rst:1073 library/mailbox.rst:1184 +#: library/mailbox.rst:1325 library/mailbox.rst:1444 msgid "\"unseen\" sequence" msgstr "" @@ -1163,12 +1167,13 @@ msgstr "" msgid "no \"unseen\" sequence" msgstr "" -#: library/mailbox.rst:1075 library/mailbox.rst:1188 library/mailbox.rst:1446 +#: library/mailbox.rst:1075 library/mailbox.rst:1188 +#: library/mailbox.rst:1446 msgid "\"flagged\" sequence" msgstr "" -#: library/mailbox.rst:1077 library/mailbox.rst:1186 library/mailbox.rst:1327 -#: library/mailbox.rst:1448 +#: library/mailbox.rst:1077 library/mailbox.rst:1186 +#: library/mailbox.rst:1327 library/mailbox.rst:1448 msgid "\"replied\" sequence" msgstr "" @@ -1182,8 +1187,8 @@ msgstr "" msgid ":class:`BabylMessage` state" msgstr "" -#: library/mailbox.rst:1088 library/mailbox.rst:1294 library/mailbox.rst:1325 -#: library/mailbox.rst:1459 +#: library/mailbox.rst:1088 library/mailbox.rst:1294 +#: library/mailbox.rst:1325 library/mailbox.rst:1459 msgid "\"unseen\" label" msgstr "" @@ -1199,12 +1204,13 @@ msgstr "" msgid "\"forwarded\" or \"resent\" label" msgstr "" -#: library/mailbox.rst:1092 library/mailbox.rst:1298 library/mailbox.rst:1327 -#: library/mailbox.rst:1463 +#: library/mailbox.rst:1092 library/mailbox.rst:1298 +#: library/mailbox.rst:1327 library/mailbox.rst:1463 msgid "\"answered\" label" msgstr "" -#: library/mailbox.rst:1090 library/mailbox.rst:1314 library/mailbox.rst:1461 +#: library/mailbox.rst:1090 library/mailbox.rst:1314 +#: library/mailbox.rst:1461 msgid "\"deleted\" label" msgstr "" diff --git a/library/mailcap.po b/library/mailcap.po index e02cc5ee3..838fbc545 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/markup.po b/library/markup.po index 784b6438c..ed600f81a 100644 --- a/library/markup.po +++ b/library/markup.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/marshal.po b/library/marshal.po index d627ef114..20988391f 100644 --- a/library/marshal.po +++ b/library/marshal.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/math.po b/library/math.po index e162fa51d..8e88cd378 100644 --- a/library/math.po +++ b/library/math.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/mimetypes.po b/library/mimetypes.po index e80947e84..961e4ba27 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/mm.po b/library/mm.po index 15b56add3..b5c53272a 100644 --- a/library/mm.po +++ b/library/mm.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/mmap.po b/library/mmap.po index a90de2e47..ca01301eb 100644 --- a/library/mmap.po +++ b/library/mmap.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/modulefinder.po b/library/modulefinder.po index 2bd7e8423..ba166303e 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/modules.po b/library/modules.po index 631ffc7d8..779f2567b 100644 --- a/library/modules.po +++ b/library/modules.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/msilib.po b/library/msilib.po index 35028674f..2700a0523 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/msvcrt.po b/library/msvcrt.po index 1f1fcc33a..30d2905af 100644 --- a/library/msvcrt.po +++ b/library/msvcrt.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index aa4d6ea2e..f4bbac671 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/multiprocessing.shared_memory.po b/library/multiprocessing.shared_memory.po index 7fa1f1837..a38fc8e7f 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/netdata.po b/library/netdata.po index 500715346..eca093d96 100644 --- a/library/netdata.po +++ b/library/netdata.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/netrc.po b/library/netrc.po index a4bd9db79..0574cb66c 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/nis.po b/library/nis.po index dc2f622d7..63972346e 100644 --- a/library/nis.po +++ b/library/nis.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/nntplib.po b/library/nntplib.po index bed8bd1f9..7532d41ad 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/numbers.po b/library/numbers.po index c7270cdbe..1fd9f16ad 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/numeric.po b/library/numeric.po index 563af6d46..deaa801f1 100644 --- a/library/numeric.po +++ b/library/numeric.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/operator.po b/library/operator.po index 9c6a9651d..f675200dc 100644 --- a/library/operator.po +++ b/library/operator.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/optparse.po b/library/optparse.po index 6cbecd826..08a987877 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -150,8 +150,8 @@ msgstr "" #: library/optparse.rst:125 msgid "" -"a plus sign followed by a single letter, or a few letters, or a word, e.g. " -"``+f``, ``+rgb``" +"a plus sign followed by a single letter, or a few letters, or a word, e.g. ``" +"+f``, ``+rgb``" msgstr "" #: library/optparse.rst:128 @@ -561,10 +561,10 @@ msgstr "" #: library/optparse.rst:427 msgid "" -"All of the above examples involve setting some variable (the " -"\"destination\") when certain command-line options are seen. What happens " -"if those options are never seen? Since we didn't supply any defaults, they " -"are all set to ``None``. This is usually fine, but sometimes you want more " +"All of the above examples involve setting some variable (the \"destination" +"\") when certain command-line options are seen. What happens if those " +"options are never seen? Since we didn't supply any defaults, they are all " +"set to ``None``. This is usually fine, but sometimes you want more " "control. :mod:`optparse` lets you supply a default value for each " "destination, which is assigned before the command line is parsed." msgstr "" @@ -808,8 +808,8 @@ msgstr "" #: library/optparse.rst:692 msgid "" "Print the version message for the current program (``self.version``) to " -"*file* (default stdout). As with :meth:`print_usage`, any occurrence of " -"``%prog`` in ``self.version`` is replaced with the name of the current " +"*file* (default stdout). As with :meth:`print_usage`, any occurrence of ``" +"%prog`` in ``self.version`` is replaced with the name of the current " "program. Does nothing if ``self.version`` is empty or undefined." msgstr "" @@ -911,8 +911,8 @@ msgstr "" #: library/optparse.rst:810 msgid "" "The usage summary to print when your program is run incorrectly or with a " -"help option. When :mod:`optparse` prints the usage string, it expands " -"``%prog`` to ``os.path.basename(sys.argv[0])`` (or to ``prog`` if you passed " +"help option. When :mod:`optparse` prints the usage string, it expands ``" +"%prog`` to ``os.path.basename(sys.argv[0])`` (or to ``prog`` if you passed " "that keyword argument). To suppress a usage message, pass the special " "value :data:`optparse.SUPPRESS_USAGE`." msgstr "" @@ -946,8 +946,8 @@ msgstr "" msgid "" "A version string to print when the user supplies a version option. If you " "supply a true value for ``version``, :mod:`optparse` automatically adds a " -"version option with the single option string ``--version``. The substring " -"``%prog`` is expanded the same as for ``usage``." +"version option with the single option string ``--version``. The substring ``" +"%prog`` is expanded the same as for ``usage``." msgstr "" #: library/optparse.rst:835 @@ -1206,8 +1206,8 @@ msgstr "" #: library/optparse.rst:1011 msgid "" -"The argument type expected by this option (e.g., ``\"string\"`` or " -"``\"int\"``); the available option types are documented :ref:`here `." msgstr "" @@ -1757,11 +1757,11 @@ msgstr "" #: library/optparse.rst:1452 msgid "" "At this point, :mod:`optparse` detects that a previously added option is " -"already using the ``-n`` option string. Since ``conflict_handler`` is " -"``\"resolve\"``, it resolves the situation by removing ``-n`` from the " -"earlier option's list of option strings. Now ``--dry-run`` is the only way " -"for the user to activate that option. If the user asks for help, the help " -"message will reflect that::" +"already using the ``-n`` option string. Since ``conflict_handler`` is ``" +"\"resolve\"``, it resolves the situation by removing ``-n`` from the earlier " +"option's list of option strings. Now ``--dry-run`` is the only way for the " +"user to activate that option. If the user asks for help, the help message " +"will reflect that::" msgstr "" #: library/optparse.rst:1463 @@ -1969,8 +1969,8 @@ msgid "" "is the option string seen on the command-line that's triggering the " "callback. (If an abbreviated long option was used, ``opt_str`` will be the " "full, canonical option string---e.g. if the user puts ``--foo`` on the " -"command-line as an abbreviation for ``--foobar``, then ``opt_str`` will be " -"``\"--foobar\"``.)" +"command-line as an abbreviation for ``--foobar``, then ``opt_str`` will be ``" +"\"--foobar\"``.)" msgstr "" #: library/optparse.rst:1637 @@ -2320,10 +2320,10 @@ msgstr "" #: library/optparse.rst:1950 msgid "" -"These are overlapping sets: some default \"store\" actions are " -"``\"store\"``, ``\"store_const\"``, ``\"append\"``, and ``\"count\"``, while " -"the default \"typed\" actions are ``\"store\"``, ``\"append\"``, and " -"``\"callback\"``." +"These are overlapping sets: some default \"store\" actions are ``\"store" +"\"``, ``\"store_const\"``, ``\"append\"``, and ``\"count\"``, while the " +"default \"typed\" actions are ``\"store\"``, ``\"append\"``, and ``\"callback" +"\"``." msgstr "" #: library/optparse.rst:1954 @@ -2412,11 +2412,11 @@ msgstr "" msgid "" "If the ``attr`` attribute of ``values`` doesn't exist or is ``None``, then " "ensure_value() first sets it to ``value``, and then returns 'value. This is " -"very handy for actions like ``\"extend\"``, ``\"append\"``, and " -"``\"count\"``, all of which accumulate data in a variable and expect that " -"variable to be of a certain type (a list for the first two, an integer for " -"the latter). Using :meth:`ensure_value` means that scripts using your " -"action don't have to worry about setting a default value for the option " -"destinations in question; they can just leave the default as ``None`` and :" -"meth:`ensure_value` will take care of getting it right when it's needed." +"very handy for actions like ``\"extend\"``, ``\"append\"``, and ``\"count" +"\"``, all of which accumulate data in a variable and expect that variable to " +"be of a certain type (a list for the first two, an integer for the latter). " +"Using :meth:`ensure_value` means that scripts using your action don't have " +"to worry about setting a default value for the option destinations in " +"question; they can just leave the default as ``None`` and :meth:" +"`ensure_value` will take care of getting it right when it's needed." msgstr "" diff --git a/library/os.path.po b/library/os.path.po index a9f901db5..fe4956fa8 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/os.po b/library/os.po index 6ba88a9fd..db13d441f 100644 --- a/library/os.po +++ b/library/os.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -264,23 +264,24 @@ msgid "" "Return the filename corresponding to the controlling terminal of the process." msgstr "" -#: library/os.rst:340 library/os.rst:358 library/os.rst:377 library/os.rst:420 -#: library/os.rst:468 library/os.rst:488 library/os.rst:508 library/os.rst:548 -#: library/os.rst:565 library/os.rst:585 library/os.rst:611 library/os.rst:628 -#: library/os.rst:643 library/os.rst:659 library/os.rst:876 library/os.rst:907 -#: library/os.rst:965 library/os.rst:998 library/os.rst:1193 -#: library/os.rst:1221 library/os.rst:1405 library/os.rst:1437 -#: library/os.rst:1497 library/os.rst:1514 library/os.rst:1798 -#: library/os.rst:1881 library/os.rst:1921 library/os.rst:1949 -#: library/os.rst:2160 library/os.rst:2215 library/os.rst:3046 -#: library/os.rst:3672 library/os.rst:3687 library/os.rst:3701 -#: library/os.rst:3715 library/os.rst:3730 library/os.rst:3745 -#: library/os.rst:3761 library/os.rst:3777 library/os.rst:3791 -#: library/os.rst:3867 library/os.rst:3895 library/os.rst:4059 -#: library/os.rst:4312 library/os.rst:4343 library/os.rst:4413 -#: library/os.rst:4465 library/os.rst:4495 library/os.rst:4518 -#: library/os.rst:4534 library/os.rst:4552 library/os.rst:4707 -#: library/os.rst:4737 library/os.rst:4756 +#: library/os.rst:340 library/os.rst:358 library/os.rst:377 +#: library/os.rst:420 library/os.rst:468 library/os.rst:488 +#: library/os.rst:508 library/os.rst:548 library/os.rst:565 +#: library/os.rst:585 library/os.rst:611 library/os.rst:628 +#: library/os.rst:643 library/os.rst:659 library/os.rst:876 +#: library/os.rst:907 library/os.rst:965 library/os.rst:998 +#: library/os.rst:1193 library/os.rst:1221 library/os.rst:1405 +#: library/os.rst:1437 library/os.rst:1497 library/os.rst:1514 +#: library/os.rst:1798 library/os.rst:1881 library/os.rst:1921 +#: library/os.rst:1949 library/os.rst:2160 library/os.rst:2215 +#: library/os.rst:3046 library/os.rst:3672 library/os.rst:3687 +#: library/os.rst:3701 library/os.rst:3715 library/os.rst:3730 +#: library/os.rst:3745 library/os.rst:3761 library/os.rst:3777 +#: library/os.rst:3791 library/os.rst:3867 library/os.rst:3895 +#: library/os.rst:4059 library/os.rst:4312 library/os.rst:4343 +#: library/os.rst:4413 library/os.rst:4465 library/os.rst:4495 +#: library/os.rst:4518 library/os.rst:4534 library/os.rst:4552 +#: library/os.rst:4707 library/os.rst:4737 library/os.rst:4756 msgid ":ref:`Availability `: Unix." msgstr "" @@ -4399,9 +4400,9 @@ msgstr "" #: library/os.rst:4139 msgid "" "Possible values for the *mode* parameter to the :func:`spawn\\* ` " -"family of functions. If either of these values is given, the :func:" -"`spawn\\*` functions will return as soon as the new process has been " -"created, with the process id as the return value." +"family of functions. If either of these values is given, the :func:`spawn" +"\\*` functions will return as soon as the new process has been created, with " +"the process id as the return value." msgstr "" #: library/os.rst:4149 @@ -5119,9 +5120,9 @@ msgstr "" #: library/os.rst:4818 msgid "" -"The default search path used by :func:`exec\\*p\\* ` and :func:" -"`spawn\\*p\\* ` if the environment doesn't have a ``'PATH'`` key. " -"Also available via :mod:`os.path`." +"The default search path used by :func:`exec\\*p\\* ` and :func:`spawn" +"\\*p\\* ` if the environment doesn't have a ``'PATH'`` key. Also " +"available via :mod:`os.path`." msgstr "" #: library/os.rst:4825 diff --git a/library/ossaudiodev.po b/library/ossaudiodev.po index 2d838312b..4bb60c694 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pathlib.po b/library/pathlib.po index c024ffc00..c37dcace6 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -325,8 +325,8 @@ msgstr "" #: library/pathlib.rst:392 msgid "" "If you want to walk an arbitrary filesystem path upwards, it is recommended " -"to first call :meth:`Path.resolve` so as to resolve symlinks and eliminate " -"`\"..\"` components." +"to first call :meth:`Path.resolve` so as to resolve symlinks and eliminate `" +"\"..\"` components." msgstr "" #: library/pathlib.rst:399 diff --git a/library/pdb.po b/library/pdb.po index 190a7f357..a3914425f 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -566,10 +566,10 @@ msgstr "" #: library/pdb.rst:487 msgid "" "Create an alias called *name* that executes *command*. The command must " -"*not* be enclosed in quotes. Replaceable parameters can be indicated by " -"``%1``, ``%2``, and so on, while ``%*`` is replaced by all the parameters. " -"If no command is given, the current alias for *name* is shown. If no " -"arguments are given, all aliases are listed." +"*not* be enclosed in quotes. Replaceable parameters can be indicated by ``" +"%1``, ``%2``, and so on, while ``%*`` is replaced by all the parameters. If " +"no command is given, the current alias for *name* is shown. If no arguments " +"are given, all aliases are listed." msgstr "" #: library/pdb.rst:493 diff --git a/library/persistence.po b/library/persistence.po index 0e6b57cbe..c98001dbe 100644 --- a/library/persistence.po +++ b/library/persistence.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pickle.po b/library/pickle.po index 4bef61831..f1a0cf22b 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -28,8 +28,8 @@ msgstr "" msgid "" "The :mod:`pickle` module implements binary protocols for serializing and de-" "serializing a Python object structure. *\"Pickling\"* is the process " -"whereby a Python object hierarchy is converted into a byte stream, and " -"*\"unpickling\"* is the inverse operation, whereby a byte stream (from a :" +"whereby a Python object hierarchy is converted into a byte stream, and *" +"\"unpickling\"* is the inverse operation, whereby a byte stream (from a :" "term:`binary file` or :term:`bytes-like object`) is converted back into an " "object hierarchy. Pickling (and unpickling) is alternatively known as " "\"serialization\", \"marshalling,\" [#]_ or \"flattening\"; however, to " diff --git a/library/pickletools.po b/library/pickletools.po index 14e7cad30..e3ed1b3b6 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pipes.po b/library/pipes.po index 9785b18c7..a0bbf4ae7 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pkgutil.po b/library/pkgutil.po index 5635cd53f..0c014e942 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -216,9 +216,9 @@ msgstr "" msgid "" "*onerror* is a function which gets called with one argument (the name of the " "package which was being imported) if any exception occurs while trying to " -"import a package. If no *onerror* function is supplied, :exc:" -"`ImportError`\\s are caught and ignored, while all other exceptions are " -"propagated, terminating the search." +"import a package. If no *onerror* function is supplied, :exc:`ImportError`" +"\\s are caught and ignored, while all other exceptions are propagated, " +"terminating the search." msgstr "" #: library/pkgutil.rst:185 diff --git a/library/platform.po b/library/platform.po index 1084401c6..3b041d3a0 100644 --- a/library/platform.po +++ b/library/platform.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/plistlib.po b/library/plistlib.po index b393d5c7b..b3e551314 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -26,8 +26,8 @@ msgstr "" #: library/plistlib.rst:19 msgid "" -"This module provides an interface for reading and writing the \"property " -"list\" files used by Apple, primarily on macOS and iOS. This module supports " +"This module provides an interface for reading and writing the \"property list" +"\" files used by Apple, primarily on macOS and iOS. This module supports " "both binary and XML plist files." msgstr "" diff --git a/library/poplib.po b/library/poplib.po index 4e0bfc7bc..be9b9eb0b 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/posix.po b/library/posix.po index 829ca0d9c..4e900cee0 100644 --- a/library/posix.po +++ b/library/posix.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pprint.po b/library/pprint.po index b1a752f67..3492bbf80 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/profile.po b/library/profile.po index 6e8ba52d5..176e0cedc 100644 --- a/library/profile.po +++ b/library/profile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pty.po b/library/pty.po index 19e0584b6..5a41aa22f 100644 --- a/library/pty.po +++ b/library/pty.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pwd.po b/library/pwd.po index 2773078da..c61088ad1 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/py_compile.po b/library/py_compile.po index 482909421..2c4be2804 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pyclbr.po b/library/pyclbr.po index aa400882d..080a7786f 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pydoc.po b/library/pydoc.po index 42230c068..59b21f371 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/pyexpat.po b/library/pyexpat.po index 6b9d7d134..b5b50f047 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/python.po b/library/python.po index 2bf76c463..bc896f1c5 100644 --- a/library/python.po +++ b/library/python.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/queue.po b/library/queue.po index b03996bdf..a27725a16 100644 --- a/library/queue.po +++ b/library/queue.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/quopri.po b/library/quopri.po index 76bc55605..d7a7492d6 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/random.po b/library/random.po index a904d63ed..704bdc1a3 100644 --- a/library/random.po +++ b/library/random.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/re.po b/library/re.po index fabcd3305..4e24a4518 100644 --- a/library/re.po +++ b/library/re.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -172,8 +172,8 @@ msgstr "" msgid "" "Matches the end of the string or just before the newline at the end of the " "string, and in :const:`MULTILINE` mode also matches before a newline. " -"``foo`` matches both 'foo' and 'foobar', while the regular expression " -"``foo$`` matches only 'foo'. More interestingly, searching for ``foo.$`` in " +"``foo`` matches both 'foo' and 'foobar', while the regular expression ``foo" +"$`` matches only 'foo'. More interestingly, searching for ``foo.$`` in " "``'foo1\\nfoo2\\n'`` matches 'foo2' normally, but 'foo1' in :const:" "`MULTILINE` mode; searching for a single ``$`` in ``'foo\\n'`` will find two " "(empty) matches: one just before the newline, and one at the end of the " @@ -735,10 +735,10 @@ msgstr "" #: library/re.rst:508 msgid "" -"Matches Unicode whitespace characters (which includes " -"``[ \\t\\n\\r\\f\\v]``, and also many other characters, for example the non-" -"breaking spaces mandated by typography rules in many languages). If the :" -"const:`ASCII` flag is used, only ``[ \\t\\n\\r\\f\\v]`` is matched." +"Matches Unicode whitespace characters (which includes ``[ \\t\\n\\r\\f" +"\\v]``, and also many other characters, for example the non-breaking spaces " +"mandated by typography rules in many languages). If the :const:`ASCII` flag " +"is used, only ``[ \\t\\n\\r\\f\\v]`` is matched." msgstr "" #: library/re.rst:515 @@ -863,9 +863,9 @@ msgstr "" #: library/re.rst:621 msgid "" -"Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` and " -"``\\S`` perform ASCII-only matching instead of full Unicode matching. This " -"is only meaningful for Unicode patterns, and is ignored for byte patterns. " +"Make ``\\w``, ``\\W``, ``\\b``, ``\\B``, ``\\d``, ``\\D``, ``\\s`` and ``" +"\\S`` perform ASCII-only matching instead of full Unicode matching. This is " +"only meaningful for Unicode patterns, and is ignored for byte patterns. " "Corresponds to the inline flag ``(?a)``." msgstr "" @@ -898,9 +898,9 @@ msgid "" "Note that when the Unicode patterns ``[a-z]`` or ``[A-Z]`` are used in " "combination with the :const:`IGNORECASE` flag, they will match the 52 ASCII " "letters and 4 additional non-ASCII letters: 'İ' (U+0130, Latin capital " -"letter I with dot above), 'ı' (U+0131, Latin small letter dotless i), " -"'ſ' (U+017F, Latin small letter long s) and 'K' (U+212A, Kelvin sign). If " -"the :const:`ASCII` flag is used, only letters 'a' to 'z' and 'A' to 'Z' are " +"letter I with dot above), 'ı' (U+0131, Latin small letter dotless i), 'ſ' (U" +"+017F, Latin small letter long s) and 'K' (U+212A, Kelvin sign). If the :" +"const:`ASCII` flag is used, only letters 'a' to 'z' and 'A' to 'Z' are " "matched." msgstr "" @@ -1119,11 +1119,11 @@ msgid "" "occurrences of *pattern* in *string* by the replacement *repl*. If the " "pattern isn't found, *string* is returned unchanged. *repl* can be a string " "or a function; if it is a string, any backslash escapes in it are " -"processed. That is, ``\\n`` is converted to a single newline character, " -"``\\r`` is converted to a carriage return, and so forth. Unknown escapes of " +"processed. That is, ``\\n`` is converted to a single newline character, ``" +"\\r`` is converted to a carriage return, and so forth. Unknown escapes of " "ASCII letters are reserved for future use and treated as errors. Other " -"unknown escapes such as ``\\&`` are left alone. Backreferences, such as " -"``\\6``, are replaced with the substring matched by group 6 in the pattern. " +"unknown escapes such as ``\\&`` are left alone. Backreferences, such as ``" +"\\6``, are replaced with the substring matched by group 6 in the pattern. " "For example::" msgstr "" @@ -1151,11 +1151,11 @@ msgstr "" msgid "" "In string-type *repl* arguments, in addition to the character escapes and " "backreferences described above, ``\\g`` will use the substring matched " -"by the group named ``name``, as defined by the ``(?P...)`` syntax. " -"``\\g`` uses the corresponding group number; ``\\g<2>`` is therefore " -"equivalent to ``\\2``, but isn't ambiguous in a replacement such as " -"``\\g<2>0``. ``\\20`` would be interpreted as a reference to group 20, not " -"a reference to group 2 followed by the literal character ``'0'``. The " +"by the group named ``name``, as defined by the ``(?P...)`` syntax. ``" +"\\g`` uses the corresponding group number; ``\\g<2>`` is therefore " +"equivalent to ``\\2``, but isn't ambiguous in a replacement such as ``" +"\\g<2>0``. ``\\20`` would be interpreted as a reference to group 20, not a " +"reference to group 2 followed by the literal character ``'0'``. The " "backreference ``\\g<0>`` substitutes in the entire substring matched by the " "RE." msgstr "" @@ -1394,8 +1394,8 @@ msgid "" "Return the string obtained by doing backslash substitution on the template " "string *template*, as done by the :meth:`~Pattern.sub` method. Escapes such " "as ``\\n`` are converted to the appropriate characters, and numeric " -"backreferences (``\\1``, ``\\2``) and named backreferences (``\\g<1>``, " -"``\\g``) are replaced by the contents of the corresponding group." +"backreferences (``\\1``, ``\\2``) and named backreferences (``\\g<1>``, ``" +"\\g``) are replaced by the contents of the corresponding group." msgstr "" #: library/re.rst:1186 diff --git a/library/readline.po b/library/readline.po index b9692147c..d419688a9 100644 --- a/library/readline.po +++ b/library/readline.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/reprlib.po b/library/reprlib.po index 26d485c80..70e8e8b7e 100644 --- a/library/reprlib.po +++ b/library/reprlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/resource.po b/library/resource.po index 9050f10f4..27e77c746 100644 --- a/library/resource.po +++ b/library/resource.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/rlcompleter.po b/library/rlcompleter.po index f08f31464..103b96e30 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/runpy.po b/library/runpy.po index c5efb4fd0..7950d2e4b 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/sched.po b/library/sched.po index 8f59f9e27..a1ee7e1c7 100644 --- a/library/sched.po +++ b/library/sched.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/secrets.po b/library/secrets.po index a48b482fb..4cabfa618 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -145,10 +145,9 @@ msgstr "" #: library/secrets.rst:131 msgid "" "Return ``True`` if strings or :term:`bytes-like objects ` " -"*a* and *b* are equal, otherwise ``False``, using a \"constant-time " -"compare\" to reduce the risk of `timing attacks `_. See :func:`hmac.compare_digest` for additional " -"details." +"*a* and *b* are equal, otherwise ``False``, using a \"constant-time compare" +"\" to reduce the risk of `timing attacks `_. See :func:`hmac.compare_digest` for additional details." msgstr "" #: library/secrets.rst:140 diff --git a/library/security_warnings.po b/library/security_warnings.po index f12b6b86f..c5c5ff55a 100644 --- a/library/security_warnings.po +++ b/library/security_warnings.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/select.po b/library/select.po index 3ae2f8fe4..36e530c10 100644 --- a/library/select.po +++ b/library/select.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/selectors.po b/library/selectors.po index 787f830d8..8414139a4 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/shelve.po b/library/shelve.po index 66fb9c53f..a2d2436dd 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/shlex.po b/library/shlex.po index b15b8d4bf..6f6099f96 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -234,8 +234,8 @@ msgstr "" #: library/shlex.rst:218 msgid "" "This method generates an error message leader in the format of a Unix C " -"compiler error label; the format is ``'\"%s\", line %d: '``, where the " -"``%s`` is replaced with the name of the current source file and the ``%d`` " +"compiler error label; the format is ``'\"%s\", line %d: '``, where the ``" +"%s`` is replaced with the name of the current source file and the ``%d`` " "with the current input line number (the optional arguments can be used to " "override these)." msgstr "" @@ -428,8 +428,8 @@ msgstr "" #: library/shlex.rst:378 msgid "" -"Quotes are stripped out, and do not separate words " -"(``\"Do\"Not\"Separate\"`` is parsed as the single word ``DoNotSeparate``);" +"Quotes are stripped out, and do not separate words (``\"Do\"Not\"Separate" +"\"`` is parsed as the single word ``DoNotSeparate``);" msgstr "" #: library/shlex.rst:381 diff --git a/library/shutil.po b/library/shutil.po index c7f1d1a79..1e9dce8b5 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -640,9 +640,9 @@ msgstr "" #: library/shutil.rst:538 msgid "" "*base_name* is the name of the file to create, including the path, minus any " -"format-specific extension. *format* is the archive format: one of " -"\"zip\" (if the :mod:`zlib` module is available), \"tar\", \"gztar\" (if " -"the :mod:`zlib` module is available), \"bztar\" (if the :mod:`bz2` module is " +"format-specific extension. *format* is the archive format: one of \"zip" +"\" (if the :mod:`zlib` module is available), \"tar\", \"gztar\" (if the :mod:" +"`zlib` module is available), \"bztar\" (if the :mod:`bz2` module is " "available), or \"xztar\" (if the :mod:`lzma` module is available)." msgstr "" @@ -790,8 +790,8 @@ msgstr "" #: library/shutil.rst:630 msgid "" -"*format* is the archive format: one of \"zip\", \"tar\", \"gztar\", " -"\"bztar\", or \"xztar\". Or any other format registered with :func:" +"*format* is the archive format: one of \"zip\", \"tar\", \"gztar\", \"bztar" +"\", or \"xztar\". Or any other format registered with :func:" "`register_unpack_format`. If not provided, :func:`unpack_archive` will use " "the archive file name extension and see if an unpacker was registered for " "that extension. In case none is found, a :exc:`ValueError` is raised." diff --git a/library/signal.po b/library/signal.po index 7210915ec..f579ea894 100644 --- a/library/signal.po +++ b/library/signal.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -355,9 +355,9 @@ msgstr "" #: library/signal.rst:324 msgid "" -"Return the system description of the signal *signalnum*, such as " -"\"Interrupt\", \"Segmentation fault\", etc. Returns :const:`None` if the " -"signal is not recognized." +"Return the system description of the signal *signalnum*, such as \"Interrupt" +"\", \"Segmentation fault\", etc. Returns :const:`None` if the signal is not " +"recognized." msgstr "" #: library/signal.rst:333 diff --git a/library/site.po b/library/site.po index 93be405e5..14e015c78 100644 --- a/library/site.po +++ b/library/site.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -67,9 +67,9 @@ msgid "" "If a file named \"pyvenv.cfg\" exists one directory above sys.executable, " "sys.prefix and sys.exec_prefix are set to that directory and it is also " "checked for site-packages (sys.base_prefix and sys.base_exec_prefix will " -"always be the \"real\" prefixes of the Python installation). If \"pyvenv." -"cfg\" (a bootstrap configuration file) contains the key \"include-system-" -"site-packages\" set to anything other than \"true\" (case-insensitive), the " +"always be the \"real\" prefixes of the Python installation). If \"pyvenv.cfg" +"\" (a bootstrap configuration file) contains the key \"include-system-site-" +"packages\" set to anything other than \"true\" (case-insensitive), the " "system-level prefixes will not be searched for site-packages; otherwise they " "will." msgstr "" diff --git a/library/smtpd.po b/library/smtpd.po index 5a169f855..0072a89b4 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -289,8 +289,8 @@ msgstr "" #: library/smtpd.rst:218 msgid "" "Holds a list of the line strings (decoded using UTF-8) received from the " -"client. The lines have their ``\"\\r\\n\"`` line ending translated to " -"``\"\\n\"``." +"client. The lines have their ``\"\\r\\n\"`` line ending translated to ``\"\\n" +"\"``." msgstr "" #: library/smtpd.rst:224 diff --git a/library/smtplib.po b/library/smtplib.po index ba76f9824..88ffb4ad1 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -558,9 +558,9 @@ msgstr "" #: library/smtplib.rst:458 msgid "" "*msg* may be a string containing characters in the ASCII range, or a byte " -"string. A string is encoded to bytes using the ascii codec, and lone " -"``\\r`` and ``\\n`` characters are converted to ``\\r\\n`` characters. A " -"byte string is not modified." +"string. A string is encoded to bytes using the ascii codec, and lone ``" +"\\r`` and ``\\n`` characters are converted to ``\\r\\n`` characters. A byte " +"string is not modified." msgstr "" #: library/smtplib.rst:463 diff --git a/library/sndhdr.po b/library/sndhdr.po index 8e259e595..ae3a208b1 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/socket.po b/library/socket.po index 608111c79..74717c082 100644 --- a/library/socket.po +++ b/library/socket.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1649,8 +1649,8 @@ msgstr "" #: library/socket.rst:1442 msgid "" -"For multicast IPv6 address, first item of *address* does not contain " -"``%scope_id`` part anymore. In order to get full IPv6 address use :func:" +"For multicast IPv6 address, first item of *address* does not contain ``" +"%scope_id`` part anymore. In order to get full IPv6 address use :func:" "`getnameinfo`." msgstr "" diff --git a/library/socketserver.po b/library/socketserver.po index 55e77e313..e4f03ffc0 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/spwd.po b/library/spwd.po index 805f26156..d12f51392 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/sqlite3.po b/library/sqlite3.po index 41c321b17..e1d882968 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -470,8 +470,8 @@ msgstr "" #: library/sqlite3.rst:450 msgid "" "String constant stating the type of parameter marker formatting expected by " -"the :mod:`!sqlite3` module. Required by the DB-API. Hard-coded to " -"``\"qmark\"``." +"the :mod:`!sqlite3` module. Required by the DB-API. Hard-coded to ``\"qmark" +"\"``." msgstr "" #: library/sqlite3.rst:456 @@ -496,8 +496,8 @@ msgstr "" #: library/sqlite3.rst:473 msgid "" "Integer constant required by the DB-API, stating the level of thread safety " -"the :mod:`!sqlite3` module supports. Currently hard-coded to ``1``, meaning " -"*\"Threads may share the module, but not connections.\"* However, this may " +"the :mod:`!sqlite3` module supports. Currently hard-coded to ``1``, meaning *" +"\"Threads may share the module, but not connections.\"* However, this may " "not always be true. You can check the underlying SQLite library's compile-" "time threaded mode using the following query::" msgstr "" diff --git a/library/ssl.po b/library/ssl.po index b6726e674..70af2d415 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -420,8 +420,8 @@ msgstr "" #: library/ssl.rst:404 msgid "" "Return the time in seconds since the Epoch, given the ``cert_time`` string " -"representing the \"notBefore\" or \"notAfter\" date from a certificate in " -"``\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale)." +"representing the \"notBefore\" or \"notAfter\" date from a certificate in ``" +"\"%b %d %H:%M:%S %Y %Z\"`` strptime format (C locale)." msgstr "" #: library/ssl.rst:409 @@ -1504,8 +1504,8 @@ msgstr "" msgid "" "Return the actual SSL protocol version negotiated by the connection as a " "string, or ``None`` if no secure connection is established. As of this " -"writing, possible return values include ``\"SSLv2\"``, ``\"SSLv3\"``, " -"``\"TLSv1\"``, ``\"TLSv1.1\"`` and ``\"TLSv1.2\"``. Recent OpenSSL versions " +"writing, possible return values include ``\"SSLv2\"``, ``\"SSLv3\"``, ``" +"\"TLSv1\"``, ``\"TLSv1.1\"`` and ``\"TLSv1.2\"``. Recent OpenSSL versions " "may define more return values." msgstr "" @@ -2336,9 +2336,9 @@ msgstr "" #: library/ssl.rst:2124 msgid "" -"Python uses files to contain certificates. They should be formatted as " -"\"PEM\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a " -"header line and a footer line::" +"Python uses files to contain certificates. They should be formatted as \"PEM" +"\" (see :rfc:`1422`), which is a base-64 encoded form wrapped with a header " +"line and a footer line::" msgstr "" #: library/ssl.rst:2133 diff --git a/library/stat.po b/library/stat.po index 8e7c9c51e..5d76e79e5 100644 --- a/library/stat.po +++ b/library/stat.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/statistics.po b/library/statistics.po index 771df1f0c..dd68ac08b 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -889,9 +889,9 @@ msgstr "" #: library/statistics.rst:786 msgid "" "The relative likelihood is computed as the probability of a sample occurring " -"in a narrow range divided by the width of the range (hence the word " -"\"density\"). Since the likelihood is relative to other points, its value " -"can be greater than ``1.0``." +"in a narrow range divided by the width of the range (hence the word \"density" +"\"). Since the likelihood is relative to other points, its value can be " +"greater than ``1.0``." msgstr "" #: library/statistics.rst:793 diff --git a/library/stdtypes.po b/library/stdtypes.po index 6eb87b4f0..d32e1b02c 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-08-15 20:14+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -126,17 +126,18 @@ msgstr "Boolean İşlemleri --- :keyword:`!and`, :keyword:`!or`, :keyword:`!not` msgid "These are the Boolean operations, ordered by ascending priority:" msgstr "Bunlar artan önceliğe göre sıralanmış Boolean işlemleridir:" -#: library/stdtypes.rst:143 library/stdtypes.rst:364 library/stdtypes.rst:883 -#: library/stdtypes.rst:1088 +#: library/stdtypes.rst:143 library/stdtypes.rst:364 +#: library/stdtypes.rst:883 library/stdtypes.rst:1088 msgid "Operation" msgstr "İşlem" -#: library/stdtypes.rst:275 library/stdtypes.rst:414 library/stdtypes.rst:1088 +#: library/stdtypes.rst:275 library/stdtypes.rst:414 +#: library/stdtypes.rst:1088 msgid "Result" msgstr "Sonuç" -#: library/stdtypes.rst:275 library/stdtypes.rst:883 library/stdtypes.rst:2328 -#: library/stdtypes.rst:3543 +#: library/stdtypes.rst:275 library/stdtypes.rst:883 +#: library/stdtypes.rst:2328 library/stdtypes.rst:3543 msgid "Notes" msgstr "Notlar" @@ -148,8 +149,8 @@ msgstr "``x or y``" msgid "if *x* is false, then *y*, else *x*" msgstr "*x* yanlışsa, *y*, aksi halde *x*" -#: library/stdtypes.rst:285 library/stdtypes.rst:888 library/stdtypes.rst:2334 -#: library/stdtypes.rst:3549 +#: library/stdtypes.rst:285 library/stdtypes.rst:888 +#: library/stdtypes.rst:2334 library/stdtypes.rst:3549 msgid "\\(1)" msgstr "\\(1)" @@ -161,8 +162,8 @@ msgstr "``x and y``" msgid "if *x* is false, then *x*, else *y*" msgstr "*x* yanlışsa, *x*, aksi halde *y*" -#: library/stdtypes.rst:288 library/stdtypes.rst:1127 library/stdtypes.rst:2340 -#: library/stdtypes.rst:3555 +#: library/stdtypes.rst:288 library/stdtypes.rst:1127 +#: library/stdtypes.rst:2340 library/stdtypes.rst:3555 msgid "\\(2)" msgstr "\\(2)" @@ -174,14 +175,14 @@ msgstr "``not x``" msgid "if *x* is false, then ``True``, else ``False``" msgstr "*x* yanlışsa, ``True``, aksi halde ``False``" -#: library/stdtypes.rst:897 library/stdtypes.rst:2342 library/stdtypes.rst:2346 -#: library/stdtypes.rst:3557 library/stdtypes.rst:3561 -#: library/stdtypes.rst:3563 +#: library/stdtypes.rst:897 library/stdtypes.rst:2342 +#: library/stdtypes.rst:2346 library/stdtypes.rst:3557 +#: library/stdtypes.rst:3561 library/stdtypes.rst:3563 msgid "\\(3)" msgstr "\\(3)" -#: library/stdtypes.rst:319 library/stdtypes.rst:934 library/stdtypes.rst:2374 -#: library/stdtypes.rst:3593 +#: library/stdtypes.rst:319 library/stdtypes.rst:934 +#: library/stdtypes.rst:2374 library/stdtypes.rst:3593 msgid "Notes:" msgstr "Notlar:" @@ -603,8 +604,9 @@ msgstr "``pow(x, y)``" msgid "*x* to the power *y*" msgstr "*x* üzeri *y*" -#: library/stdtypes.rst:312 library/stdtypes.rst:1112 library/stdtypes.rst:2364 -#: library/stdtypes.rst:3576 library/stdtypes.rst:3583 +#: library/stdtypes.rst:312 library/stdtypes.rst:1112 +#: library/stdtypes.rst:2364 library/stdtypes.rst:3576 +#: library/stdtypes.rst:3583 msgid "\\(5)" msgstr "\\(5)" @@ -772,8 +774,8 @@ msgstr "``x | y``" msgid "bitwise :dfn:`or` of *x* and *y*" msgstr "bit düzeyinde *x* :dfn:`or` *y*" -#: library/stdtypes.rst:419 library/stdtypes.rst:1133 library/stdtypes.rst:2354 -#: library/stdtypes.rst:3569 +#: library/stdtypes.rst:419 library/stdtypes.rst:1133 +#: library/stdtypes.rst:2354 library/stdtypes.rst:3569 msgid "\\(4)" msgstr "\\(4)" @@ -1120,10 +1122,11 @@ msgstr "" "verimlilik için (:class:`int`, :class:`float`, :class:`decimal.Decimal` ve :" "class:`fractions.Fraction` dahil) Python'un sayısal türler için hash'i, " "herhangi bir rasyonel sayı için tanımlanmış tek bir matematiksel fonksiyona " -"dayanır ve bu nedenle :class:`int` ve :class:`fractions.Fraction` 'ın tüm örnekleri " -"ve :class:`float` ve :class:`decimal.Decimal` öğelerinin tüm sonlu örnekleri için geçerlidir. Esasen, bu fonksiyon sabit bir asal sayı olan ``P`` için " -"``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :data:`sys." -"hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." +"dayanır ve bu nedenle :class:`int` ve :class:`fractions.Fraction` 'ın tüm " +"örnekleri ve :class:`float` ve :class:`decimal.Decimal` öğelerinin tüm sonlu " +"örnekleri için geçerlidir. Esasen, bu fonksiyon sabit bir asal sayı olan " +"``P`` için ``reduction modulo`` ``P`` ile verilir. ``P`` değeri Python'a :" +"data:`sys.hash_info` 'nun :attr:`modulus` özelliği olarak sunulur." #: library/stdtypes.rst:678 msgid "" @@ -2367,8 +2370,8 @@ msgstr "Çift tırnak: ``\"katıştırılmış 'tek' tırnaklara izin verir\"``. #: library/stdtypes.rst:1439 msgid "" -"Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double " -"quotes\"\"\"``" +"Triple quoted: ``'''Three single quotes'''``, ``\"\"\"Three double quotes" +"\"\"\"``" msgstr "Üçlü tırnak: ``'''Üç tek tırnak'''``, ``\"\"\"Üç çift tırnak\"\"\"``" #: library/stdtypes.rst:1441 @@ -2687,9 +2690,9 @@ msgid "" "column is set to zero and the string is examined character by character. If " "the character is a tab (``\\t``), one or more space characters are inserted " "in the result until the current column is equal to the next tab position. " -"(The tab character itself is not copied.) If the character is a newline " -"(``\\n``) or return (``\\r``), it is copied and the current column is reset " -"to zero. Any other character is copied unchanged and the current column is " +"(The tab character itself is not copied.) If the character is a newline (``" +"\\n``) or return (``\\r``), it is copied and the current column is reset to " +"zero. Any other character is copied unchanged and the current column is " "incremented by one regardless of how the character is represented when " "printed." msgstr "" @@ -2700,10 +2703,10 @@ msgstr "" "mevcut sütun sıfıra ayarlanır ve dize karakter karakter incelenir. Karakter " "bir tab ise (``\\t``), geçerli sütun sonraki tab konumuna eşit olana kadar " "sonuca bir veya daha fazla boşluk karakteri eklenir. (Tab karakterinin " -"kendisi kopyalanmaz.) Karakter yeni satırsa (``\\n``) veya dönüşse " -"(``\\r``), kopyalanır ve mevcut sütun sıfırlanır. Diğer herhangi bir " -"karakter değiştirilmeden kopyalanır ve mevcut sütun, karakterin " -"yazdırıldığında nasıl temsil edildiğine bakılmaksızın bir artırılır." +"kendisi kopyalanmaz.) Karakter yeni satırsa (``\\n``) veya dönüşse (``" +"\\r``), kopyalanır ve mevcut sütun sıfırlanır. Diğer herhangi bir karakter " +"değiştirilmeden kopyalanır ve mevcut sütun, karakterin yazdırıldığında nasıl " +"temsil edildiğine bakılmaksızın bir artırılır." #: library/stdtypes.rst:1641 msgid "" @@ -2812,9 +2815,9 @@ msgid "" "Return ``True`` if all characters in the string are alphabetic and there is " "at least one character, ``False`` otherwise. Alphabetic characters are " "those characters defined in the Unicode character database as \"Letter\", i." -"e., those with general category property being one of \"Lm\", \"Lt\", " -"\"Lu\", \"Ll\", or \"Lo\". Note that this is different from the " -"\"Alphabetic\" property defined in the Unicode Standard." +"e., those with general category property being one of \"Lm\", \"Lt\", \"Lu" +"\", \"Ll\", or \"Lo\". Note that this is different from the \"Alphabetic\" " +"property defined in the Unicode Standard." msgstr "" "Dizedeki tüm karakterler alfabetikse ve en az bir karakter varsa ``True``, " "aksi takdirde ``False`` döndürür. Alfabetik karakterler, Unicode karakter " @@ -2826,8 +2829,8 @@ msgstr "" #: library/stdtypes.rst:1727 msgid "" "Return ``True`` if the string is empty or all characters in the string are " -"ASCII, ``False`` otherwise. ASCII characters have code points in the range " -"U+0000-U+007F." +"ASCII, ``False`` otherwise. ASCII characters have code points in the range U" +"+0000-U+007F." msgstr "" "Dize boşsa veya dizedeki tüm karakterler ASCII ise ``True``, aksi takdirde " "``False`` döndürür. ASCII karakterleri U+0000-U+007F aralığında kod " @@ -2937,8 +2940,8 @@ msgstr "" #: library/stdtypes.rst:1805 msgid "" "A character is *whitespace* if in the Unicode character database (see :mod:" -"`unicodedata`), either its general category is ``Zs`` (\"Separator, " -"space\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." +"`unicodedata`), either its general category is ``Zs`` (\"Separator, space" +"\"), or its bidirectional class is one of ``WS``, ``B``, or ``S``." msgstr "" "Bir karakter, genel kategorisi ``Zs`` (“Ayırıcı, boşluk”) ya da çift yönlü " "sınıfı ``WS``, ``B`` veya ``S``’den biri ise Unicode karakter veritabanında " @@ -6439,8 +6442,7 @@ msgstr "" msgid "" "However, union objects containing :ref:`parameterized generics ` cannot be used::" -msgstr "" -"Ancak, :ref:`types-genericalias` içeren union nesneleri kullanılamaz::" +msgstr "Ancak, :ref:`types-genericalias` içeren union nesneleri kullanılamaz::" #: library/stdtypes.rst:5097 msgid "" @@ -6647,8 +6649,8 @@ msgid "" "Accessing ``__code__`` raises an :ref:`auditing event ` ``object." "__getattr__`` with arguments ``obj`` and ``\"__code__\"``." msgstr "" -"``__code__`` 'e erişmek,``obj`` ve ``\"__code__\"`` argümanlarıyla " -":ref:`denetim etkinliği ` ``object.__getattr__`` oluşturur." +"``__code__`` 'e erişmek,``obj`` ve ``\"__code__\"`` argümanlarıyla :ref:" +"`denetim etkinliği ` ``object.__getattr__`` oluşturur." #: library/stdtypes.rst:5259 msgid "" @@ -6927,8 +6929,8 @@ msgstr "" #: library/stdtypes.rst:5489 msgid "" -"any other string conversion to base 10, for example ``f\"{integer}\"``, " -"``\"{}\".format(integer)``, or ``b\"%d\" % integer``." +"any other string conversion to base 10, for example ``f\"{integer}\"``, ``" +"\"{}\".format(integer)``, or ``b\"%d\" % integer``." msgstr "" #: library/stdtypes.rst:5492 @@ -7091,13 +7093,13 @@ msgstr "" #: library/stdtypes.rst:5583 msgid "" -"Cased characters are those with general category property being one of " -"\"Lu\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " +"Cased characters are those with general category property being one of \"Lu" +"\" (Letter, uppercase), \"Ll\" (Letter, lowercase), or \"Lt\" (Letter, " "titlecase)." msgstr "" -"Harfli karakterler, genel kategori özelliği \"Lu\" (Harf, büyük), " -"\"Ll\" (Harf, küçük harf) veya \"Lt\" (Harf, başlık) karakterlerinden biri " -"olan karakterlerdir." +"Harfli karakterler, genel kategori özelliği \"Lu\" (Harf, büyük), \"Ll" +"\" (Harf, küçük harf) veya \"Lt\" (Harf, başlık) karakterlerinden biri olan " +"karakterlerdir." #: library/stdtypes.rst:5586 msgid "" diff --git a/library/string.po b/library/string.po index 8f17ecdce..467c0826e 100644 --- a/library/string.po +++ b/library/string.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -905,12 +905,11 @@ msgstr "" #: library/string.rst:741 msgid "" -"``$identifier`` names a substitution placeholder matching a mapping key of " -"``\"identifier\"``. By default, ``\"identifier\"`` is restricted to any " -"case-insensitive ASCII alphanumeric string (including underscores) that " -"starts with an underscore or ASCII letter. The first non-identifier " -"character after the ``$`` character terminates this placeholder " -"specification." +"``$identifier`` names a substitution placeholder matching a mapping key of ``" +"\"identifier\"``. By default, ``\"identifier\"`` is restricted to any case-" +"insensitive ASCII alphanumeric string (including underscores) that starts " +"with an underscore or ASCII letter. The first non-identifier character " +"after the ``$`` character terminates this placeholder specification." msgstr "" #: library/string.rst:748 diff --git a/library/stringprep.po b/library/stringprep.po index 8745b4397..ba975f71c 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/struct.po b/library/struct.po index 6ddd9edfc..6d374de07 100644 --- a/library/struct.po +++ b/library/struct.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/subprocess.po b/library/subprocess.po index 96ca26e12..6615945a2 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/sunau.po b/library/sunau.po index d27bcbea0..c538e61b4 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/superseded.po b/library/superseded.po index f60eac1da..18ef2bf52 100644 --- a/library/superseded.po +++ b/library/superseded.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/symtable.po b/library/symtable.po index 80e4ac4fd..51c396407 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/sys.po b/library/sys.po index f0109567f..a44f15d39 100644 --- a/library/sys.po +++ b/library/sys.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/sysconfig.po b/library/sysconfig.po index 1a9105a53..2905a4f0e 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/syslog.po b/library/syslog.po index e39c967e8..3fdb0facb 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tabnanny.po b/library/tabnanny.po index f67655f28..ec1567a3b 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tarfile.po b/library/tarfile.po index 18bec36e3..0001ac970 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/telnetlib.po b/library/telnetlib.po index bb10700fe..b6761ad0f 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tempfile.po b/library/tempfile.po index 7ca797e7d..250d32bc3 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/termios.po b/library/termios.po index 304a6312c..6d9575aa8 100644 --- a/library/termios.po +++ b/library/termios.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/test.po b/library/test.po index cfa0f6e95..f6af654f1 100644 --- a/library/test.po +++ b/library/test.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -658,9 +658,9 @@ msgstr "" #: library/test.rst:615 msgid "" -"Print a warning into :data:`sys.__stderr__`. Format the message as: " -"``f\"Warning -- {msg}\"``. If *msg* is made of multiple lines, add " -"``\"Warning -- \"`` prefix to each line." +"Print a warning into :data:`sys.__stderr__`. Format the message as: ``f" +"\"Warning -- {msg}\"``. If *msg* is made of multiple lines, add ``\"Warning " +"-- \"`` prefix to each line." msgstr "" #: library/test.rst:624 diff --git a/library/text.po b/library/text.po index bed50309e..b0e274e78 100644 --- a/library/text.po +++ b/library/text.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/textwrap.po b/library/textwrap.po index 6e46326ec..74e2dce79 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/threading.po b/library/threading.po index 20b3c8e13..f80c87afa 100644 --- a/library/threading.po +++ b/library/threading.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/time.po b/library/time.po index 9a405b765..f95a8fd54 100644 --- a/library/time.po +++ b/library/time.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -736,8 +736,8 @@ msgstr "" msgid "" "On some platforms, an optional field width and precision specification can " "immediately follow the initial ``'%'`` of a directive in the following " -"order; this is also not portable. The field width is normally 2 except for " -"``%j`` where it is 3." +"order; this is also not portable. The field width is normally 2 except for ``" +"%j`` where it is 3." msgstr "" #: library/time.rst:511 @@ -1105,8 +1105,8 @@ msgstr "" #: library/time.rst:703 msgid "" "The *d*'th day (0 <= *d* <= 6) of week *n* of month *m* of the year (1 <= " -"*n* <= 5, 1 <= *m* <= 12, where week 5 means \"the last *d* day in month " -"*m*\" which may occur in either the fourth or the fifth week). Week 1 is the " +"*n* <= 5, 1 <= *m* <= 12, where week 5 means \"the last *d* day in month *m*" +"\" which may occur in either the fourth or the fifth week). Week 1 is the " "first week in which the *d*'th day occurs. Day zero is a Sunday." msgstr "" diff --git a/library/timeit.po b/library/timeit.po index 966741875..f1423a050 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tk.po b/library/tk.po index 9e25f9013..b5b0ea429 100644 --- a/library/tk.po +++ b/library/tk.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.colorchooser.po b/library/tkinter.colorchooser.po index 9da3d2875..e7811f8ed 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.dnd.po b/library/tkinter.dnd.po index 6f69a38ea..f0c51a6f8 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.font.po b/library/tkinter.font.po index 135eeed42..252dacc1b 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.messagebox.po b/library/tkinter.messagebox.po index aa86c88e5..e7101e032 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.po b/library/tkinter.po index f5aea0d89..913e5aeac 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1223,9 +1223,9 @@ msgstr "" #: library/tkinter.rst:794 msgid "" -"Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, " -"``\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also " -"``\"center\"``." +"Legal values are points of the compass: ``\"n\"``, ``\"ne\"``, ``\"e\"``, ``" +"\"se\"``, ``\"s\"``, ``\"sw\"``, ``\"w\"``, ``\"nw\"``, and also ``\"center" +"\"``." msgstr "" #: library/tkinter.rst:801 @@ -1263,10 +1263,10 @@ msgstr "" #: library/tkinter.rst:814 msgid "" "Colors can be given as the names of X colors in the rgb.txt file, or as " -"strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: " -"``\"#RRGGBB\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: " -"``\"#RRRRGGGGBBBB\"`` ranges, where R,G,B here represent any legal hex " -"digit. See page 160 of Ousterhout's book for details." +"strings representing RGB values in 4 bit: ``\"#RGB\"``, 8 bit: ``\"#RRGGBB" +"\"``, 12 bit: ``\"#RRRGGGBBB\"``, or 16 bit: ``\"#RRRRGGGGBBBB\"`` ranges, " +"where R,G,B here represent any legal hex digit. See page 160 of " +"Ousterhout's book for details." msgstr "" #: library/tkinter.rst:823 @@ -1343,9 +1343,9 @@ msgstr "" #: library/tkinter.rst:852 msgid "" -"Determines what the border style of a widget will be. Legal values are: " -"``\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, and " -"``\"ridge\"``." +"Determines what the border style of a widget will be. Legal values are: ``" +"\"raised\"``, ``\"sunken\"``, ``\"flat\"``, ``\"groove\"``, and ``\"ridge" +"\"``." msgstr "" #: library/tkinter.rst:857 diff --git a/library/tkinter.scrolledtext.po b/library/tkinter.scrolledtext.po index 78648f9c7..9781893d1 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.tix.po b/library/tkinter.tix.po index 848812888..654f21600 100644 --- a/library/tkinter.tix.po +++ b/library/tkinter.tix.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 991593797..92169b476 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -782,9 +782,9 @@ msgstr "" #: library/tkinter.ttk.rst:513 msgid "" "Specifies how the child window is positioned within the pane area. Value is " -"a string containing zero or more of the characters \"n\", \"s\", \"e\" or " -"\"w\". Each letter refers to a side (north, south, east or west) that the " -"child window will stick to, as per the :meth:`grid` geometry manager." +"a string containing zero or more of the characters \"n\", \"s\", \"e\" or \"w" +"\". Each letter refers to a side (north, south, east or west) that the child " +"window will stick to, as per the :meth:`grid` geometry manager." msgstr "" #: library/tkinter.ttk.rst:519 diff --git a/library/token.po b/library/token.po index 147cf4cee..8203ffd63 100644 --- a/library/token.po +++ b/library/token.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tokenize.po b/library/tokenize.po index be4f822d2..fa002403d 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/trace.po b/library/trace.po index 7896fe172..f0cd1a784 100644 --- a/library/trace.po +++ b/library/trace.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/traceback.po b/library/traceback.po index 0769e1b0a..bc29c1ea0 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -130,9 +130,9 @@ msgstr "" #: library/traceback.rst:104 msgid "" -"Return a :class:`StackSummary` object representing a list of \"pre-" -"processed\" stack trace entries extracted from the traceback object *tb*. " -"It is useful for alternate formatting of stack traces. The optional *limit* " +"Return a :class:`StackSummary` object representing a list of \"pre-processed" +"\" stack trace entries extracted from the traceback object *tb*. It is " +"useful for alternate formatting of stack traces. The optional *limit* " "argument has the same meaning as for :func:`print_tb`. A \"pre-processed\" " "stack trace entry is a :class:`FrameSummary` object containing attributes :" "attr:`~FrameSummary.filename`, :attr:`~FrameSummary.lineno`, :attr:" diff --git a/library/tracemalloc.po b/library/tracemalloc.po index 8388268e1..900717056 100644 --- a/library/tracemalloc.po +++ b/library/tracemalloc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/tty.po b/library/tty.po index f47749a09..e9257343e 100644 --- a/library/tty.po +++ b/library/tty.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/turtle.po b/library/turtle.po index 452c8721a..361e6854a 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1225,10 +1225,9 @@ msgstr "" msgid "" "Set turtle shape to shape with given *name* or, if name is not given, return " "name of current shape. Shape with *name* must exist in the TurtleScreen's " -"shape dictionary. Initially there are the following polygon shapes: " -"\"arrow\", \"turtle\", \"circle\", \"square\", \"triangle\", \"classic\". " -"To learn about how to deal with shapes see Screen method :func:" -"`register_shape`." +"shape dictionary. Initially there are the following polygon shapes: \"arrow" +"\", \"turtle\", \"circle\", \"square\", \"triangle\", \"classic\". To learn " +"about how to deal with shapes see Screen method :func:`register_shape`." msgstr "" #: library/turtle.rst:1181 diff --git a/library/types.po b/library/types.po index 1ee39269c..0daa96462 100644 --- a/library/types.po +++ b/library/types.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/typing.po b/library/typing.po index ba8044691..44393f4b2 100644 --- a/library/typing.po +++ b/library/typing.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1264,9 +1264,9 @@ msgstr "" msgid "" "Such a protocol can be used with :func:`isinstance` and :func:`issubclass`. " "This raises :exc:`TypeError` when applied to a non-protocol class. This " -"allows a simple-minded structural check, very similar to \"one trick " -"ponies\" in :mod:`collections.abc` such as :class:`~collections.abc." -"Iterable`. For example::" +"allows a simple-minded structural check, very similar to \"one trick ponies" +"\" in :mod:`collections.abc` such as :class:`~collections.abc.Iterable`. " +"For example::" msgstr "" #: library/typing.rst:1355 diff --git a/library/unicodedata.po b/library/unicodedata.po index e9a4be180..f33edac50 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/unittest.mock-examples.po b/library/unittest.mock-examples.po index d7f59a73a..34ecaac14 100644 --- a/library/unittest.mock-examples.po +++ b/library/unittest.mock-examples.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -888,10 +888,10 @@ msgstr "" msgid "" "Generally local imports are to be avoided. They are sometimes done to " "prevent circular dependencies, for which there is *usually* a much better " -"way to solve the problem (refactor the code) or to prevent \"up front " -"costs\" by delaying the import. This can also be solved in better ways than " -"an unconditional local import (store the module as a class or module " -"attribute and only do the import on first use)." +"way to solve the problem (refactor the code) or to prevent \"up front costs" +"\" by delaying the import. This can also be solved in better ways than an " +"unconditional local import (store the module as a class or module attribute " +"and only do the import on first use)." msgstr "" #: library/unittest.mock-examples.rst:1116 diff --git a/library/unittest.mock.po b/library/unittest.mock.po index 02f513d84..c59c2d2a5 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1933,9 +1933,9 @@ msgstr "" #: library/unittest.mock.rst:2248 msgid "" -"``call_list`` is particularly useful for making assertions on \"chained " -"calls\". A chained call is multiple calls on a single line of code. This " -"results in multiple entries in :attr:`~Mock.mock_calls` on a mock. Manually " +"``call_list`` is particularly useful for making assertions on \"chained calls" +"\". A chained call is multiple calls on a single line of code. This results " +"in multiple entries in :attr:`~Mock.mock_calls` on a mock. Manually " "constructing the sequence of calls can be tedious." msgstr "" diff --git a/library/unittest.po b/library/unittest.po index 76d81c241..e061460da 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -940,10 +940,11 @@ msgstr "" msgid "``a is b``" msgstr "" -#: library/unittest.rst:836 library/unittest.rst:842 library/unittest.rst:848 -#: library/unittest.rst:1162 library/unittest.rst:1168 -#: library/unittest.rst:1174 library/unittest.rst:1286 -#: library/unittest.rst:1292 library/unittest.rst:1298 +#: library/unittest.rst:836 library/unittest.rst:842 +#: library/unittest.rst:848 library/unittest.rst:1162 +#: library/unittest.rst:1168 library/unittest.rst:1174 +#: library/unittest.rst:1286 library/unittest.rst:1292 +#: library/unittest.rst:1298 msgid "3.1" msgstr "" @@ -995,7 +996,8 @@ msgstr "" msgid "``isinstance(a, b)``" msgstr "" -#: library/unittest.rst:854 library/unittest.rst:951 library/unittest.rst:1180 +#: library/unittest.rst:854 library/unittest.rst:951 +#: library/unittest.rst:1180 msgid "3.2" msgstr "" @@ -1823,9 +1825,8 @@ msgstr "" #: library/unittest.rst:1592 msgid "" -"After running the test, ``events`` would contain ``[\"setUp\", " -"\"asyncSetUp\", \"test_response\", \"asyncTearDown\", \"tearDown\", " -"\"cleanup\"]``." +"After running the test, ``events`` would contain ``[\"setUp\", \"asyncSetUp" +"\", \"test_response\", \"asyncTearDown\", \"tearDown\", \"cleanup\"]``." msgstr "" #: library/unittest.rst:1597 diff --git a/library/unix.po b/library/unix.po index c896a9a62..c97ad6ce8 100644 --- a/library/unix.po +++ b/library/unix.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/urllib.error.po b/library/urllib.error.po index 4f3d0fc5b..f557a0f9c 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/urllib.parse.po b/library/urllib.parse.po index 68ea6c648..3e722d8ed 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -392,8 +392,8 @@ msgstr "" #: library/urllib.parse.rst:327 msgid "" -"Following the `WHATWG spec`_ that updates RFC 3986, ASCII newline ``\\n``, " -"``\\r`` and tab ``\\t`` characters are stripped from the URL." +"Following the `WHATWG spec`_ that updates RFC 3986, ASCII newline ``\\n``, ``" +"\\r`` and tab ``\\t`` characters are stripped from the URL." msgstr "" #: library/urllib.parse.rst:338 diff --git a/library/urllib.po b/library/urllib.po index 1ac915762..1cb100f81 100644 --- a/library/urllib.po +++ b/library/urllib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/urllib.request.po b/library/urllib.request.po index 1c847050e..92aff9327 100644 --- a/library/urllib.request.po +++ b/library/urllib.request.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -302,8 +302,8 @@ msgid "" "browser to identify itself -- some HTTP servers only allow requests coming " "from common browsers as opposed to scripts. For example, Mozilla Firefox may " "identify itself as ``\"Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 " -"Firefox/2.0.0.11\"``, while :mod:`urllib`'s default user agent string is " -"``\"Python-urllib/2.6\"`` (on Python 2.6). All header keys are sent in camel " +"Firefox/2.0.0.11\"``, while :mod:`urllib`'s default user agent string is ``" +"\"Python-urllib/2.6\"`` (on Python 2.6). All header keys are sent in camel " "case." msgstr "" @@ -784,8 +784,8 @@ msgid "" "Handle an error of the given protocol. This will call the registered error " "handlers for the given protocol with the given arguments (which are protocol " "specific). The HTTP protocol is a special case which uses the HTTP response " -"code to determine the specific error handler; refer to the :meth:" -"`http_error_\\` methods of the handler classes." +"code to determine the specific error handler; refer to the :meth:`http_error_" +"\\` methods of the handler classes." msgstr "" #: library/urllib.request.rst:671 diff --git a/library/urllib.robotparser.po b/library/urllib.robotparser.po index 9f7cdd945..bc2b6956e 100644 --- a/library/urllib.robotparser.po +++ b/library/urllib.robotparser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/uu.po b/library/uu.po index cb7e5d886..cb1c37e68 100644 --- a/library/uu.po +++ b/library/uu.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/uuid.po b/library/uuid.po index 7ad30bf74..f653572ff 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/venv.po b/library/venv.po index fae78337f..caca6d8a0 100644 --- a/library/venv.po +++ b/library/venv.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -26,13 +26,13 @@ msgstr "" #: library/venv.rst:21 msgid "" -"The :mod:`!venv` module supports creating lightweight \"virtual " -"environments\", each with their own independent set of Python packages " -"installed in their :mod:`site` directories. A virtual environment is created " -"on top of an existing Python installation, known as the virtual " -"environment's \"base\" Python, and may optionally be isolated from the " -"packages in the base environment, so only those explicitly installed in the " -"virtual environment are available." +"The :mod:`!venv` module supports creating lightweight \"virtual environments" +"\", each with their own independent set of Python packages installed in " +"their :mod:`site` directories. A virtual environment is created on top of an " +"existing Python installation, known as the virtual environment's \"base\" " +"Python, and may optionally be isolated from the packages in the base " +"environment, so only those explicitly installed in the virtual environment " +"are available." msgstr "" #: library/venv.rst:29 @@ -563,8 +563,8 @@ msgstr "" #: library/venv.rst:313 msgid "" -"*path* is the path to a directory that should contain subdirectories " -"\"common\", \"posix\", \"nt\", each containing scripts destined for the bin " +"*path* is the path to a directory that should contain subdirectories \"common" +"\", \"posix\", \"nt\", each containing scripts destined for the bin " "directory in the environment. The contents of \"common\" and the directory " "corresponding to :data:`os.name` are copied after some text replacement of " "placeholders:" diff --git a/library/warnings.po b/library/warnings.po index 1400c0db2..a5a12ad7d 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/wave.po b/library/wave.po index eaf4b0249..f6fb733a9 100644 --- a/library/wave.po +++ b/library/wave.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/weakref.po b/library/weakref.po index 3380e18e9..f7e73a8c0 100644 --- a/library/weakref.po +++ b/library/weakref.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/webbrowser.po b/library/webbrowser.po index 1f180871e..17fe57d71 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -43,10 +43,10 @@ msgstr "" msgid "" "If the environment variable :envvar:`BROWSER` exists, it is interpreted as " "the :data:`os.pathsep`-separated list of browsers to try ahead of the " -"platform defaults. When the value of a list part contains the string " -"``%s``, then it is interpreted as a literal browser command line to be used " -"with the argument URL substituted for ``%s``; if the part does not contain " -"``%s``, it is simply interpreted as the name of the browser to launch. [1]_" +"platform defaults. When the value of a list part contains the string ``" +"%s``, then it is interpreted as a literal browser command line to be used " +"with the argument URL substituted for ``%s``; if the part does not contain ``" +"%s``, it is simply interpreted as the name of the browser to launch. [1]_" msgstr "" #: library/webbrowser.rst:30 diff --git a/library/windows.po b/library/windows.po index e0c14c54b..7c3240556 100644 --- a/library/windows.po +++ b/library/windows.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/winreg.po b/library/winreg.po index b24793253..2cb066d6b 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -804,8 +804,8 @@ msgstr "" #: library/winreg.rst:689 msgid "" -"Null-terminated string containing references to environment variables " -"(``%PATH%``)." +"Null-terminated string containing references to environment variables (``" +"%PATH%``)." msgstr "" #: library/winreg.rst:694 diff --git a/library/winsound.po b/library/winsound.po index 5fbf55fac..db0310d9e 100644 --- a/library/winsound.po +++ b/library/winsound.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/wsgiref.po b/library/wsgiref.po index 6defc80ed..55ae2340a 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -71,8 +71,8 @@ msgstr "" #: library/wsgiref.rst:53 msgid "" -"Return a guess for whether ``wsgi.url_scheme`` should be \"http\" or " -"\"https\", by checking for a ``HTTPS`` environment variable in the *environ* " +"Return a guess for whether ``wsgi.url_scheme`` should be \"http\" or \"https" +"\", by checking for a ``HTTPS`` environment variable in the *environ* " "dictionary. The return value is a string." msgstr "" @@ -819,11 +819,11 @@ msgstr "" #: library/wsgiref.rst:744 msgid "" -"Transcode CGI variables from ``os.environ`` to :pep:`3333` \"bytes in " -"unicode\" strings, returning a new dictionary. This function is used by :" -"class:`CGIHandler` and :class:`IISCGIHandler` in place of directly using " -"``os.environ``, which is not necessarily WSGI-compliant on all platforms and " -"web servers using Python 3 -- specifically, ones where the OS's actual " +"Transcode CGI variables from ``os.environ`` to :pep:`3333` \"bytes in unicode" +"\" strings, returning a new dictionary. This function is used by :class:" +"`CGIHandler` and :class:`IISCGIHandler` in place of directly using ``os." +"environ``, which is not necessarily WSGI-compliant on all platforms and web " +"servers using Python 3 -- specifically, ones where the OS's actual " "environment is Unicode (i.e. Windows), or ones where the environment is " "bytes, but the system encoding used by Python to decode it is anything other " "than ISO-8859-1 (e.g. Unix systems using UTF-8)." diff --git a/library/xdrlib.po b/library/xdrlib.po index d3631ed91..99ce44927 100644 --- a/library/xdrlib.po +++ b/library/xdrlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.dom.minidom.po b/library/xml.dom.minidom.po index 474f266d8..2db75ffd1 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.dom.po b/library/xml.dom.po index ef97f1810..335068253 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -54,9 +54,9 @@ msgstr "" #: library/xml.dom.rst:33 msgid "" -"The Document Object Model is being defined by the W3C in stages, or " -"\"levels\" in their terminology. The Python mapping of the API is " -"substantially based on the DOM Level 2 recommendation." +"The Document Object Model is being defined by the W3C in stages, or \"levels" +"\" in their terminology. The Python mapping of the API is substantially " +"based on the DOM Level 2 recommendation." msgstr "" #: library/xml.dom.rst:45 diff --git a/library/xml.dom.pulldom.po b/library/xml.dom.pulldom.po index 498806c15..c71f0cd02 100644 --- a/library/xml.dom.pulldom.po +++ b/library/xml.dom.pulldom.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index a1bb5393e..f9f34cf60 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -211,7 +211,8 @@ msgid "" "attribute to the rank element::" msgstr "" -#: library/xml.etree.elementtree.rst:222 library/xml.etree.elementtree.rst:266 +#: library/xml.etree.elementtree.rst:222 +#: library/xml.etree.elementtree.rst:266 msgid "Our XML now looks like this:" msgstr "" @@ -288,7 +289,8 @@ msgid "" "scope of the module." msgstr "" -#: library/xml.etree.elementtree.rst:377 library/xml.etree.elementtree.rst:769 +#: library/xml.etree.elementtree.rst:377 +#: library/xml.etree.elementtree.rst:769 msgid "Example" msgstr "" @@ -472,11 +474,13 @@ msgid "" "preceded by a tag name." msgstr "" -#: library/xml.etree.elementtree.rst:493 library/xml.etree.elementtree.rst:821 +#: library/xml.etree.elementtree.rst:493 +#: library/xml.etree.elementtree.rst:821 msgid "Reference" msgstr "" -#: library/xml.etree.elementtree.rst:498 library/xml.etree.elementtree.rst:826 +#: library/xml.etree.elementtree.rst:498 +#: library/xml.etree.elementtree.rst:826 msgid "Functions" msgstr "" @@ -519,7 +523,8 @@ msgid "" "*strip_text*: set to true to strip whitespace before and after text content" msgstr "" -#: library/xml.etree.elementtree.rst:532 library/xml.etree.elementtree.rst:534 +#: library/xml.etree.elementtree.rst:532 +#: library/xml.etree.elementtree.rst:534 msgid "(default: false)" msgstr "" @@ -533,7 +538,8 @@ msgstr "" msgid "*qname_aware_tags*: a set of qname aware tag names in which prefixes" msgstr "" -#: library/xml.etree.elementtree.rst:536 library/xml.etree.elementtree.rst:538 +#: library/xml.etree.elementtree.rst:536 +#: library/xml.etree.elementtree.rst:538 msgid "should be replaced in text content (default: empty)" msgstr "" @@ -632,14 +638,14 @@ msgid "" "Parses an XML section into an element tree incrementally, and reports what's " "going on to the user. *source* is a filename or :term:`file object` " "containing XML data. *events* is a sequence of events to report back. The " -"supported events are the strings ``\"start\"``, ``\"end\"``, " -"``\"comment\"``, ``\"pi\"``, ``\"start-ns\"`` and ``\"end-ns\"`` (the \"ns\" " -"events are used to get detailed namespace information). If *events* is " -"omitted, only ``\"end\"`` events are reported. *parser* is an optional " -"parser instance. If not given, the standard :class:`XMLParser` parser is " -"used. *parser* must be a subclass of :class:`XMLParser` and can only use " -"the default :class:`TreeBuilder` as a target. Returns an :term:`iterator` " -"providing ``(event, elem)`` pairs." +"supported events are the strings ``\"start\"``, ``\"end\"``, ``\"comment" +"\"``, ``\"pi\"``, ``\"start-ns\"`` and ``\"end-ns\"`` (the \"ns\" events are " +"used to get detailed namespace information). If *events* is omitted, only ``" +"\"end\"`` events are reported. *parser* is an optional parser instance. If " +"not given, the standard :class:`XMLParser` parser is used. *parser* must be " +"a subclass of :class:`XMLParser` and can only use the default :class:" +"`TreeBuilder` as a target. Returns an :term:`iterator` providing ``(event, " +"elem)`` pairs." msgstr "" #: library/xml.etree.elementtree.rst:626 @@ -659,7 +665,8 @@ msgid "" "present." msgstr "" -#: library/xml.etree.elementtree.rst:639 library/xml.etree.elementtree.rst:1469 +#: library/xml.etree.elementtree.rst:639 +#: library/xml.etree.elementtree.rst:1469 msgid "If you need a fully populated element, look for \"end\" events instead." msgstr "" @@ -667,7 +674,8 @@ msgstr "" msgid "The *parser* argument." msgstr "" -#: library/xml.etree.elementtree.rst:644 library/xml.etree.elementtree.rst:1473 +#: library/xml.etree.elementtree.rst:644 +#: library/xml.etree.elementtree.rst:1473 msgid "The ``comment`` and ``pi`` events were added." msgstr "" @@ -725,18 +733,20 @@ msgid "" "subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is " "the output encoding (default is US-ASCII). Use ``encoding=\"unicode\"`` to " "generate a Unicode string (otherwise, a bytestring is generated). *method* " -"is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` (default is " -"``\"xml\"``). *xml_declaration*, *default_namespace* and " -"*short_empty_elements* has the same meaning as in :meth:`ElementTree.write`. " -"Returns an (optionally) encoded string containing the XML data." +"is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` (default is ``\"xml" +"\"``). *xml_declaration*, *default_namespace* and *short_empty_elements* has " +"the same meaning as in :meth:`ElementTree.write`. Returns an (optionally) " +"encoded string containing the XML data." msgstr "" -#: library/xml.etree.elementtree.rst:705 library/xml.etree.elementtree.rst:732 +#: library/xml.etree.elementtree.rst:705 +#: library/xml.etree.elementtree.rst:732 #: library/xml.etree.elementtree.rst:1181 msgid "The *short_empty_elements* parameter." msgstr "" -#: library/xml.etree.elementtree.rst:708 library/xml.etree.elementtree.rst:735 +#: library/xml.etree.elementtree.rst:708 +#: library/xml.etree.elementtree.rst:735 msgid "The *xml_declaration* and *default_namespace* parameters." msgstr "" @@ -752,12 +762,12 @@ msgid "" "subelements. *element* is an :class:`Element` instance. *encoding* [1]_ is " "the output encoding (default is US-ASCII). Use ``encoding=\"unicode\"`` to " "generate a Unicode string (otherwise, a bytestring is generated). *method* " -"is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` (default is " -"``\"xml\"``). *xml_declaration*, *default_namespace* and " -"*short_empty_elements* has the same meaning as in :meth:`ElementTree.write`. " -"Returns a list of (optionally) encoded strings containing the XML data. It " -"does not guarantee any specific sequence, except that ``b\"\"." -"join(tostringlist(element)) == tostring(element)``." +"is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` (default is ``\"xml" +"\"``). *xml_declaration*, *default_namespace* and *short_empty_elements* has " +"the same meaning as in :meth:`ElementTree.write`. Returns a list of " +"(optionally) encoded strings containing the XML data. It does not guarantee " +"any specific sequence, except that ``b\"\".join(tostringlist(element)) == " +"tostring(element)``." msgstr "" #: library/xml.etree.elementtree.rst:738 @@ -844,10 +854,10 @@ msgid "" "Default loader. This default loader reads an included resource from disk. " "*href* is a URL. *parse* is for parse mode either \"xml\" or \"text\". " "*encoding* is an optional text encoding. If not given, encoding is " -"``utf-8``. Returns the expanded resource. If the parse mode is " -"``\"xml\"``, this is an ElementTree instance. If the parse mode is " -"\"text\", this is a Unicode string. If the loader fails, it can return None " -"or raise an exception." +"``utf-8``. Returns the expanded resource. If the parse mode is ``\"xml" +"\"``, this is an ElementTree instance. If the parse mode is \"text\", this " +"is a Unicode string. If the loader fails, it can return None or raise an " +"exception." msgstr "" #: library/xml.etree.elementtree.rst:843 @@ -917,8 +927,8 @@ msgstr "" #: library/xml.etree.elementtree.rst:902 msgid "" -"To collect the inner text of an element, see :meth:`itertext`, for example " -"``\"\".join(element.itertext())``." +"To collect the inner text of an element, see :meth:`itertext`, for example ``" +"\"\".join(element.itertext())``." msgstr "" #: library/xml.etree.elementtree.rst:905 @@ -1167,22 +1177,21 @@ msgid "" "encoding (default is US-ASCII). *xml_declaration* controls if an XML " "declaration should be added to the file. Use ``False`` for never, ``True`` " "for always, ``None`` for only if not US-ASCII or UTF-8 or Unicode (default " -"is ``None``). *default_namespace* sets the default XML namespace (for " -"\"xmlns\"). *method* is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` " -"(default is ``\"xml\"``). The keyword-only *short_empty_elements* parameter " -"controls the formatting of elements that contain no content. If ``True`` " -"(the default), they are emitted as a single self-closed tag, otherwise they " -"are emitted as a pair of start/end tags." +"is ``None``). *default_namespace* sets the default XML namespace (for \"xmlns" +"\"). *method* is either ``\"xml\"``, ``\"html\"`` or ``\"text\"`` (default " +"is ``\"xml\"``). The keyword-only *short_empty_elements* parameter controls " +"the formatting of elements that contain no content. If ``True`` (the " +"default), they are emitted as a single self-closed tag, otherwise they are " +"emitted as a pair of start/end tags." msgstr "" #: library/xml.etree.elementtree.rst:1174 msgid "" "The output is either a string (:class:`str`) or binary (:class:`bytes`). " -"This is controlled by the *encoding* argument. If *encoding* is " -"``\"unicode\"``, the output is a string; otherwise, it's binary. Note that " -"this may conflict with the type of *file* if it's an open :term:`file " -"object`; make sure you do not try to write a string to a binary stream and " -"vice versa." +"This is controlled by the *encoding* argument. If *encoding* is ``\"unicode" +"\"``, the output is a string; otherwise, it's binary. Note that this may " +"conflict with the type of *file* if it's an open :term:`file object`; make " +"sure you do not try to write a string to a binary stream and vice versa." msgstr "" #: library/xml.etree.elementtree.rst:1184 @@ -1369,10 +1378,10 @@ msgid "" "similar to that of :class:`XMLParser`, but instead of pushing calls to a " "callback target, :class:`XMLPullParser` collects an internal list of parsing " "events and lets the user read from it. *events* is a sequence of events to " -"report back. The supported events are the strings ``\"start\"``, " -"``\"end\"``, ``\"comment\"``, ``\"pi\"``, ``\"start-ns\"`` and ``\"end-" -"ns\"`` (the \"ns\" events are used to get detailed namespace information). " -"If *events* is omitted, only ``\"end\"`` events are reported." +"report back. The supported events are the strings ``\"start\"``, ``\"end" +"\"``, ``\"comment\"``, ``\"pi\"``, ``\"start-ns\"`` and ``\"end-ns\"`` (the " +"\"ns\" events are used to get detailed namespace information). If *events* " +"is omitted, only ``\"end\"`` events are reported." msgstr "" #: library/xml.etree.elementtree.rst:1432 diff --git a/library/xml.po b/library/xml.po index 7e8e3b8d0..a03488d66 100644 --- a/library/xml.po +++ b/library/xml.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.sax.handler.po b/library/xml.sax.handler.po index 1d4563ee7..84f920688 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.sax.po b/library/xml.sax.po index 0b1b9a954..d335d30ce 100644 --- a/library/xml.sax.po +++ b/library/xml.sax.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.sax.reader.po b/library/xml.sax.reader.po index ff66d82e6..4eea7bdac 100644 --- a/library/xml.sax.reader.po +++ b/library/xml.sax.reader.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xml.sax.utils.po b/library/xml.sax.utils.po index eac6c8f98..2ca774f75 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xmlrpc.client.po b/library/xmlrpc.client.po index ccc77ffa8..4a6871a69 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -328,8 +328,8 @@ msgstr "" msgid "" "Signatures themselves are restricted to the top level parameters expected by " "a method. For instance if a method expects one array of structs as a " -"parameter, and it returns a string, its signature is simply \"string, " -"array\". If it expects three integers and returns a string, its signature is " +"parameter, and it returns a string, its signature is simply \"string, array" +"\". If it expects three integers and returns a string, its signature is " "\"string, int, int, int\"." msgstr "" diff --git a/library/xmlrpc.po b/library/xmlrpc.po index 97ac1b7d6..877d5619e 100644 --- a/library/xmlrpc.po +++ b/library/xmlrpc.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/xmlrpc.server.po b/library/xmlrpc.server.po index 746f34619..9b8f1ed6b 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/zipapp.po b/library/zipapp.po index eadffc4dd..34f68e0ae 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/zipfile.po b/library/zipfile.po index 1b8b03f18..27550ec89 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/zipimport.po b/library/zipimport.po index 18552ac28..c504b825a 100644 --- a/library/zipimport.po +++ b/library/zipimport.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/zlib.po b/library/zlib.po index 36adee61a..ed7f0c608 100644 --- a/library/zlib.po +++ b/library/zlib.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/library/zoneinfo.po b/library/zoneinfo.po index 4ca0e311c..305ed30c7 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/license.po b/license.po index fa3bfe07d..64d1748e9 100644 --- a/license.po +++ b/license.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-04-10 14:55+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index fb19db6c3..eee614181 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/datamodel.po b/reference/datamodel.po index 274edd5b4..d4c8a4a42 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -293,8 +293,8 @@ msgid "" "representing the values ``False`` and ``True`` are the only Boolean objects. " "The Boolean type is a subtype of the integer type, and Boolean values behave " "like the values 0 and 1, respectively, in almost all contexts, the exception " -"being that when converted to a string, the strings ``\"False\"`` or " -"``\"True\"`` are returned, respectively." +"being that when converted to a string, the strings ``\"False\"`` or ``\"True" +"\"`` are returned, respectively." msgstr "" #: reference/datamodel.rst:240 @@ -1792,10 +1792,10 @@ msgstr "" #: reference/datamodel.rst:1522 msgid "" -"By default, the :meth:`__hash__` values of str and bytes objects are " -"\"salted\" with an unpredictable random value. Although they remain " -"constant within an individual Python process, they are not predictable " -"between repeated invocations of Python." +"By default, the :meth:`__hash__` values of str and bytes objects are \"salted" +"\" with an unpredictable random value. Although they remain constant within " +"an individual Python process, they are not predictable between repeated " +"invocations of Python." msgstr "" #: reference/datamodel.rst:1527 @@ -2010,9 +2010,9 @@ msgid "" "The following methods only apply when an instance of the class containing " "the method (a so-called *descriptor* class) appears in an *owner* class (the " "descriptor must be in either the owner's class dictionary or in the class " -"dictionary for one of its parents). In the examples below, \"the " -"attribute\" refers to the attribute whose name is the key of the property in " -"the owner class' :attr:`~object.__dict__`." +"dictionary for one of its parents). In the examples below, \"the attribute" +"\" refers to the attribute whose name is the key of the property in the " +"owner class' :attr:`~object.__dict__`." msgstr "" #: reference/datamodel.rst:1715 @@ -2259,9 +2259,8 @@ msgstr "" #: reference/datamodel.rst:1879 msgid "" -"Nonempty *__slots__* does not work for classes derived from \"variable-" -"length\" built-in types such as :class:`int`, :class:`bytes` and :class:" -"`tuple`." +"Nonempty *__slots__* does not work for classes derived from \"variable-length" +"\" built-in types such as :class:`int`, :class:`bytes` and :class:`tuple`." msgstr "" #: reference/datamodel.rst:1882 @@ -2999,16 +2998,15 @@ msgstr "" #: reference/datamodel.rst:2558 msgid "" -"These methods are called to implement the binary arithmetic operations " -"(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" -"`pow`, ``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to " -"evaluate the expression ``x + y``, where *x* is an instance of a class that " -"has an :meth:`__add__` method, ``x.__add__(y)`` is called. The :meth:" -"`__divmod__` method should be the equivalent to using :meth:`__floordiv__` " -"and :meth:`__mod__`; it should not be related to :meth:`__truediv__`. Note " -"that :meth:`__pow__` should be defined to accept an optional third argument " -"if the ternary version of the built-in :func:`pow` function is to be " -"supported." +"These methods are called to implement the binary arithmetic operations (``" +"+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, " +"``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``). For instance, to evaluate the " +"expression ``x + y``, where *x* is an instance of a class that has an :meth:" +"`__add__` method, ``x.__add__(y)`` is called. The :meth:`__divmod__` method " +"should be the equivalent to using :meth:`__floordiv__` and :meth:`__mod__`; " +"it should not be related to :meth:`__truediv__`. Note that :meth:`__pow__` " +"should be defined to accept an optional third argument if the ternary " +"version of the built-in :func:`pow` function is to be supported." msgstr "" #: reference/datamodel.rst:2569 @@ -3019,9 +3017,9 @@ msgstr "" #: reference/datamodel.rst:2592 msgid "" -"These methods are called to implement the binary arithmetic operations " -"(``+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:" -"`pow`, ``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) " +"These methods are called to implement the binary arithmetic operations (``" +"+``, ``-``, ``*``, ``@``, ``/``, ``//``, ``%``, :func:`divmod`, :func:`pow`, " +"``**``, ``<<``, ``>>``, ``&``, ``^``, ``|``) with reflected (swapped) " "operands. These functions are only called if the left operand does not " "support the corresponding operation [#]_ and the operands are of different " "types. [#]_ For instance, to evaluate the expression ``x - y``, where *y* is " diff --git a/reference/executionmodel.po b/reference/executionmodel.po index 85d33dc0d..b5f776c7e 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/expressions.po b/reference/expressions.po index ab07669a1..02b00174f 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1757,8 +1757,8 @@ msgstr "" msgid "" "For the string and bytes types, ``x in y`` is ``True`` if and only if *x* is " "a substring of *y*. An equivalent test is ``y.find(x) != -1``. Empty " -"strings are always considered to be a substring of any other string, so " -"``\"\" in \"abc\"`` will return ``True``." +"strings are always considered to be a substring of any other string, so ``" +"\"\" in \"abc\"`` will return ``True``." msgstr "" #: reference/expressions.rst:1635 diff --git a/reference/grammar.po b/reference/grammar.po index 118681b8d..3c8ca11db 100644 --- a/reference/grammar.po +++ b/reference/grammar.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/import.po b/reference/import.po index d391bbf39..03c739786 100644 --- a/reference/import.po +++ b/reference/import.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/index.po b/reference/index.po index 62acfa024..a9fdf980f 100644 --- a/reference/index.po +++ b/reference/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/introduction.po b/reference/introduction.po index f837645e9..1f0fdb9b6 100644 --- a/reference/introduction.po +++ b/reference/introduction.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/lexical_analysis.po b/reference/lexical_analysis.po index 935aee9dc..8239321f9 100644 --- a/reference/lexical_analysis.po +++ b/reference/lexical_analysis.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -467,8 +467,8 @@ msgstr "" #: reference/lexical_analysis.rst:399 msgid "" -"Elsewhere, ``_`` is a regular identifier. It is often used to name " -"\"special\" items, but it is not special to Python itself." +"Elsewhere, ``_`` is a regular identifier. It is often used to name \"special" +"\" items, but it is not special to Python itself." msgstr "" #: reference/lexical_analysis.rst:404 diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index 7acaffbaf..b1b338906 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/reference/toplevel_components.po b/reference/toplevel_components.po index 726e428f7..3fe92f244 100644 --- a/reference/toplevel_components.po +++ b/reference/toplevel_components.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/sphinx.po b/sphinx.po index 4f32c7c63..26ba40ef8 100644 --- a/sphinx.po +++ b/sphinx.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-01 16:33+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/appendix.po b/tutorial/appendix.po index 6e920d738..7e706a3aa 100644 --- a/tutorial/appendix.po +++ b/tutorial/appendix.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-02 19:09+0300\n" "Last-Translator: \n" "Language-Team: TURKISH\n" @@ -90,8 +90,8 @@ msgstr "" "(yorumlayıcının kullanıcının :envvar:`PATH`) komut dosyasının başında " "olduğunu ve dosyaya yürütülebilir bir mod verdiğini varsayarsak. ``#!`` " "dosyanın ilk iki karakteri olmalıdır. Bazı platformlarda, bu ilk satırın " -"Windows (``'\\r\\n'``) satır sonuyla değil, Unix stili bir satır sonuyla " -"(``\\n'``) bitmesi gerekir. Python'da yorum başlatmak için karma veya pound " +"Windows (``'\\r\\n'``) satır sonuyla değil, Unix stili bir satır sonuyla (``" +"\\n'``) bitmesi gerekir. Python'da yorum başlatmak için karma veya pound " "karakteri olan ``'#'`` kullanıldığını unutmayın." #: tutorial/appendix.rst:52 diff --git a/tutorial/appetite.po b/tutorial/appetite.po index 2dc2ec601..0c3404113 100644 --- a/tutorial/appetite.po +++ b/tutorial/appetite.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-07 20:48+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/classes.po b/tutorial/classes.po index ddadf544a..2ba82d147 100644 --- a/tutorial/classes.po +++ b/tutorial/classes.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-17 22:57+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -388,10 +388,10 @@ msgstr "Örnek kodun çıktısı şudur:" #: tutorial/classes.rst:200 msgid "" -"Note how the *local* assignment (which is default) didn't change " -"*scope_test*\\'s binding of *spam*. The :keyword:`nonlocal` assignment " -"changed *scope_test*\\'s binding of *spam*, and the :keyword:`global` " -"assignment changed the module-level binding." +"Note how the *local* assignment (which is default) didn't change *scope_test*" +"\\'s binding of *spam*. The :keyword:`nonlocal` assignment changed " +"*scope_test*\\'s binding of *spam*, and the :keyword:`global` assignment " +"changed the module-level binding." msgstr "" "Varsayılan atama olan *local* atamasının *scope_test*\\'in *spam* " "bağlamasını nasıl değiştirmediğini unutmayın. :keyword:`nonlocal` ataması " @@ -1161,9 +1161,9 @@ msgid "" "or C \"struct\", bundling together a few named data items. An empty class " "definition will do nicely::" msgstr "" -"Bazen, birkaç adlandırılmış veri öğesini bir araya getirerek Pascal " -"\"kaydı\" veya C \"yapısına\" benzer bir veri türüne sahip olmak " -"yararlıdır. Boş bir sınıf tanımı güzel bir şekilde yapacaktır::" +"Bazen, birkaç adlandırılmış veri öğesini bir araya getirerek Pascal \"kaydı" +"\" veya C \"yapısına\" benzer bir veri türüne sahip olmak yararlıdır. Boş " +"bir sınıf tanımı güzel bir şekilde yapacaktır::" #: tutorial/classes.rst:753 msgid "" diff --git a/tutorial/controlflow.po b/tutorial/controlflow.po index 0a5584322..b1cb0d402 100644 --- a/tutorial/controlflow.po +++ b/tutorial/controlflow.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-11-06 23:50+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -266,8 +266,8 @@ msgid "" msgstr "" ":keyword:`pass` 'in kullanılabileceği bir başka yer de, yeni kod üzerinde " "çalışırken bir fonksiyon veya koşul gövdesi için bir yer tutucu olarak daha " -"soyut bir düzeyde düşünmeye devam etmenizi sağlamaktır. :keyword:`!" -"pass` sessizce göz ardı edilir::" +"soyut bir düzeyde düşünmeye devam etmenizi sağlamaktır. :keyword:`!pass` " +"sessizce göz ardı edilir::" #: tutorial/controlflow.rst:251 msgid ":keyword:`!match` Statements" @@ -426,13 +426,13 @@ msgstr "" #: tutorial/controlflow.rst:380 msgid "" -"Mapping patterns: ``{\"bandwidth\": b, \"latency\": l}`` captures the " -"``\"bandwidth\"`` and ``\"latency\"`` values from a dictionary. Unlike " +"Mapping patterns: ``{\"bandwidth\": b, \"latency\": l}`` captures the ``" +"\"bandwidth\"`` and ``\"latency\"`` values from a dictionary. Unlike " "sequence patterns, extra keys are ignored. An unpacking like ``**rest`` is " "also supported. (But ``**_`` would be redundant, so it is not allowed.)" msgstr "" -"Eşleme kalıpları: ``{\"bandwidth\": b, \"latency\": l}`` bir sözlükten " -"``\"bandwidth\"`` ve ``\"latency\"`` değerlerini yakalar. Sıra kalıplarının " +"Eşleme kalıpları: ``{\"bandwidth\": b, \"latency\": l}`` bir sözlükten ``" +"\"bandwidth\"`` ve ``\"latency\"`` değerlerini yakalar. Sıra kalıplarının " "aksine, ekstra anahtarlar göz ardı edilir. ``**rest`` gibi bir paket açma " "da desteklenir. (Ancak ``**_`` gereksiz olacağından buna izin verilmez)" @@ -790,11 +790,11 @@ msgid "" msgstr "" "``**name`` biçiminde bir son biçimsel parametre mevcut olduğunda, biçimsel " "parametreye karşılık gelenler dışındaki tüm anahtar kelime argümanlarını " -"içeren bir sözlük alır (bkz. :ref:`typesmapping`). Bu, biçimsel parametre " -":ref:`tuple ` listesinin ötesindeki konumsal argümanları içeren bir " -"``*name`` biçimindeki bir biçimsel parametre ile birleştirilebilir (bir sonraki " -"alt bölümde açıklanmıştır). (``*name``, ``**name`` 'den önce gelmelidir.) Örneğin, " -"aşağıdaki gibi bir fonksiyon tanımlarsak::" +"içeren bir sözlük alır (bkz. :ref:`typesmapping`). Bu, biçimsel parametre :" +"ref:`tuple ` listesinin ötesindeki konumsal argümanları içeren " +"bir ``*name`` biçimindeki bir biçimsel parametre ile birleştirilebilir (bir " +"sonraki alt bölümde açıklanmıştır). (``*name``, ``**name`` 'den önce " +"gelmelidir.) Örneğin, aşağıdaki gibi bir fonksiyon tanımlarsak::" #: tutorial/controlflow.rst:677 msgid "It could be called like this::" @@ -1169,11 +1169,11 @@ msgid "" "line *after* the first line of the string determines the amount of " "indentation for the entire documentation string. (We can't use the first " "line since it is generally adjacent to the string's opening quotes so its " -"indentation is not apparent in the string literal.) Whitespace " -"\"equivalent\" to this indentation is then stripped from the start of all " -"lines of the string. Lines that are indented less should not occur, but if " -"they occur all their leading whitespace should be stripped. Equivalence of " -"whitespace should be tested after expansion of tabs (to 8 spaces, normally)." +"indentation is not apparent in the string literal.) Whitespace \"equivalent" +"\" to this indentation is then stripped from the start of all lines of the " +"string. Lines that are indented less should not occur, but if they occur " +"all their leading whitespace should be stripped. Equivalence of whitespace " +"should be tested after expansion of tabs (to 8 spaces, normally)." msgstr "" "Python ayrıştırıcısı, Python'daki çok satırlı dize değişmezlerinden " "girintiyi çıkarmaz, bu nedenle belgeleri işleyen araçların istenirse " diff --git a/tutorial/datastructures.po b/tutorial/datastructures.po index 3acf4068b..725ccf8fc 100644 --- a/tutorial/datastructures.po +++ b/tutorial/datastructures.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-06-17 01:21+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -763,9 +763,9 @@ msgid "" "in C programs: typing ``=`` in an expression when ``==`` was intended." msgstr "" "Python'da, C'den farklı olarak, ifadelerin içindeki atamanın :ref:`walrus " -"operatörü ` ``=`` ile " -"açıkça yapılması gerektiğini unutmayın. Bu, C programlarında karşılaşılan " -"yaygın bir sorunu önler: ``==`` yazmak isterken ``=`` yazmak." +"operatörü ` ``=`` ile açıkça " +"yapılması gerektiğini unutmayın. Bu, C programlarında karşılaşılan yaygın " +"bir sorunu önler: ``==`` yazmak isterken ``=`` yazmak." #: tutorial/datastructures.rst:704 msgid "Comparing Sequences and Other Types" diff --git a/tutorial/errors.po b/tutorial/errors.po index 15b6cc3b5..fd2e79689 100644 --- a/tutorial/errors.po +++ b/tutorial/errors.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-20 19:35+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -425,8 +425,8 @@ msgid "" "Most exceptions are defined with names that end in \"Error\", similar to the " "naming of the standard exceptions." msgstr "" -"Çoğu özel durum, standart özel durumların adlandırışına benzer şekilde " -"\"Hata\" ile biten adlarla tanımlanır." +"Çoğu özel durum, standart özel durumların adlandırışına benzer şekilde \"Hata" +"\" ile biten adlarla tanımlanır." #: tutorial/errors.rst:355 msgid "" @@ -448,9 +448,8 @@ msgid "" "to define clean-up actions that must be executed under all circumstances. " "For example::" msgstr "" -":keyword:`try` deyimi, her koşulda yürütülmesi gereken temizleme " -"eylemlerini tanımlamayı amaçlayan başka bir opsiyonel yan tümceye sahiptir. " -"Mesela::" +":keyword:`try` deyimi, her koşulda yürütülmesi gereken temizleme eylemlerini " +"tanımlamayı amaçlayan başka bir opsiyonel yan tümceye sahiptir. Mesela::" #: tutorial/errors.rst:379 msgid "" diff --git a/tutorial/floatingpoint.po b/tutorial/floatingpoint.po index aa43fd436..b03e9f42e 100644 --- a/tutorial/floatingpoint.po +++ b/tutorial/floatingpoint.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-06-14 14:55+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -248,8 +248,8 @@ msgid "" msgstr "" "Söylendiği üzere, \"kolay cevaplar yoktur.\" Yine de, kayan nokta konusunda " "gereksiz yere temkinli olmayın! Python kayan nokta işlemlerindeki hatalar " -"kayan nokta donanımından miras alınır ve çoğu makinede işlem başına " -"2\\*\\*53'te 1 parçadan fazla değildir. Bu, çoğu görev için fazlasıyla " +"kayan nokta donanımından miras alınır ve çoğu makinede işlem başına 2\\*" +"\\*53'te 1 parçadan fazla değildir. Bu, çoğu görev için fazlasıyla " "yeterlidir, ancak bunun ondalık aritmetik olmadığını ve her kayan nokta " "işleminin yeni bir yuvarlama hatasına maruz kalabileceğini aklınızda " "bulundurmanız gerekir." @@ -393,11 +393,10 @@ msgstr "" msgid "" "Why is that? 1/10 is not exactly representable as a binary fraction. Almost " "all machines today (November 2000) use IEEE-754 floating point arithmetic, " -"and almost all platforms map Python floats to IEEE-754 \"double " -"precision\". 754 doubles contain 53 bits of precision, so on input the " -"computer strives to convert 0.1 to the closest fraction it can of the form " -"*J*/2**\\ *N* where *J* is an integer containing exactly 53 bits. " -"Rewriting ::" +"and almost all platforms map Python floats to IEEE-754 \"double precision" +"\". 754 doubles contain 53 bits of precision, so on input the computer " +"strives to convert 0.1 to the closest fraction it can of the form *J*/2**\\ " +"*N* where *J* is an integer containing exactly 53 bits. Rewriting ::" msgstr "" "Peki bu neden gerçekleşir? 1/10 tam olarak ikili bir kesir olarak temsil " "edilemez. Günümüzde (Kasım 2000) neredeyse tüm makineler IEEE-754 kayan " diff --git a/tutorial/index.po b/tutorial/index.po index 0efff7597..169337e03 100644 --- a/tutorial/index.po +++ b/tutorial/index.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-16 16:09+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/inputoutput.po b/tutorial/inputoutput.po index 5144f17d2..327019d5d 100644 --- a/tutorial/inputoutput.po +++ b/tutorial/inputoutput.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-24 21:32+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -397,9 +397,9 @@ msgstr "" "Normalde, dosyalar :dfn:`text mode` içinde açılır, bu da belirli bir " "kodlamada kodlanmış dizeleri dosyadan ve dosyaya okuyup yazdığınız anlamına " "gelir. Kodlama belirtilmezse, varsayılan değer platforma bağlıdır (bkz: :" -"func:`open`). Moda eklenen ``'b'`` dosyayı :dfn:`binary mode` 'da açar: artık " -"veriler bayt nesneleri biçiminde okunur ve yazılır. Bu mod metin içermeyen " -"tüm dosyalar için kullanılmalıdır." +"func:`open`). Moda eklenen ``'b'`` dosyayı :dfn:`binary mode` 'da açar: " +"artık veriler bayt nesneleri biçiminde okunur ve yazılır. Bu mod metin " +"içermeyen tüm dosyalar için kullanılmalıdır." #: tutorial/inputoutput.rst:323 msgid "" @@ -411,8 +411,8 @@ msgid "" "file:`JPEG` or :file:`EXE` files. Be very careful to use binary mode when " "reading and writing such files." msgstr "" -"Metin modunda, okurken varsayılan değer platforma özgü satır sonlarını " -"(``\\n`` on Unix, ``\\r\\n`` on Windows) yalnızca ``\\n`` olarak " +"Metin modunda, okurken varsayılan değer platforma özgü satır sonlarını (``" +"\\n`` on Unix, ``\\r\\n`` on Windows) yalnızca ``\\n`` olarak " "dönüştürmektir. Metin modunda yazarken, varsayılan değer ``\\n`` " "oluşumlarını platforma özgü satır sonlarına geri dönüştürmektir. Dosya " "verilerinde yapılan bu sahne arkası değişikliği metin dosyaları için iyidir, " @@ -425,8 +425,8 @@ msgid "" "It is good practice to use the :keyword:`with` keyword when dealing with " "file objects. The advantage is that the file is properly closed after its " "suite finishes, even if an exception is raised at some point. Using :" -"keyword:`!with` is also much shorter than writing equivalent :keyword:" -"`try`\\ -\\ :keyword:`finally` blocks::" +"keyword:`!with` is also much shorter than writing equivalent :keyword:`try`" +"\\ -\\ :keyword:`finally` blocks::" msgstr "" "Dosya nesneleriyle uğraşırken :keyword:`with` anahtar sözcüğünü kullanmak " "iyi bir uygulamadır. Avantajı, herhangi bir noktada bir hata oluşsa bile, " @@ -498,8 +498,8 @@ msgstr "" #: tutorial/inputoutput.rst:390 msgid "" -"``f.readline()`` reads a single line from the file; a newline character " -"(``\\n``) is left at the end of the string, and is only omitted on the last " +"``f.readline()`` reads a single line from the file; a newline character (``" +"\\n``) is left at the end of the string, and is only omitted on the last " "line of the file if the file doesn't end in a newline. This makes the " "return value unambiguous; if ``f.readline()`` returns an empty string, the " "end of the file has been reached, while a blank line is represented by " diff --git a/tutorial/interactive.po b/tutorial/interactive.po index 84d3a0b22..9b05433c2 100644 --- a/tutorial/interactive.po +++ b/tutorial/interactive.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-13 20:23+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/interpreter.po b/tutorial/interpreter.po index dabe1f948..9756ed7c7 100644 --- a/tutorial/interpreter.po +++ b/tutorial/interpreter.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-23 20:04+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/introduction.po b/tutorial/introduction.po index a0f7340b7..a47293f66 100644 --- a/tutorial/introduction.po +++ b/tutorial/introduction.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-27 20:43+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -237,10 +237,10 @@ msgstr "" #: tutorial/introduction.rst:192 msgid "" -"String literals can span multiple lines. One way is using triple-quotes: " -"``\"\"\"...\"\"\"`` or ``'''...'''``. End of lines are automatically " -"included in the string, but it's possible to prevent this by adding a ``\\`` " -"at the end of the line. The following example::" +"String literals can span multiple lines. One way is using triple-quotes: ``" +"\"\"\"...\"\"\"`` or ``'''...'''``. End of lines are automatically included " +"in the string, but it's possible to prevent this by adding a ``\\`` at the " +"end of the line. The following example::" msgstr "" "Dize sabitleri birden çok satıra yayılabilir. Bunun bir yolu üçlü tırnak " "kullanmaktır: ``\"\"\"...\"\"\"`` veya ``'''...'''``. Satır sonu otomatik " @@ -286,8 +286,8 @@ msgstr "" msgid "" "If you want to concatenate variables or a variable and a literal, use ``+``::" msgstr "" -"Değişkenleri veya bir değişkeni ve bir sabiti birleştirmek istiyorsanız, " -"``+`` kullanın:" +"Değişkenleri veya bir değişkeni ve bir sabiti birleştirmek istiyorsanız, ``" +"+`` kullanın:" #: tutorial/introduction.rst:250 msgid "" @@ -386,8 +386,8 @@ msgid "" "Python strings cannot be changed --- they are :term:`immutable`. Therefore, " "assigning to an indexed position in the string results in an error::" msgstr "" -"Python dizeleri değiştirilemez --- bunlar :term:`immutable` 'dır. Bu nedenle, " -"dizide dizine alınmış bir konuma atamak bir hatayla sonuçlanır::" +"Python dizeleri değiştirilemez --- bunlar :term:`immutable` 'dır. Bu " +"nedenle, dizide dizine alınmış bir konuma atamak bir hatayla sonuçlanır::" #: tutorial/introduction.rst:344 msgid "If you need a different string, you should create a new one::" diff --git a/tutorial/modules.po b/tutorial/modules.po index c165e0655..b706f361d 100644 --- a/tutorial/modules.po +++ b/tutorial/modules.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-27 20:06+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -198,8 +198,8 @@ msgid "" "If the module name is followed by :keyword:`!as`, then the name following :" "keyword:`!as` is bound directly to the imported module." msgstr "" -"Modül adının ardından :keyword:`!as` geliyorsa, :keyword:`!as` 'den sonraki ad " -"doğrudan içe aktarılan modüle bağlanır." +"Modül adının ardından :keyword:`!as` geliyorsa, :keyword:`!as` 'den sonraki " +"ad doğrudan içe aktarılan modüle bağlanır." #: tutorial/modules.rst:125 msgid "" @@ -243,8 +243,8 @@ msgid "" "with the ``__name__`` set to ``\"__main__\"``. That means that by adding " "this code at the end of your module::" msgstr "" -"modüldeki kod, içe aktardığınız gibi yürütülür, ancak ``__name__`` " -"``\"__main__\"`` olarak ayarlanır. Bu, modülünüzün sonuna bu kodu ekleyerek:" +"modüldeki kod, içe aktardığınız gibi yürütülür, ancak ``__name__`` ``" +"\"__main__\"`` olarak ayarlanır. Bu, modülünüzün sonuna bu kodu ekleyerek:" #: tutorial/modules.rst:161 msgid "" diff --git a/tutorial/stdlib.po b/tutorial/stdlib.po index ddc179f06..7209c798a 100644 --- a/tutorial/stdlib.po +++ b/tutorial/stdlib.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-02-22 23:00+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/tutorial/stdlib2.po b/tutorial/stdlib2.po index 6a2a3e4c0..2c5e2cfb1 100644 --- a/tutorial/stdlib2.po +++ b/tutorial/stdlib2.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-02 22:55+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -51,9 +51,9 @@ msgid "" msgstr "" ":mod:`pprint` modülü, hem yerleşik hem de kullanıcı tanımlı nesnelerin " "yorumlayıcı tarafından okunabilecek şekilde yazdırılması üzerinde daha " -"karmaşık kontrol sunar. Sonuç bir satırdan uzun olduğunda, \"pretty " -"printer\" veri yapısını daha net bir şekilde ortaya çıkarmak için satır " -"sonları ve girintiler ekler::" +"karmaşık kontrol sunar. Sonuç bir satırdan uzun olduğunda, \"pretty printer" +"\" veri yapısını daha net bir şekilde ortaya çıkarmak için satır sonları ve " +"girintiler ekler::" #: tutorial/stdlib2.rst:39 msgid "" @@ -150,18 +150,17 @@ msgid "" "The :mod:`struct` module provides :func:`~struct.pack` and :func:`~struct." "unpack` functions for working with variable length binary record formats. " "The following example shows how to loop through header information in a ZIP " -"file without using the :mod:`zipfile` module. Pack codes ``\"H\"`` and " -"``\"I\"`` represent two and four byte unsigned numbers respectively. The " -"``\"<\"`` indicates that they are standard size and in little-endian byte " -"order::" +"file without using the :mod:`zipfile` module. Pack codes ``\"H\"`` and ``\"I" +"\"`` represent two and four byte unsigned numbers respectively. The ``\"<" +"\"`` indicates that they are standard size and in little-endian byte order::" msgstr "" ":mod:`struct` modülü, değişken uzunluklu ikili kayıt formatlarıyla çalışmak " "için :func:`~struct.pack` ve :func:`~struct.unpack` işlevlerini sağlar. " "Aşağıdaki örnek, :mod:`zipfile` modülünü kullanmadan bir ZIP dosyasındaki " -"başlık bilgilerinin nasıl döngüye alınacağını gösterir. Paket kodları " -"``\"H\"`` ve ``\"I\"`` sırasıyla iki ve dört baytlık işaretsiz sayıları " -"temsil eder. ``\"<\"``, standart boyutta ve küçük endian bayt düzeninde " -"olduklarını gösterir::" +"başlık bilgilerinin nasıl döngüye alınacağını gösterir. Paket kodları ``\"H" +"\"`` ve ``\"I\"`` sırasıyla iki ve dört baytlık işaretsiz sayıları temsil " +"eder. ``\"<\"``, standart boyutta ve küçük endian bayt düzeninde olduklarını " +"gösterir::" #: tutorial/stdlib2.rst:167 msgid "Multi-threading" @@ -325,8 +324,8 @@ msgstr "" ":mod:`array` modülü, yalnızca homojen verileri depolayan ve daha kompakt bir " "şekilde depolayan bir liste gibi bir :class:`~array.array()` nesnesi sağlar. " "Aşağıdaki örnek, normal Python int nesneleri listeleri için giriş başına " -"olağan 16 bayt yerine iki baytlık işaretsiz ikili sayılar (tür kodu " -"``\"H\"``) olarak saklanan bir sayı dizisini gösterir:" +"olağan 16 bayt yerine iki baytlık işaretsiz ikili sayılar (tür kodu ``\"H" +"\"``) olarak saklanan bir sayı dizisini gösterir:" #: tutorial/stdlib2.rst:309 msgid "" diff --git a/tutorial/venv.po b/tutorial/venv.po index c7fd52f14..571fcae48 100644 --- a/tutorial/venv.po +++ b/tutorial/venv.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2021-12-27 22:33+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -183,9 +183,9 @@ msgid "" "etc. (Consult the :ref:`installing-index` guide for complete documentation " "for ``pip``.)" msgstr "" -"``pip`` bir dizi alt komut içerir: \"install\" (yükle), " -"\"uninstall\" (kaldır), \"freeze\" (dondur), vb. (``pip`` için eksiksiz " -"dokümantasyon için :ref:`installing-index` rehberine bakın.)" +"``pip`` bir dizi alt komut içerir: \"install\" (yükle), \"uninstall" +"\" (kaldır), \"freeze\" (dondur), vb. (``pip`` için eksiksiz dokümantasyon " +"için :ref:`installing-index` rehberine bakın.)" #: tutorial/venv.rst:104 msgid "" diff --git a/tutorial/whatnow.po b/tutorial/whatnow.po index 7a65ff5cc..5cd9be12b 100644 --- a/tutorial/whatnow.po +++ b/tutorial/whatnow.po @@ -1,12 +1,12 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: 2022-01-06 21:48+0300\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/using/cmdline.po b/using/cmdline.po index 0d972fb1c..d73f11424 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -110,8 +110,8 @@ msgstr "" #: using/cmdline.rst:68 msgid "" -"If this option is given, the first element of :data:`sys.argv` will be ``\"-" -"c\"`` and the current directory will be added to the start of :data:`sys." +"If this option is given, the first element of :data:`sys.argv` will be ``\"-c" +"\"`` and the current directory will be added to the start of :data:`sys." "path` (allowing modules in that directory to be imported as top level " "modules)." msgstr "" diff --git a/using/configure.po b/using/configure.po index fb0bcc19e..ba3edfd90 100644 --- a/using/configure.po +++ b/using/configure.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/using/editors.po b/using/editors.po index b3b9328d1..91dc5199c 100644 --- a/using/editors.po +++ b/using/editors.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/using/index.po b/using/index.po index b7b3306d6..ec0218b02 100644 --- a/using/index.po +++ b/using/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/using/mac.po b/using/mac.po index 57113e765..f69cc7193 100644 --- a/using/mac.po +++ b/using/mac.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/using/unix.po b/using/unix.po index 717c0e612..b25a8388f 100644 --- a/using/unix.po +++ b/using/unix.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -142,8 +142,8 @@ msgstr "" #: using/unix.rst:95 msgid "" "These are subject to difference depending on local installation " -"conventions; :envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` " -"(``${exec_prefix}``) are installation-dependent and should be interpreted as " +"conventions; :envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` (``" +"${exec_prefix}``) are installation-dependent and should be interpreted as " "for GNU software; they may be the same." msgstr "" diff --git a/using/windows.po b/using/windows.po index 37cbbbb64..567f7a9c4 100644 --- a/using/windows.po +++ b/using/windows.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -193,8 +193,8 @@ msgid "" "In the latest versions of Windows, this limitation can be expanded to " "approximately 32,000 characters. Your administrator will need to activate " "the \"Enable Win32 long paths\" group policy, or set ``LongPathsEnabled`` to " -"``1`` in the registry key " -"``HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\FileSystem``." +"``1`` in the registry key ``HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet" +"\\Control\\FileSystem``." msgstr "" #: using/windows.rst:110 @@ -300,9 +300,9 @@ msgstr "" #: using/windows.rst:152 msgid "" -":file:`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY` or :file:" -"`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-32` or :file:" -"`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-64`" +":file:`%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY` or :file:`" +"%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-32` or :file:`" +"%LocalAppData%\\\\\\ Programs\\\\Python\\\\\\ PythonXY-64`" msgstr "" #: using/windows.rst:162 @@ -664,19 +664,18 @@ msgid "" "At runtime, Python will use a private copy of well-known Windows folders and " "the registry. For example, if the environment variable :envvar:`%APPDATA%` " "is :file:`c:\\\\Users\\\\\\\\AppData\\\\`, then when writing to :file:" -"`C:\\\\Users\\\\\\\\AppData\\\\Local` will write to :file:`C:\\" -"\\Users\\\\\\\\AppData\\\\Local\\\\Packages\\" -"\\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\\\\LocalCache\\\\Local\\" -"\\`." +"`C:\\\\Users\\\\\\\\AppData\\\\Local` will write to :file:`C:\\\\Users" +"\\\\\\\\AppData\\\\Local\\\\Packages\\\\PythonSoftwareFoundation." +"Python.3.8_qbz5n2kfra8p0\\\\LocalCache\\\\Local\\\\`." msgstr "" #: using/windows.rst:357 msgid "" "When reading files, Windows will return the file from the private folder, or " "if that does not exist, the real Windows directory. For example reading :" -"file:`C:\\\\Windows\\\\System32` returns the contents of :file:`C:\\" -"\\Windows\\\\System32` plus the contents of :file:`C:\\\\Program Files\\" -"\\WindowsApps\\\\package_name\\\\VFS\\\\SystemX86`." +"file:`C:\\\\Windows\\\\System32` returns the contents of :file:`C:\\\\Windows" +"\\\\System32` plus the contents of :file:`C:\\\\Program Files\\\\WindowsApps" +"\\\\package_name\\\\VFS\\\\SystemX86`." msgstr "" #: using/windows.rst:361 @@ -1062,9 +1061,9 @@ msgstr "" #: using/windows.rst:625 msgid "" -"On the first page of the installer, an option labelled \"Add Python to " -"PATH\" may be selected to have the installer add the install location into " -"the :envvar:`PATH`. The location of the :file:`Scripts\\\\` folder is also " +"On the first page of the installer, an option labelled \"Add Python to PATH" +"\" may be selected to have the installer add the install location into the :" +"envvar:`PATH`. The location of the :file:`Scripts\\\\` folder is also " "added. This allows you to type :command:`python` to run the interpreter, " "and :command:`pip` for the package installer. Thus, you can also execute " "your scripts with command line options, see :ref:`using-on-cmdline` " @@ -1545,9 +1544,9 @@ msgstr "" msgid "" "Python usually stores its library (and thereby your site-packages folder) in " "the installation directory. So, if you had installed Python to :file:`C:\\" -"\\Python\\\\`, the default library would reside in :file:`C:\\\\Python\\" -"\\Lib\\\\` and third-party modules should be stored in :file:`C:\\\\Python\\" -"\\Lib\\\\site-packages\\\\`." +"\\Python\\\\`, the default library would reside in :file:`C:\\\\Python\\\\Lib" +"\\\\` and third-party modules should be stored in :file:`C:\\\\Python\\\\Lib" +"\\\\site-packages\\\\`." msgstr "" #: using/windows.rst:986 diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index 8b17f1752..a5bc43191 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -210,11 +210,10 @@ msgstr "" #: whatsnew/2.0.rst:155 msgid "" "In Python source code, Unicode strings are written as ``u\"string\"``. " -"Arbitrary Unicode characters can be written using a new escape sequence, " -"``\\uHHHH``, where *HHHH* is a 4-digit hexadecimal number from 0000 to " -"FFFF. The existing ``\\xHHHH`` escape sequence can also be used, and octal " -"escapes can be used for characters up to U+01FF, which is represented by " -"``\\777``." +"Arbitrary Unicode characters can be written using a new escape sequence, ``" +"\\uHHHH``, where *HHHH* is a 4-digit hexadecimal number from 0000 to FFFF. " +"The existing ``\\xHHHH`` escape sequence can also be used, and octal escapes " +"can be used for characters up to U+01FF, which is represented by ``\\777``." msgstr "" #: whatsnew/2.0.rst:161 @@ -845,8 +844,8 @@ msgstr "" msgid "" "The ``\\x`` escape in string literals now takes exactly 2 hex digits. " "Previously it would consume all the hex digits following the 'x' and take " -"the lowest 8 bits of the result, so ``\\x123456`` was equivalent to " -"``\\x56``." +"the lowest 8 bits of the result, so ``\\x123456`` was equivalent to ``" +"\\x56``." msgstr "" #: whatsnew/2.0.rst:688 diff --git a/whatsnew/2.1.po b/whatsnew/2.1.po index 0185ebff0..6b71cba6a 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -312,11 +312,11 @@ msgstr "" msgid "" "The built-in ``cmp(A,B)`` function can use the rich comparison machinery, " "and now accepts an optional argument specifying which comparison operation " -"to use; this is given as one of the strings ``\"<\"``, ``\"<=\"``, " -"``\">\"``, ``\">=\"``, ``\"==\"``, or ``\"!=\"``. If called without the " -"optional third argument, :func:`cmp` will only return -1, 0, or +1 as in " -"previous versions of Python; otherwise it will call the appropriate method " -"and can return any Python object." +"to use; this is given as one of the strings ``\"<\"``, ``\"<=\"``, ``\">" +"\"``, ``\">=\"``, ``\"==\"``, or ``\"!=\"``. If called without the optional " +"third argument, :func:`cmp` will only return -1, 0, or +1 as in previous " +"versions of Python; otherwise it will call the appropriate method and can " +"return any Python object." msgstr "" #: whatsnew/2.1.rst:214 diff --git a/whatsnew/2.2.po b/whatsnew/2.2.po index 23db11d3d..fa334b995 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -704,9 +704,9 @@ msgid "" "The idea of generators comes from other programming languages, especially " "Icon (https://www.cs.arizona.edu/icon/), where the idea of generators is " "central. In Icon, every expression and function call behaves like a " -"generator. One example from \"An Overview of the Icon Programming " -"Language\" at https://www.cs.arizona.edu/icon/docs/ipd266.htm gives an idea " -"of what this looks like::" +"generator. One example from \"An Overview of the Icon Programming Language" +"\" at https://www.cs.arizona.edu/icon/docs/ipd266.htm gives an idea of what " +"this looks like::" msgstr "" #: whatsnew/2.2.rst:644 @@ -1148,8 +1148,8 @@ msgstr "" #: whatsnew/2.2.rst:1006 msgid "" -"The :mod:`smtplib` module now supports :rfc:`2487`, \"Secure SMTP over " -"TLS\", so it's now possible to encrypt the SMTP traffic between a Python " +"The :mod:`smtplib` module now supports :rfc:`2487`, \"Secure SMTP over TLS" +"\", so it's now possible to encrypt the SMTP traffic between a Python " "program and the mail transport agent being handed a message. :mod:`smtplib` " "also supports SMTP authentication. (Contributed by Gerhard Häring.)" msgstr "" @@ -1368,11 +1368,11 @@ msgid "" "The most significant change is the ability to build Python as a framework, " "enabled by supplying the :option:`!--enable-framework` option to the " "configure script when compiling Python. According to Jack Jansen, \"This " -"installs a self-contained Python installation plus the OS X framework " -"\"glue\" into :file:`/Library/Frameworks/Python.framework` (or another " -"location of choice). For now there is little immediate added benefit to this " -"(actually, there is the disadvantage that you have to change your PATH to be " -"able to find Python), but it is the basis for creating a full-blown Python " +"installs a self-contained Python installation plus the OS X framework \"glue" +"\" into :file:`/Library/Frameworks/Python.framework` (or another location of " +"choice). For now there is little immediate added benefit to this (actually, " +"there is the disadvantage that you have to change your PATH to be able to " +"find Python), but it is the basis for creating a full-blown Python " "application, porting the MacPython IDE, possibly using Python as a standard " "OSA scripting language and much more.\"" msgstr "" diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index 5bfa85953..08ec7d90a 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -222,9 +222,9 @@ msgid "" "The idea of generators comes from other programming languages, especially " "Icon (https://www.cs.arizona.edu/icon/), where the idea of generators is " "central. In Icon, every expression and function call behaves like a " -"generator. One example from \"An Overview of the Icon Programming " -"Language\" at https://www.cs.arizona.edu/icon/docs/ipd266.htm gives an idea " -"of what this looks like::" +"generator. One example from \"An Overview of the Icon Programming Language" +"\" at https://www.cs.arizona.edu/icon/docs/ipd266.htm gives an idea of what " +"this looks like::" msgstr "" #: whatsnew/2.3.rst:230 @@ -645,9 +645,9 @@ msgstr "" msgid "" "When encoding a Unicode string into a byte string, unencodable characters " "may be encountered. So far, Python has allowed specifying the error " -"processing as either \"strict\" (raising :exc:`UnicodeError`), " -"\"ignore\" (skipping the character), or \"replace\" (using a question mark " -"in the output string), with \"strict\" being the default behavior. It may be " +"processing as either \"strict\" (raising :exc:`UnicodeError`), \"ignore" +"\" (skipping the character), or \"replace\" (using a question mark in the " +"output string), with \"strict\" being the default behavior. It may be " "desirable to specify alternative processing of such errors, such as " "inserting an XML character reference or HTML entity reference into the " "converted string." @@ -1416,11 +1416,11 @@ msgstr "" msgid "" "The new :mod:`heapq` module contains an implementation of a heap queue " "algorithm. A heap is an array-like data structure that keeps items in a " -"partially sorted order such that, for every index *k*, ``heap[k] <= " -"heap[2*k+1]`` and ``heap[k] <= heap[2*k+2]``. This makes it quick to remove " -"the smallest item, and inserting a new item while maintaining the heap " -"property is O(lg n). (See https://xlinux.nist.gov/dads//HTML/priorityque." -"html for more information about the priority queue data structure.)" +"partially sorted order such that, for every index *k*, ``heap[k] <= heap[2*k" +"+1]`` and ``heap[k] <= heap[2*k+2]``. This makes it quick to remove the " +"smallest item, and inserting a new item while maintaining the heap property " +"is O(lg n). (See https://xlinux.nist.gov/dads//HTML/priorityque.html for " +"more information about the priority queue data structure.)" msgstr "" #: whatsnew/2.3.rst:1314 @@ -1988,9 +1988,9 @@ msgstr "" #: whatsnew/2.3.rst:1842 msgid "" -"To allocate and free an undistinguished chunk of memory use the \"raw " -"memory\" family: :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc`, and :c:" -"func:`PyMem_Free`." +"To allocate and free an undistinguished chunk of memory use the \"raw memory" +"\" family: :c:func:`PyMem_Malloc`, :c:func:`PyMem_Realloc`, and :c:func:" +"`PyMem_Free`." msgstr "" #: whatsnew/2.3.rst:1845 diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index 04867bda1..671700561 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1694,8 +1694,8 @@ msgid "" "with-tsc` switch enables profiling using the Pentium's Time-Stamp-Counter " "register. Note that the :option:`!--with-tsc` switch is slightly misnamed, " "because the profiling feature also works on the PowerPC platform, though " -"that processor architecture doesn't call that register \"the TSC " -"register\". (Contributed by Jeremy Hylton.)" +"that processor architecture doesn't call that register \"the TSC register" +"\". (Contributed by Jeremy Hylton.)" msgstr "" #: whatsnew/2.4.rst:1494 diff --git a/whatsnew/2.5.po b/whatsnew/2.5.po index e5993a94c..c69ac3c60 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index 87a5c498f..3523676a2 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1026,9 +1026,9 @@ msgstr "" #: whatsnew/2.6.rst:920 msgid "" -"Python 3.0 makes this unambiguous by replacing the comma with the word " -"\"as\". To catch an exception and store the exception object in the " -"variable ``exc``, you must write::" +"Python 3.0 makes this unambiguous by replacing the comma with the word \"as" +"\". To catch an exception and store the exception object in the variable " +"``exc``, you must write::" msgstr "" #: whatsnew/2.6.rst:929 @@ -1452,10 +1452,10 @@ msgstr "" #: whatsnew/2.6.rst:1337 msgid "" -"The :func:`int` and :func:`long` builtins will now accept the \"0o\" and " -"\"0b\" prefixes when base-8 or base-2 are requested, or when the *base* " -"argument is zero (signalling that the base used should be determined from " -"the string)::" +"The :func:`int` and :func:`long` builtins will now accept the \"0o\" and \"0b" +"\" prefixes when base-8 or base-2 are requested, or when the *base* argument " +"is zero (signalling that the base used should be determined from the " +"string)::" msgstr "" #: whatsnew/2.6.rst:1355 @@ -1706,8 +1706,8 @@ msgstr "" #: whatsnew/2.6.rst:1598 msgid "" "Many floating-point features were added. The :func:`float` function will " -"now turn the string ``nan`` into an IEEE 754 Not A Number value, and " -"``+inf`` and ``-inf`` into positive or negative infinity. This works on any " +"now turn the string ``nan`` into an IEEE 754 Not A Number value, and ``" +"+inf`` and ``-inf`` into positive or negative infinity. This works on any " "platform with IEEE 754 semantics. (Contributed by Christian Heimes; :issue:" "`1635`.)" msgstr "" @@ -2614,8 +2614,8 @@ msgid "" "The :func:`setitimer` and :func:`getitimer` functions have also been added " "(where they're available). :func:`setitimer` allows setting interval timers " "that will cause a signal to be delivered to the process after a specified " -"time, measured in wall-clock time, consumed process time, or combined " -"process+system time. (Contributed by Guilherme Polo; :issue:`2240`.)" +"time, measured in wall-clock time, consumed process time, or combined process" +"+system time. (Contributed by Guilherme Polo; :issue:`2240`.)" msgstr "" #: whatsnew/2.6.rst:2348 diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 078624ce1..32228933e 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -177,9 +177,9 @@ msgstr "" msgid "" "You can re-enable display of :exc:`DeprecationWarning` messages by running " "Python with the :option:`-Wdefault <-W>` (short form: :option:`-Wd <-W>`) " -"switch, or by setting the :envvar:`PYTHONWARNINGS` environment variable to " -"``\"default\"`` (or ``\"d\"``) before running Python. Python code can also " -"re-enable them by calling ``warnings.simplefilter('default')``." +"switch, or by setting the :envvar:`PYTHONWARNINGS` environment variable to ``" +"\"default\"`` (or ``\"d\"``) before running Python. Python code can also re-" +"enable them by calling ``warnings.simplefilter('default')``." msgstr "" #: whatsnew/2.7.rst:165 @@ -2366,8 +2366,8 @@ msgid "" "ElementTree's code for converting trees to a string has been significantly " "reworked, making it roughly twice as fast in many cases. The :meth:" "`ElementTree.write() ` and :meth:" -"`Element.write` methods now have a *method* parameter that can be " -"\"xml\" (the default), \"html\", or \"text\". HTML mode will output empty " +"`Element.write` methods now have a *method* parameter that can be \"xml" +"\" (the default), \"html\", or \"text\". HTML mode will output empty " "elements as ```` instead of ````, and text mode will " "skip over elements and only output the text chunks. If you set the :attr:" "`tag` attribute of an element to ``None`` but leave its children in place, " @@ -2564,8 +2564,8 @@ msgstr "" #: whatsnew/2.7.rst:2202 msgid "" "New format codes: the :c:func:`PyFormat_FromString`, :c:func:" -"`PyFormat_FromStringV`, and :c:func:`PyErr_Format` functions now accept " -"``%lld`` and ``%llu`` format codes for displaying C's :c:expr:`long long` " +"`PyFormat_FromStringV`, and :c:func:`PyErr_Format` functions now accept ``" +"%lld`` and ``%llu`` format codes for displaying C's :c:expr:`long long` " "types. (Contributed by Mark Dickinson; :issue:`7228`.)" msgstr "" diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index 23b329ff6..28add9ba6 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -95,9 +95,9 @@ msgstr "" #: whatsnew/3.0.rst:128 msgid "" "The :func:`print` function doesn't support the \"softspace\" feature of the " -"old ``print`` statement. For example, in Python 2.x, ``print \"A\\n\", " -"\"B\"`` would write ``\"A\\nB\\n\"``; but in Python 3.0, ``print(\"A\\n\", " -"\"B\")`` writes ``\"A\\n B\\n\"``." +"old ``print`` statement. For example, in Python 2.x, ``print \"A\\n\", \"B" +"\"`` would write ``\"A\\nB\\n\"``; but in Python 3.0, ``print(\"A\\n\", \"B" +"\")`` writes ``\"A\\n B\\n\"``." msgstr "" #: whatsnew/3.0.rst:133 diff --git a/whatsnew/3.1.po b/whatsnew/3.1.po index 9d2cee8ed..e820514f4 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index 90a32cf55..67371ebde 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -623,8 +623,8 @@ msgstr "" #: whatsnew/3.10.rst:648 msgid "" -"Mapping patterns: ``{\"bandwidth\": b, \"latency\": l}`` captures the " -"``\"bandwidth\"`` and ``\"latency\"`` values from a dict. Unlike sequence " +"Mapping patterns: ``{\"bandwidth\": b, \"latency\": l}`` captures the ``" +"\"bandwidth\"`` and ``\"latency\"`` values from a dict. Unlike sequence " "patterns, extra keys are ignored. A wildcard ``**rest`` is also supported. " "(But ``**_`` would be redundant, so is not allowed.)" msgstr "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index a7cd0d1fd..1ab4f481c 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -271,10 +271,10 @@ msgid "" "To solve this problem, Python's import machinery has been extended to use " "distinct filenames for each interpreter. Instead of Python 3.2 and Python " "3.3 and Unladen Swallow each competing for a file called \"mymodule.pyc\", " -"they will now look for \"mymodule.cpython-32.pyc\", \"mymodule.cpython-33." -"pyc\", and \"mymodule.unladen10.pyc\". And to prevent all of these new " -"files from cluttering source directories, the *pyc* files are now collected " -"in a \"__pycache__\" directory stored under the package directory." +"they will now look for \"mymodule.cpython-32.pyc\", \"mymodule.cpython-33.pyc" +"\", and \"mymodule.unladen10.pyc\". And to prevent all of these new files " +"from cluttering source directories, the *pyc* files are now collected in a " +"\"__pycache__\" directory stored under the package directory." msgstr "" #: whatsnew/3.2.rst:311 @@ -3007,9 +3007,8 @@ msgid "" "BuildScript/README.txt>`_ for details. For users running a 32/64-bit build, " "there is a known problem with the default Tcl/Tk on Mac OS X 10.6. " "Accordingly, we recommend installing an updated alternative such as " -"`ActiveState Tcl/Tk 8.5.9 `_\\. See https://www.python.org/download/mac/tcltk/ for " -"additional details." +"`ActiveState Tcl/Tk 8.5.9 `_" +"\\. See https://www.python.org/download/mac/tcltk/ for additional details." msgstr "" #: whatsnew/3.2.rst:2607 diff --git a/whatsnew/3.3.po b/whatsnew/3.3.po index 49f8e2acc..db82b9b79 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -351,8 +351,8 @@ msgstr "" #: whatsnew/3.3.rst:242 msgid "" -"surrogate pairs are not recombined in string literals, so " -"``'\\uDBFF\\uDFFF' != '\\U0010FFFF'``;" +"surrogate pairs are not recombined in string literals, so ``'\\uDBFF" +"\\uDFFF' != '\\U0010FFFF'``;" msgstr "" #: whatsnew/3.3.rst:245 @@ -1767,8 +1767,8 @@ msgid "" "A new policy instance, with new settings, is created using the :meth:`~email." "policy.Policy.clone` method of policy objects. ``clone`` takes any of the " "above controls as keyword arguments. Any control not specified in the call " -"retains its default value. Thus you can create a policy that uses " -"``\\r\\n`` linesep characters like this::" +"retains its default value. Thus you can create a policy that uses ``\\r" +"\\n`` linesep characters like this::" msgstr "" #: whatsnew/3.3.rst:1240 diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index 8b36e0466..f2ded7603 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -3267,9 +3267,9 @@ msgstr "" msgid "" ":func:`base64.b32decode` now raises a :exc:`binascii.Error` when the input " "string contains non-b32-alphabet characters, instead of a :exc:`TypeError`. " -"This particular :exc:`TypeError` was missed when the other :exc:" -"`TypeError`\\ s were converted. (Contributed by Serhiy Storchaka in :issue:" -"`18011`.) Note: this change was also inadvertently applied in Python 3.3.3." +"This particular :exc:`TypeError` was missed when the other :exc:`TypeError`" +"\\ s were converted. (Contributed by Serhiy Storchaka in :issue:`18011`.) " +"Note: this change was also inadvertently applied in Python 3.3.3." msgstr "" #: whatsnew/3.4.rst:2373 diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index 27aefba17..5353c6a07 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1273,8 +1273,8 @@ msgstr "" msgid "" "The charset of HTML documents generated by :meth:`HtmlDiff.make_file() " "` can now be customized by using a new *charset* " -"keyword-only argument. The default charset of HTML document changed from " -"``\"ISO-8859-1\"`` to ``\"utf-8\"``. (Contributed by Berker Peksag in :issue:" +"keyword-only argument. The default charset of HTML document changed from ``" +"\"ISO-8859-1\"`` to ``\"utf-8\"``. (Contributed by Berker Peksag in :issue:" "`2052`.)" msgstr "" @@ -1406,9 +1406,9 @@ msgstr "" #: whatsnew/3.5.rst:1168 msgid "" -"The *mode* argument of the :class:`~gzip.GzipFile` constructor now accepts " -"``\"x\"`` to request exclusive creation. (Contributed by Tim Heaney in :" -"issue:`19222`.)" +"The *mode* argument of the :class:`~gzip.GzipFile` constructor now accepts ``" +"\"x\"`` to request exclusive creation. (Contributed by Tim Heaney in :issue:" +"`19222`.)" msgstr "" #: whatsnew/3.5.rst:1174 @@ -2309,9 +2309,9 @@ msgstr "" #: whatsnew/3.5.rst:1890 msgid "" -"The *mode* argument of the :func:`~tarfile.open` function now accepts " -"``\"x\"`` to request exclusive creation. (Contributed by Berker Peksag in :" -"issue:`21717`.)" +"The *mode* argument of the :func:`~tarfile.open` function now accepts ``\"x" +"\"`` to request exclusive creation. (Contributed by Berker Peksag in :issue:" +"`21717`.)" msgstr "" #: whatsnew/3.5.rst:1893 @@ -2477,8 +2477,8 @@ msgstr "" #: whatsnew/3.5.rst:2007 msgid "" "The class constructor has a new *unsafe* parameter, which causes mock " -"objects to raise :exc:`AttributeError` on attribute names starting with " -"``\"assert\"``. (Contributed by Kushal Das in :issue:`21238`.)" +"objects to raise :exc:`AttributeError` on attribute names starting with ``" +"\"assert\"``. (Contributed by Kushal Das in :issue:`21238`.)" msgstr "" #: whatsnew/3.5.rst:2012 @@ -3172,13 +3172,13 @@ msgstr "" #: whatsnew/3.5.rst:2450 msgid "" -"The :func:`re.split` function always ignored empty pattern matches, so the " -"``\"x*\"`` pattern worked the same as ``\"x+\"``, and the ``\"\\b\"`` " -"pattern never worked. Now :func:`re.split` raises a warning if the pattern " -"could match an empty string. For compatibility, use patterns that never " -"match an empty string (e.g. ``\"x+\"`` instead of ``\"x*\"``). Patterns " -"that could only match an empty string (such as ``\"\\b\"``) now raise an " -"error. (Contributed by Serhiy Storchaka in :issue:`22818`.)" +"The :func:`re.split` function always ignored empty pattern matches, so the ``" +"\"x*\"`` pattern worked the same as ``\"x+\"``, and the ``\"\\b\"`` pattern " +"never worked. Now :func:`re.split` raises a warning if the pattern could " +"match an empty string. For compatibility, use patterns that never match an " +"empty string (e.g. ``\"x+\"`` instead of ``\"x*\"``). Patterns that could " +"only match an empty string (such as ``\"\\b\"``) now raise an error. " +"(Contributed by Serhiy Storchaka in :issue:`22818`.)" msgstr "" #: whatsnew/3.5.rst:2458 diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index 30013040a..958ae36f6 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -863,8 +863,8 @@ msgstr "" #: whatsnew/3.6.rst:752 msgid "" -"Long sequences of repeated traceback lines are now abbreviated as " -"``\"[Previous line repeated {count} more times]\"`` (see :ref:`whatsnew36-" +"Long sequences of repeated traceback lines are now abbreviated as ``" +"\"[Previous line repeated {count} more times]\"`` (see :ref:`whatsnew36-" "traceback` for an example). (Contributed by Emanuel Barry in :issue:`26823`.)" msgstr "" diff --git a/whatsnew/3.7.po b/whatsnew/3.7.po index 6d359442e..dd7bf80ac 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1739,8 +1739,8 @@ msgstr "" #: whatsnew/3.7.rst:1243 msgid "" -":func:`re.split` now supports splitting on a pattern like ``r'\\b'``, " -"``'^$'`` or ``(?=-)`` that matches an empty string. (Contributed by Serhiy " +":func:`re.split` now supports splitting on a pattern like ``r'\\b'``, ``'^" +"$'`` or ``(?=-)`` that matches an empty string. (Contributed by Serhiy " "Storchaka in :issue:`25054`.)" msgstr "" diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index c971ef3f2..f387b6909 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" @@ -1795,17 +1795,17 @@ msgstr "" #: whatsnew/3.8.rst:1468 msgid "" ":func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`, :func:" -"`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-" -"copy\" syscalls on Linux and macOS in order to copy the file more " -"efficiently. \"fast-copy\" means that the copying operation occurs within " -"the kernel, avoiding the use of userspace buffers in Python as in \"``outfd." -"write(infd.read())``\". On Windows :func:`shutil.copyfile` uses a bigger " -"default buffer size (1 MiB instead of 16 KiB) and a :func:`memoryview`-based " -"variant of :func:`shutil.copyfileobj` is used. The speedup for copying a 512 " -"MiB file within the same partition is about +26% on Linux, +50% on macOS and " -"+40% on Windows. Also, much less CPU cycles are consumed. See :ref:`shutil-" -"platform-dependent-efficient-copy-operations` section. (Contributed by " -"Giampaolo Rodolà in :issue:`33671`.)" +"`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-copy" +"\" syscalls on Linux and macOS in order to copy the file more efficiently. " +"\"fast-copy\" means that the copying operation occurs within the kernel, " +"avoiding the use of userspace buffers in Python as in \"``outfd.write(infd." +"read())``\". On Windows :func:`shutil.copyfile` uses a bigger default buffer " +"size (1 MiB instead of 16 KiB) and a :func:`memoryview`-based variant of :" +"func:`shutil.copyfileobj` is used. The speedup for copying a 512 MiB file " +"within the same partition is about +26% on Linux, +50% on macOS and +40% on " +"Windows. Also, much less CPU cycles are consumed. See :ref:`shutil-platform-" +"dependent-efficient-copy-operations` section. (Contributed by Giampaolo " +"Rodolà in :issue:`33671`.)" msgstr "" #: whatsnew/3.8.rst:1484 @@ -2494,9 +2494,9 @@ msgstr "" #: whatsnew/3.8.rst:1919 msgid "" ":func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`, :func:" -"`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-" -"copy\" syscalls (see :ref:`shutil-platform-dependent-efficient-copy-" -"operations` section)." +"`shutil.copytree` and :func:`shutil.move` use platform-specific \"fast-copy" +"\" syscalls (see :ref:`shutil-platform-dependent-efficient-copy-operations` " +"section)." msgstr "" #: whatsnew/3.8.rst:1924 diff --git a/whatsnew/3.9.po b/whatsnew/3.9.po index 956134ac0..a222a1098 100644 --- a/whatsnew/3.9.po +++ b/whatsnew/3.9.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-02 04:25-0500\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" diff --git a/whatsnew/index.po b/whatsnew/index.po index 504ef0cfb..c6316c163 100644 --- a/whatsnew/index.po +++ b/whatsnew/index.po @@ -1,13 +1,13 @@ # Python Documentation Turkish Translation # Copyright (C) 2001-2022, Python Software Foundation # This file is distributed under the same license as the Python package. -# +# #, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-12-17 23:20+0300\n" +"POT-Creation-Date: 2022-12-05 18:31+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: \n" "Language-Team: TURKISH \n" From 1fdaa58d9b523baf502810671b38db52ce321fe5 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:13:13 +0300 Subject: [PATCH 20/30] Update CI --- .github/workflows/build.yml | 44 +++++++++++++++++++------------------ 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d26dcc1a..af2170c67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -69,24 +69,26 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.10' - - name: Clone cpython - run: | - if [ ! -d ~/cpython ]; then - git clone https://github.com/python/cpython ~/cpython/ - else - git -C ~/cpython fetch - fi - git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - - name: Prepare build hierarchy - run: | - mkdir -p ~/locales/tr/LC_MESSAGES/ - cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - - name: Prepare venv - run: | - make -C $HOME/cpython/Doc clean-venv - make -C $HOME/cpython/Doc venv - - name: sphinx-build - run: | - git -C ~/cpython branch - make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html + - name: Make + run: make + # - name: Clone cpython + # run: | + # if [ ! -d ~/cpython ]; then + # git clone https://github.com/python/cpython ~/cpython/ + # else + # git -C ~/cpython fetch + # fi + # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + # - name: Prepare build hierarchy + # run: | + # mkdir -p ~/locales/tr/LC_MESSAGES/ + # cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ + # # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) + # - name: Prepare venv + # run: | + # make -C $HOME/cpython/Doc clean-venv + # make -C $HOME/cpython/Doc venv + # - name: sphinx-build + # run: | + # git -C ~/cpython branch + # make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html From 7d4b93c1d939d633be912fba08110283305a669e Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:20:01 +0300 Subject: [PATCH 21/30] Update CI --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af2170c67..489406db5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,6 +47,7 @@ jobs: if [ -n "$CHANGED_PO_FILES" ] then echo "Running on:" $CHANGED_PO_FILES + ls ${{ matrix.tool.command }} else echo "No changed po files, nothing to check." @@ -69,6 +70,10 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.10' + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + python -m pip install -r requirements.txt - name: Make run: make # - name: Clone cpython From d3a5bdddc7428bb5b766318a31da9990004011c4 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:22:16 +0300 Subject: [PATCH 22/30] Update CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 489406db5..e278289a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,10 +44,10 @@ jobs: MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }} run: | CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$'; true) + tree -L 2 if [ -n "$CHANGED_PO_FILES" ] then echo "Running on:" $CHANGED_PO_FILES - ls ${{ matrix.tool.command }} else echo "No changed po files, nothing to check." From b7df869bc001e00a5bdd2fcb9f5c3921017855ff Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:23:48 +0300 Subject: [PATCH 23/30] Update CI --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e278289a2..8a9c479b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,6 +44,7 @@ jobs: MODIFIED_FILES: ${{ join(fromJSON(steps.changed_files.outputs.modified), ' ') }} run: | CHANGED_PO_FILES=$(printf "%s %s\n" "$ADDED_FILES" "$MODIFIED_FILES" | tr ' ' '\n' | grep '.po$'; true) + pwd tree -L 2 if [ -n "$CHANGED_PO_FILES" ] then From 293e38d3dbdfe4d08354410f965f3f7c2ca2945c Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:24:46 +0300 Subject: [PATCH 24/30] Update CI --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8a9c479b7..0cbb12c10 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip setuptools wheel - python -m pip install -r requirements.txt + python -m pip install -r requirements.txt -r venv/cpython/Doc/requirements.txt - name: Make run: make # - name: Clone cpython From 151c1c3526b549864a30d36376532dd165829a3a Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:31:35 +0300 Subject: [PATCH 25/30] Update CI --- .github/workflows/build.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cbb12c10..5acb65b17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,20 +59,12 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 - with: - path: '~/cpython/' - key: '1' - - uses: actions/cache@v3 - with: - path: ~/.cache/pip - key: '1' - uses: actions/setup-python@v4 with: python-version: '3.10' - name: Install dependencies run: | + git clone https://github.com/python/cpython.git venv/cpython/ python -m pip install --upgrade pip setuptools wheel python -m pip install -r requirements.txt -r venv/cpython/Doc/requirements.txt - name: Make From 1365570a959ab4b6e62457d24ce44ed1c053bbaf Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:35:07 +0300 Subject: [PATCH 26/30] Update CI --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5acb65b17..a3cbfb2f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,6 +22,7 @@ jobs: name: ${{ matrix.tool.name }} (${{ matrix.tool.package }}) runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - uses: lots0logs/gh-action-get-changed-files@2.1.4 id: changed_files with: From 2be2c8905eb299a37e64c01d76382cc6d81ab00d Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:38:09 +0300 Subject: [PATCH 27/30] Update CI --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3cbfb2f5..6b36adc00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -63,8 +63,10 @@ jobs: - uses: actions/setup-python@v4 with: python-version: '3.10' - - name: Install dependencies + - name: Prepare environment run: | + pwd + tree -L 2 git clone https://github.com/python/cpython.git venv/cpython/ python -m pip install --upgrade pip setuptools wheel python -m pip install -r requirements.txt -r venv/cpython/Doc/requirements.txt From 8ec740ab54234a5b0fb3b8df35f019ec43d5fb9a Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:40:13 +0300 Subject: [PATCH 28/30] Update CI --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6b36adc00..61b814102 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,6 +60,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: + - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: python-version: '3.10' From 839cea6c45bbce822342c853795da556aaaa3c11 Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:58:14 +0300 Subject: [PATCH 29/30] Update CI --- merge.py | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/merge.py b/merge.py index 08aa0dee8..6960b0f59 100644 --- a/merge.py +++ b/merge.py @@ -93,23 +93,6 @@ def update_makefile(cpython_repo: Path) -> None: run("git", "add", "Makefile") -def git_add_relevant_files(): - """Add only files with relevant modifications. - - This only add files with actual modifications, not just metadata - modifications, to avoid noise in history. - """ - modified_files = run("git", "ls-files", "-m", stdout=PIPE).stdout.split("\n") - modified_po_files = [line for line in modified_files if line.endswith(".po")] - for file in modified_po_files: - diff = run("git", "diff", "-U0", file, stdout=PIPE).stdout - if len(diff.split("\n")) > 8: - run("git", "add", file) - else: - run("git", "checkout", "--", file) - run("rm", "-f", "whatsnew/changelog.po") # We don't translate this file. - - def main(): args = parse_args() setup_repo(args.cpython_repo, args.branch) @@ -133,8 +116,7 @@ def main(): shutil.rmtree(pot_path) run("powrap", "-m") update_makefile(args.cpython_repo) - git_add_relevant_files() - run("git", "commit", "-m", "Make merge") + run("sphinx-lint", "*.po", "*/*.po") if __name__ == "__main__": From 8b7408d223616388d1317eee2639a8acb9c575eb Mon Sep 17 00:00:00 2001 From: egeakman Date: Mon, 5 Dec 2022 23:58:38 +0300 Subject: [PATCH 30/30] Update CI --- .github/workflows/build.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61b814102..392441385 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -73,24 +73,3 @@ jobs: python -m pip install -r requirements.txt -r venv/cpython/Doc/requirements.txt - name: Make run: make - # - name: Clone cpython - # run: | - # if [ ! -d ~/cpython ]; then - # git clone https://github.com/python/cpython ~/cpython/ - # else - # git -C ~/cpython fetch - # fi - # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - # - name: Prepare build hierarchy - # run: | - # mkdir -p ~/locales/tr/LC_MESSAGES/ - # cp -uv --parents *.po */*.po ~/locales/tr/LC_MESSAGES/ - # # git -C ~/cpython checkout $(grep ^CPYTHON_CURRENT_COMMIT Makefile| cut -d= -f2) - # - name: Prepare venv - # run: | - # make -C $HOME/cpython/Doc clean-venv - # make -C $HOME/cpython/Doc venv - # - name: sphinx-build - # run: | - # git -C ~/cpython branch - # make -C $HOME/cpython/Doc SPHINXOPTS="-q -j4 -D locale_dirs=$HOME/locales -D language=tr -D gettext_compact=0" autobuild-dev-html