Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Translation Update 3.12#168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
egeakman merged 5 commits into3.12fromtranslation-update-3.12
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
19 changes: 5 additions & 14 deletions.github/workflows/build.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
name: Tests
on:
workflow_dispatch:
push:
branches:
- "**"
pull_request:
branches:
- "**"
on: [push, pull_request, workflow_dispatch]

jobs:
checks:
Expand All@@ -28,15 +21,14 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: "3.12-dev"
python-version: "3.12"
- 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 }}
pip install ${{ matrix.tool.package }}
fi
- name: Run ${{ matrix.tool.package }}
env:
Expand All@@ -62,13 +54,12 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12-dev"
python-version: "3.12"
- 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
pip install -r venv/cpython/Doc/requirements.txt
- name: Make
run: make
14 changes: 3 additions & 11 deletions.github/workflows/pre-commit-ci.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
name: pre-commit-ci
on:
workflow_dispatch:
push:
branches:
- "**"
pull_request:
branches:
- "**"
on: [push, pull_request, workflow_dispatch]

jobs:
pre-commit:
Expand All@@ -17,11 +10,10 @@ jobs:
- uses: actions/setup-python@v5
id: setup_python
with:
python-version: "3.12-dev"
cache: pip
python-version: "3.12"

- name: Install pre-commit
run: pip install--upgrade -r requirements.txt
run: pip installpre-commit

- name: Cache pre-commit tools
uses: actions/cache@v3
Expand Down
4 changes: 2 additions & 2 deletions.github/workflows/translate.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,10 +16,10 @@ jobs:
- name: Set Up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12-dev"
python-version: "3.12"

- name: Install dependencies
run: pip install-r requirements.txt && sudo apt update && sudo apt install gettext -y
run: pip installpolib deep_translator && sudo apt update && sudo apt install gettext -y

- name: Run translate.py
run: python scripts/translate.py ${{ github.event.inputs.file }} -t google -s
Expand Down
4 changes: 2 additions & 2 deletions.github/workflows/update_doc.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,10 +17,10 @@ jobs:
- name: Set Up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12-dev"
python-version: "3.12"

- name: Install dependencies
run: pip install -r requirements.txt && sudo apt install gettext -y
run: pip installtqdm poutils-rvenv/cpython/Doc/requirements.txt && sudo apt install gettext -y

