Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

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

Provide feedback

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

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitef521b5

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parentd9fff97 commitef521b5

35 files changed

+132
-87
lines changed

‎c-api/cell.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -28,7 +28,7 @@ msgstr ""
2828
msgid""
2929
"\"Cell\" objects are used to implement variables referenced by multiple "
3030
"scopes. For each such variable, a cell object is created to store the value; "
31-
"the local variables of each stack frame that references the valuecontains a "
31+
"the local variables of each stack frame that references the valuecontain a "
3232
"reference to the cells from outer scopes which also use that variable. When "
3333
"the value is accessed, the value contained in the cell is used instead of "
3434
"the cell object itself. This de-referencing of the cell object requires "

‎c-api/datetime.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -65,7 +65,7 @@ msgid ""
6565
msgstr""
6666

6767
msgid""
68-
"This instance of :c:type:`PyTypeObject` represents Python type for the "
68+
"This instance of :c:type:`PyTypeObject` representsthePython type for the "
6969
"difference between two datetime values; it is the same object as :class:"
7070
"`datetime.timedelta` in the Python layer."
7171
msgstr""

‎c-api/descriptor.po‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -34,7 +34,7 @@ msgid "The type object for the built-in descriptor types."
3434
msgstr""
3535

3636
msgid""
37-
"Return non-zero if the descriptorobjects *descr* describes a data "
38-
"attribute,or ``0`` if it describes a method. *descr* must be a descriptor "
39-
"object;there is no error checking."
37+
"Return non-zero if the descriptorobject *descr* describes a data attribute, "
38+
"or ``0`` if it describes a method. *descr* must be a descriptor object; "
39+
"there is no error checking."
4040
msgstr""

‎c-api/init_config.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -122,7 +122,7 @@ msgstr ""
122122
msgid"Set *\\*err_msg* to ``NULL`` and return ``0`` otherwise."
123123
msgstr""
124124

125-
msgid"An error message isan UTF-8 encoded string."
125+
msgid"An error message isa UTF-8 encoded string."
126126
msgstr""
127127

128128
msgid"If *config* has an exit code, format the exit code as an error message."

‎c-api/mapping.po‎

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -102,8 +102,8 @@ msgid ""
102102
msgstr""
103103

104104
msgid""
105-
"Exceptions which occur when this calls :meth:`~object.__getitem__` method "
106-
"are silently ignored. For proper error handling, use :c:func:"
105+
"Exceptions which occur when this callsthe:meth:`~object.__getitem__` "
106+
"methodare silently ignored. For proper error handling, use :c:func:"
107107
"`PyMapping_HasKeyWithError`, :c:func:`PyMapping_GetOptionalItem` or :c:func:"
108108
"`PyObject_GetItem()` instead."
109109
msgstr""
@@ -115,9 +115,9 @@ msgid ""
115115
msgstr""
116116

117117
msgid""
118-
"Exceptions that occur when this calls :meth:`~object.__getitem__` method or "
119-
"while creating the temporary :class:`str` object are silently ignored. For "
120-
"proper error handling, use :c:func:`PyMapping_HasKeyStringWithError`, :c:"
118+
"Exceptions that occur when this callsthe:meth:`~object.__getitem__` method "
119+
"orwhile creating the temporary :class:`str` object are silently ignored. "
120+
"Forproper error handling, use :c:func:`PyMapping_HasKeyStringWithError`, :c:"
121121
"func:`PyMapping_GetOptionalItemString` or :c:func:`PyMapping_GetItemString` "
122122
"instead."
123123
msgstr""

‎c-api/marshal.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -101,7 +101,7 @@ msgid ""
101101
"assumes that no further objects will be read from the file, allowing it to "
102102
"aggressively load file data into memory so that the de-serialization can "
103103
"operate from data in memory rather than reading a byte at a time from the "
104-
"file. Only usethese variant if you are certain that you won't be reading "
104+
"file. Only usethis variant if you are certain that you won't be reading "
105105
"anything else from the file."
106106
msgstr""
107107

‎c-api/memory.po‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -124,8 +124,8 @@ msgid ""
124124
"allocation strategies and are optimized for different purposes. The specific "
125125
"details on how every domain allocates memory or what internal functions each "
126126
"domain calls is considered an implementation detail, but for debugging "
127-
"purposes a simplified table can be found at :ref:`here <default-memory-"
128-
"allocators>`. The APIs used to allocate and free a block of memory must be "
127+
"purposes a simplified table can be found at :ref:`default-memory-"
128+
"allocators`. The APIs used to allocate and free a block of memory must be "
129129
"from the same domain. For example, :c:func:`PyMem_Free` must be used to free "
130130
"memory allocated using :c:func:`PyMem_Malloc`."
131131
msgstr""

‎c-api/module.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -98,7 +98,7 @@ msgstr ""
9898

9999
msgid""
100100
"On error, return ``NULL`` with an exception set. Use :c:func:"
101-
"`PyErr_Occurred` to tell this case apart from amising :c:type:`!"
101+
"`PyErr_Occurred` to tell this case apart from amissing :c:type:`!"
102102
"PyModuleDef`."
103103
msgstr""
104104

‎c-api/monitoring.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-10-25 14:12+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -144,7 +144,7 @@ msgstr ""
144144

145145
msgid""
146146
"Monitoring states can be managed with the help of monitoring scopes. A scope "
147-
"would typically correspond to apython function."
147+
"would typically correspond to aPython function."
148148
msgstr""
149149

150150
msgid""

‎c-api/object.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.14\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2025-11-01 14:13+0000\n"
14+
"POT-Creation-Date:2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -133,7 +133,7 @@ msgstr ""
133133
msgid""
134134
"Flag to be used with multiple functions that print the object (like :c:func:"
135135
"`PyObject_Print` and :c:func:`PyFile_WriteObject`). If passed, these "
136-
"function would use the :func:`str` of the object instead of the :func:`repr`."
136+
"functions use the :func:`str` of the object instead of the :func:`repr`."
137137
msgstr""
138138

139139
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp