Skip to content

Translation Update 3.12 #198

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Get changes from CPython Doc for 3.12
  • Loading branch information
python-docs-turkish committed Aug 1, 2024
commit 7ac3b2674e5d012fe95b2aba2afde6c98c54ebc1
176 changes: 176 additions & 0 deletions deprecations/c-api-pending-removal-in-3.14.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-08-01 00:19+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: deprecations/c-api-pending-removal-in-3.14.rst:2
msgid "Pending Removal in Python 3.14"
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:4
msgid ""
"The ``ma_version_tag`` field in :c:type:`PyDictObject` for extension modules "
"(:pep:`699`; :gh:`101193`)."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:7
msgid ""
"Creating :c:data:`immutable types <Py_TPFLAGS_IMMUTABLETYPE>` with mutable "
"bases (:gh:`95388`)."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:10
msgid ""
"Functions to configure Python's initialization, deprecated in Python 3.11:"
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:12
msgid "``PySys_SetArgvEx()``: set :c:member:`PyConfig.argv` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:13
msgid "``PySys_SetArgv()``: set :c:member:`PyConfig.argv` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:14
msgid "``Py_SetProgramName()``: set :c:member:`PyConfig.program_name` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:15
msgid "``Py_SetPythonHome()``: set :c:member:`PyConfig.home` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:17
#: deprecations/c-api-pending-removal-in-3.14.rst:45
msgid ""
"The :c:func:`Py_InitializeFromConfig` API should be used with :c:type:"
"`PyConfig` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:20
msgid "Global configuration variables:"
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:22
msgid ":c:var:`Py_DebugFlag`: use :c:member:`PyConfig.parser_debug` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:23
msgid ":c:var:`Py_VerboseFlag`: use :c:member:`PyConfig.verbose` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:24
msgid ":c:var:`Py_QuietFlag`: use :c:member:`PyConfig.quiet` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:25
msgid ""
":c:var:`Py_InteractiveFlag`: use :c:member:`PyConfig.interactive` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:26
msgid ":c:var:`Py_InspectFlag`: use :c:member:`PyConfig.inspect` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:27
msgid ""
":c:var:`Py_OptimizeFlag`: use :c:member:`PyConfig.optimization_level` "
"instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:28
msgid ":c:var:`Py_NoSiteFlag`: use :c:member:`PyConfig.site_import` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:29
msgid ""
":c:var:`Py_BytesWarningFlag`: use :c:member:`PyConfig.bytes_warning` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:30
msgid ""
":c:var:`Py_FrozenFlag`: use :c:member:`PyConfig.pathconfig_warnings` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:31
msgid ""
":c:var:`Py_IgnoreEnvironmentFlag`: use :c:member:`PyConfig.use_environment` "
"instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:32
msgid ""
":c:var:`Py_DontWriteBytecodeFlag`: use :c:member:`PyConfig.write_bytecode` "
"instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:33
msgid ""
":c:var:`Py_NoUserSiteDirectory`: use :c:member:`PyConfig."
"user_site_directory` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:34
msgid ""
":c:var:`Py_UnbufferedStdioFlag`: use :c:member:`PyConfig.buffered_stdio` "
"instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:35
msgid ""
":c:var:`Py_HashRandomizationFlag`: use :c:member:`PyConfig.use_hash_seed` "
"and :c:member:`PyConfig.hash_seed` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:37
msgid ":c:var:`Py_IsolatedFlag`: use :c:member:`PyConfig.isolated` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:38
msgid ""
":c:var:`Py_LegacyWindowsFSEncodingFlag`: use :c:member:`PyPreConfig."
"legacy_windows_fs_encoding` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:39
msgid ""
":c:var:`Py_LegacyWindowsStdioFlag`: use :c:member:`PyConfig."
"legacy_windows_stdio` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:40
msgid ""
":c:var:`!Py_FileSystemDefaultEncoding`: use :c:member:`PyConfig."
"filesystem_encoding` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:41
msgid ""
":c:var:`!Py_HasFileSystemDefaultEncoding`: use :c:member:`PyConfig."
"filesystem_encoding` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:42
msgid ""
":c:var:`!Py_FileSystemDefaultEncodeErrors`: use :c:member:`PyConfig."
"filesystem_errors` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.14.rst:43
msgid ""
":c:var:`!Py_UTF8Mode`: use :c:member:`PyPreConfig.utf8_mode` instead. (see :"
"c:func:`Py_PreInitialize`)"
msgstr ""
84 changes: 84 additions & 0 deletions deprecations/c-api-pending-removal-in-3.15.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-08-01 00:19+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: deprecations/c-api-pending-removal-in-3.15.rst:2
msgid "Pending Removal in Python 3.15"
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:4
msgid "The bundled copy of ``libmpdecimal``."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:5
msgid ""
":c:func:`PyImport_ImportModuleNoBlock`: use :c:func:`PyImport_ImportModule` "
"instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:6
msgid ""
":c:func:`PyWeakref_GET_OBJECT`: use :c:func:`!PyWeakref_GetRef` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:7
msgid ":c:func:`PyWeakref_GetObject`: use :c:func:`!PyWeakref_GetRef` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:8
msgid ":c:type:`!Py_UNICODE_WIDE` type: use :c:type:`wchar_t` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:9
msgid ":c:type:`Py_UNICODE` type: use :c:type:`wchar_t` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:10
msgid "Python initialization functions:"
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:12
msgid ""
":c:func:`PySys_ResetWarnOptions`: clear :data:`sys.warnoptions` and :data:`!"
"warnings.filters` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:14
msgid ":c:func:`Py_GetExecPrefix`: get :data:`sys.exec_prefix` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:15
msgid ":c:func:`Py_GetPath`: get :data:`sys.path` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:16
msgid ":c:func:`Py_GetPrefix`: get :data:`sys.prefix` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:17
msgid ":c:func:`Py_GetProgramFullPath`: get :data:`sys.executable` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:18
msgid ":c:func:`Py_GetProgramName`: get :data:`sys.executable` instead."
msgstr ""

#: deprecations/c-api-pending-removal-in-3.15.rst:19
msgid ""
":c:func:`Py_GetPythonHome`: get :c:member:`PyConfig.home` or the :envvar:"
"`PYTHONHOME` environment variable instead."
msgstr ""
Loading
Loading