10000 Regenerate all po files to bring up-to-date with cpython 3.12 by lysnikolaou · Pull Request #589 · python/python-docs-el · GitHub
[go: up one dir, main page]

Skip to content

Regenerate all po files to bring up-to-date with cpython 3.12 #589

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 12 commits into from
Feb 20, 2025
Merged
  •  
  •  
  •  
Prev Previous commit
Next Next commit
[pre-commit.ci lite] apply automatic fixes
  • Loading branch information
pre-commit-ci-lite[bot] authored Feb 17, 2025
commit 1137004d9ed2d11fe76db42c1c4940c8ed636e79
8 changes: 4 additions & 4 deletions bugs.po
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ msgstr ""
#: bugs.rst:11
msgid ""
"It can be sometimes faster to fix bugs yourself and contribute patches to "
"Python as it streamlines the process and involves less people. Learn how "
"to :ref:`contribute <contributing-to-python>`."
"Python as it streamlines the process and involves less people. Learn how to :"
"ref:`contribute <contributing-to-python>`."
msgstr ""
"Μερικές φορές μπορεί να είναι πιο γρήγορο να διορθώσετε μόνοι σας σφάλματα "
"και να συνεισφέρετε ενημερώσεις στον κώδικα της Python μιας και "
Expand Down Expand Up @@ -235,8 +235,8 @@ msgid ""
"`How to Report Bugs Effectively <https://www.chiark.greenend.org.uk/"
"~sgtatham/bugs.html>`_"
msgstr ""
"`Πως να Αναφέρεται Σφάλματα Αποτελεσματικά <https://"
"www.chiark.greenend.org.uk/~sgtatham/bugs.html>`_"
"`Πως να Αναφέρεται Σφάλματα Αποτελεσματικά <https://www.chiark.greenend.org."
"uk/~sgtatham/bugs.html>`_"

#: bugs.rst:92
msgid ""
Expand Down
6 changes: 3 additions & 3 deletions c-api/abstract.po
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ msgstr ""
#: c-api/abstract.rst:14
msgid ""
"It is not possible to use these functions on objects that are not properly "
"initialized, such as a list object that has been created "
"by :c:func:`PyList_New`, but whose items have not been set to some non-\\ "
"``NULL`` value yet."
"initialized, such as a list object that has been created by :c:func:"
"`PyList_New`, but whose items have not been set to some non-\\ ``NULL`` "
"value yet."
msgstr ""
14 changes: 7 additions & 7 deletions c-api/allocation.po
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ msgid ""
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
"Python object header are not initialized. The caller will own the only "
"reference to the object (i.e. its reference count will be one). The size of "
"the memory allocation is determined from "
"the :c:member:`~PyTypeObject.tp_basicsize` field of the type object."
"the memory allocation is determined from the :c:member:`~PyTypeObject."
"tp_basicsize` field of the type object."
msgstr ""

#: c-api/allocation.rst:41
Expand All @@ -59,11 +59,11 @@ msgstr ""

#: c-api/allocation.rst:55
msgid ""
"Releases memory allocated to an object using :c:macro:`PyObject_New` "
"or :c:macro:`PyObject_NewVar`. This is normally called from "
"the :c:member:`~PyTypeObject.tp_dealloc` handler specified in the object's "
"type. The fields of the object should not be accessed after this call as "
"the memory is no longer a valid Python object."
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
"macro:`PyObject_NewVar`. This is normally called from the :c:member:"
"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
"fields of the object should not be accessed after this call as the memory is "
"no longer a valid Python object."
msgstr ""

#: c-api/allocation.rst:64
Expand Down
124 changes: 61 additions & 63 deletions c-api/arg.po
67E6
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@ msgstr ""
#: c-api/arg.rst:8
msgid ""
"These functions are useful when creating your own extensions functions and "
"methods. Additional information and examples are available "
"in :ref:`extending-index`."
"methods. Additional information and examples are available in :ref:"
"`extending-index`."
msgstr ""

#: c-api/arg.rst:12
msgid ""
"The first three of these functions "
"described, :c:func:`PyArg_ParseTuple`, :c:func:`PyArg_ParseTupleAndKeywords`, "
"and :c:func:`PyArg_Parse`, all use *format strings* which are used to tell "
"the function about the expected arguments. The format strings use the same "
"syntax for each of these functions."
"The first three of these functions described, :c:func:`PyArg_ParseTuple`, :c:"
"func:`PyArg_ParseTupleAndKeywords`, and :c:func:`PyArg_Parse`, all use "
"*format strings* which are used to tell the function about the expected "
"arguments. The format strings use the same syntax for each of these "
"functions."
msgstr ""

#: c-api/arg.rst:19
Expand Down Expand Up @@ -99,10 +99,10 @@ msgstr ""

#: c-api/arg.rst:61
msgid ""
"To ensure that the underlying buffer may be safely borrowed, the "
"object's :c:member:`PyBufferProcs.bf_releasebuffer` field must be ``NULL``. "
"This disallows common mutable objects such as :class:`bytearray`, but also "
"some read-only objects such as :class:`memoryview` of :class:`bytes`."
"To ensure that the underlying buffer may be safely borrowed, the object's :c:"
"member:`PyBufferProcs.bf_releasebuffer` field must be ``NULL``. This "
"disallows common mutable objects such as :class:`bytearray`, but also some "
"read-only objects such as :class:`memoryview` of :class:`bytes`."
msgstr ""

#: c-api/arg.rst:67
Expand All @@ -114,11 +114,11 @@ msgstr ""

#: c-api/arg.rst:73
msgid ""
"For all ``#`` variants of formats (``s#``, ``y#``, etc.), the "
"macro :c:macro:`PY_SSIZE_T_CLEAN` must be defined before "
"including :file:`Python.h`. On Python 3.9 and older, the type of the length "
"argument is :c:type:`Py_ssize_t` if the :c:macro:`PY_SSIZE_T_CLEAN` macro is "
"defined, or int otherwise."
"For all ``#`` variants of formats (``s#``, ``y#``, etc.), the macro :c:macro:"
"`PY_SSIZE_T_CLEAN` must be defined before including :file:`Python.h`. On "
"Python 3.9 and older, the type of the length argument is :c:type:"
"`Py_ssize_t` if the :c:macro:`PY_SSIZE_T_CLEAN` macro is defined, or int "
"otherwise."
msgstr ""

#: c-api/arg.rst:80
Expand All @@ -139,8 +139,8 @@ msgstr ""
msgid ""
"This format does not accept :term:`bytes-like objects <bytes-like object>`. "
"If you want to accept filesystem paths and convert them to C character "
"strings, it is preferable to use the ``O&`` format "
"with :c:func:`PyUnicode_FSConverter` as *converter*."
"strings, it is preferable to use the ``O&`` format with :c:func:"
"`PyUnicode_FSConverter` as *converter*."
msgstr ""

#: c-api/arg.rst:96
Expand All @@ -163,8 +163,8 @@ msgstr ""

#: c-api/arg.rst:106
msgid ""
"``s#`` (:class:`str`, read-only :term:`bytes-like object`) [const char "
"\\*, :c:type:`Py_ssize_t`]"
"``s#`` (:class:`str`, read-only :term:`bytes-like object`) [const char \\*, :"
"c:type:`Py_ssize_t`]"
msgstr ""

#: c-api/arg.rst:107
Expand Down Expand Up @@ -239,8 +239,8 @@ msgstr ""

#: c-api/arg.rst:141
msgid ""
"``y#`` (read-only :term:`bytes-like object`) [const char "
"\\*, :c:type:`Py_ssize_t`]"
"``y#`` (read-only :term:`bytes-like object`) [const char \\*, :c:type:"
"`Py_ssize_t`]"
msgstr ""

#: c-api/arg.rst:142
Expand All @@ -267,9 +267,9 @@ msgstr ""
#: c-api/arg.rst:151
msgid ""
"Requires that the Python object is a :class:`bytearray` object, without "
"attempting any conversion. Raises :exc:`TypeError` if the object is not "
"a :class:`bytearray` object. The C variable may also be declared "
"as :c:expr:`PyObject*`."
"attempting any conversion. Raises :exc:`TypeError` if the object is not a :"
"class:`bytearray` object. The C variable may also be declared as :c:expr:"
"`PyObject*`."
msgstr ""

#: c-api/arg.rst:155
Expand All @@ -291,8 +291,8 @@ msgstr ""
msgid ""
"This format accepts any object which implements the read-write buffer "
"interface. It fills a :c:type:`Py_buffer` structure provided by the caller. "
"The buffer may contain embedded null bytes. The caller have to "
"call :c:func:`PyBuffer_Release` when it is done with the buffer."
"The buffer may contain embedded null bytes. The caller have to call :c:func:"
"`PyBuffer_Release` when it is done with the buffer."
msgstr ""

#: c-api/arg.rst:166
Expand Down Expand Up @@ -320,8 +320,8 @@ msgstr ""
msgid ""
":c:func:`PyArg_ParseTuple` will allocate a buffer of the needed size, copy "
"the encoded data into this buffer and adjust *\\*buffer* to reference the "
"newly allocated storage. The caller is responsible for "
"calling :c:func:`PyMem_Free` to free the allocated buffer after use."
"newly allocated storage. The caller is responsible for calling :c:func:"
"`PyMem_Free` to free the allocated buffer after use."
msgstr ""

#: c-api/arg.rst:183
Expand All @@ -339,8 +339,8 @@ msgstr ""

#: c-api/arg.rst:188
msgid ""
"``es#`` (:class:`str`) [const char \\*encoding, char "
"\\*\\*buffer, :c:type:`Py_ssize_t` \\*buffer_length]"
"``es#`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer, :c:type:"
"`Py_ssize_t` \\*buffer_length]"
msgstr ""

#: c-api/arg.rst:189
Expand Down Expand Up @@ -417,11 +417,10 @@ msgstr ""
#: c-api/arg.rst:232
msgid ""
"These formats allow representing Python numbers or single characters as C "
"numbers. Formats that require :class:`int`, :class:`float` "
"or :class:`complex` can also use the corresponding special "
"methods :meth:`~object.__index__`, :meth:`~object.__float__` "
"or :meth:`~object.__complex__` to convert the Python object to the required "
"type."
"numbers. Formats that require :class:`int`, :class:`float` or :class:"
"`complex` can also use the corresponding special methods :meth:`~object."
"__index__`, :meth:`~object.__float__` or :meth:`~object.__complex__` to "
"convert the Python object to the required type."
msgstr ""

#: c-api/arg.rst:238
Expand Down Expand Up @@ -591,9 +590,9 @@ msgstr ""
#: c-api/arg.rst:307
msgid ""
"Store a Python object (without any conversion) in a C object pointer. The C "
"program thus receives the actual object that was passed. A "
"new :term:`strong reference` to the object is not created (i.e. its "
"reference count is not increased). The pointer stored is not ``NULL``."
"program thus receives the actual object that was passed. A new :term:"
"`strong reference` to the object is not created (i.e. its reference count is "
"not increased). The pointer stored is not ``NULL``."
msgstr ""

#: c-api/arg.rst:313
Expand Down Expand Up @@ -627,12 +626,12 @@ msgstr ""

#: c-api/arg.rst:330
msgid ""
"where *object* is the Python object to be converted and *address* is "
"the :c:expr:`void*` argument that was passed to the ``PyArg_Parse*`` "
"function. The returned *status* should be ``1`` for a successful conversion "
"and ``0`` if the conversion has failed. When the conversion fails, the "
"*converter* function should raise an exception and leave the content of "
"*address* unmodified."
"where *object* is the Python object to be converted and *address* is the :c:"
"expr:`void*` argument that was passed to the ``PyArg_Parse*`` function. The "
"returned *status* should be ``1`` for a successful conversion and ``0`` if "
"the conversion has failed. When the conversion fails, the *converter* "
"function should raise an exception and leave the content of *address* "
"unmodified."
msgstr ""

#: c-api/arg.rst:339
Expand All @@ -646,8 +645,8 @@ msgstr ""

#: c-api/arg.rst:345
msgid ""
"Examples of converters: :c:func:`PyUnicode_FSConverter` "
"and :c:func:`PyUnicode_FSDecoder`."
"Examples of converters: :c:func:`PyUnicode_FSConverter` and :c:func:"
"`PyUnicode_FSDecoder`."
msgstr ""

#: c-api/arg.rst:348
Expand Down Expand Up @@ -727,8 +726,8 @@ msgstr ""
#: c-api/arg.rst:390
msgid ""
"The list of format units ends here; the string after the semicolon is used "
"as the error message *instead* of the default error message. ``:`` and "
"``;`` mutually exclude each other."
"as the error message *instead* of the default error message. ``:`` and ``;"
"`` mutually exclude each other."
msgstr ""

#: c-api/arg.rst:394
Expand Down Expand Up @@ -779,10 +778,9 @@ msgstr ""
msgid ""
"Parse the parameters of a function that takes both positional and keyword "
"parameters into local variables. The *keywords* argument is a ``NULL``-"
"terminated array of keyword parameter names. Empty names "
"denote :ref:`positional-only parameters <positional-only_parameter>`. "
"Returns true on success; on failure, it returns false and raises the "
"appropriate exception."
"terminated array of keyword parameter names. Empty names denote :ref:"
"`positional-only parameters <positional-only_parameter>`. Returns true on "
"success; on failure, it returns false and raises the appropriate exception."
msgstr ""

#: c-api/arg.rst:437
Expand Down Expand Up @@ -891,10 +889,10 @@ msgid ""
"When memory buffers are passed as parameters to supply data to build "
"objects, as for the ``s`` and ``s#`` formats, the required data is copied. "
"Buffers provided by the caller are never referenced by the objects created "
"by :c:func:`Py_BuildValue`. In other words, if your code "
"invokes :c:func:`malloc` and passes the allocated memory "
"to :c:func:`Py_BuildValue`, your code is responsible for "
"calling :c:func:`free` for that memory once :c:func:`Py_BuildValue` returns."
"by :c:func:`Py_BuildValue`. In other words, if your code invokes :c:func:"
"`malloc` and passes the allocated memory to :c:func:`Py_BuildValue`, your "
"code is responsible for calling :c:func:`free` for that memory once :c:func:"
"`Py_BuildValue` returns."
msgstr ""

#: c-api/arg.rst:533
Expand Down Expand Up @@ -1083,9 +1081,9 @@ msgid ""
"Pass a Python object untouched but create a new :term:`strong reference` to "
"it (i.e. its reference count is incremented by one). If the object passed in "
"is a ``NULL`` pointer, it is assumed that this was caused because the call "
"producing the argument found an error and set an exception. "
"Therefore, :c:func:`Py_BuildValue` will return ``NULL`` but won't raise an "
"exception. If no exception has been raised yet, :exc:`SystemError` is set."
"producing the argument found an error and set an exception. Therefore, :c:"
"func:`Py_BuildValue` will return ``NULL`` but won't raise an exception. If "
"no exception has been raised yet, :exc:`SystemError` is set."
msgstr ""

#: c-api/arg.rst:640
Expand Down Expand Up @@ -1114,9 +1112,9 @@ msgstr ""
#: c-api/arg.rst:649
msgid ""
"Convert *anything* to a Python object through a *converter* function. The "
"function is called with *anything* (which should be compatible "
"with :c:expr:`void*`) as its argument and should return a \"new\" Python "
"object, or ``NULL`` if an error occurred."
"function is called with *anything* (which should be compatible with :c:expr:"
"`void*`) as its argument and should return a \"new\" Python object, or "
"``NULL`` if an error occurred."
msgstr ""

#: c-api/arg.rst:655
Expand Down
Loading
0