├── scripts └── transifex │ ├── __init__.py │ ├── requirements.txt │ ├── utils.py │ ├── main.py │ ├── client.py │ └── config.py ├── reports ├── contributor_stats_2025_05_11.png ├── contributor_stats_2025_05_13.png ├── contributor_stats_2025_05_17.png ├── contributor_stats_2025_05_24.png ├── contributor_stats_2025_05_31.png ├── contributor_stats_2025_06_07.png ├── contributor_stats_2025_06_14.png ├── contributor_stats_2025_06_21.png ├── contributor_stats_2025_06_28.png ├── contributor_stats_2025_07_05.png └── contributor_stats_2025_07_12.png ├── .gitignore ├── faq └── index.po ├── .github └── workflows │ ├── lint.yml │ ├── update-translation-stats.yml.disabled │ ├── build-and-deploy.yml │ └── sync.yml.disabled ├── contents.po ├── library ├── windows.po ├── netdata.po ├── fileformats.po ├── removed.po ├── unix.po ├── mm.po ├── cmdlinelibs.po ├── modules.po ├── crypto.po ├── archiving.po ├── functional.po ├── language.po ├── distribution.po ├── markup.po ├── concurrent.po ├── allos.po ├── frameworks.po ├── python.po ├── i18n.po ├── text.po ├── debug.po ├── uu.po ├── chunk.po ├── nis.po ├── aifc.po ├── sunau.po ├── mailcap.po ├── nntplib.po ├── xdrlib.po ├── audioop.po ├── msilib.po ├── concurrency.po ├── ossaudiodev.po ├── development.po ├── persistence.po ├── custominterp.po ├── ipc.po ├── numeric.po ├── pipes.po ├── distutils.po ├── asyncore.po ├── imp.po ├── asynchat.po ├── xmlrpc.po ├── smtpd.po ├── spwd.po ├── cgi.po ├── datatypes.po ├── urllib.po ├── binary.po ├── cgitb.po ├── telnetlib.po ├── imghdr.po ├── sndhdr.po ├── crypt.po ├── internet.po ├── tkinter.colorchooser.po ├── filesys.po ├── superseded.po ├── keyword.po ├── tkinter.scrolledtext.po ├── html.po ├── html.entities.po ├── tk.po ├── index.po ├── builtins.po ├── tabnanny.po ├── copyreg.po ├── colorsys.po ├── urllib.error.po ├── asyncio-exceptions.po ├── getpass.po ├── tty.po └── tkinter.dnd.po ├── c-api ├── objimpl.po ├── index.po ├── utilities.po ├── descriptor.po ├── coro.po ├── none.po ├── abstract.po ├── gen.po ├── bool.po ├── iterator.po ├── typehints.po ├── iter.po ├── cell.po ├── concrete.po ├── perfmaps.po ├── memoryview.po └── hash.po ├── howto ├── clinic.po ├── cporting.po ├── pyporting.po └── index.po ├── distributing └── index.po ├── using ├── index.po └── editors.po ├── deprecations └── c-api-pending-removal-in-3.14.po ├── whatsnew └── index.po ├── reference └── index.po ├── README.md ├── copyright.po ├── extending ├── building.po └── index.po ├── TEAM.md └── tutorial └── interactive.po /scripts/transifex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/transifex/requirements.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | transifex-python -------------------------------------------------------------------------------- /reports/contributor_stats_2025_05_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_05_11.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_05_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_05_13.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_05_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_05_17.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_05_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_05_24.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_05_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_05_31.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_06_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_06_07.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_06_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_06_14.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_06_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_06_21.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_06_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_06_28.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_07_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_07_05.png -------------------------------------------------------------------------------- /reports/contributor_stats_2025_07_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Revisto/python-docs-fa/HEAD/reports/contributor_stats_2025_07_12.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.mo 2 | *.po.bak 3 | *.pot 4 | .DS_Store 5 | .idea/ 6 | .pospell/ 7 | .potodo/ 8 | .venv/ 9 | .vs/ 10 | .vscode/ 11 | locales/ 12 | venv/ 13 | __pycache__/ 14 | transifex_cookies.json 15 | -------------------------------------------------------------------------------- /scripts/transifex/utils.py: -------------------------------------------------------------------------------- 1 | # filepath: scripts/transifex_utils/utils.py 2 | import re 3 | from pathlib import Path 4 | from .config import RESOURCE_NAME_MAP 5 | 6 | 7 | def slug_to_file_path(slug: str) -> Path: 8 | """ 9 | Converts a Transifex resource slug to a local .po file path. 10 | Handles legacy mappings and specific formatting rules. 11 | """ 12 | file_path_str = RESOURCE_NAME_MAP.get(slug, slug) 13 | file_path_str = file_path_str.replace("--", "/") 14 | if re.fullmatch(r"\d+_\d+", file_path_str): 15 | file_path_str = file_path_str.replace("_", ".", 1) 16 | file_path_str += ".po" 17 | return Path(file_path_str) 18 | -------------------------------------------------------------------------------- /faq/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:52+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../faq/index.rst:5 22 | msgid "Python Frequently Asked Questions" 23 | msgstr "" 24 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint Check 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' 6 | push: 7 | branches: 8 | - '*' 9 | pull_request: 10 | branches: 11 | - '*' 12 | workflow_dispatch: 13 | 14 | jobs: 15 | lint: 16 | runs-on: ubuntu-latest 17 | strategy: 18 | fail-fast: false 19 | continue-on-error: true 20 | steps: 21 | - name: Checkout code 22 | uses: actions/checkout@v4 23 | 24 | - name: Set up Python 25 | uses: actions/setup-python@v4 26 | with: 27 | python-version: '3.11' 28 | 29 | - name: Install sphinx-lint 30 | run: pip install sphinx-lint 31 | 32 | - name: Setup problem matcher 33 | uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0 34 | 35 | - name: Run sphinx-lint 36 | run: sphinx-lint 37 | -------------------------------------------------------------------------------- /contents.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../contents.rst:3 26 | msgid "Python Documentation contents" 27 | msgstr "" 28 | -------------------------------------------------------------------------------- /library/windows.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:17+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/windows.rst:5 22 | msgid "MS Windows Specific Services" 23 | msgstr "" 24 | 25 | #: ../../library/windows.rst:7 26 | msgid "" 27 | "This chapter describes modules that are only available on MS Windows " 28 | "platforms." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /c-api/objimpl.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/objimpl.rst:7 22 | msgid "Object Implementation Support" 23 | msgstr "" 24 | 25 | #: ../../c-api/objimpl.rst:9 26 | msgid "" 27 | "This chapter describes the functions, types, and macros used when defining " 28 | "new object types." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /scripts/transifex/main.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | import sys 3 | from .reporting import REPORTERS 4 | 5 | 6 | def main(): 7 | parser = argparse.ArgumentParser( 8 | description="Transifex utility scripts for Python docs (Persian team)." 9 | ) 10 | 11 | valid_commands = list(REPORTERS.keys()) 12 | parser.add_argument( 13 | "command", 14 | choices=valid_commands, 15 | help=f"The command to execute. Available commands: {', '.join(valid_commands)}", 16 | ) 17 | 18 | args = parser.parse_args() 19 | 20 | selected_reporter_class = REPORTERS.get(args.command) 21 | 22 | if selected_reporter_class: 23 | reporter_instance = selected_reporter_class() 24 | reporter_instance.generate() 25 | else: 26 | print(f"Error: Unknown command '{args.command}'.", file=sys.stderr) 27 | parser.print_help(sys.stderr) 28 | sys.exit(1) 29 | 30 | 31 | if __name__ == "__main__": 32 | main() 33 | -------------------------------------------------------------------------------- /library/netdata.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:10+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/netdata.rst:6 22 | msgid "Internet Data Handling" 23 | msgstr "" 24 | 25 | #: ../../library/netdata.rst:8 26 | msgid "" 27 | "This chapter describes modules which support handling data formats commonly " 28 | "used on the internet." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /library/fileformats.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:06+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/fileformats.rst:5 22 | msgid "File Formats" 23 | msgstr "" 24 | 25 | #: ../../library/fileformats.rst:7 26 | msgid "" 27 | "The modules described in this chapter parse various miscellaneous file " 28 | "formats that aren't markup languages and are not related to e-mail." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /library/removed.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/removed.rst:7 22 | msgid "Removed Modules" 23 | msgstr "" 24 | 25 | #: ../../library/removed.rst:9 26 | msgid "" 27 | "The modules described in this chapter have been removed from the Python " 28 | "standard library. They are documented here to help people find replacements." 29 | msgstr "" 30 | -------------------------------------------------------------------------------- /library/unix.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:16+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/unix.rst:5 22 | msgid "Unix Specific Services" 23 | msgstr "" 24 | 25 | #: ../../library/unix.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide interfaces to features that " 28 | "are unique to the Unix operating system, or in some cases to some or many " 29 | "variants of it. Here's an overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /library/mm.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:09+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/mm.rst:5 22 | msgid "Multimedia Services" 23 | msgstr "" 24 | 25 | #: ../../library/mm.rst:7 26 | msgid "" 27 | "The modules described in this chapter implement various algorithms or " 28 | "interfaces that are mainly useful for multimedia applications. They are " 29 | "available at the discretion of the installation. Here's an overview:" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /library/cmdlinelibs.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-12-27 14:18+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/cmdlinelibs.rst:5 22 | msgid "Command Line Interface Libraries" 23 | msgstr "" 24 | 25 | #: ../../library/cmdlinelibs.rst:7 26 | msgid "" 27 | "The modules described in this chapter assist with implementing command line " 28 | "and terminal interfaces for applications." 29 | msgstr "" 30 | 31 | #: ../../library/cmdlinelibs.rst:10 32 | msgid "Here's an overview:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /library/modules.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:09+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/modules.rst:5 22 | msgid "Importing Modules" 23 | msgstr "" 24 | 25 | #: ../../library/modules.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide new ways to import other " 28 | "Python modules and hooks for customizing the import process." 29 | msgstr "" 30 | 31 | #: ../../library/modules.rst:10 32 | msgid "The full list of modules described in this chapter is:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /library/crypto.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/crypto.rst:5 22 | msgid "Cryptographic Services" 23 | msgstr "" 24 | 25 | #: ../../library/crypto.rst:9 26 | msgid "" 27 | "The modules described in this chapter implement various algorithms of a " 28 | "cryptographic nature. They are available at the discretion of the " 29 | "installation. Here's an overview:" 30 | msgstr "" 31 | 32 | #: ../../library/crypto.rst:7 33 | msgid "cryptography" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /library/archiving.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-06-27 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:54+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/archiving.rst:5 22 | msgid "Data Compression and Archiving" 23 | msgstr "" 24 | 25 | #: ../../library/archiving.rst:7 26 | msgid "" 27 | "The modules described in this chapter support data compression with the " 28 | "zlib, gzip, bzip2, lzma, and zstd algorithms, and the creation of ZIP- and " 29 | "tar-format archives. See also :ref:`archiving-operations` provided by the :" 30 | "mod:`shutil` module." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /howto/clinic.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:52+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../howto/clinic.rst:8 26 | msgid "Argument Clinic How-To" 27 | msgstr "" 28 | 29 | #: ../../howto/clinic.rst:13 30 | msgid "" 31 | "The Argument Clinic How-TO has been moved to the `Python Developer's Guide " 32 | "`__." 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /library/functional.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:06+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/functional.rst:3 22 | msgid "Functional Programming Modules" 23 | msgstr "" 24 | 25 | #: ../../library/functional.rst:5 26 | msgid "" 27 | "The modules described in this chapter provide functions and classes that " 28 | "support a functional programming style, and general operations on callables." 29 | msgstr "" 30 | 31 | #: ../../library/functional.rst:8 32 | msgid "The following modules are documented in this chapter:" 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /library/language.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:08+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/language.rst:5 22 | msgid "Python Language Services" 23 | msgstr "" 24 | 25 | #: ../../library/language.rst:7 26 | msgid "" 27 | "Python provides a number of modules to assist in working with the Python " 28 | "language. These modules support tokenizing, parsing, syntax analysis, " 29 | "bytecode disassembly, and various other facilities." 30 | msgstr "" 31 | 32 | #: ../../library/language.rst:11 33 | msgid "These modules include:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /library/distribution.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:04+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/distribution.rst:3 22 | msgid "Software Packaging and Distribution" 23 | msgstr "" 24 | 25 | #: ../../library/distribution.rst:5 26 | msgid "" 27 | "These libraries help you with publishing and installing Python software. " 28 | "While these modules are designed to work in conjunction with the `Python " 29 | "Package Index `__, they can also be used with a local " 30 | "index server, or without any index server at all." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /library/markup.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:09+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/markup.rst:5 22 | msgid "Structured Markup Processing Tools" 23 | msgstr "" 24 | 25 | #: ../../library/markup.rst:7 26 | msgid "" 27 | "Python supports a variety of modules to work with various forms of " 28 | "structured data markup. This includes modules to work with the Standard " 29 | "Generalized Markup Language (SGML) and the Hypertext Markup Language (HTML), " 30 | "and several interfaces for working with the Extensible Markup Language (XML)." 31 | msgstr "" 32 | -------------------------------------------------------------------------------- /.github/workflows/update-translation-stats.yml.disabled: -------------------------------------------------------------------------------- 1 | name: Update Translation Statistics 2 | on: 3 | schedule: 4 | - cron: '0 0 * * 6' 5 | workflow_dispatch: 6 | jobs: 7 | update-stats: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Check out repository 11 | uses: actions/checkout@v3 12 | - name: Set up Python 13 | uses: actions/setup-python@v4 14 | with: 15 | python-version: '3.10' 16 | - name: Install dependencies 17 | run: | 18 | python -m pip install --upgrade pip 19 | pip install -r scripts/transifex/requirements.txt 20 | - name: Generate all stats 21 | run: python -m scripts.transifex.main generate-all-stats 22 | env: 23 | TRANSIFEX_API_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }} 24 | - name: Commit and push if changes 25 | run: | 26 | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" 27 | git config --local user.name "GitHub Action" 28 | git add RESOURCE.md TEAM.md reports/ README.md 29 | git commit -m "Update translation statistics [skip ci]" || exit 0 30 | git push 31 | -------------------------------------------------------------------------------- /library/concurrent.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-06-27 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:57+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/concurrent.rst:2 22 | msgid "The :mod:`!concurrent` package" 23 | msgstr "" 24 | 25 | #: ../../library/concurrent.rst:4 26 | msgid "This package contains the following modules:" 27 | msgstr "" 28 | 29 | #: ../../library/concurrent.rst:6 30 | msgid ":mod:`concurrent.futures` -- Launching parallel tasks" 31 | msgstr "" 32 | 33 | #: ../../library/concurrent.rst:7 34 | msgid "" 35 | ":mod:`concurrent.interpreters` -- Multiple interpreters in the same process" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/allos.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:54+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/allos.rst:5 22 | msgid "Generic Operating System Services" 23 | msgstr "" 24 | 25 | #: ../../library/allos.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide interfaces to operating system " 28 | "features that are available on (almost) all operating systems, such as files " 29 | "and a clock. The interfaces are generally modeled after the Unix or C " 30 | "interfaces, but they are available on most other systems as well. Here's an " 31 | "overview:" 32 | msgstr "" 33 | -------------------------------------------------------------------------------- /library/frameworks.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:06+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/frameworks.rst:5 22 | msgid "Program Frameworks" 23 | msgstr "" 24 | 25 | #: ../../library/frameworks.rst:7 26 | msgid "" 27 | "The modules described in this chapter are frameworks that will largely " 28 | "dictate the structure of your program. Currently the modules described " 29 | "here are all oriented toward writing command-line interfaces." 30 | msgstr "" 31 | 32 | #: ../../library/frameworks.rst:11 33 | msgid "The full list of modules described in this chapter is:" 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /distributing/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:50+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../distributing/index.rst:10 26 | msgid "Distributing Python Modules" 27 | msgstr "" 28 | 29 | #: ../../distributing/index.rst:14 30 | msgid "" 31 | "Information and guidance on distributing Python modules and packages has " 32 | "been moved to the `Python Packaging User Guide`_, and the tutorial on " 33 | "`packaging Python projects`_." 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /library/python.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-06-27 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:12+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/python.rst:5 22 | msgid "Python Runtime Services" 23 | msgstr "" 24 | 25 | #: ../../library/python.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide a wide range of services " 28 | "related to the Python interpreter and its interaction with its environment. " 29 | "Here's an overview:" 30 | msgstr "" 31 | 32 | #: ../../library/python.rst:33 33 | msgid "" 34 | "See the :mod:`concurrent.interpreters` module, which similarly exposes core " 35 | "runtime functionality." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/i18n.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:07+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/i18n.rst:5 22 | msgid "Internationalization" 23 | msgstr "" 24 | 25 | #: ../../library/i18n.rst:7 26 | msgid "" 27 | "The modules described in this chapter help you write software that is " 28 | "independent of language and locale by providing mechanisms for selecting a " 29 | "language to be used in program messages or by tailoring output to match " 30 | "local conventions." 31 | msgstr "" 32 | 33 | #: ../../library/i18n.rst:12 34 | msgid "The list of modules described in this chapter is:" 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /using/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 01:51+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../using/index.rst:5 26 | msgid "Python Setup and Usage" 27 | msgstr "" 28 | 29 | #: ../../using/index.rst:8 30 | msgid "" 31 | "This part of the documentation is devoted to general information on the " 32 | "setup of the Python environment on different platforms, the invocation of " 33 | "the interpreter and things that make working with Python easier." 34 | msgstr "" 35 | -------------------------------------------------------------------------------- /deprecations/c-api-pending-removal-in-3.14.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2024-08-02 14:17+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../deprecations/c-api-pending-removal-in-3.14.rst:2 22 | msgid "Pending removal in Python 3.14" 23 | msgstr "" 24 | 25 | #: ../../deprecations/c-api-pending-removal-in-3.14.rst:4 26 | msgid "" 27 | "The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules " 28 | "(:pep:`699`; :gh:`101193`)." 29 | msgstr "" 30 | 31 | #: ../../deprecations/c-api-pending-removal-in-3.14.rst:7 32 | msgid "" 33 | "Creating :c:data:`immutable types ` with mutable " 34 | "bases (:gh:`95388`)." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /library/text.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:15+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/text.rst:6 22 | msgid "Text Processing Services" 23 | msgstr "" 24 | 25 | #: ../../library/text.rst:8 26 | msgid "" 27 | "The modules described in this chapter provide a wide range of string " 28 | "manipulation operations and other text processing services." 29 | msgstr "" 30 | 31 | #: ../../library/text.rst:11 32 | msgid "" 33 | "The :mod:`codecs` module described under :ref:`binaryservices` is also " 34 | "highly relevant to text processing. In addition, see the documentation for " 35 | "Python's built-in string type in :ref:`textseq`." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/debug.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:04+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/debug.rst:3 22 | msgid "Debugging and Profiling" 23 | msgstr "" 24 | 25 | #: ../../library/debug.rst:5 26 | msgid "" 27 | "These libraries help you with Python development: the debugger enables you " 28 | "to step through code, analyze stack frames and set breakpoints etc., and the " 29 | "profilers run code and give you a detailed breakdown of execution times, " 30 | "allowing you to identify bottlenecks in your programs. Auditing events " 31 | "provide visibility into runtime behaviors that would otherwise require " 32 | "intrusive debugging or patching." 33 | msgstr "" 34 | -------------------------------------------------------------------------------- /library/uu.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/uu.rst:2 22 | msgid ":mod:`!uu` --- Encode and decode uuencode files" 23 | msgstr "" 24 | 25 | #: ../../library/uu.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/uu.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!uu` module was `Python " 35 | "3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /c-api/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:48+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../c-api/index.rst:5 26 | msgid "Python/C API Reference Manual" 27 | msgstr "" 28 | 29 | #: ../../c-api/index.rst:7 30 | msgid "" 31 | "This manual documents the API used by C and C++ programmers who want to " 32 | "write extension modules or embed Python. It is a companion to :ref:" 33 | "`extending-index`, which describes the general principles of extension " 34 | "writing but does not document the API functions in detail." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /c-api/utilities.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Danial Behzadi , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:50+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../c-api/utilities.rst:7 27 | msgid "Utilities" 28 | msgstr "" 29 | 30 | #: ../../c-api/utilities.rst:9 31 | msgid "" 32 | "The functions in this chapter perform various utility tasks, ranging from " 33 | "helping C code be more portable across platforms, using Python modules from " 34 | "C, and parsing function arguments and constructing Python values from C " 35 | "values." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/chunk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/chunk.rst:2 22 | msgid ":mod:`!chunk` --- Read IFF chunked data" 23 | msgstr "" 24 | 25 | #: ../../library/chunk.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/chunk.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!chunk` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/nis.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/nis.rst:2 22 | msgid ":mod:`!nis` --- Interface to Sun’s NIS (Yellow Pages)" 23 | msgstr "" 24 | 25 | #: ../../library/nis.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/nis.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!nis` module was `Python " 35 | "3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/aifc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/aifc.rst:2 22 | msgid ":mod:`!aifc` --- Read and write AIFF and AIFC files" 23 | msgstr "" 24 | 25 | #: ../../library/aifc.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/aifc.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!aifc` module was `Python " 35 | "3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/sunau.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/sunau.rst:2 22 | msgid ":mod:`!sunau` --- Read and write Sun AU files" 23 | msgstr "" 24 | 25 | #: ../../library/sunau.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/sunau.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!sunau` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/mailcap.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/mailcap.rst:2 22 | msgid ":mod:`!mailcap` --- Mailcap file handling" 23 | msgstr "" 24 | 25 | #: ../../library/mailcap.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/mailcap.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!mailcap` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/nntplib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/nntplib.rst:2 22 | msgid ":mod:`!nntplib` --- NNTP protocol client" 23 | msgstr "" 24 | 25 | #: ../../library/nntplib.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/nntplib.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!nntplib` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/xdrlib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/xdrlib.rst:2 22 | msgid ":mod:`!xdrlib` --- Encode and decode XDR data" 23 | msgstr "" 24 | 25 | #: ../../library/xdrlib.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/xdrlib.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!xdrlib` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/audioop.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/audioop.rst:2 22 | msgid ":mod:`!audioop` --- Manipulate raw audio data" 23 | msgstr "" 24 | 25 | #: ../../library/audioop.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/audioop.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!audioop` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/msilib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/msilib.rst:2 22 | msgid ":mod:`!msilib` --- Read and write Microsoft Installer files" 23 | msgstr "" 24 | 25 | #: ../../library/msilib.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/msilib.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!msilib` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/concurrency.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-06-27 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:57+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/concurrency.rst:5 22 | msgid "Concurrent Execution" 23 | msgstr "" 24 | 25 | #: ../../library/concurrency.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide support for concurrent " 28 | "execution of code. The appropriate choice of tool will depend on the task to " 29 | "be executed (CPU bound vs IO bound) and preferred style of development " 30 | "(event driven cooperative multitasking vs preemptive multitasking). Here's " 31 | "an overview:" 32 | msgstr "" 33 | 34 | #: ../../library/concurrency.rst:28 35 | msgid "The following are support modules for some of the above services:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/ossaudiodev.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/ossaudiodev.rst:2 22 | msgid ":mod:`!ossaudiodev` --- Access to OSS-compatible audio devices" 23 | msgstr "" 24 | 25 | #: ../../library/ossaudiodev.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/ossaudiodev.rst:14 33 | msgid "" 34 | "The last version of Python that provided the :mod:`!ossaudiodev` module was " 35 | "`Python 3.12 `_." 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/development.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:04+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/development.rst:5 22 | msgid "Development Tools" 23 | msgstr "" 24 | 25 | #: ../../library/development.rst:7 26 | msgid "" 27 | "The modules described in this chapter help you write software. For example, " 28 | "the :mod:`pydoc` module takes a module and generates documentation based on " 29 | "the module's contents. The :mod:`doctest` and :mod:`unittest` modules " 30 | "contains frameworks for writing unit tests that automatically exercise code " 31 | "and verify that the expected output is produced." 32 | msgstr "" 33 | 34 | #: ../../library/development.rst:13 35 | msgid "The list of modules described in this chapter is:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /whatsnew/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-29 13:04+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../whatsnew/index.rst:5 22 | msgid "What's New in Python" 23 | msgstr "" 24 | 25 | #: ../../whatsnew/index.rst:7 26 | msgid "" 27 | "The \"What's New in Python\" series of essays takes tours through the most " 28 | "important changes between major Python versions. They are a \"must read\" " 29 | "for anyone wishing to stay up-to-date after a new release." 30 | msgstr "" 31 | 32 | #: ../../whatsnew/index.rst:38 33 | msgid "" 34 | "The \"Changelog\" is an HTML version of the :pypi:`file built` from " 35 | "the contents of the :source:`Misc/NEWS.d` directory tree, which contains " 36 | "*all* nontrivial changes to Python for the current version." 37 | msgstr "" 38 | -------------------------------------------------------------------------------- /library/persistence.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:11+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/persistence.rst:5 22 | msgid "Data Persistence" 23 | msgstr "" 24 | 25 | #: ../../library/persistence.rst:7 26 | msgid "" 27 | "The modules described in this chapter support storing Python data in a " 28 | "persistent form on disk. The :mod:`pickle` and :mod:`marshal` modules can " 29 | "turn many Python data types into a stream of bytes and then recreate the " 30 | "objects from the bytes. The various DBM-related modules support a family of " 31 | "hash-based file formats that store a mapping of strings to other strings." 32 | msgstr "" 33 | 34 | #: ../../library/persistence.rst:13 35 | msgid "The list of modules described in this chapter is:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/custominterp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/custominterp.rst:5 22 | msgid "Custom Python Interpreters" 23 | msgstr "" 24 | 25 | #: ../../library/custominterp.rst:7 26 | msgid "" 27 | "The modules described in this chapter allow writing interfaces similar to " 28 | "Python's interactive interpreter. If you want a Python interpreter that " 29 | "supports some special feature in addition to the Python language, you should " 30 | "look at the :mod:`code` module. (The :mod:`codeop` module is lower-level, " 31 | "used to support compiling a possibly incomplete chunk of Python code.)" 32 | msgstr "" 33 | 34 | #: ../../library/custominterp.rst:13 35 | msgid "The full list of modules described in this chapter is:" 36 | msgstr "" 37 | -------------------------------------------------------------------------------- /library/ipc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:08+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/ipc.rst:5 22 | msgid "Networking and Interprocess Communication" 23 | msgstr "" 24 | 25 | #: ../../library/ipc.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide mechanisms for networking and " 28 | "inter-processes communication." 29 | msgstr "" 30 | 31 | #: ../../library/ipc.rst:10 32 | msgid "" 33 | "Some modules only work for two processes that are on the same machine, e.g. :" 34 | "mod:`signal` and :mod:`mmap`. Other modules support networking protocols " 35 | "that two or more processes can use to communicate across machines." 36 | msgstr "" 37 | 38 | #: ../../library/ipc.rst:14 39 | msgid "The list of modules described in this chapter is:" 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /library/numeric.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:10+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/numeric.rst:6 22 | msgid "Numeric and Mathematical Modules" 23 | msgstr "" 24 | 25 | #: ../../library/numeric.rst:8 26 | msgid "" 27 | "The modules described in this chapter provide numeric and math-related " 28 | "functions and data types. The :mod:`numbers` module defines an abstract " 29 | "hierarchy of numeric types. The :mod:`math` and :mod:`cmath` modules contain " 30 | "various mathematical functions for floating-point and complex numbers. The :" 31 | "mod:`decimal` module supports exact representations of decimal numbers, " 32 | "using arbitrary precision arithmetic." 33 | msgstr "" 34 | 35 | #: ../../library/numeric.rst:15 36 | msgid "The following modules are documented in this chapter:" 37 | msgstr "" 38 | -------------------------------------------------------------------------------- /library/pipes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/pipes.rst:2 22 | msgid ":mod:`!pipes` --- Interface to shell pipelines" 23 | msgstr "" 24 | 25 | #: ../../library/pipes.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/pipes.rst:14 33 | msgid "Applications should use the :mod:`subprocess` module instead." 34 | msgstr "" 35 | 36 | #: ../../library/pipes.rst:16 37 | msgid "" 38 | "The last version of Python that provided the :mod:`!pipes` module was " 39 | "`Python 3.12 `_." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /library/distutils.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/distutils.rst:2 22 | msgid ":mod:`!distutils` --- Building and installing Python modules" 23 | msgstr "" 24 | 25 | #: ../../library/distutils.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.12 ` after being " 29 | "deprecated in Python 3.10. The removal was decided in :pep:`632`, which has " 30 | "`migration advice `_." 31 | msgstr "" 32 | 33 | #: ../../library/distutils.rst:16 34 | msgid "" 35 | "The last version of Python that provided the :mod:`!distutils` module was " 36 | "`Python 3.11 `_." 37 | msgstr "" 38 | -------------------------------------------------------------------------------- /library/asyncore.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/asyncore.rst:2 22 | msgid ":mod:`!asyncore` --- Asynchronous socket handler" 23 | msgstr "" 24 | 25 | #: ../../library/asyncore.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.12 ` after being deprecated in " 29 | "Python 3.6. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/asyncore.rst:14 33 | msgid "Applications should use the :mod:`asyncio` module instead." 34 | msgstr "" 35 | 36 | #: ../../library/asyncore.rst:16 37 | msgid "" 38 | "The last version of Python that provided the :mod:`!asyncore` module was " 39 | "`Python 3.11 `_." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /library/imp.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/imp.rst:2 22 | msgid ":mod:`!imp` --- Access the import internals" 23 | msgstr "" 24 | 25 | #: ../../library/imp.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.12 ` after being deprecated in " 29 | "Python 3.4." 30 | msgstr "" 31 | 32 | #: ../../library/imp.rst:14 33 | msgid "" 34 | "The :ref:`removal notice ` includes guidance for " 35 | "migrating code from :mod:`!imp` to :mod:`importlib`." 36 | msgstr "" 37 | 38 | #: ../../library/imp.rst:17 39 | msgid "" 40 | "The last version of Python that provided the :mod:`!imp` module was `Python " 41 | "3.11 `_." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /library/asynchat.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/asynchat.rst:2 22 | msgid ":mod:`!asynchat` --- Asynchronous socket command/response handler" 23 | msgstr "" 24 | 25 | #: ../../library/asynchat.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.12 ` after being deprecated in " 29 | "Python 3.6. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/asynchat.rst:14 33 | msgid "Applications should use the :mod:`asyncio` module instead." 34 | msgstr "" 35 | 36 | #: ../../library/asynchat.rst:16 37 | msgid "" 38 | "The last version of Python that provided the :mod:`!asynchat` module was " 39 | "`Python 3.11 `_." 40 | msgstr "" 41 | -------------------------------------------------------------------------------- /library/xmlrpc.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:18+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/xmlrpc.rst:2 22 | msgid ":mod:`!xmlrpc` --- XMLRPC server and client modules" 23 | msgstr "" 24 | 25 | #: ../../library/xmlrpc.rst:7 26 | msgid "" 27 | "XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a " 28 | "transport. With it, a client can call methods with parameters on a remote " 29 | "server (the server is named by a URI) and get back structured data." 30 | msgstr "" 31 | 32 | #: ../../library/xmlrpc.rst:11 33 | msgid "" 34 | "``xmlrpc`` is a package that collects server and client modules implementing " 35 | "XML-RPC. The modules are:" 36 | msgstr "" 37 | 38 | #: ../../library/xmlrpc.rst:14 39 | msgid ":mod:`xmlrpc.client`" 40 | msgstr "" 41 | 42 | #: ../../library/xmlrpc.rst:15 43 | msgid ":mod:`xmlrpc.server`" 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /reference/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:49+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../reference/index.rst:5 22 | msgid "The Python Language Reference" 23 | msgstr "" 24 | 25 | #: ../../reference/index.rst:7 26 | msgid "" 27 | "This reference manual describes the syntax and \"core semantics\" of the " 28 | "language. It is terse, but attempts to be exact and complete. The semantics " 29 | "of non-essential built-in object types and of the built-in functions and " 30 | "modules are described in :ref:`library-index`. For an informal introduction " 31 | "to the language, see :ref:`tutorial-index`. For C or C++ programmers, two " 32 | "additional manuals exist: :ref:`extending-index` describes the high-level " 33 | "picture of how to write a Python extension module, and the :ref:`c-api-" 34 | "index` describes the interfaces available to C/C++ programmers in detail." 35 | msgstr "" 36 | -------------------------------------------------------------------------------- /library/smtpd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/smtpd.rst:2 22 | msgid ":mod:`!smtpd` --- SMTP Server" 23 | msgstr "" 24 | 25 | #: ../../library/smtpd.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.12 ` after being deprecated in " 29 | "Python 3.6. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/smtpd.rst:14 33 | msgid "" 34 | "A possible replacement is the third-party :pypi:`aiosmtpd` library. This " 35 | "library is not maintained or supported by the Python core team." 36 | msgstr "" 37 | 38 | #: ../../library/smtpd.rst:17 39 | msgid "" 40 | "The last version of Python that provided the :mod:`!smtpd` module was " 41 | "`Python 3.11 `_." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /library/spwd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/spwd.rst:2 22 | msgid ":mod:`!spwd` --- The shadow password database" 23 | msgstr "" 24 | 25 | #: ../../library/spwd.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/spwd.rst:14 33 | msgid "" 34 | "A possible replacement is the third-party library :pypi:`python-pam`. This " 35 | "library is not supported or maintained by the Python core team." 36 | msgstr "" 37 | 38 | #: ../../library/spwd.rst:17 39 | msgid "" 40 | "The last version of Python that provided the :mod:`!spwd` module was `Python " 41 | "3.12 `_." 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /c-api/descriptor.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:48+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../c-api/descriptor.rst:6 26 | msgid "Descriptor Objects" 27 | msgstr "" 28 | 29 | #: ../../c-api/descriptor.rst:8 30 | msgid "" 31 | "\"Descriptors\" are objects that describe some attribute of an object. They " 32 | "are found in the dictionary of type objects." 33 | msgstr "" 34 | 35 | #: ../../c-api/descriptor.rst:15 36 | msgid "The type object for the built-in descriptor types." 37 | msgstr "" 38 | 39 | #: ../../c-api/descriptor.rst:35 40 | msgid "" 41 | "Return non-zero if the descriptor objects *descr* describes a data " 42 | "attribute, or ``0`` if it describes a method. *descr* must be a descriptor " 43 | "object; there is no error checking." 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ترجمه مستندات پایتون به فارسی 🐍💛 2 | 3 | [![discord](https://img.shields.io/badge/Discord-python--docs--fa-5865F2?style=for-the-badge&logo=Discord)](https://discord.gg/yeqtNeaFYf) 4 | [![youtube](https://img.shields.io/badge/Youtube-Contribution--Guide-CD201F?style=for-the-badge&logo=Youtube)](https://www.youtube.com/watch?v=DH5c5ZutTCo) 5 | 6 | ## درباره پروژه 7 | 8 | ما توی این پروژه گروهی از علاقه‌مندان به پایتون هستیم که روی ترجمه مستندات رسمی پایتون به فارسی می‌کنیم. هدف ما این است که حتی کاربرانی که تسلط کامل به زبان انگلیسی ندارند، بتوانند با استفاده از راهنمایی‌های دقیق و به‌روز، اصول برنامه‌نویسی پایتون را به راحتی یاد بگیرند. 9 | 10 | ## راهنمای مشارکت 🌱 11 | 12 | تمام ترجمه‌ها بر روی [Transifex](https://explore.transifex.com/python-doc/python-newest/) انجام می‌شود. فرآیند ترجمه شامل بازبینی و اصلاح متونی است که به صورت خودکار توسط ابزارهای ترجمه ماشینی ترجمه شده‌اند. 13 | 14 | ## ارتباط و هماهنگی 15 | 16 | برای بحث، هماهنگی و به‌روزرسانی‌های مرتبط با ترجمه، می‌توانید از کانال‌های زیر استفاده کنید: 17 | 18 | 22 | 23 | *** 24 | 25 | با تشکر از همراهی شما در گسترش و بهبود مستندات پایتون به زبان فارسی! 26 | 27 | 28 | ### مشارکت‌های کاربران 29 | ![مشارکت‌های کاربران](reports/contributor_stats_2025_07_12.png) 30 | (به‌روزرسانی: 2025-07-12) 31 | -------------------------------------------------------------------------------- /library/cgi.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/cgi.rst:2 22 | msgid ":mod:`!cgi` --- Common Gateway Interface support" 23 | msgstr "" 24 | 25 | #: ../../library/cgi.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/cgi.rst:14 33 | msgid "" 34 | "A fork of the module on PyPI can be used instead: :pypi:`legacy-cgi`. This " 35 | "is a copy of the cgi module, no longer maintained or supported by the core " 36 | "Python team." 37 | msgstr "" 38 | 39 | #: ../../library/cgi.rst:18 40 | msgid "" 41 | "The last version of Python that provided the :mod:`!cgi` module was `Python " 42 | "3.12 `_." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /library/datatypes.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:04+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/datatypes.rst:5 22 | msgid "Data Types" 23 | msgstr "" 24 | 25 | #: ../../library/datatypes.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide a variety of specialized data " 28 | "types such as dates and times, fixed-type arrays, heap queues, double-ended " 29 | "queues, and enumerations." 30 | msgstr "" 31 | 32 | #: ../../library/datatypes.rst:11 33 | msgid "" 34 | "Python also provides some built-in data types, in particular, :class:" 35 | "`dict`, :class:`list`, :class:`set` and :class:`frozenset`, and :class:" 36 | "`tuple`. The :class:`str` class is used to hold Unicode strings, and the :" 37 | "class:`bytes` and :class:`bytearray` classes are used to hold binary data." 38 | msgstr "" 39 | 40 | #: ../../library/datatypes.rst:17 41 | msgid "The following modules are documented in this chapter:" 42 | msgstr "" 43 | -------------------------------------------------------------------------------- /library/urllib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:17+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/urllib.rst:2 22 | msgid ":mod:`!urllib` --- URL handling modules" 23 | msgstr "" 24 | 25 | #: ../../library/urllib.rst:6 26 | msgid "**Source code:** :source:`Lib/urllib/`" 27 | msgstr "" 28 | 29 | #: ../../library/urllib.rst:10 30 | msgid "" 31 | "``urllib`` is a package that collects several modules for working with URLs:" 32 | msgstr "" 33 | 34 | #: ../../library/urllib.rst:12 35 | msgid ":mod:`urllib.request` for opening and reading URLs" 36 | msgstr "" 37 | 38 | #: ../../library/urllib.rst:13 39 | msgid "" 40 | ":mod:`urllib.error` containing the exceptions raised by :mod:`urllib.request`" 41 | msgstr "" 42 | 43 | #: ../../library/urllib.rst:14 44 | msgid ":mod:`urllib.parse` for parsing URLs" 45 | msgstr "" 46 | 47 | #: ../../library/urllib.rst:15 48 | msgid ":mod:`urllib.robotparser` for parsing ``robots.txt`` files" 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /library/binary.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:56+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/binary.rst:5 22 | msgid "Binary Data Services" 23 | msgstr "" 24 | 25 | #: ../../library/binary.rst:7 26 | msgid "" 27 | "The modules described in this chapter provide some basic services operations " 28 | "for manipulation of binary data. Other operations on binary data, " 29 | "specifically in relation to file formats and network protocols, are " 30 | "described in the relevant sections." 31 | msgstr "" 32 | 33 | #: ../../library/binary.rst:12 34 | msgid "" 35 | "Some libraries described under :ref:`textservices` also work with either " 36 | "ASCII-compatible binary formats (for example, :mod:`re`) or all binary data " 37 | "(for example, :mod:`difflib`)." 38 | msgstr "" 39 | 40 | #: ../../library/binary.rst:16 41 | msgid "" 42 | "In addition, see the documentation for Python's built-in binary data types " 43 | "in :ref:`binaryseq`." 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /library/cgitb.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/cgitb.rst:2 22 | msgid ":mod:`!cgitb` --- Traceback manager for CGI scripts" 23 | msgstr "" 24 | 25 | #: ../../library/cgitb.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/cgitb.rst:14 33 | msgid "" 34 | "A fork of the module on PyPI can now be used instead: :pypi:`legacy-cgi`. " 35 | "This is a copy of the cgi module, no longer maintained or supported by the " 36 | "core Python team." 37 | msgstr "" 38 | 39 | #: ../../library/cgitb.rst:18 40 | msgid "" 41 | "The last version of Python that provided the :mod:`!cgitb` module was " 42 | "`Python 3.12 `_." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /library/telnetlib.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/telnetlib.rst:2 22 | msgid ":mod:`!telnetlib` --- Telnet client" 23 | msgstr "" 24 | 25 | #: ../../library/telnetlib.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/telnetlib.rst:14 33 | msgid "" 34 | "Possible replacements are third-party libraries from PyPI: :pypi:" 35 | "`telnetlib3` or :pypi:`Exscript`. These are not supported or maintained by " 36 | "the Python core team." 37 | msgstr "" 38 | 39 | #: ../../library/telnetlib.rst:18 40 | msgid "" 41 | "The last version of Python that provided the :mod:`!telnetlib` module was " 42 | "`Python 3.12 `_." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /library/imghdr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/imghdr.rst:2 22 | msgid ":mod:`!imghdr` --- Determine the type of an image" 23 | msgstr "" 24 | 25 | #: ../../library/imghdr.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/imghdr.rst:14 33 | msgid "" 34 | "Possible replacements are third-party libraries from PyPI: :pypi:" 35 | "`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These are not " 36 | "supported or maintained by the Python core team." 37 | msgstr "" 38 | 39 | #: ../../library/imghdr.rst:18 40 | msgid "" 41 | "The last version of Python that provided the :mod:`!imghdr` module was " 42 | "`Python 3.12 `_." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /library/sndhdr.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:03+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/sndhdr.rst:2 22 | msgid ":mod:`!sndhdr` --- Determine type of sound file" 23 | msgstr "" 24 | 25 | #: ../../library/sndhdr.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/sndhdr.rst:14 33 | msgid "" 34 | "Possible replacements are third-party modules from PyPI: :pypi:`filetype`, :" 35 | "pypi:`puremagic`, or :pypi:`python-magic`. These are not supported or " 36 | "maintained by the Python core team." 37 | msgstr "" 38 | 39 | #: ../../library/sndhdr.rst:18 40 | msgid "" 41 | "The last version of Python that provided the :mod:`!sndhdr` module was " 42 | "`Python 3.12 `_." 43 | msgstr "" 44 | -------------------------------------------------------------------------------- /library/crypt.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2024-11-19 01:02+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/crypt.rst:2 22 | msgid ":mod:`!crypt` --- Function to check Unix passwords" 23 | msgstr "" 24 | 25 | #: ../../library/crypt.rst:10 26 | msgid "" 27 | "This module is no longer part of the Python standard library. It was :ref:" 28 | "`removed in Python 3.13 ` after being deprecated in " 29 | "Python 3.11. The removal was decided in :pep:`594`." 30 | msgstr "" 31 | 32 | #: ../../library/crypt.rst:14 33 | msgid "" 34 | "Applications can use the :mod:`hashlib` module from the standard library. " 35 | "Other possible replacements are third-party libraries from PyPI: :pypi:" 36 | "`legacycrypt`, :pypi:`bcrypt`, :pypi:`argon2-cffi`, or :pypi:`passlib`. " 37 | "These are not supported or maintained by the Python core team." 38 | msgstr "" 39 | 40 | #: ../../library/crypt.rst:19 41 | msgid "" 42 | "The last version of Python that provided the :mod:`!crypt` module was " 43 | "`Python 3.12 `_." 44 | msgstr "" 45 | -------------------------------------------------------------------------------- /library/internet.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 01:08+0000\n" 16 | "Last-Translator: Alireza Shabani (Revisto) , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../library/internet.rst:5 26 | msgid "Internet Protocols and Support" 27 | msgstr "" 28 | 29 | #: ../../library/internet.rst:14 30 | msgid "" 31 | "The modules described in this chapter implement internet protocols and " 32 | "support for related technology. They are all implemented in Python. Most of " 33 | "these modules require the presence of the system-dependent module :mod:" 34 | "`socket`, which is currently supported on most popular platforms. Here is " 35 | "an overview:" 36 | msgstr "" 37 | 38 | #: ../../library/internet.rst:7 39 | msgid "WWW" 40 | msgstr "" 41 | 42 | #: ../../library/internet.rst:7 43 | msgid "Internet" 44 | msgstr "" 45 | 46 | #: ../../library/internet.rst:7 47 | msgid "World Wide Web" 48 | msgstr "" 49 | 50 | #: ../../library/internet.rst:12 51 | msgid "module" 52 | msgstr "" 53 | 54 | #: ../../library/internet.rst:12 55 | msgid "socket" 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /copyright.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Danial Behzadi , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../copyright.rst:3 27 | msgid "Copyright" 28 | msgstr "" 29 | 30 | #: ../../copyright.rst:5 31 | msgid "Python and this documentation is:" 32 | msgstr "" 33 | 34 | #: ../../copyright.rst:7 35 | msgid "Copyright © 2001 Python Software Foundation. All rights reserved." 36 | msgstr "" 37 | 38 | #: ../../copyright.rst:9 39 | msgid "Copyright © 2000 BeOpen.com. All rights reserved." 40 | msgstr "" 41 | 42 | #: ../../copyright.rst:11 43 | msgid "" 44 | "Copyright © 1995-2000 Corporation for National Research Initiatives. All " 45 | "rights reserved." 46 | msgstr "" 47 | 48 | #: ../../copyright.rst:14 49 | msgid "" 50 | "Copyright © 1991-1995 Stichting Mathematisch Centrum. All rights reserved." 51 | msgstr "" 52 | 53 | #: ../../copyright.rst:18 54 | msgid "" 55 | "See :ref:`history-and-license` for complete license and permissions " 56 | "information." 57 | msgstr "" 58 | -------------------------------------------------------------------------------- /howto/cporting.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:52+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../howto/cporting.rst:7 22 | msgid "Porting Extension Modules to Python 3" 23 | msgstr "" 24 | 25 | #: ../../howto/cporting.rst:9 26 | msgid "" 27 | "We recommend the following resources for porting extension modules to Python " 28 | "3:" 29 | msgstr "" 30 | 31 | #: ../../howto/cporting.rst:11 32 | msgid "" 33 | "The `Migrating C extensions`_ chapter from *Supporting Python 3: An in-depth " 34 | "guide*, a book on moving from Python 2 to Python 3 in general, guides the " 35 | "reader through porting an extension module." 36 | msgstr "" 37 | 38 | #: ../../howto/cporting.rst:15 39 | msgid "" 40 | "The `Porting guide`_ from the *py3c* project provides opinionated " 41 | "suggestions with supporting code." 42 | msgstr "" 43 | 44 | #: ../../howto/cporting.rst:17 45 | msgid "" 46 | ":ref:`Recommended third party tools ` offer abstractions over " 47 | "the Python's C API. Extensions generally need to be re-written to use one of " 48 | "them, but the library then handles differences between various Python " 49 | "versions and implementations." 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /c-api/coro.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:48+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../c-api/coro.rst:6 26 | msgid "Coroutine Objects" 27 | msgstr "" 28 | 29 | #: ../../c-api/coro.rst:10 30 | msgid "" 31 | "Coroutine objects are what functions declared with an ``async`` keyword " 32 | "return." 33 | msgstr "" 34 | 35 | #: ../../c-api/coro.rst:16 36 | msgid "The C structure used for coroutine objects." 37 | msgstr "" 38 | 39 | #: ../../c-api/coro.rst:21 40 | msgid "The type object corresponding to coroutine objects." 41 | msgstr "" 42 | 43 | #: ../../c-api/coro.rst:26 44 | msgid "" 45 | "Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be " 46 | "``NULL``. This function always succeeds." 47 | msgstr "" 48 | 49 | #: ../../c-api/coro.rst:32 50 | msgid "" 51 | "Create and return a new coroutine object based on the *frame* object, with " 52 | "``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " 53 | "to *frame* is stolen by this function. The *frame* argument must not be " 54 | "``NULL``." 55 | msgstr "" 56 | -------------------------------------------------------------------------------- /extending/building.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:51+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../extending/building.rst:7 22 | msgid "Building C and C++ Extensions" 23 | msgstr "" 24 | 25 | #: ../../extending/building.rst:9 26 | msgid "" 27 | "A C extension for CPython is a shared library (for example, a ``.so`` file " 28 | "on Linux, ``.pyd`` on Windows), which exports an *initialization function*." 29 | msgstr "" 30 | 31 | #: ../../extending/building.rst:12 32 | msgid "See :ref:`extension-modules` for details." 33 | msgstr "" 34 | 35 | #: ../../extending/building.rst:21 36 | msgid "Building C and C++ Extensions with setuptools" 37 | msgstr "" 38 | 39 | #: ../../extending/building.rst:24 40 | msgid "" 41 | "Building, packaging and distributing extension modules is best done with " 42 | "third-party tools, and is out of scope of this document. One suitable tool " 43 | "is Setuptools, whose documentation can be found at https://setuptools.pypa." 44 | "io/en/latest/setuptools.html." 45 | msgstr "" 46 | 47 | #: ../../extending/building.rst:29 48 | msgid "" 49 | "The :mod:`distutils` module, which was included in the standard library " 50 | "until Python 3.12, is now maintained as part of Setuptools." 51 | msgstr "" 52 | -------------------------------------------------------------------------------- /library/tkinter.colorchooser.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:15+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/tkinter.colorchooser.rst:2 22 | msgid ":mod:`!tkinter.colorchooser` --- Color choosing dialog" 23 | msgstr "" 24 | 25 | #: ../../library/tkinter.colorchooser.rst:8 26 | msgid "**Source code:** :source:`Lib/tkinter/colorchooser.py`" 27 | msgstr "" 28 | 29 | #: ../../library/tkinter.colorchooser.rst:12 30 | msgid "" 31 | "The :mod:`tkinter.colorchooser` module provides the :class:`Chooser` class " 32 | "as an interface to the native color picker dialog. ``Chooser`` implements a " 33 | "modal color choosing dialog window. The ``Chooser`` class inherits from the :" 34 | "class:`~tkinter.commondialog.Dialog` class." 35 | msgstr "" 36 | 37 | #: ../../library/tkinter.colorchooser.rst:21 38 | msgid "" 39 | "Create a color choosing dialog. A call to this method will show the window, " 40 | "wait for the user to make a selection, and return the selected color (or " 41 | "``None``) to the caller." 42 | msgstr "" 43 | 44 | #: ../../library/tkinter.colorchooser.rst:28 45 | msgid "Module :mod:`tkinter.commondialog`" 46 | msgstr "" 47 | 48 | #: ../../library/tkinter.colorchooser.rst:29 49 | msgid "Tkinter standard dialog module" 50 | msgstr "" 51 | -------------------------------------------------------------------------------- /c-api/none.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../c-api/none.rst:6 27 | msgid "The ``None`` Object" 28 | msgstr "" 29 | 30 | #: ../../c-api/none.rst:10 31 | msgid "" 32 | "Note that the :c:type:`PyTypeObject` for ``None`` is not directly exposed in " 33 | "the Python/C API. Since ``None`` is a singleton, testing for object " 34 | "identity (using ``==`` in C) is sufficient. There is no :c:func:`!" 35 | "PyNone_Check` function for the same reason." 36 | msgstr "" 37 | 38 | #: ../../c-api/none.rst:18 39 | msgid "" 40 | "The Python ``None`` object, denoting lack of value. This object has no " 41 | "methods and is :term:`immortal`." 42 | msgstr "" 43 | 44 | #: ../../c-api/none.rst:21 45 | msgid ":c:data:`Py_None` is :term:`immortal`." 46 | msgstr "" 47 | 48 | #: ../../c-api/none.rst:26 49 | msgid "Return :c:data:`Py_None` from a function." 50 | msgstr "" 51 | 52 | #: ../../c-api/none.rst:8 53 | msgid "object" 54 | msgstr "" 55 | 56 | #: ../../c-api/none.rst:8 57 | msgid "None" 58 | msgstr "" 59 | -------------------------------------------------------------------------------- /scripts/transifex/client.py: -------------------------------------------------------------------------------- 1 | from transifex.api import transifex_api 2 | from .config import PROJECT, LANGUAGE, ORGANISATION 3 | 4 | _api_cache = {} 5 | 6 | 7 | def _fetch_from_api(cache_key, api_call_func, *args, **kwargs): 8 | if cache_key not in _api_cache: 9 | _api_cache[cache_key] = api_call_func(*args, **kwargs) 10 | return _api_cache[cache_key] 11 | 12 | 13 | def get_all_resources(): 14 | """Fetches all resources for the configured project, with caching.""" 15 | cache_key = "all_resources" 16 | return _fetch_from_api( 17 | cache_key, transifex_api.Resource.filter, project=PROJECT 18 | ).all() 19 | 20 | 21 | def get_resource_language_stats(): 22 | """Fetches language statistics for all resources, with caching.""" 23 | cache_key = "resource_language_stats" 24 | return _fetch_from_api( 25 | cache_key, 26 | transifex_api.ResourceLanguageStats.filter, 27 | project=PROJECT, 28 | language=LANGUAGE, 29 | ).all() 30 | 31 | 32 | def get_team_members(): 33 | """Fetches all team members, with caching.""" 34 | cache_key = "team_members" 35 | # Fetching with 'user' include to get user details like username 36 | return ( 37 | _fetch_from_api( 38 | cache_key, 39 | transifex_api.TeamMembership.filter, 40 | organization=ORGANISATION, 41 | language=LANGUAGE, 42 | ) 43 | .include("user") 44 | .all() 45 | ) 46 | 47 | 48 | def get_resource_translations(resource): 49 | """Fetches translations for a given resource, with caching per resource.""" 50 | resource_id = resource.id if hasattr(resource, "id") else str(resource) 51 | cache_key = f"resource_translations_{resource_id}" 52 | return _fetch_from_api( 53 | cache_key, 54 | transifex_api.ResourceTranslation.filter, 55 | resource=resource, 56 | language=LANGUAGE, 57 | ).all() 58 | -------------------------------------------------------------------------------- /library/filesys.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:06+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/filesys.rst:5 22 | msgid "File and Directory Access" 23 | msgstr "" 24 | 25 | #: ../../library/filesys.rst:7 26 | msgid "" 27 | "The modules described in this chapter deal with disk files and directories. " 28 | "For example, there are modules for reading the properties of files, " 29 | "manipulating paths in a portable way, and creating temporary files. The " 30 | "full list of modules in this chapter is:" 31 | msgstr "" 32 | 33 | #: ../../library/filesys.rst:28 34 | msgid "Module :mod:`os`" 35 | msgstr "" 36 | 37 | #: ../../library/filesys.rst:29 38 | msgid "" 39 | "Operating system interfaces, including functions to work with files at a " 40 | "lower level than Python :term:`file objects `." 41 | msgstr "" 42 | 43 | #: ../../library/filesys.rst:32 44 | msgid "Module :mod:`io`" 45 | msgstr "" 46 | 47 | #: ../../library/filesys.rst:33 48 | msgid "" 49 | "Python's built-in I/O library, including both abstract classes and some " 50 | "concrete classes such as file I/O." 51 | msgstr "" 52 | 53 | #: ../../library/filesys.rst:36 54 | msgid "Built-in function :func:`open`" 55 | msgstr "" 56 | 57 | #: ../../library/filesys.rst:37 58 | msgid "The standard way to open files for reading and writing with Python." 59 | msgstr "" 60 | -------------------------------------------------------------------------------- /using/editors.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:51+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../using/editors.rst:7 22 | msgid "Editors and IDEs" 23 | msgstr "" 24 | 25 | #: ../../using/editors.rst:9 26 | msgid "" 27 | "There are a number of IDEs that support Python programming language. Many " 28 | "editors and IDEs provide syntax highlighting, debugging tools, and :pep:`8` " 29 | "checks." 30 | msgstr "" 31 | 32 | #: ../../using/editors.rst:14 33 | msgid "IDLE --- Python editor and shell" 34 | msgstr "" 35 | 36 | #: ../../using/editors.rst:16 37 | msgid "" 38 | "IDLE is Python’s Integrated Development and Learning Environment and is " 39 | "generally bundled with Python installs. If you are on Linux and do not have " 40 | "IDLE installed see :ref:`Installing IDLE on Linux " 41 | "`. For more information see the :ref:`IDLE docs " 42 | "`." 43 | msgstr "" 44 | 45 | #: ../../using/editors.rst:22 46 | msgid "Other Editors and IDEs" 47 | msgstr "" 48 | 49 | #: ../../using/editors.rst:24 50 | msgid "" 51 | "Python's community wiki has information submitted by the community on " 52 | "Editors and IDEs. Please go to `Python Editors `_ and `Integrated Development Environments `_ for a comprehensive " 55 | "list." 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /library/superseded.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:14+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/superseded.rst:5 22 | msgid "Superseded Modules" 23 | msgstr "" 24 | 25 | #: ../../library/superseded.rst:7 26 | msgid "" 27 | "The modules described in this chapter have been superseded by other modules " 28 | "for most use cases, and are retained primarily to preserve backwards " 29 | "compatibility." 30 | msgstr "" 31 | 32 | #: ../../library/superseded.rst:10 33 | msgid "" 34 | "Modules may appear in this chapter because they only cover a limited subset " 35 | "of a problem space, and a more generally applicable solution is available " 36 | "elsewhere in the standard library (for example, :mod:`getopt` covers the " 37 | "very specific task of \"mimic the C :c:func:`!getopt` API in Python\", " 38 | "rather than the broader command line option parsing and argument parsing " 39 | "capabilities offered by :mod:`optparse` and :mod:`argparse`)." 40 | msgstr "" 41 | 42 | #: ../../library/superseded.rst:17 43 | msgid "" 44 | "Alternatively, modules may appear in this chapter because they are " 45 | "deprecated outright, and awaiting removal in a future release, or they are :" 46 | "term:`soft deprecated` and their use is actively discouraged in new " 47 | "projects. With the removal of various obsolete modules through :pep:`594`, " 48 | "there are currently no modules in this latter category." 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy to GitHub Pages 2 | 3 | on: 4 | schedule: 5 | - cron: '0 2 * * *' 6 | push: 7 | branches: 8 | - 3.13 9 | workflow_dispatch: 10 | 11 | permissions: 12 | contents: read 13 | pages: write 14 | id-token: write 15 | 16 | concurrency: 17 | group: "pages" 18 | cancel-in-progress: false 19 | 20 | jobs: 21 | build: 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: Checkout Python repository 25 | uses: actions/checkout@v4 26 | with: 27 | repository: python/cpython 28 | ref: 3.13 29 | 30 | - name: Set up Python 31 | uses: actions/setup-python@v4 32 | with: 33 | python-version: '3.11' 34 | 35 | - name: Setup virtual environment 36 | run: make venv 37 | working-directory: ./Doc 38 | 39 | - name: Checkout translation files 40 | uses: actions/checkout@v4 41 | with: 42 | path: Doc/locales/fa/LC_MESSAGES 43 | 44 | - name: Pull latest translations 45 | run: git pull 46 | working-directory: ./Doc/locales/fa/LC_MESSAGES 47 | 48 | - name: Setup problem matcher 49 | uses: sphinx-doc/github-problem-matcher@v1.1 50 | 51 | - name: Build documentation 52 | run: make -e SPHINXOPTS="--color -D language='fa' -D gettext_allow_fuzzy_translations=1 -W --keep-going" html 53 | working-directory: ./Doc 54 | 55 | - name: Setup Pages 56 | uses: actions/configure-pages@v4 57 | 58 | - name: Upload artifact 59 | uses: actions/upload-pages-artifact@v3 60 | with: 61 | path: Doc/build/html 62 | 63 | deploy: 64 | environment: 65 | name: github-pages 66 | url: ${{ steps.deployment.outputs.page_url }} 67 | runs-on: ubuntu-latest 68 | needs: build 69 | steps: 70 | - name: Deploy to GitHub Pages 71 | id: deployment 72 | uses: actions/deploy-pages@v4 73 | -------------------------------------------------------------------------------- /library/keyword.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:08+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/keyword.rst:2 22 | msgid ":mod:`!keyword` --- Testing for Python keywords" 23 | msgstr "" 24 | 25 | #: ../../library/keyword.rst:7 26 | msgid "**Source code:** :source:`Lib/keyword.py`" 27 | msgstr "" 28 | 29 | #: ../../library/keyword.rst:11 30 | msgid "" 31 | "This module allows a Python program to determine if a string is a :ref:" 32 | "`keyword ` or :ref:`soft keyword `." 33 | msgstr "" 34 | 35 | #: ../../library/keyword.rst:17 36 | msgid "Return ``True`` if *s* is a Python :ref:`keyword `." 37 | msgstr "" 38 | 39 | #: ../../library/keyword.rst:22 40 | msgid "" 41 | "Sequence containing all the :ref:`keywords ` defined for the " 42 | "interpreter. If any keywords are defined to only be active when particular :" 43 | "mod:`__future__` statements are in effect, these will be included as well." 44 | msgstr "" 45 | 46 | #: ../../library/keyword.rst:29 47 | msgid "Return ``True`` if *s* is a Python :ref:`soft keyword `." 48 | msgstr "" 49 | 50 | #: ../../library/keyword.rst:36 51 | msgid "" 52 | "Sequence containing all the :ref:`soft keywords ` defined for " 53 | "the interpreter. If any soft keywords are defined to only be active when " 54 | "particular :mod:`__future__` statements are in effect, these will be " 55 | "included as well." 56 | msgstr "" 57 | -------------------------------------------------------------------------------- /.github/workflows/sync.yml.disabled: -------------------------------------------------------------------------------- 1 | name: "Sync Translations" 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' # Run daily at midnight 6 | workflow_dispatch: # Allow manual triggers 7 | pull_request: 8 | types: [labeled] # Trigger on PR label 9 | 10 | permissions: 11 | contents: write 12 | pull-requests: write 13 | 14 | jobs: 15 | sync-translations: 16 | if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.event.label.name == 'sync-translations' 17 | runs-on: ubuntu-latest 18 | 19 | steps: 20 | - name: Checkout repository 21 | uses: actions/checkout@v4 22 | 23 | - name: Install Transifex CLI 24 | run: | 25 | cd /usr/local/bin 26 | sudo curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash 27 | 28 | - name: Setup Python 29 | uses: actions/setup-python@v5 30 | with: 31 | python-version: '3.x' 32 | 33 | - name: Install dependencies 34 | run: | 35 | sudo apt-get update 36 | sudo apt-get install -y gettext 37 | pip install transifex-python sphinx-intl polib powrap 38 | 39 | - name: Sync with Transifex 40 | env: 41 | TX_TOKEN: ${{ secrets.TX_TOKEN }} 42 | run: | 43 | # Pull reviewed translations from Transifex 44 | tx pull -f -l fa --mode=reviewed 45 | 46 | # Format .po files 47 | find . -name "*.po" -exec msgcat --no-wrap {} -o {} \; 48 | 49 | - name: Format PO files 50 | run: | 51 | find . -name "*.po" -exec powrap {} \; 52 | 53 | - name: Commit and push changes 54 | if: github.event_name != 'pull_request' 55 | run: | 56 | git config --local user.name "GitHub Action's update-translation job" 57 | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" 58 | git add . 59 | git commit -m "Update Farsi translations from Transifex" || echo "No changes to commit" 60 | git push -------------------------------------------------------------------------------- /c-api/abstract.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # khosro azimi, 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" 17 | "Last-Translator: khosro azimi, 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../c-api/abstract.rst:7 27 | msgid "Abstract Objects Layer" 28 | msgstr "لایه اشیاء انتزاعی (Abstract Objects Layer)" 29 | 30 | #: ../../c-api/abstract.rst:9 31 | msgid "" 32 | "The functions in this chapter interact with Python objects regardless of " 33 | "their type, or with wide classes of object types (e.g. all numerical types, " 34 | "or all sequence types). When used on object types for which they do not " 35 | "apply, they will raise a Python exception." 36 | msgstr "" 37 | "توابع در این فصل با انواع اشیاء صرف نظر از نوع انها یا با کلاس های گسترده‌ای " 38 | "از انواع اشیاء ( برای مثال همه ی اعداد یا همه انواع توالی) تعامل دارند. اگر " 39 | "این توابع بر روی نوعی از اشیاء استفاده شوند که برای آن‌ها تعریف نشده‌اند، یک " 40 | "استثنا در پایتون ایجاد خواهند کرد." 41 | 42 | #: ../../c-api/abstract.rst:14 43 | msgid "" 44 | "It is not possible to use these functions on objects that are not properly " 45 | "initialized, such as a list object that has been created by :c:func:" 46 | "`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` " 47 | "value yet." 48 | msgstr "" 49 | "امکان استفاده از این توابع بر روی اشیایی که به‌درستی مقداردهی اولیه نشده‌اند " 50 | "وجود ندارد؛ برای مثال، یک لیست از اشیاء که با استفاده از :c:func:" 51 | "`PyList_New` ایجاد شده اما مقادیر آیتم‌های آن هنوز به مقداری غیر از ``NULL`` " 52 | "داده نشده است." 53 | -------------------------------------------------------------------------------- /library/tkinter.scrolledtext.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:15+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/tkinter.scrolledtext.rst:2 22 | msgid ":mod:`!tkinter.scrolledtext` --- Scrolled Text Widget" 23 | msgstr "" 24 | 25 | #: ../../library/tkinter.scrolledtext.rst:10 26 | msgid "**Source code:** :source:`Lib/tkinter/scrolledtext.py`" 27 | msgstr "" 28 | 29 | #: ../../library/tkinter.scrolledtext.rst:14 30 | msgid "" 31 | "The :mod:`tkinter.scrolledtext` module provides a class of the same name " 32 | "which implements a basic text widget which has a vertical scroll bar " 33 | "configured to do the \"right thing.\" Using the :class:`ScrolledText` class " 34 | "is a lot easier than setting up a text widget and scroll bar directly." 35 | msgstr "" 36 | 37 | #: ../../library/tkinter.scrolledtext.rst:19 38 | msgid "" 39 | "The text widget and scrollbar are packed together in a :class:`Frame`, and " 40 | "the methods of the :class:`Grid` and :class:`Pack` geometry managers are " 41 | "acquired from the :class:`Frame` object. This allows the :class:" 42 | "`ScrolledText` widget to be used directly to achieve most normal geometry " 43 | "management behavior." 44 | msgstr "" 45 | 46 | #: ../../library/tkinter.scrolledtext.rst:24 47 | msgid "" 48 | "Should more specific control be necessary, the following attributes are " 49 | "available:" 50 | msgstr "" 51 | 52 | #: ../../library/tkinter.scrolledtext.rst:32 53 | msgid "The frame which surrounds the text and scroll bar widgets." 54 | msgstr "" 55 | 56 | #: ../../library/tkinter.scrolledtext.rst:37 57 | msgid "The scroll bar widget." 58 | msgstr "" 59 | -------------------------------------------------------------------------------- /c-api/gen.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:48+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/gen.rst:6 22 | msgid "Generator Objects" 23 | msgstr "" 24 | 25 | #: ../../c-api/gen.rst:8 26 | msgid "" 27 | "Generator objects are what Python uses to implement generator iterators. " 28 | "They are normally created by iterating over a function that yields values, " 29 | "rather than explicitly calling :c:func:`PyGen_New` or :c:func:" 30 | "`PyGen_NewWithQualName`." 31 | msgstr "" 32 | 33 | #: ../../c-api/gen.rst:15 34 | msgid "The C structure used for generator objects." 35 | msgstr "" 36 | 37 | #: ../../c-api/gen.rst:20 38 | msgid "The type object corresponding to generator objects." 39 | msgstr "" 40 | 41 | #: ../../c-api/gen.rst:25 42 | msgid "" 43 | "Return true if *ob* is a generator object; *ob* must not be ``NULL``. This " 44 | "function always succeeds." 45 | msgstr "" 46 | 47 | #: ../../c-api/gen.rst:31 48 | msgid "" 49 | "Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be " 50 | "``NULL``. This function always succeeds." 51 | msgstr "" 52 | 53 | #: ../../c-api/gen.rst:37 54 | msgid "" 55 | "Create and return a new generator object based on the *frame* object. A " 56 | "reference to *frame* is stolen by this function. The argument must not be " 57 | "``NULL``." 58 | msgstr "" 59 | 60 | #: ../../c-api/gen.rst:43 61 | msgid "" 62 | "Create and return a new generator object based on the *frame* object, with " 63 | "``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference " 64 | "to *frame* is stolen by this function. The *frame* argument must not be " 65 | "``NULL``." 66 | msgstr "" 67 | -------------------------------------------------------------------------------- /library/html.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:07+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/html.rst:2 22 | msgid ":mod:`!html` --- HyperText Markup Language support" 23 | msgstr "" 24 | 25 | #: ../../library/html.rst:7 26 | msgid "**Source code:** :source:`Lib/html/__init__.py`" 27 | msgstr "" 28 | 29 | #: ../../library/html.rst:11 30 | msgid "This module defines utilities to manipulate HTML." 31 | msgstr "" 32 | 33 | #: ../../library/html.rst:15 34 | msgid "" 35 | "Convert the characters ``&``, ``<`` and ``>`` in string *s* to HTML-safe " 36 | "sequences. Use this if you need to display text that might contain such " 37 | "characters in HTML. If the optional flag *quote* is true, the characters " 38 | "(``\"``) and (``'``) are also translated; this helps for inclusion in an " 39 | "HTML attribute value delimited by quotes, as in ````." 40 | msgstr "" 41 | 42 | #: ../../library/html.rst:26 43 | msgid "" 44 | "Convert all named and numeric character references (e.g. ``>``, ``>" 45 | "``, ``>``) in the string *s* to the corresponding Unicode characters. " 46 | "This function uses the rules defined by the HTML 5 standard for both valid " 47 | "and invalid character references, and the :data:`list of HTML 5 named " 48 | "character references `." 49 | msgstr "" 50 | 51 | #: ../../library/html.rst:36 52 | msgid "Submodules in the ``html`` package are:" 53 | msgstr "" 54 | 55 | #: ../../library/html.rst:38 56 | msgid ":mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode" 57 | msgstr "" 58 | 59 | #: ../../library/html.rst:39 60 | msgid ":mod:`html.entities` -- HTML entity definitions" 61 | msgstr "" 62 | -------------------------------------------------------------------------------- /TEAM.md: -------------------------------------------------------------------------------- 1 | | User | Role | Translated Count | Reviewed Count | Proofread Count | 2 | |:-----|:------:|:------------------:|:-------------------:|:----------------------:| 3 | | Revisto | coordinator | 3983 (+1) | 30 | 0 | 4 | | danialbehzadi | reviewer | 677 | 5 | 0 | 5 | | khosro_o | reviewer | 63 | 87 | 0 | 6 | | Ramiz_222 | reviewer | 10 | 82 | 0 | 7 | | ParhamF | translator | 41 | 0 | 0 | 8 | | Ariyan_Bolandi | reviewer | 37 | 4 | 0 | 9 | | mdflx | reviewer | 1 | 30 | 0 | 10 | | aimer.hs872 | reviewer | 8 | 18 | 0 | 11 | | nikovinix7878 | translator | 13 | 0 | 0 | 12 | | thaghgoo | translator | 12 | 0 | 0 | 13 | | arfa79lg | translator | 6 | 0 | 0 | 14 | | naweex | translator | 2 | 0 | 0 | 15 | | pangominn | translator | 2 | 0 | 0 | 16 | | ashykng | translator | 1 | 0 | 0 | 17 | | aryasadeghy | translator | 0 | 0 | 0 | 18 | | pouya.abbassi | translator | 0 | 0 | 0 | 19 | | farzaneh_gtc_YzkxOG | translator | 0 | 0 | 0 | 20 | | mahdihasanzadeh_gtc_ZGRkMW | translator | 0 | 0 | 0 | 21 | | a_wakeel | translator | 0 | 0 | 0 | 22 | | cocoatomo | coordinator | 0 | 0 | 0 | 23 | | sina6991 | translator | 0 | 0 | 0 | 24 | | ahmadly | translator | 0 | 0 | 0 | 25 | | ayoubgholami | translator | 0 | 0 | 0 | 26 | | khoramism | translator | 0 | 0 | 0 | 27 | | mojtaba77 | translator | 0 | 0 | 0 | 28 | | Gigahertz | translator | 0 | 0 | 0 | 29 | | amirjj | translator | 0 | 0 | 0 | 30 | | GRAY._.XRAY | translator | 0 | 0 | 0 | 31 | | Saeed_hmzpr | translator | 0 | 0 | 0 | 32 | | tannerj028 | translator | 0 | 0 | 0 | 33 | | NotHero | translator | 0 | 0 | 0 | 34 | | THISisAshk | translator | 0 | 0 | 0 | 35 | | revistology | translator | 0 | 0 | 0 | 36 | | revistola | translator | 0 | 0 | 0 | 37 | | shahabworks | translator | 0 | 0 | 0 | 38 | | shahriaarrr | translator | 0 | 0 | 0 | 39 | | mohammadreza13842018 | translator | 0 | 0 | 0 | 40 | | mjavadf | translator | 0 | 0 | 0 | 41 | | ArminTM | translator | 0 | 0 | 0 | 42 | | ehsan_torabi | translator | 0 | 0 | 0 | 43 | | Feriun | translator | 0 | 0 | 0 | 44 | | pourya | translator | 0 | 0 | 0 | 45 | | mobinveisy | translator | 0 | 0 | 0 | 46 | | AmirAzade | translator | 0 | 0 | 0 | 47 | | aliattack | translator | 0 | 0 | 0 | 48 | | a.sharifianzade | translator | 0 | 0 | 0 | 49 | | ftgupp | translator | 0 | 0 | 0 | 50 | | petrudi | reviewer | 0 | 0 | 0 | 51 | | mmdbalkhi | reviewer | 0 | 0 | 0 | 52 | -------------------------------------------------------------------------------- /c-api/bool.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/bool.rst:6 22 | msgid "Boolean Objects" 23 | msgstr "" 24 | 25 | #: ../../c-api/bool.rst:8 26 | msgid "" 27 | "Booleans in Python are implemented as a subclass of integers. There are " 28 | "only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the " 29 | "normal creation and deletion functions don't apply to booleans. The " 30 | "following macros are available, however." 31 | msgstr "" 32 | 33 | #: ../../c-api/bool.rst:16 34 | msgid "" 35 | "This instance of :c:type:`PyTypeObject` represents the Python boolean type; " 36 | "it is the same object as :class:`bool` in the Python layer." 37 | msgstr "" 38 | 39 | #: ../../c-api/bool.rst:22 40 | msgid "" 41 | "Return true if *o* is of type :c:data:`PyBool_Type`. This function always " 42 | "succeeds." 43 | msgstr "" 44 | 45 | #: ../../c-api/bool.rst:28 46 | msgid "" 47 | "The Python ``False`` object. This object has no methods and is :term:" 48 | "`immortal`." 49 | msgstr "" 50 | 51 | #: ../../c-api/bool.rst:31 52 | msgid ":c:data:`Py_False` is :term:`immortal`." 53 | msgstr "" 54 | 55 | #: ../../c-api/bool.rst:37 56 | msgid "" 57 | "The Python ``True`` object. This object has no methods and is :term:" 58 | "`immortal`." 59 | msgstr "" 60 | 61 | #: ../../c-api/bool.rst:40 62 | msgid ":c:data:`Py_True` is :term:`immortal`." 63 | msgstr "" 64 | 65 | #: ../../c-api/bool.rst:46 66 | msgid "Return :c:data:`Py_False` from a function." 67 | msgstr "" 68 | 69 | #: ../../c-api/bool.rst:51 70 | msgid "Return :c:data:`Py_True` from a function." 71 | msgstr "" 72 | 73 | #: ../../c-api/bool.rst:56 74 | msgid "" 75 | "Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value " 76 | "of *v*." 77 | msgstr "" 78 | -------------------------------------------------------------------------------- /library/html.entities.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 01:07+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../library/html.entities.rst:2 27 | msgid ":mod:`!html.entities` --- Definitions of HTML general entities" 28 | msgstr "" 29 | 30 | #: ../../library/html.entities.rst:9 31 | msgid "**Source code:** :source:`Lib/html/entities.py`" 32 | msgstr "" 33 | 34 | #: ../../library/html.entities.rst:13 35 | msgid "" 36 | "This module defines four dictionaries, :data:`html5`, :data:" 37 | "`name2codepoint`, :data:`codepoint2name`, and :data:`entitydefs`." 38 | msgstr "" 39 | 40 | #: ../../library/html.entities.rst:19 41 | msgid "" 42 | "A dictionary that maps HTML5 named character references [#]_ to the " 43 | "equivalent Unicode character(s), e.g. ``html5['gt;'] == '>'``. Note that the " 44 | "trailing semicolon is included in the name (e.g. ``'gt;'``), however some of " 45 | "the names are accepted by the standard even without the semicolon: in this " 46 | "case the name is present with and without the ``';'``. See also :func:`html." 47 | "unescape`." 48 | msgstr "" 49 | 50 | #: ../../library/html.entities.rst:31 51 | msgid "" 52 | "A dictionary mapping XHTML 1.0 entity definitions to their replacement text " 53 | "in ISO Latin-1." 54 | msgstr "" 55 | 56 | #: ../../library/html.entities.rst:37 57 | msgid "A dictionary that maps HTML4 entity names to the Unicode code points." 58 | msgstr "" 59 | 60 | #: ../../library/html.entities.rst:42 61 | msgid "A dictionary that maps Unicode code points to HTML4 entity names." 62 | msgstr "" 63 | 64 | #: ../../library/html.entities.rst:46 65 | msgid "Footnotes" 66 | msgstr "" 67 | 68 | #: ../../library/html.entities.rst:47 69 | msgid "" 70 | "See https://html.spec.whatwg.org/multipage/named-characters.html#named-" 71 | "character-references" 72 | msgstr "" 73 | -------------------------------------------------------------------------------- /library/tk.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 01:15+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../library/tk.rst:5 26 | msgid "Graphical User Interfaces with Tk" 27 | msgstr "" 28 | 29 | #: ../../library/tk.rst:13 30 | msgid "" 31 | "Tk/Tcl has long been an integral part of Python. It provides a robust and " 32 | "platform independent windowing toolkit, that is available to Python " 33 | "programmers using the :mod:`tkinter` package, and its extension, the :mod:" 34 | "`tkinter.ttk` module." 35 | msgstr "" 36 | 37 | #: ../../library/tk.rst:17 38 | msgid "" 39 | "The :mod:`tkinter` package is a thin object-oriented layer on top of Tcl/Tk. " 40 | "To use :mod:`tkinter`, you don't need to write Tcl code, but you will need " 41 | "to consult the Tk documentation, and occasionally the Tcl documentation. :" 42 | "mod:`tkinter` is a set of wrappers that implement the Tk widgets as Python " 43 | "classes." 44 | msgstr "" 45 | 46 | #: ../../library/tk.rst:23 47 | msgid "" 48 | ":mod:`tkinter`'s chief virtues are that it is fast, and that it usually " 49 | "comes bundled with Python. Although its standard documentation is weak, good " 50 | "material is available, which includes: references, tutorials, a book and " 51 | "others. :mod:`tkinter` is also famous for having an outdated look and feel, " 52 | "which has been vastly improved in Tk 8.5. Nevertheless, there are many other " 53 | "GUI libraries that you could be interested in. The Python wiki lists several " 54 | "alternative `GUI frameworks and tools `_." 56 | msgstr "" 57 | 58 | #: ../../library/tk.rst:7 59 | msgid "GUI" 60 | msgstr "" 61 | 62 | #: ../../library/tk.rst:7 63 | msgid "Graphical User Interface" 64 | msgstr "" 65 | 66 | #: ../../library/tk.rst:7 67 | msgid "Tkinter" 68 | msgstr "" 69 | 70 | #: ../../library/tk.rst:7 71 | msgid "Tk" 72 | msgstr "" 73 | -------------------------------------------------------------------------------- /c-api/iterator.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/iterator.rst:6 22 | msgid "Iterator Objects" 23 | msgstr "" 24 | 25 | #: ../../c-api/iterator.rst:8 26 | msgid "" 27 | "Python provides two general-purpose iterator objects. The first, a sequence " 28 | "iterator, works with an arbitrary sequence supporting the :meth:`~object." 29 | "__getitem__` method. The second works with a callable object and a sentinel " 30 | "value, calling the callable for each item in the sequence, and ending the " 31 | "iteration when the sentinel value is returned." 32 | msgstr "" 33 | 34 | #: ../../c-api/iterator.rst:17 35 | msgid "" 36 | "Type object for iterator objects returned by :c:func:`PySeqIter_New` and the " 37 | "one-argument form of the :func:`iter` built-in function for built-in " 38 | "sequence types." 39 | msgstr "" 40 | 41 | #: ../../c-api/iterator.rst:24 42 | msgid "" 43 | "Return true if the type of *op* is :c:data:`PySeqIter_Type`. This function " 44 | "always succeeds." 45 | msgstr "" 46 | 47 | #: ../../c-api/iterator.rst:30 48 | msgid "" 49 | "Return an iterator that works with a general sequence object, *seq*. The " 50 | "iteration ends when the sequence raises :exc:`IndexError` for the " 51 | "subscripting operation." 52 | msgstr "" 53 | 54 | #: ../../c-api/iterator.rst:37 55 | msgid "" 56 | "Type object for iterator objects returned by :c:func:`PyCallIter_New` and " 57 | "the two-argument form of the :func:`iter` built-in function." 58 | msgstr "" 59 | 60 | #: ../../c-api/iterator.rst:43 61 | msgid "" 62 | "Return true if the type of *op* is :c:data:`PyCallIter_Type`. This function " 63 | "always succeeds." 64 | msgstr "" 65 | 66 | #: ../../c-api/iterator.rst:49 67 | msgid "" 68 | "Return a new iterator. The first parameter, *callable*, can be any Python " 69 | "callable object that can be called with no parameters; each call to it " 70 | "should return the next item in the iteration. When *callable* returns a " 71 | "value equal to *sentinel*, the iteration will be terminated." 72 | msgstr "" 73 | -------------------------------------------------------------------------------- /c-api/typehints.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:50+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/typehints.rst:6 22 | msgid "Objects for Type Hinting" 23 | msgstr "" 24 | 25 | #: ../../c-api/typehints.rst:8 26 | msgid "" 27 | "Various built-in types for type hinting are provided. Currently, two types " 28 | "exist -- :ref:`GenericAlias ` and :ref:`Union `. Only ``GenericAlias`` is exposed to C." 30 | msgstr "" 31 | 32 | #: ../../c-api/typehints.rst:14 33 | msgid "" 34 | "Create a :ref:`GenericAlias ` object. Equivalent to " 35 | "calling the Python class :class:`types.GenericAlias`. The *origin* and " 36 | "*args* arguments set the ``GenericAlias``\\ 's ``__origin__`` and " 37 | "``__args__`` attributes respectively. *origin* should be a :c:expr:" 38 | "`PyTypeObject*`, and *args* can be a :c:expr:`PyTupleObject*` or any " 39 | "``PyObject*``. If *args* passed is not a tuple, a 1-tuple is automatically " 40 | "constructed and ``__args__`` is set to ``(args,)``. Minimal checking is done " 41 | "for the arguments, so the function will succeed even if *origin* is not a " 42 | "type. The ``GenericAlias``\\ 's ``__parameters__`` attribute is constructed " 43 | "lazily from ``__args__``. On failure, an exception is raised and ``NULL`` " 44 | "is returned." 45 | msgstr "" 46 | 47 | #: ../../c-api/typehints.rst:28 48 | msgid "Here's an example of how to make an extension type generic::" 49 | msgstr "" 50 | 51 | #: ../../c-api/typehints.rst:30 52 | msgid "" 53 | "...\n" 54 | "static PyMethodDef my_obj_methods[] = {\n" 55 | " // Other methods.\n" 56 | " ...\n" 57 | " {\"__class_getitem__\", Py_GenericAlias, METH_O|METH_CLASS, \"See PEP " 58 | "585\"}\n" 59 | " ...\n" 60 | "}" 61 | msgstr "" 62 | 63 | #: ../../c-api/typehints.rst:38 64 | msgid "The data model method :meth:`~object.__class_getitem__`." 65 | msgstr "" 66 | 67 | #: ../../c-api/typehints.rst:44 68 | msgid "" 69 | "The C type of the object returned by :c:func:`Py_GenericAlias`. Equivalent " 70 | "to :class:`types.GenericAlias` in Python." 71 | msgstr "" 72 | -------------------------------------------------------------------------------- /library/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:08+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/index.rst:5 22 | msgid "The Python Standard Library" 23 | msgstr "" 24 | 25 | #: ../../library/index.rst:7 26 | msgid "" 27 | "While :ref:`reference-index` describes the exact syntax and semantics of the " 28 | "Python language, this library reference manual describes the standard " 29 | "library that is distributed with Python. It also describes some of the " 30 | "optional components that are commonly included in Python distributions." 31 | msgstr "" 32 | 33 | #: ../../library/index.rst:13 34 | msgid "" 35 | "Python's standard library is very extensive, offering a wide range of " 36 | "facilities as indicated by the long table of contents listed below. The " 37 | "library contains built-in modules (written in C) that provide access to " 38 | "system functionality such as file I/O that would otherwise be inaccessible " 39 | "to Python programmers, as well as modules written in Python that provide " 40 | "standardized solutions for many problems that occur in everyday programming. " 41 | "Some of these modules are explicitly designed to encourage and enhance the " 42 | "portability of Python programs by abstracting away platform-specifics into " 43 | "platform-neutral APIs." 44 | msgstr "" 45 | 46 | #: ../../library/index.rst:23 47 | msgid "" 48 | "The Python installers for the Windows platform usually include the entire " 49 | "standard library and often also include many additional components. For Unix-" 50 | "like operating systems Python is normally provided as a collection of " 51 | "packages, so it may be necessary to use the packaging tools provided with " 52 | "the operating system to obtain some or all of the optional components." 53 | msgstr "" 54 | 55 | #: ../../library/index.rst:30 56 | msgid "" 57 | "In addition to the standard library, there is an active collection of " 58 | "hundreds of thousands of components (from individual programs and modules to " 59 | "packages and entire application development frameworks), available from the " 60 | "`Python Package Index `_." 61 | msgstr "" 62 | -------------------------------------------------------------------------------- /library/builtins.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:56+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/builtins.rst:2 22 | msgid ":mod:`!builtins` --- Built-in objects" 23 | msgstr "" 24 | 25 | #: ../../library/builtins.rst:9 26 | msgid "" 27 | "This module provides direct access to all 'built-in' identifiers of Python; " 28 | "for example, ``builtins.open`` is the full name for the built-in function :" 29 | "func:`open`." 30 | msgstr "" 31 | 32 | #: ../../library/builtins.rst:12 33 | msgid "" 34 | "This module is not normally accessed explicitly by most applications, but " 35 | "can be useful in modules that provide objects with the same name as a built-" 36 | "in value, but in which the built-in of that name is also needed. For " 37 | "example, in a module that wants to implement an :func:`open` function that " 38 | "wraps the built-in :func:`open`, this module can be used directly::" 39 | msgstr "" 40 | 41 | #: ../../library/builtins.rst:18 42 | msgid "" 43 | "import builtins\n" 44 | "\n" 45 | "def open(path):\n" 46 | " f = builtins.open(path, 'r')\n" 47 | " return UpperCaser(f)\n" 48 | "\n" 49 | "class UpperCaser:\n" 50 | " '''Wrapper around a file that converts output to uppercase.'''\n" 51 | "\n" 52 | " def __init__(self, f):\n" 53 | " self._f = f\n" 54 | "\n" 55 | " def read(self, count=-1):\n" 56 | " return self._f.read(count).upper()\n" 57 | "\n" 58 | " # ..." 59 | msgstr "" 60 | 61 | #: ../../library/builtins.rst:35 62 | msgid "" 63 | "As an implementation detail, most modules have the name ``__builtins__`` " 64 | "made available as part of their globals. The value of ``__builtins__`` is " 65 | "normally either this module or the value of this module's :attr:`~object." 66 | "__dict__` attribute. Since this is an implementation detail, it may not be " 67 | "used by alternate implementations of Python." 68 | msgstr "" 69 | 70 | #: ../../library/builtins.rst:43 71 | msgid ":ref:`built-in-consts`" 72 | msgstr "" 73 | 74 | #: ../../library/builtins.rst:44 75 | msgid ":ref:`bltin-exceptions`" 76 | msgstr "" 77 | 78 | #: ../../library/builtins.rst:45 79 | msgid ":ref:`built-in-funcs`" 80 | msgstr "" 81 | 82 | #: ../../library/builtins.rst:46 83 | msgid ":ref:`bltin-types`" 84 | msgstr "" 85 | -------------------------------------------------------------------------------- /library/tabnanny.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:14+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/tabnanny.rst:2 22 | msgid ":mod:`!tabnanny` --- Detection of ambiguous indentation" 23 | msgstr "" 24 | 25 | #: ../../library/tabnanny.rst:13 26 | msgid "**Source code:** :source:`Lib/tabnanny.py`" 27 | msgstr "" 28 | 29 | #: ../../library/tabnanny.rst:17 30 | msgid "" 31 | "For the time being this module is intended to be called as a script. However " 32 | "it is possible to import it into an IDE and use the function :func:`check` " 33 | "described below." 34 | msgstr "" 35 | 36 | #: ../../library/tabnanny.rst:23 37 | msgid "" 38 | "The API provided by this module is likely to change in future releases; such " 39 | "changes may not be backward compatible." 40 | msgstr "" 41 | 42 | #: ../../library/tabnanny.rst:29 43 | msgid "" 44 | "If *file_or_dir* is a directory and not a symbolic link, then recursively " 45 | "descend the directory tree named by *file_or_dir*, checking all :file:`.py` " 46 | "files along the way. If *file_or_dir* is an ordinary Python source file, it " 47 | "is checked for whitespace related problems. The diagnostic messages are " 48 | "written to standard output using the :func:`print` function." 49 | msgstr "" 50 | 51 | #: ../../library/tabnanny.rst:38 52 | msgid "" 53 | "Flag indicating whether to print verbose messages. This is incremented by " 54 | "the ``-v`` option if called as a script." 55 | msgstr "" 56 | 57 | #: ../../library/tabnanny.rst:44 58 | msgid "" 59 | "Flag indicating whether to print only the filenames of files containing " 60 | "whitespace related problems. This is set to true by the ``-q`` option if " 61 | "called as a script." 62 | msgstr "" 63 | 64 | #: ../../library/tabnanny.rst:51 65 | msgid "" 66 | "Raised by :func:`process_tokens` if detecting an ambiguous indent. Captured " 67 | "and handled in :func:`check`." 68 | msgstr "" 69 | 70 | #: ../../library/tabnanny.rst:57 71 | msgid "" 72 | "This function is used by :func:`check` to process tokens generated by the :" 73 | "mod:`tokenize` module." 74 | msgstr "" 75 | 76 | #: ../../library/tabnanny.rst:66 77 | msgid "Module :mod:`tokenize`" 78 | msgstr "" 79 | 80 | #: ../../library/tabnanny.rst:67 81 | msgid "Lexical scanner for Python source code." 82 | msgstr "" 83 | -------------------------------------------------------------------------------- /howto/pyporting.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Danial Behzadi , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:53+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../howto/pyporting.rst:7 27 | msgid "How to port Python 2 Code to Python 3" 28 | msgstr "" 29 | 30 | #: ../../howto/pyporting.rst:0 31 | msgid "author" 32 | msgstr "" 33 | 34 | #: ../../howto/pyporting.rst:9 35 | msgid "Brett Cannon" 36 | msgstr "" 37 | 38 | #: ../../howto/pyporting.rst:11 39 | msgid "" 40 | "Python 2 reached its official end-of-life at the start of 2020. This means " 41 | "that no new bug reports, fixes, or changes will be made to Python 2 - it's " 42 | "no longer supported: see :pep:`373` and `status of Python versions `_." 44 | msgstr "" 45 | 46 | #: ../../howto/pyporting.rst:16 47 | msgid "" 48 | "If you are looking to port an extension module instead of pure Python code, " 49 | "please see :ref:`cporting-howto`." 50 | msgstr "" 51 | 52 | #: ../../howto/pyporting.rst:19 53 | msgid "" 54 | "The archived python-porting_ mailing list may contain some useful guidance." 55 | msgstr "" 56 | 57 | #: ../../howto/pyporting.rst:21 58 | msgid "" 59 | "Since Python 3.11 the original porting guide was discontinued. You can find " 60 | "the old guide in the `archive `_." 62 | msgstr "" 63 | 64 | #: ../../howto/pyporting.rst:27 65 | msgid "Third-party guides" 66 | msgstr "" 67 | 68 | #: ../../howto/pyporting.rst:29 69 | msgid "There are also multiple third-party guides that might be useful:" 70 | msgstr "" 71 | 72 | #: ../../howto/pyporting.rst:31 73 | msgid "`Guide by Fedora `_" 74 | msgstr "" 75 | 76 | #: ../../howto/pyporting.rst:32 77 | msgid "`PyCon 2020 tutorial `_" 78 | msgstr "" 79 | 80 | #: ../../howto/pyporting.rst:33 81 | msgid "" 82 | "`Guide by DigitalOcean `_" 84 | msgstr "" 85 | 86 | #: ../../howto/pyporting.rst:34 87 | msgid "" 88 | "`Guide by ActiveState `_" 90 | msgstr "" 91 | -------------------------------------------------------------------------------- /c-api/iter.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/iter.rst:6 22 | msgid "Iterator Protocol" 23 | msgstr "" 24 | 25 | #: ../../c-api/iter.rst:8 26 | msgid "There are two functions specifically for working with iterators." 27 | msgstr "" 28 | 29 | #: ../../c-api/iter.rst:12 30 | msgid "" 31 | "Return non-zero if the object *o* can be safely passed to :c:func:" 32 | "`PyIter_NextItem` and ``0`` otherwise. This function always succeeds." 33 | msgstr "" 34 | 35 | #: ../../c-api/iter.rst:18 36 | msgid "" 37 | "Return non-zero if the object *o* provides the :class:`AsyncIterator` " 38 | "protocol, and ``0`` otherwise. This function always succeeds." 39 | msgstr "" 40 | 41 | #: ../../c-api/iter.rst:25 42 | msgid "" 43 | "Return ``1`` and set *item* to a :term:`strong reference` of the next value " 44 | "of the iterator *iter* on success. Return ``0`` and set *item* to ``NULL`` " 45 | "if there are no remaining values. Return ``-1``, set *item* to ``NULL`` and " 46 | "set an exception on error." 47 | msgstr "" 48 | 49 | #: ../../c-api/iter.rst:34 50 | msgid "" 51 | "This is an older version of :c:func:`!PyIter_NextItem`, which is retained " 52 | "for backwards compatibility. Prefer :c:func:`PyIter_NextItem`." 53 | msgstr "" 54 | 55 | #: ../../c-api/iter.rst:38 56 | msgid "" 57 | "Return the next value from the iterator *o*. The object must be an iterator " 58 | "according to :c:func:`PyIter_Check` (it is up to the caller to check this). " 59 | "If there are no remaining values, returns ``NULL`` with no exception set. If " 60 | "an error occurs while retrieving the item, returns ``NULL`` and passes along " 61 | "the exception." 62 | msgstr "" 63 | 64 | #: ../../c-api/iter.rst:46 65 | msgid "" 66 | "The enum value used to represent different results of :c:func:`PyIter_Send`." 67 | msgstr "" 68 | 69 | #: ../../c-api/iter.rst:53 70 | msgid "Sends the *arg* value into the iterator *iter*. Returns:" 71 | msgstr "" 72 | 73 | #: ../../c-api/iter.rst:55 74 | msgid "" 75 | "``PYGEN_RETURN`` if iterator returns. Return value is returned via *presult*." 76 | msgstr "" 77 | 78 | #: ../../c-api/iter.rst:56 79 | msgid "" 80 | "``PYGEN_NEXT`` if iterator yields. Yielded value is returned via *presult*." 81 | msgstr "" 82 | 83 | #: ../../c-api/iter.rst:57 84 | msgid "" 85 | "``PYGEN_ERROR`` if iterator has raised and exception. *presult* is set to " 86 | "``NULL``." 87 | msgstr "" 88 | -------------------------------------------------------------------------------- /scripts/transifex/config.py: -------------------------------------------------------------------------------- 1 | import os 2 | from pathlib import Path 3 | from transifex.api import transifex_api 4 | 5 | # Transifex API Authentication 6 | TRANSIFEX_AUTH_TOKEN = os.getenv("TRANSIFEX_API_TOKEN") 7 | if not TRANSIFEX_AUTH_TOKEN: 8 | raise ValueError("TRANSIFEX_API_TOKEN environment variable not set.") 9 | transifex_api.setup(auth=TRANSIFEX_AUTH_TOKEN) 10 | 11 | # Language and Project Configuration 12 | LANG = "fa" 13 | ORGANISATION_ID = "o:python-doc" 14 | PROJECT_ID = "o:python-doc:p:python-newest" 15 | LANGUAGE_ID = f"l:{LANG}" 16 | 17 | try: 18 | ORGANISATION = transifex_api.Organization.get(id=ORGANISATION_ID) 19 | PROJECT = transifex_api.Project.get(id=PROJECT_ID) 20 | LANGUAGE = transifex_api.Language.get(id=LANGUAGE_ID) 21 | except Exception as e: 22 | print(f"Error initializing Transifex API objects: {e}") 23 | raise 24 | 25 | # Calculate the project root (assuming config.py is in scripts/transifex/) 26 | SCRIPT_DIR = Path(__file__).resolve().parent 27 | PROJECT_ROOT = SCRIPT_DIR.parent.parent 28 | 29 | # Resource Mapping 30 | RESOURCE_NAME_MAP = {"glossary_": "glossary"} 31 | 32 | # Output file paths 33 | TX_CONFIG_PATH = PROJECT_ROOT / ".tx/config" 34 | RESOURCE_STATS_MD_PATH = PROJECT_ROOT / "RESOURCE.md" 35 | TEAM_STATS_MD_PATH = PROJECT_ROOT / "TEAM.md" 36 | CONTRIBUTOR_CHART_DIR = PROJECT_ROOT / "reports" 37 | CONTRIBUTOR_CHART_FILENAME_PREFIX = "contributor_stats_" 38 | 39 | # README Update Configuration 40 | README_PATH = PROJECT_ROOT / "README.md" 41 | README_STATS_START_MARKER = "" 42 | README_STATS_END_MARKER = "" 43 | README_CONTRIBUTORS_HEADER = "مشارکت‌های کاربران" 44 | README_PROGRESS_HEADER = "پیشرفت کلی ترجمه" 45 | README_UPDATED_ON = "به‌روزرسانی" 46 | 47 | CHART_PASTEL_COLORS = [ 48 | "#A6C7E8", # Pastel blue 49 | "#B5EAD7", # Pastel green 50 | "#FFDFD3", # Pastel pink 51 | "#FFF1AC", # Pastel yellow 52 | "#E2D1F9", # Pastel lavender 53 | "#FFD7BA", # Pastel orange 54 | "#FFABAB", # Pastel coral 55 | "#C7F0DB", # Pastel mint 56 | "#FFDAC1", # Pastel peach 57 | "#C7CEEA", # Pastel sky blue 58 | ] 59 | 60 | REPORT_HEADERS = { 61 | "resource_stats": { 62 | "file": "File", 63 | "translated": "Translated", 64 | "reviewed": "Reviewed", 65 | "proofread": "Proofread", 66 | "alignment": "|:-----|:-----------:|:-----------:|:-----------:|\n", 67 | }, 68 | "team_stats": { 69 | "user": "User", 70 | "role": "Role", 71 | "translated_count": "Translated Count", 72 | "reviewed_count": "Reviewed Count", 73 | "proofread_count": "Proofread Count", 74 | "alignment": "|:-----|:------:|:------------------:|:-------------------:|:----------------------:|\n", 75 | }, 76 | "contributor_chart": { 77 | "title_base": "User Contributions", 78 | "title_top_n_suffix": " (Top {top_n})", 79 | "xlabel_username": "Username", 80 | "ylabel_total_contributions": "Total Contributions", 81 | }, 82 | } 83 | -------------------------------------------------------------------------------- /c-api/cell.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:47+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/cell.rst:6 22 | msgid "Cell Objects" 23 | msgstr "" 24 | 25 | #: ../../c-api/cell.rst:8 26 | msgid "" 27 | "\"Cell\" objects are used to implement variables referenced by multiple " 28 | "scopes. For each such variable, a cell object is created to store the value; " 29 | "the local variables of each stack frame that references the value contains a " 30 | "reference to the cells from outer scopes which also use that variable. When " 31 | "the value is accessed, the value contained in the cell is used instead of " 32 | "the cell object itself. This de-referencing of the cell object requires " 33 | "support from the generated byte-code; these are not automatically de-" 34 | "referenced when accessed. Cell objects are not likely to be useful elsewhere." 35 | msgstr "" 36 | 37 | #: ../../c-api/cell.rst:20 38 | msgid "The C structure used for cell objects." 39 | msgstr "" 40 | 41 | #: ../../c-api/cell.rst:25 42 | msgid "The type object corresponding to cell objects." 43 | msgstr "" 44 | 45 | #: ../../c-api/cell.rst:30 46 | msgid "" 47 | "Return true if *ob* is a cell object; *ob* must not be ``NULL``. This " 48 | "function always succeeds." 49 | msgstr "" 50 | 51 | #: ../../c-api/cell.rst:36 52 | msgid "" 53 | "Create and return a new cell object containing the value *ob*. The parameter " 54 | "may be ``NULL``." 55 | msgstr "" 56 | 57 | #: ../../c-api/cell.rst:42 58 | msgid "" 59 | "Return the contents of the cell *cell*, which can be ``NULL``. If *cell* is " 60 | "not a cell object, returns ``NULL`` with an exception set." 61 | msgstr "" 62 | 63 | #: ../../c-api/cell.rst:48 64 | msgid "" 65 | "Return the contents of the cell *cell*, but without checking that *cell* is " 66 | "non-``NULL`` and a cell object." 67 | msgstr "" 68 | 69 | #: ../../c-api/cell.rst:54 70 | msgid "" 71 | "Set the contents of the cell object *cell* to *value*. This releases the " 72 | "reference to any current content of the cell. *value* may be ``NULL``. " 73 | "*cell* must be non-``NULL``." 74 | msgstr "" 75 | 76 | #: ../../c-api/cell.rst:58 77 | msgid "" 78 | "On success, return ``0``. If *cell* is not a cell object, set an exception " 79 | "and return ``-1``." 80 | msgstr "" 81 | 82 | #: ../../c-api/cell.rst:64 83 | msgid "" 84 | "Sets the value of the cell object *cell* to *value*. No reference counts " 85 | "are adjusted, and no checks are made for safety; *cell* must be non-``NULL`` " 86 | "and must be a cell object." 87 | msgstr "" 88 | -------------------------------------------------------------------------------- /library/copyreg.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Danial Behzadi , 2025 9 | # Rafael Fontenelle , 2025 10 | # 11 | #, fuzzy 12 | msgid "" 13 | msgstr "" 14 | "Project-Id-Version: Python 3.14\n" 15 | "Report-Msgid-Bugs-To: \n" 16 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 17 | "PO-Revision-Date: 2021-06-28 01:03+0000\n" 18 | "Last-Translator: Rafael Fontenelle , 2025\n" 19 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 20 | "fa/)\n" 21 | "MIME-Version: 1.0\n" 22 | "Content-Type: text/plain; charset=UTF-8\n" 23 | "Content-Transfer-Encoding: 8bit\n" 24 | "Language: fa\n" 25 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 26 | 27 | #: ../../library/copyreg.rst:2 28 | msgid ":mod:`!copyreg` --- Register :mod:`!pickle` support functions" 29 | msgstr "" 30 | 31 | #: ../../library/copyreg.rst:7 32 | msgid "**Source code:** :source:`Lib/copyreg.py`" 33 | msgstr "" 34 | 35 | #: ../../library/copyreg.rst:15 36 | msgid "" 37 | "The :mod:`copyreg` module offers a way to define functions used while " 38 | "pickling specific objects. The :mod:`pickle` and :mod:`copy` modules use " 39 | "those functions when pickling/copying those objects. The module provides " 40 | "configuration information about object constructors which are not classes. " 41 | "Such constructors may be factory functions or class instances." 42 | msgstr "" 43 | 44 | #: ../../library/copyreg.rst:24 45 | msgid "" 46 | "Declares *object* to be a valid constructor. If *object* is not callable " 47 | "(and hence not valid as a constructor), raises :exc:`TypeError`." 48 | msgstr "" 49 | 50 | #: ../../library/copyreg.rst:30 51 | msgid "" 52 | "Declares that *function* should be used as a \"reduction\" function for " 53 | "objects of type *type*. *function* must return either a string or a tuple " 54 | "containing between two and six elements. See the :attr:`~pickle.Pickler." 55 | "dispatch_table` for more details on the interface of *function*." 56 | msgstr "" 57 | 58 | #: ../../library/copyreg.rst:35 59 | msgid "" 60 | "The *constructor_ob* parameter is a legacy feature and is now ignored, but " 61 | "if passed it must be a callable." 62 | msgstr "" 63 | 64 | #: ../../library/copyreg.rst:38 65 | msgid "" 66 | "Note that the :attr:`~pickle.Pickler.dispatch_table` attribute of a pickler " 67 | "object or subclass of :class:`pickle.Pickler` can also be used for declaring " 68 | "reduction functions." 69 | msgstr "" 70 | 71 | #: ../../library/copyreg.rst:43 72 | msgid "Example" 73 | msgstr "" 74 | 75 | #: ../../library/copyreg.rst:45 76 | msgid "" 77 | "The example below would like to show how to register a pickle function and " 78 | "how it will be used:" 79 | msgstr "" 80 | 81 | #: ../../library/copyreg.rst:9 82 | msgid "module" 83 | msgstr "" 84 | 85 | #: ../../library/copyreg.rst:9 86 | msgid "pickle" 87 | msgstr "" 88 | 89 | #: ../../library/copyreg.rst:9 90 | msgid "copy" 91 | msgstr "" 92 | -------------------------------------------------------------------------------- /library/colorsys.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:57+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../library/colorsys.rst:2 27 | msgid ":mod:`!colorsys` --- Conversions between color systems" 28 | msgstr "" 29 | 30 | #: ../../library/colorsys.rst:9 31 | msgid "**Source code:** :source:`Lib/colorsys.py`" 32 | msgstr "" 33 | 34 | #: ../../library/colorsys.rst:13 35 | msgid "" 36 | "The :mod:`colorsys` module defines bidirectional conversions of color values " 37 | "between colors expressed in the RGB (Red Green Blue) color space used in " 38 | "computer monitors and three other coordinate systems: YIQ, HLS (Hue " 39 | "Lightness Saturation) and HSV (Hue Saturation Value). Coordinates in all of " 40 | "these color spaces are floating-point values. In the YIQ space, the Y " 41 | "coordinate is between 0 and 1, but the I and Q coordinates can be positive " 42 | "or negative. In all other spaces, the coordinates are all between 0 and 1." 43 | msgstr "" 44 | 45 | #: ../../library/colorsys.rst:23 46 | msgid "" 47 | "More information about color spaces can be found at https://poynton.ca/" 48 | "ColorFAQ.html and https://www.cambridgeincolour.com/tutorials/color-spaces." 49 | "htm." 50 | msgstr "" 51 | 52 | #: ../../library/colorsys.rst:27 53 | msgid "The :mod:`colorsys` module defines the following functions:" 54 | msgstr "" 55 | 56 | #: ../../library/colorsys.rst:32 57 | msgid "Convert the color from RGB coordinates to YIQ coordinates." 58 | msgstr "" 59 | 60 | #: ../../library/colorsys.rst:37 61 | msgid "Convert the color from YIQ coordinates to RGB coordinates." 62 | msgstr "" 63 | 64 | #: ../../library/colorsys.rst:42 65 | msgid "Convert the color from RGB coordinates to HLS coordinates." 66 | msgstr "" 67 | 68 | #: ../../library/colorsys.rst:47 69 | msgid "Convert the color from HLS coordinates to RGB coordinates." 70 | msgstr "" 71 | 72 | #: ../../library/colorsys.rst:52 73 | msgid "Convert the color from RGB coordinates to HSV coordinates." 74 | msgstr "" 75 | 76 | #: ../../library/colorsys.rst:57 77 | msgid "Convert the color from HSV coordinates to RGB coordinates." 78 | msgstr "" 79 | 80 | #: ../../library/colorsys.rst:59 81 | msgid "Example::" 82 | msgstr "" 83 | 84 | #: ../../library/colorsys.rst:61 85 | msgid "" 86 | ">>> import colorsys\n" 87 | ">>> colorsys.rgb_to_hsv(0.2, 0.4, 0.4)\n" 88 | "(0.5, 0.5, 0.4)\n" 89 | ">>> colorsys.hsv_to_rgb(0.5, 0.5, 0.4)\n" 90 | "(0.2, 0.4, 0.4)" 91 | msgstr "" 92 | -------------------------------------------------------------------------------- /c-api/concrete.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:48+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../c-api/concrete.rst:8 27 | msgid "Concrete Objects Layer" 28 | msgstr "" 29 | 30 | #: ../../c-api/concrete.rst:10 31 | msgid "" 32 | "The functions in this chapter are specific to certain Python object types. " 33 | "Passing them an object of the wrong type is not a good idea; if you receive " 34 | "an object from a Python program and you are not sure that it has the right " 35 | "type, you must perform a type check first; for example, to check that an " 36 | "object is a dictionary, use :c:func:`PyDict_Check`. The chapter is " 37 | "structured like the \"family tree\" of Python object types." 38 | msgstr "" 39 | 40 | #: ../../c-api/concrete.rst:19 41 | msgid "" 42 | "While the functions described in this chapter carefully check the type of " 43 | "the objects which are passed in, many of them do not check for ``NULL`` " 44 | "being passed instead of a valid object. Allowing ``NULL`` to be passed in " 45 | "can cause memory access violations and immediate termination of the " 46 | "interpreter." 47 | msgstr "" 48 | 49 | #: ../../c-api/concrete.rst:28 50 | msgid "Fundamental Objects" 51 | msgstr "" 52 | 53 | #: ../../c-api/concrete.rst:30 54 | msgid "" 55 | "This section describes Python type objects and the singleton object ``None``." 56 | msgstr "" 57 | 58 | #: ../../c-api/concrete.rst:41 59 | msgid "Numeric Objects" 60 | msgstr "" 61 | 62 | #: ../../c-api/concrete.rst:56 63 | msgid "Sequence Objects" 64 | msgstr "" 65 | 66 | #: ../../c-api/concrete.rst:60 67 | msgid "" 68 | "Generic operations on sequence objects were discussed in the previous " 69 | "chapter; this section deals with the specific kinds of sequence objects that " 70 | "are intrinsic to the Python language." 71 | msgstr "" 72 | 73 | #: ../../c-api/concrete.rst:78 74 | msgid "Container Objects" 75 | msgstr "" 76 | 77 | #: ../../c-api/concrete.rst:91 78 | msgid "Function Objects" 79 | msgstr "" 80 | 81 | #: ../../c-api/concrete.rst:102 82 | msgid "Other Objects" 83 | msgstr "" 84 | 85 | #: ../../c-api/concrete.rst:43 ../../c-api/concrete.rst:58 86 | #: ../../c-api/concrete.rst:80 87 | msgid "object" 88 | msgstr "" 89 | 90 | #: ../../c-api/concrete.rst:43 91 | msgid "numeric" 92 | msgstr "" 93 | 94 | #: ../../c-api/concrete.rst:58 95 | msgid "sequence" 96 | msgstr "" 97 | 98 | #: ../../c-api/concrete.rst:80 99 | msgid "mapping" 100 | msgstr "" 101 | -------------------------------------------------------------------------------- /extending/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 00:52+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../extending/index.rst:5 22 | msgid "Extending and Embedding the Python Interpreter" 23 | msgstr "" 24 | 25 | #: ../../extending/index.rst:7 26 | msgid "" 27 | "This document describes how to write modules in C or C++ to extend the " 28 | "Python interpreter with new modules. Those modules can not only define new " 29 | "functions but also new object types and their methods. The document also " 30 | "describes how to embed the Python interpreter in another application, for " 31 | "use as an extension language. Finally, it shows how to compile and link " 32 | "extension modules so that they can be loaded dynamically (at run time) into " 33 | "the interpreter, if the underlying operating system supports this feature." 34 | msgstr "" 35 | 36 | #: ../../extending/index.rst:15 37 | msgid "" 38 | "This document assumes basic knowledge about Python. For an informal " 39 | "introduction to the language, see :ref:`tutorial-index`. :ref:`reference-" 40 | "index` gives a more formal definition of the language. :ref:`library-index` " 41 | "documents the existing object types, functions and modules (both built-in " 42 | "and written in Python) that give the language its wide application range." 43 | msgstr "" 44 | 45 | #: ../../extending/index.rst:21 46 | msgid "" 47 | "For a detailed description of the whole Python/C API, see the separate :ref:" 48 | "`c-api-index`." 49 | msgstr "" 50 | 51 | #: ../../extending/index.rst:26 52 | msgid "Recommended third party tools" 53 | msgstr "" 54 | 55 | #: ../../extending/index.rst:28 56 | msgid "" 57 | "This guide only covers the basic tools for creating extensions provided as " 58 | "part of this version of CPython. Some :ref:`third party tools ` " 59 | "offer both simpler and more sophisticated approaches to creating C and C++ " 60 | "extensions for Python." 61 | msgstr "" 62 | 63 | #: ../../extending/index.rst:35 64 | msgid "Creating extensions without third party tools" 65 | msgstr "" 66 | 67 | #: ../../extending/index.rst:37 68 | msgid "" 69 | "This section of the guide covers creating C and C++ extensions without " 70 | "assistance from third party tools. It is intended primarily for creators of " 71 | "those tools, rather than being a recommended way to create your own C " 72 | "extensions." 73 | msgstr "" 74 | 75 | #: ../../extending/index.rst:44 76 | msgid ":pep:`489` -- Multi-phase extension module initialization" 77 | msgstr "" 78 | 79 | #: ../../extending/index.rst:57 80 | msgid "Embedding the CPython runtime in a larger application" 81 | msgstr "" 82 | 83 | #: ../../extending/index.rst:59 84 | msgid "" 85 | "Sometimes, rather than creating an extension that runs inside the Python " 86 | "interpreter as the main application, it is desirable to instead embed the " 87 | "CPython runtime inside a larger application. This section covers some of the " 88 | "details involved in doing that successfully." 89 | msgstr "" 90 | -------------------------------------------------------------------------------- /tutorial/interactive.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-06-27 14:20+0000\n" 15 | "PO-Revision-Date: 2021-06-28 01:50+0000\n" 16 | "Last-Translator: Alireza Shabani (Revisto) , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../tutorial/interactive.rst:5 26 | msgid "Interactive Input Editing and History Substitution" 27 | msgstr "" 28 | 29 | #: ../../tutorial/interactive.rst:7 30 | msgid "" 31 | "Some versions of the Python interpreter support editing of the current input " 32 | "line and history substitution, similar to facilities found in the Korn shell " 33 | "and the GNU Bash shell. This is implemented using the `GNU Readline`_ " 34 | "library, which supports various styles of editing. This library has its own " 35 | "documentation which we won't duplicate here." 36 | msgstr "" 37 | 38 | #: ../../tutorial/interactive.rst:17 39 | msgid "Tab Completion and History Editing" 40 | msgstr "" 41 | 42 | #: ../../tutorial/interactive.rst:19 43 | msgid "" 44 | "Completion of variable and module names is :ref:`automatically enabled " 45 | "` at interpreter startup so that the :kbd:`Tab` key " 46 | "invokes the completion function; it looks at Python statement names, the " 47 | "current local variables, and the available module names. For dotted " 48 | "expressions such as ``string.a``, it will evaluate the expression up to the " 49 | "final ``'.'`` and then suggest completions from the attributes of the " 50 | "resulting object. Note that this may execute application-defined code if an " 51 | "object with a :meth:`~object.__getattr__` method is part of the expression. " 52 | "The default configuration also saves your history into a file named :file:`." 53 | "python_history` in your user directory. The history will be available again " 54 | "during the next interactive interpreter session." 55 | msgstr "" 56 | 57 | #: ../../tutorial/interactive.rst:36 58 | msgid "Alternatives to the Interactive Interpreter" 59 | msgstr "" 60 | 61 | #: ../../tutorial/interactive.rst:38 62 | msgid "" 63 | "This facility is an enormous step forward compared to earlier versions of " 64 | "the interpreter; however, some wishes are left: It would be nice if the " 65 | "proper indentation were suggested on continuation lines (the parser knows if " 66 | "an :data:`~token.INDENT` token is required next). The completion mechanism " 67 | "might use the interpreter's symbol table. A command to check (or even " 68 | "suggest) matching parentheses, quotes, etc., would also be useful." 69 | msgstr "" 70 | 71 | #: ../../tutorial/interactive.rst:45 72 | msgid "" 73 | "One alternative enhanced interactive interpreter that has been around for " 74 | "quite some time is IPython_, which features tab completion, object " 75 | "exploration and advanced history management. It can also be thoroughly " 76 | "customized and embedded into other applications. Another similar enhanced " 77 | "interactive environment is bpython_." 78 | msgstr "" 79 | -------------------------------------------------------------------------------- /c-api/perfmaps.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2023-05-24 13:07+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/perfmaps.rst:6 22 | msgid "Support for Perf Maps" 23 | msgstr "" 24 | 25 | #: ../../c-api/perfmaps.rst:8 26 | msgid "" 27 | "On supported platforms (as of this writing, only Linux), the runtime can " 28 | "take advantage of *perf map files* to make Python functions visible to an " 29 | "external profiling tool (such as `perf `_). A running process may create a file in the ``/tmp`` " 31 | "directory, which contains entries that can map a section of executable code " 32 | "to a name. This interface is described in the `documentation of the Linux " 33 | "Perf tool `_." 35 | msgstr "" 36 | 37 | #: ../../c-api/perfmaps.rst:16 38 | msgid "" 39 | "In Python, these helper APIs can be used by libraries and features that rely " 40 | "on generating machine code on the fly." 41 | msgstr "" 42 | 43 | #: ../../c-api/perfmaps.rst:19 44 | msgid "" 45 | "Note that holding an :term:`attached thread state` is not required for these " 46 | "APIs." 47 | msgstr "" 48 | 49 | #: ../../c-api/perfmaps.rst:23 50 | msgid "" 51 | "Open the ``/tmp/perf-$pid.map`` file, unless it's already opened, and create " 52 | "a lock to ensure thread-safe writes to the file (provided the writes are " 53 | "done through :c:func:`PyUnstable_WritePerfMapEntry`). Normally, there's no " 54 | "need to call this explicitly; just use :c:func:" 55 | "`PyUnstable_WritePerfMapEntry` and it will initialize the state on first " 56 | "call." 57 | msgstr "" 58 | 59 | #: ../../c-api/perfmaps.rst:29 60 | msgid "" 61 | "Returns ``0`` on success, ``-1`` on failure to create/open the perf map " 62 | "file, or ``-2`` on failure to create a lock. Check ``errno`` for more " 63 | "information about the cause of a failure." 64 | msgstr "" 65 | 66 | #: ../../c-api/perfmaps.rst:35 67 | msgid "" 68 | "Write one single entry to the ``/tmp/perf-$pid.map`` file. This function is " 69 | "thread safe. Here is what an example entry looks like::" 70 | msgstr "" 71 | 72 | #: ../../c-api/perfmaps.rst:38 73 | msgid "" 74 | "# address size name\n" 75 | "7f3529fcf759 b py::bar:/run/t.py" 76 | msgstr "" 77 | 78 | #: ../../c-api/perfmaps.rst:41 79 | msgid "" 80 | "Will call :c:func:`PyUnstable_PerfMapState_Init` before writing the entry, " 81 | "if the perf map file is not already opened. Returns ``0`` on success, or the " 82 | "same error codes as :c:func:`PyUnstable_PerfMapState_Init` on failure." 83 | msgstr "" 84 | 85 | #: ../../c-api/perfmaps.rst:47 86 | msgid "" 87 | "Close the perf map file opened by :c:func:`PyUnstable_PerfMapState_Init`. " 88 | "This is called by the runtime itself during interpreter shut-down. In " 89 | "general, there shouldn't be a reason to explicitly call this, except to " 90 | "handle specific scenarios such as forking." 91 | msgstr "" 92 | -------------------------------------------------------------------------------- /howto/index.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Rafael Fontenelle , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:53+0000\n" 16 | "Last-Translator: Rafael Fontenelle , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../howto/index.rst:3 26 | msgid "Python HOWTOs" 27 | msgstr "" 28 | 29 | #: ../../howto/index.rst:5 30 | msgid "" 31 | "Python HOWTOs are documents that cover a specific topic in-depth. Modeled on " 32 | "the Linux Documentation Project's HOWTO collection, this collection is an " 33 | "effort to foster documentation that's more detailed than the Python Library " 34 | "Reference." 35 | msgstr "" 36 | 37 | #: ../../howto/index.rst:39 38 | msgid "General:" 39 | msgstr "" 40 | 41 | #: ../../howto/index.rst:41 42 | msgid ":ref:`annotations-howto`" 43 | msgstr "" 44 | 45 | #: ../../howto/index.rst:42 46 | msgid ":ref:`argparse-tutorial`" 47 | msgstr "" 48 | 49 | #: ../../howto/index.rst:43 50 | msgid ":ref:`descriptorhowto`" 51 | msgstr "" 52 | 53 | #: ../../howto/index.rst:44 54 | msgid ":ref:`enum-howto`" 55 | msgstr "" 56 | 57 | #: ../../howto/index.rst:45 58 | msgid ":ref:`functional-howto`" 59 | msgstr "" 60 | 61 | #: ../../howto/index.rst:46 62 | msgid ":ref:`ipaddress-howto`" 63 | msgstr "" 64 | 65 | #: ../../howto/index.rst:47 66 | msgid ":ref:`logging-howto`" 67 | msgstr "" 68 | 69 | #: ../../howto/index.rst:48 70 | msgid ":ref:`logging-cookbook`" 71 | msgstr "" 72 | 73 | #: ../../howto/index.rst:49 74 | msgid ":ref:`regex-howto`" 75 | msgstr "" 76 | 77 | #: ../../howto/index.rst:50 78 | msgid ":ref:`sortinghowto`" 79 | msgstr "" 80 | 81 | #: ../../howto/index.rst:51 82 | msgid ":ref:`unicode-howto`" 83 | msgstr "" 84 | 85 | #: ../../howto/index.rst:52 86 | msgid ":ref:`urllib-howto`" 87 | msgstr "" 88 | 89 | #: ../../howto/index.rst:54 90 | msgid "Advanced development:" 91 | msgstr "" 92 | 93 | #: ../../howto/index.rst:56 94 | msgid ":ref:`curses-howto`" 95 | msgstr "" 96 | 97 | #: ../../howto/index.rst:57 98 | msgid ":ref:`freethreading-python-howto`" 99 | msgstr "" 100 | 101 | #: ../../howto/index.rst:58 102 | msgid ":ref:`freethreading-extensions-howto`" 103 | msgstr "" 104 | 105 | #: ../../howto/index.rst:59 106 | msgid ":ref:`isolating-extensions-howto`" 107 | msgstr "" 108 | 109 | #: ../../howto/index.rst:60 110 | msgid ":ref:`python_2.3_mro`" 111 | msgstr "" 112 | 113 | #: ../../howto/index.rst:61 114 | msgid ":ref:`socket-howto`" 115 | msgstr "" 116 | 117 | #: ../../howto/index.rst:62 118 | msgid ":ref:`timerfd-howto`" 119 | msgstr "" 120 | 121 | #: ../../howto/index.rst:63 122 | msgid ":ref:`cporting-howto`" 123 | msgstr "" 124 | 125 | #: ../../howto/index.rst:65 126 | msgid "Debugging and profiling:" 127 | msgstr "" 128 | 129 | #: ../../howto/index.rst:67 130 | msgid ":ref:`gdb`" 131 | msgstr "" 132 | 133 | #: ../../howto/index.rst:68 134 | msgid ":ref:`instrumentation`" 135 | msgstr "" 136 | 137 | #: ../../howto/index.rst:69 138 | msgid ":ref:`perf_profiling`" 139 | msgstr "" 140 | 141 | #: ../../howto/index.rst:70 142 | msgid ":ref:`remote-debugging`" 143 | msgstr "" 144 | -------------------------------------------------------------------------------- /library/urllib.error.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:16+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/urllib.error.rst:2 22 | msgid ":mod:`!urllib.error` --- Exception classes raised by urllib.request" 23 | msgstr "" 24 | 25 | #: ../../library/urllib.error.rst:10 26 | msgid "**Source code:** :source:`Lib/urllib/error.py`" 27 | msgstr "" 28 | 29 | #: ../../library/urllib.error.rst:14 30 | msgid "" 31 | "The :mod:`urllib.error` module defines the exception classes for exceptions " 32 | "raised by :mod:`urllib.request`. The base exception class is :exc:" 33 | "`URLError`." 34 | msgstr "" 35 | 36 | #: ../../library/urllib.error.rst:17 37 | msgid "" 38 | "The following exceptions are raised by :mod:`urllib.error` as appropriate:" 39 | msgstr "" 40 | 41 | #: ../../library/urllib.error.rst:21 42 | msgid "" 43 | "The handlers raise this exception (or derived exceptions) when they run into " 44 | "a problem. It is a subclass of :exc:`OSError`." 45 | msgstr "" 46 | 47 | #: ../../library/urllib.error.rst:26 48 | msgid "" 49 | "The reason for this error. It can be a message string or another exception " 50 | "instance." 51 | msgstr "" 52 | 53 | #: ../../library/urllib.error.rst:29 54 | msgid "" 55 | ":exc:`URLError` used to be a subtype of :exc:`IOError`, which is now an " 56 | "alias of :exc:`OSError`." 57 | msgstr "" 58 | 59 | #: ../../library/urllib.error.rst:36 60 | msgid "" 61 | "Though being an exception (a subclass of :exc:`URLError`), an :exc:" 62 | "`HTTPError` can also function as a non-exceptional file-like return value " 63 | "(the same thing that :func:`~urllib.request.urlopen` returns). This is " 64 | "useful when handling exotic HTTP errors, such as requests for authentication." 65 | msgstr "" 66 | 67 | #: ../../library/urllib.error.rst:44 68 | msgid "Contains the request URL. An alias for *filename* attribute." 69 | msgstr "" 70 | 71 | #: ../../library/urllib.error.rst:49 72 | msgid "" 73 | "An HTTP status code as defined in :rfc:`2616`. This numeric value " 74 | "corresponds to a value found in the dictionary of codes as found in :attr:" 75 | "`http.server.BaseHTTPRequestHandler.responses`." 76 | msgstr "" 77 | 78 | #: ../../library/urllib.error.rst:55 79 | msgid "" 80 | "This is usually a string explaining the reason for this error. An alias for " 81 | "*msg* attribute." 82 | msgstr "" 83 | 84 | #: ../../library/urllib.error.rst:60 85 | msgid "" 86 | "The HTTP response headers for the HTTP request that caused the :exc:" 87 | "`HTTPError`. An alias for *hdrs* attribute." 88 | msgstr "" 89 | 90 | #: ../../library/urllib.error.rst:68 91 | msgid "A file-like object where the HTTP error body can be read from." 92 | msgstr "" 93 | 94 | #: ../../library/urllib.error.rst:72 95 | msgid "" 96 | "This exception is raised when the :func:`~urllib.request.urlretrieve` " 97 | "function detects that the amount of the downloaded data is less than the " 98 | "expected amount (given by the *Content-Length* header)." 99 | msgstr "" 100 | 101 | #: ../../library/urllib.error.rst:79 102 | msgid "The downloaded (and supposedly truncated) data." 103 | msgstr "" 104 | -------------------------------------------------------------------------------- /library/asyncio-exceptions.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # Rafael Fontenelle , 2025 9 | # 10 | #, fuzzy 11 | msgid "" 12 | msgstr "" 13 | "Project-Id-Version: Python 3.14\n" 14 | "Report-Msgid-Bugs-To: \n" 15 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 16 | "PO-Revision-Date: 2021-06-28 00:54+0000\n" 17 | "Last-Translator: Rafael Fontenelle , 2025\n" 18 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 19 | "fa/)\n" 20 | "MIME-Version: 1.0\n" 21 | "Content-Type: text/plain; charset=UTF-8\n" 22 | "Content-Transfer-Encoding: 8bit\n" 23 | "Language: fa\n" 24 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 25 | 26 | #: ../../library/asyncio-exceptions.rst:8 27 | msgid "Exceptions" 28 | msgstr "" 29 | 30 | #: ../../library/asyncio-exceptions.rst:10 31 | msgid "**Source code:** :source:`Lib/asyncio/exceptions.py`" 32 | msgstr "" 33 | 34 | #: ../../library/asyncio-exceptions.rst:16 35 | msgid "" 36 | "A deprecated alias of :exc:`TimeoutError`, raised when the operation has " 37 | "exceeded the given deadline." 38 | msgstr "" 39 | 40 | #: ../../library/asyncio-exceptions.rst:21 41 | msgid "This class was made an alias of :exc:`TimeoutError`." 42 | msgstr "" 43 | 44 | #: ../../library/asyncio-exceptions.rst:26 45 | msgid "The operation has been cancelled." 46 | msgstr "" 47 | 48 | #: ../../library/asyncio-exceptions.rst:28 49 | msgid "" 50 | "This exception can be caught to perform custom operations when asyncio Tasks " 51 | "are cancelled. In almost all situations the exception must be re-raised." 52 | msgstr "" 53 | 54 | #: ../../library/asyncio-exceptions.rst:34 55 | msgid "" 56 | ":exc:`CancelledError` is now a subclass of :class:`BaseException` rather " 57 | "than :class:`Exception`." 58 | msgstr "" 59 | 60 | #: ../../library/asyncio-exceptions.rst:39 61 | msgid "Invalid internal state of :class:`Task` or :class:`Future`." 62 | msgstr "" 63 | 64 | #: ../../library/asyncio-exceptions.rst:41 65 | msgid "" 66 | "Can be raised in situations like setting a result value for a *Future* " 67 | "object that already has a result value set." 68 | msgstr "" 69 | 70 | #: ../../library/asyncio-exceptions.rst:47 71 | msgid "" 72 | "The \"sendfile\" syscall is not available for the given socket or file type." 73 | msgstr "" 74 | 75 | #: ../../library/asyncio-exceptions.rst:50 76 | msgid "A subclass of :exc:`RuntimeError`." 77 | msgstr "" 78 | 79 | #: ../../library/asyncio-exceptions.rst:55 80 | msgid "The requested read operation did not complete fully." 81 | msgstr "" 82 | 83 | #: ../../library/asyncio-exceptions.rst:57 84 | msgid "Raised by the :ref:`asyncio stream APIs`." 85 | msgstr "" 86 | 87 | #: ../../library/asyncio-exceptions.rst:59 88 | msgid "This exception is a subclass of :exc:`EOFError`." 89 | msgstr "" 90 | 91 | #: ../../library/asyncio-exceptions.rst:63 92 | msgid "The total number (:class:`int`) of expected bytes." 93 | msgstr "" 94 | 95 | #: ../../library/asyncio-exceptions.rst:67 96 | msgid "A string of :class:`bytes` read before the end of stream was reached." 97 | msgstr "" 98 | 99 | #: ../../library/asyncio-exceptions.rst:72 100 | msgid "Reached the buffer size limit while looking for a separator." 101 | msgstr "" 102 | 103 | #: ../../library/asyncio-exceptions.rst:74 104 | msgid "Raised by the :ref:`asyncio stream APIs `." 105 | msgstr "" 106 | 107 | #: ../../library/asyncio-exceptions.rst:78 108 | msgid "The total number of to be consumed bytes." 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /library/getpass.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:06+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/getpass.rst:2 22 | msgid ":mod:`!getpass` --- Portable password input" 23 | msgstr "" 24 | 25 | #: ../../library/getpass.rst:11 26 | msgid "**Source code:** :source:`Lib/getpass.py`" 27 | msgstr "" 28 | 29 | #: ../../includes/wasm-notavail.rst:3 30 | msgid "Availability" 31 | msgstr "" 32 | 33 | #: ../../includes/wasm-notavail.rst:5 34 | msgid "" 35 | "This module does not work or is not available on WebAssembly. See :ref:`wasm-" 36 | "availability` for more information." 37 | msgstr "" 38 | 39 | #: ../../library/getpass.rst:17 40 | msgid "The :mod:`getpass` module provides two functions:" 41 | msgstr "" 42 | 43 | #: ../../library/getpass.rst:21 44 | msgid "" 45 | "Prompt the user for a password without echoing. The user is prompted using " 46 | "the string *prompt*, which defaults to ``'Password: '``. On Unix, the " 47 | "prompt is written to the file-like object *stream* using the replace error " 48 | "handler if needed. *stream* defaults to the controlling terminal (:file:`/" 49 | "dev/tty`) or if that is unavailable to ``sys.stderr`` (this argument is " 50 | "ignored on Windows)." 51 | msgstr "" 52 | 53 | #: ../../library/getpass.rst:28 54 | msgid "" 55 | "The *echo_char* argument controls how user input is displayed while typing. " 56 | "If *echo_char* is ``None`` (default), input remains hidden. Otherwise, " 57 | "*echo_char* must be a printable ASCII string and each typed character is " 58 | "replaced by it. For example, ``echo_char='*'`` will display asterisks " 59 | "instead of the actual input." 60 | msgstr "" 61 | 62 | #: ../../library/getpass.rst:34 63 | msgid "" 64 | "If echo free input is unavailable getpass() falls back to printing a warning " 65 | "message to *stream* and reading from ``sys.stdin`` and issuing a :exc:" 66 | "`GetPassWarning`." 67 | msgstr "" 68 | 69 | #: ../../library/getpass.rst:39 70 | msgid "" 71 | "If you call getpass from within IDLE, the input may be done in the terminal " 72 | "you launched IDLE from rather than the idle window itself." 73 | msgstr "" 74 | 75 | #: ../../library/getpass.rst:42 76 | msgid "Added the *echo_char* parameter for keyboard feedback." 77 | msgstr "" 78 | 79 | #: ../../library/getpass.rst:47 80 | msgid "A :exc:`UserWarning` subclass issued when password input may be echoed." 81 | msgstr "" 82 | 83 | #: ../../library/getpass.rst:52 84 | msgid "Return the \"login name\" of the user." 85 | msgstr "" 86 | 87 | #: ../../library/getpass.rst:54 88 | msgid "" 89 | "This function checks the environment variables :envvar:`LOGNAME`, :envvar:" 90 | "`USER`, :envvar:`!LNAME` and :envvar:`USERNAME`, in order, and returns the " 91 | "value of the first one which is set to a non-empty string. If none are set, " 92 | "the login name from the password database is returned on systems which " 93 | "support the :mod:`pwd` module, otherwise, an :exc:`OSError` is raised." 94 | msgstr "" 95 | 96 | #: ../../library/getpass.rst:61 97 | msgid "In general, this function should be preferred over :func:`os.getlogin`." 98 | msgstr "" 99 | 100 | #: ../../library/getpass.rst:63 101 | msgid "Previously, various exceptions beyond just :exc:`OSError` were raised." 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /library/tty.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:16+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/tty.rst:2 22 | msgid ":mod:`!tty` --- Terminal control functions" 23 | msgstr "" 24 | 25 | #: ../../library/tty.rst:11 26 | msgid "**Source code:** :source:`Lib/tty.py`" 27 | msgstr "" 28 | 29 | #: ../../library/tty.rst:15 30 | msgid "" 31 | "The :mod:`tty` module defines functions for putting the tty into cbreak and " 32 | "raw modes." 33 | msgstr "" 34 | 35 | #: ../../library/tty.rst:18 36 | msgid "Availability" 37 | msgstr "" 38 | 39 | #: ../../library/tty.rst:20 40 | msgid "" 41 | "Because it requires the :mod:`termios` module, it will work only on Unix." 42 | msgstr "" 43 | 44 | #: ../../library/tty.rst:22 45 | msgid "The :mod:`tty` module defines the following functions:" 46 | msgstr "" 47 | 48 | #: ../../library/tty.rst:27 49 | msgid "" 50 | "Convert the tty attribute list *mode*, which is a list like the one returned " 51 | "by :func:`termios.tcgetattr`, to that of a tty in raw mode." 52 | msgstr "" 53 | 54 | #: ../../library/tty.rst:35 55 | msgid "" 56 | "Convert the tty attribute list *mode*, which is a list like the one returned " 57 | "by :func:`termios.tcgetattr`, to that of a tty in cbreak mode." 58 | msgstr "" 59 | 60 | #: ../../library/tty.rst:38 61 | msgid "" 62 | "This clears the ``ECHO`` and ``ICANON`` local mode flags in *mode* as well " 63 | "as setting the minimum input to 1 byte with no delay." 64 | msgstr "" 65 | 66 | #: ../../library/tty.rst:43 67 | msgid "" 68 | "The ``ICRNL`` flag is no longer cleared. This matches Linux and macOS ``stty " 69 | "cbreak`` behavior and what :func:`setcbreak` historically did." 70 | msgstr "" 71 | 72 | #: ../../library/tty.rst:50 73 | msgid "" 74 | "Change the mode of the file descriptor *fd* to raw. If *when* is omitted, it " 75 | "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." 76 | "tcsetattr`. The return value of :func:`termios.tcgetattr` is saved before " 77 | "setting *fd* to raw mode; this value is returned." 78 | msgstr "" 79 | 80 | #: ../../library/tty.rst:55 ../../library/tty.rst:69 81 | msgid "" 82 | "The return value is now the original tty attributes, instead of ``None``." 83 | msgstr "" 84 | 85 | #: ../../library/tty.rst:61 86 | msgid "" 87 | "Change the mode of file descriptor *fd* to cbreak. If *when* is omitted, it " 88 | "defaults to :const:`termios.TCSAFLUSH`, and is passed to :func:`termios." 89 | "tcsetattr`. The return value of :func:`termios.tcgetattr` is saved before " 90 | "setting *fd* to cbreak mode; this value is returned." 91 | msgstr "" 92 | 93 | #: ../../library/tty.rst:66 94 | msgid "" 95 | "This clears the ``ECHO`` and ``ICANON`` local mode flags as well as setting " 96 | "the minimum input to 1 byte with no delay." 97 | msgstr "" 98 | 99 | #: ../../library/tty.rst:72 100 | msgid "" 101 | "The ``ICRNL`` flag is no longer cleared. This restores the behavior of " 102 | "Python 3.11 and earlier as well as matching what Linux, macOS, & BSDs " 103 | "describe in their ``stty(1)`` man pages regarding cbreak mode." 104 | msgstr "" 105 | 106 | #: ../../library/tty.rst:80 107 | msgid "Module :mod:`termios`" 108 | msgstr "" 109 | 110 | #: ../../library/tty.rst:81 111 | msgid "Low-level terminal control interface." 112 | msgstr "" 113 | -------------------------------------------------------------------------------- /c-api/memoryview.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | # Translators: 7 | # Alireza Shabani (Revisto) , 2025 8 | # 9 | #, fuzzy 10 | msgid "" 11 | msgstr "" 12 | "Project-Id-Version: Python 3.14\n" 13 | "Report-Msgid-Bugs-To: \n" 14 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 15 | "PO-Revision-Date: 2021-06-28 00:49+0000\n" 16 | "Last-Translator: Alireza Shabani (Revisto) , 2025\n" 17 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 18 | "fa/)\n" 19 | "MIME-Version: 1.0\n" 20 | "Content-Type: text/plain; charset=UTF-8\n" 21 | "Content-Transfer-Encoding: 8bit\n" 22 | "Language: fa\n" 23 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 24 | 25 | #: ../../c-api/memoryview.rst:9 26 | msgid "MemoryView objects" 27 | msgstr "" 28 | 29 | #: ../../c-api/memoryview.rst:11 30 | msgid "" 31 | "A :class:`memoryview` object exposes the C level :ref:`buffer interface " 32 | "` as a Python object which can then be passed around like any " 33 | "other object." 34 | msgstr "" 35 | 36 | #: ../../c-api/memoryview.rst:18 37 | msgid "" 38 | "Create a memoryview object from an object that provides the buffer " 39 | "interface. If *obj* supports writable buffer exports, the memoryview object " 40 | "will be read/write, otherwise it may be either read-only or read/write at " 41 | "the discretion of the exporter." 42 | msgstr "" 43 | 44 | #: ../../c-api/memoryview.rst:26 45 | msgid "Flag to request a readonly buffer." 46 | msgstr "" 47 | 48 | #: ../../c-api/memoryview.rst:31 49 | msgid "Flag to request a writable buffer." 50 | msgstr "" 51 | 52 | #: ../../c-api/memoryview.rst:36 53 | msgid "" 54 | "Create a memoryview object using *mem* as the underlying buffer. *flags* can " 55 | "be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." 56 | msgstr "" 57 | 58 | #: ../../c-api/memoryview.rst:43 59 | msgid "" 60 | "Create a memoryview object wrapping the given buffer structure *view*. For " 61 | "simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the preferred " 62 | "function." 63 | msgstr "" 64 | 65 | #: ../../c-api/memoryview.rst:49 66 | msgid "" 67 | "Create a memoryview object to a :term:`contiguous` chunk of memory (in " 68 | "either 'C' or 'F'ortran *order*) from an object that defines the buffer " 69 | "interface. If memory is contiguous, the memoryview object points to the " 70 | "original memory. Otherwise, a copy is made and the memoryview points to a " 71 | "new bytes object." 72 | msgstr "" 73 | 74 | #: ../../c-api/memoryview.rst:55 75 | msgid "" 76 | "*buffertype* can be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`." 77 | msgstr "" 78 | 79 | #: ../../c-api/memoryview.rst:60 80 | msgid "" 81 | "Return true if the object *obj* is a memoryview object. It is not currently " 82 | "allowed to create subclasses of :class:`memoryview`. This function always " 83 | "succeeds." 84 | msgstr "" 85 | 86 | #: ../../c-api/memoryview.rst:67 87 | msgid "" 88 | "Return a pointer to the memoryview's private copy of the exporter's buffer. " 89 | "*mview* **must** be a memoryview instance; this macro doesn't check its " 90 | "type, you must do it yourself or you will risk crashes." 91 | msgstr "" 92 | 93 | #: ../../c-api/memoryview.rst:73 94 | msgid "" 95 | "Return either a pointer to the exporting object that the memoryview is based " 96 | "on or ``NULL`` if the memoryview has been created by one of the functions :c:" 97 | "func:`PyMemoryView_FromMemory` or :c:func:`PyMemoryView_FromBuffer`. *mview* " 98 | "**must** be a memoryview instance." 99 | msgstr "" 100 | 101 | #: ../../c-api/memoryview.rst:5 102 | msgid "object" 103 | msgstr "" 104 | 105 | #: ../../c-api/memoryview.rst:5 106 | msgid "memoryview" 107 | msgstr "" 108 | -------------------------------------------------------------------------------- /c-api/hash.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-04 14:20+0000\n" 12 | "PO-Revision-Date: 2024-02-23 14:15+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../c-api/hash.rst:4 22 | msgid "PyHash API" 23 | msgstr "" 24 | 25 | #: ../../c-api/hash.rst:6 26 | msgid "" 27 | "See also the :c:member:`PyTypeObject.tp_hash` member and :ref:`numeric-hash`." 28 | msgstr "" 29 | 30 | #: ../../c-api/hash.rst:10 31 | msgid "Hash value type: signed integer." 32 | msgstr "" 33 | 34 | #: ../../c-api/hash.rst:16 35 | msgid "Hash value type: unsigned integer." 36 | msgstr "" 37 | 38 | #: ../../c-api/hash.rst:22 39 | msgid "" 40 | "The `Mersenne prime `_ ``P = " 41 | "2**n -1``, used for numeric hash scheme." 42 | msgstr "" 43 | 44 | #: ../../c-api/hash.rst:28 45 | msgid "The exponent ``n`` of ``P`` in :c:macro:`PyHASH_MODULUS`." 46 | msgstr "" 47 | 48 | #: ../../c-api/hash.rst:34 49 | msgid "Prime multiplier used in string and various other hashes." 50 | msgstr "" 51 | 52 | #: ../../c-api/hash.rst:40 53 | msgid "The hash value returned for a positive infinity." 54 | msgstr "" 55 | 56 | #: ../../c-api/hash.rst:46 57 | msgid "The multiplier used for the imaginary part of a complex number." 58 | msgstr "" 59 | 60 | #: ../../c-api/hash.rst:52 61 | msgid "Hash function definition used by :c:func:`PyHash_GetFuncDef`." 62 | msgstr "" 63 | 64 | #: ../../c-api/hash.rst:60 65 | msgid "Hash function name (UTF-8 encoded string)." 66 | msgstr "" 67 | 68 | #: ../../c-api/hash.rst:64 69 | msgid "Internal size of the hash value in bits." 70 | msgstr "" 71 | 72 | #: ../../c-api/hash.rst:68 73 | msgid "Size of seed input in bits." 74 | msgstr "" 75 | 76 | #: ../../c-api/hash.rst:75 77 | msgid "Get the hash function definition." 78 | msgstr "" 79 | 80 | #: ../../c-api/hash.rst:78 81 | msgid ":pep:`456` \"Secure and interchangeable hash algorithm\"." 82 | msgstr "" 83 | 84 | #: ../../c-api/hash.rst:85 85 | msgid "" 86 | "Hash a pointer value: process the pointer value as an integer (cast it to " 87 | "``uintptr_t`` internally). The pointer is not dereferenced." 88 | msgstr "" 89 | 90 | #: ../../c-api/hash.rst:88 91 | msgid "The function cannot fail: it cannot return ``-1``." 92 | msgstr "" 93 | 94 | #: ../../c-api/hash.rst:95 95 | msgid "" 96 | "Compute and return the hash value of a buffer of *len* bytes starting at " 97 | "address *ptr*. The hash is guaranteed to match that of :class:`bytes`, :" 98 | "class:`memoryview`, and other built-in objects that implement the :ref:" 99 | "`buffer protocol `." 100 | msgstr "" 101 | 102 | #: ../../c-api/hash.rst:100 103 | msgid "" 104 | "Use this function to implement hashing for immutable objects whose :c:member:" 105 | "`~PyTypeObject.tp_richcompare` function compares to another object's buffer." 106 | msgstr "" 107 | 108 | #: ../../c-api/hash.rst:104 109 | msgid "*len* must be greater than or equal to ``0``." 110 | msgstr "" 111 | 112 | #: ../../c-api/hash.rst:106 113 | msgid "This function always succeeds." 114 | msgstr "" 115 | 116 | #: ../../c-api/hash.rst:113 117 | msgid "" 118 | "Generic hashing function that is meant to be put into a type object's " 119 | "``tp_hash`` slot. Its result only depends on the object's identity." 120 | msgstr "" 121 | 122 | #: ../../c-api/hash.rst:118 123 | msgid "In CPython, it is equivalent to :c:func:`Py_HashPointer`." 124 | msgstr "" 125 | -------------------------------------------------------------------------------- /library/tkinter.dnd.po: -------------------------------------------------------------------------------- 1 | # SOME DESCRIPTIVE TITLE. 2 | # Copyright (C) 2001 Python Software Foundation 3 | # This file is distributed under the same license as the Python package. 4 | # FIRST AUTHOR , YEAR. 5 | # 6 | #, fuzzy 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Python 3.14\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2025-07-11 14:21+0000\n" 12 | "PO-Revision-Date: 2021-06-28 01:15+0000\n" 13 | "Language-Team: Persian (https://app.transifex.com/python-doc/teams/5390/" 14 | "fa/)\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Language: fa\n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #: ../../library/tkinter.dnd.rst:2 22 | msgid ":mod:`!tkinter.dnd` --- Drag and drop support" 23 | msgstr "" 24 | 25 | #: ../../library/tkinter.dnd.rst:8 26 | msgid "**Source code:** :source:`Lib/tkinter/dnd.py`" 27 | msgstr "" 28 | 29 | #: ../../library/tkinter.dnd.rst:12 30 | msgid "" 31 | "This is experimental and due to be deprecated when it is replaced with the " 32 | "Tk DND." 33 | msgstr "" 34 | 35 | #: ../../library/tkinter.dnd.rst:15 36 | msgid "" 37 | "The :mod:`tkinter.dnd` module provides drag-and-drop support for objects " 38 | "within a single application, within the same window or between windows. To " 39 | "enable an object to be dragged, you must create an event binding for it that " 40 | "starts the drag-and-drop process. Typically, you bind a ButtonPress event to " 41 | "a callback function that you write (see :ref:`Bindings-and-Events`). The " 42 | "function should call :func:`dnd_start`, where 'source' is the object to be " 43 | "dragged, and 'event' is the event that invoked the call (the argument to " 44 | "your callback function)." 45 | msgstr "" 46 | 47 | #: ../../library/tkinter.dnd.rst:23 48 | msgid "Selection of a target object occurs as follows:" 49 | msgstr "" 50 | 51 | #: ../../library/tkinter.dnd.rst:25 52 | msgid "Top-down search of area under mouse for target widget" 53 | msgstr "" 54 | 55 | #: ../../library/tkinter.dnd.rst:27 56 | msgid "Target widget should have a callable *dnd_accept* attribute" 57 | msgstr "" 58 | 59 | #: ../../library/tkinter.dnd.rst:28 60 | msgid "" 61 | "If *dnd_accept* is not present or returns ``None``, search moves to parent " 62 | "widget" 63 | msgstr "" 64 | 65 | #: ../../library/tkinter.dnd.rst:29 66 | msgid "If no target widget is found, then the target object is ``None``" 67 | msgstr "" 68 | 69 | #: ../../library/tkinter.dnd.rst:31 70 | msgid "Call to *.dnd_leave(source, event)*" 71 | msgstr "" 72 | 73 | #: ../../library/tkinter.dnd.rst:32 74 | msgid "Call to *.dnd_enter(source, event)*" 75 | msgstr "" 76 | 77 | #: ../../library/tkinter.dnd.rst:33 78 | msgid "Call to *.dnd_commit(source, event)* to notify of drop" 79 | msgstr "" 80 | 81 | #: ../../library/tkinter.dnd.rst:34 82 | msgid "" 83 | "Call to *.dnd_end(target, event)* to signal end of drag-and-drop" 84 | msgstr "" 85 | 86 | #: ../../library/tkinter.dnd.rst:39 87 | msgid "" 88 | "The *DndHandler* class handles drag-and-drop events tracking Motion and " 89 | "ButtonRelease events on the root of the event widget." 90 | msgstr "" 91 | 92 | #: ../../library/tkinter.dnd.rst:44 93 | msgid "Cancel the drag-and-drop process." 94 | msgstr "" 95 | 96 | #: ../../library/tkinter.dnd.rst:48 97 | msgid "Execute end of drag-and-drop functions." 98 | msgstr "" 99 | 100 | #: ../../library/tkinter.dnd.rst:52 101 | msgid "Inspect area below mouse for target objects while drag is performed." 102 | msgstr "" 103 | 104 | #: ../../library/tkinter.dnd.rst:56 105 | msgid "Signal end of drag when the release pattern is triggered." 106 | msgstr "" 107 | 108 | #: ../../library/tkinter.dnd.rst:60 109 | msgid "Factory function for drag-and-drop process." 110 | msgstr "" 111 | 112 | #: ../../library/tkinter.dnd.rst:64 113 | msgid ":ref:`Bindings-and-Events`" 114 | msgstr "" 115 | --------------------------------------------------------------------------------