- name: Run merge.py
run: python merge.py ${GITHUB_REF##*/}
Expand Down
8 changes: 2 additions & 6 deletions.github/workflows/wrap_branch.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,15 +14,11 @@ jobs:
- name: Set Up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12-dev"

# Upgrade pip
- name: Upgrade pip
run: python -m pip install --upgrade pip
python-version: "3.12"

# Install dependencies
- name: Install dependencies
run:python -mpip install--upgrade -r requirements.txt && sudo apt install -y gettext
run: pip installpoutils && sudo apt install -y gettext

# Wrap all po files
- name: Wrap
Expand Down
3 changes: 1 addition & 2 deletions.readthedocs.yaml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -10,8 +10,7 @@ build:

commands:
- git clone https://github.com/python/cpython.git venv/cpython/
- python -m pip install --upgrade pip setuptools wheel
- python -m pip install --upgrade -r requirements.txt -r venv/cpython/Doc/requirements.txt
- python -m pip install -r venv/cpython/Doc/requirements.txt
- make
- mkdir -p _readthedocs/html/
- cp -r venv/cpython/Doc/build/html/* _readthedocs/html/
4 changes: 2 additions & 2 deletionsMakefile
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -19,7 +19,7 @@
# test build, we're building with the .rst files that generated our
# .po files.

CPYTHON_CURRENT_COMMIT :=4f919cf8b9ed07964e8b7b87a5a3e25b09b1ed9e
CPYTHON_CURRENT_COMMIT :=d3f2051eec6039811ae42e4382e8b292a983edc1
LANGUAGE := tr
BRANCH := 3.12

Expand DownExpand Up@@ -86,7 +86,7 @@ ensure_prerequisites: venv/cpython/.git/HEAD
git -C venv/cpython/ checkout $(BRANCH); \
echo "You're missing dependencies please install:"; \
echo ""; \
echo " python -m pip install -rrequirements.txt -rvenv/cpython/Doc/requirements.txt"; \
echo " python -m pip install -r venv/cpython/Doc/requirements.txt"; \
exit 1; \
fi

Expand Down
2 changes: 1 addition & 1 deletionREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -37,7 +37,7 @@ Bu proje gönüllü çevirmenler ve python-docs-tr ekibi iş birliğinde sürdü
- Örneğin, ``library/functions.po`` dosyasını çevirmek istiyorsanız, ``library-functions`` adında bir branch oluşturun.
- ``git checkout -b library-functions``
4. Gerekli paketleri yükleyin.
- ``python -m pip install --upgrade -r requirements.txt``
- ``python -m pip install --upgrade -r requirements-dev.txt``
5. Syntax hatalarını commit öncesi otomatik kontrol eden ``pre-commit`` 'i kurun.
- ``pre-commit install``

Expand Down
14 changes: 7 additions & 7 deletionsabout.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date:2023-11-0418:33+0000\n"
"POT-Creation-Date:2024-01-0403:14+0300\n"
"PO-Revision-Date: 2022-12-28 16:16-0500\n"
"Last-Translator: \n"
"Language-Team: TURKISH <python.docs.tr@gmail.com>\n"
Expand All@@ -19,7 +19,7 @@ msgstr ""

#: about.rst:3
msgid "About these documents"
msgstr "Dokümanlar hakkında"
msgstr "Bu dokümanlar hakkında"

#: about.rst:6
msgid ""
Expand DownExpand Up@@ -81,13 +81,13 @@ msgid ""
"Python source distribution for a partial list of contributors."
msgstr ""
"Birçok kişi Python diline, Python standart kütüphanesine ve Python "
"belgelerine katkıda bulunmuştur. Katkıda bulunanların kısmilistesi için "
"Python kaynak dağıtımında :source:`Misc/ACKS`adresine bakın."
"dokümantasyonuna katkıda bulunmuştur. Katkıda bulunanların kısmibir "
"listesi içinPython kaynak dağıtımında :source:`Misc/ACKS`dosyasına bakın."

#: about.rst:37
msgid ""
"It is only with the input and contributions of the Python community that "
"Python has such wonderful documentation -- Thank You!"
msgstr ""
"Python topluluğunun girdileri vekatkılarıyla Python böyle harika bir "
"dokümantasyonasahip -- Teşekkürler!"
"Python topluluğunun girdileri vekatkıları sayesinde böyle harika bir "
"dokümantasyonasahibiz -- Teşekkürler!"
2 changes: 1 addition & 1 deletionbugs.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
msgid ""
Expand Down
2 changes: 1 addition & 1 deletionc-api/abstract.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/allocation.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/apiabiversion.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/arg.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/bool.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/buffer.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/bytearray.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
18 changes: 9 additions & 9 deletionsc-api/bytes.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date:2023-09-18 22:33+0300\n"
"POT-Creation-Date:2024-01-01 00:16+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: \n"
"Language-Team: TURKISH <python.docs.tr@gmail.com>\n"
Expand DownExpand Up@@ -269,17 +269,17 @@ msgstr ""
#: c-api/bytes.rst:156
msgid ""
"Return the null-terminated contents of the object *obj* through the output "
"variables *buffer* and *length*."
"variables *buffer* and *length*. Returns ``0`` on success."
msgstr ""

#: c-api/bytes.rst:159
#: c-api/bytes.rst:160
msgid ""
"If *length* is ``NULL``, the bytes object may not contain embedded null "
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
"raised."
msgstr ""

#: c-api/bytes.rst:163
#: c-api/bytes.rst:164
msgid ""
"The buffer refers to an internal buffer of *obj*, which includes an "
"additional null byte at the end (not counted in *length*). The data must "
Expand All@@ -289,13 +289,13 @@ msgid ""
"returns ``-1`` and raises :exc:`TypeError`."
msgstr ""

#: c-api/bytes.rst:170
#: c-api/bytes.rst:171
msgid ""
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
"encountered in the bytes object."
msgstr ""

#: c-api/bytes.rst:177
#: c-api/bytes.rst:178
msgid ""
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
"appended to *bytes*; the caller will own the new reference. The reference "
Expand All@@ -304,14 +304,14 @@ msgid ""
"of *\\*bytes* will be set to ``NULL``; the appropriate exception will be set."
msgstr ""

#: c-api/bytes.rst:186
#: c-api/bytes.rst:187
msgid ""
"Create a new bytes object in *\\*bytes* containing the contents of *newpart* "
"appended to *bytes*. This version releases the :term:`strong reference` to "
"*newpart* (i.e. decrements its reference count)."
msgstr ""

#: c-api/bytes.rst:193
#: c-api/bytes.rst:194
msgid ""
"A way to resize a bytes object even though it is \"immutable\". Only use "
"this to build up a brand new bytes object; don't use this if the bytes may "
Expand Down
2 changes: 1 addition & 1 deletionc-api/call.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/capsule.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/cell.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/code.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/codec.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/complex.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/concrete.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/contextvars.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/conversion.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
2 changes: 1 addition & 1 deletionc-api/coro.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp