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

Commitd417cf4

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

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+896
-215
lines changed

‎c-api/allocation.po‎

Lines changed: 35 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# python-doc bot, 2025
87
# Daniel Nylander <po@danielnylander.se>, 2025
8+
# python-doc bot, 2025
99
#
1010
#,fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.14\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2025-10-27 14:15+0000\n"
15+
"POT-Creation-Date:2025-11-11 14:15+0000\n"
1616
"PO-Revision-Date:2025-09-16 00:00+0000\n"
17-
"Last-Translator:Daniel Nylander <po@danielnylander.se>, 2025\n"
17+
"Last-Translator:python-doc bot, 2025\n"
1818
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
1919
"sv/)\n"
2020
"MIME-Version:1.0\n"
@@ -155,9 +155,6 @@ msgstr ""
155155
msgid":c:macro:`PyObject_GC_NewVar`"
156156
msgstr":c:macro:`PyObject_GC_NewVar`"
157157

158-
msgid"Same as :c:func:`PyObject_Free`."
159-
msgstr""
160-
161158
msgid""
162159
"Object which is visible in Python as ``None``. This should only be accessed "
163160
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
@@ -169,3 +166,35 @@ msgstr ":ref:`moduleobjects`"
169166

170167
msgid"To allocate and create extension modules."
171168
msgstr""
169+
170+
msgid"Deprecated aliases"
171+
msgstr""
172+
173+
msgid""
174+
"These are :term:`soft deprecated` aliases to existing functions and macros. "
175+
"They exist solely for backwards compatibility."
176+
msgstr""
177+
178+
msgid"Deprecated alias"
179+
msgstr""
180+
181+
msgid"Function"
182+
msgstr""
183+
184+
msgid":c:macro:`PyObject_New`"
185+
msgstr""
186+
187+
msgid":c:macro:`PyObject_NewVar`"
188+
msgstr""
189+
190+
msgid":c:func:`PyObject_Init`"
191+
msgstr""
192+
193+
msgid":c:func:`PyObject_InitVar`"
194+
msgstr""
195+
196+
msgid":c:func:`PyObject_Malloc`"
197+
msgstr""
198+
199+
msgid":c:func:`PyObject_Realloc`"
200+
msgstr""

‎c-api/concrete.po‎

Lines changed: 4 additions & 1 deletion
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-11 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/"
@@ -70,6 +70,9 @@ msgstr "Funktionsobjekt"
7070
msgid"Other Objects"
7171
msgstr"Övriga objekt"
7272

73+
msgid"C API for extension modules"
74+
msgstr""
75+
7376
msgid"object"
7477
msgstr""
7578

‎c-api/conversion.po‎

Lines changed: 53 additions & 11 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-03 14:20+0000\n"
14+
"POT-Creation-Date:2025-11-11 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/"
@@ -169,24 +169,23 @@ msgid ""
169169
"ignored. The ``'r'`` format code specifies the standard :func:`repr` format."
170170
msgstr""
171171

172-
msgid""
173-
"*flags* can be zero or more of the values ``Py_DTSF_SIGN``, "
174-
"``Py_DTSF_ADD_DOT_0``, or ``Py_DTSF_ALT``, or-ed together:"
172+
msgid"*flags* can be zero or more of the following values or-ed together:"
175173
msgstr""
176174

177175
msgid""
178-
"``Py_DTSF_SIGN`` means to alwaysprecede the returned string with a sign "
179-
"character, even if *val* isnon-negative."
176+
"Alwaysprecede the returned string with a sign character, even if *val* is "
177+
"non-negative."
180178
msgstr""
181179

182-
msgid""
183-
"``Py_DTSF_ADD_DOT_0`` means to ensure that the returned string will not look "
184-
"like an integer."
180+
msgid"Ensure that the returned string will not look like an integer."
185181
msgstr""
186182

187183
msgid""
188-
"``Py_DTSF_ALT`` means to apply\"alternate\" formatting rules. See the "
189-
"documentation for the :c:func:`PyOS_snprintf` ``'#'`` specifier for details."
184+
"Apply\"alternate\" formatting rules. See the documentation for the :c:func:"
185+
"`PyOS_snprintf` ``'#'`` specifier for details."
186+
msgstr""
187+
188+
msgid"Negative zero is converted to positive zero."
190189
msgstr""
191190

192191
msgid""
@@ -211,3 +210,46 @@ msgid ""
211210
"Case insensitive comparison of strings. The function works almost "
212211
"identically to :c:func:`!strncmp` except that it ignores the case."
213212
msgstr""
213+
214+
msgid"Character classification and conversion"
215+
msgstr""
216+
217+
msgid""
218+
"The following macros provide locale-independent (unlike the C standard "
219+
"library ``ctype.h``) character classification and conversion. The argument "
220+
"must be a signed or unsigned :c:expr:`char`."
221+
msgstr""
222+
223+
msgid"Return true if the character *c* is an alphanumeric character."
224+
msgstr""
225+
226+
msgid""
227+
"Return true if the character *c* is an alphabetic character (``a-z`` and ``A-"
228+
"Z``)."
229+
msgstr""
230+
231+
msgid"Return true if the character *c* is a decimal digit (``0-9``)."
232+
msgstr""
233+
234+
msgid"Return true if the character *c* is a lowercase ASCII letter (``a-z``)."
235+
msgstr""
236+
237+
msgid""
238+
"Return true if the character *c* is an uppercase ASCII letter (``A-Z``)."
239+
msgstr""
240+
241+
msgid""
242+
"Return true if the character *c* is a whitespace character (space, tab, "
243+
"carriage return, newline, vertical tab, or form feed)."
244+
msgstr""
245+
246+
msgid""
247+
"Return true if the character *c* is a hexadecimal digit (``0-9``, ``a-f``, "
248+
"and ``A-F``)."
249+
msgstr""
250+
251+
msgid"Return the lowercase equivalent of the character *c*."
252+
msgstr""
253+
254+
msgid"Return the uppercase equivalent of the character *c*."
255+
msgstr""

‎c-api/curses.po‎

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
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 <EMAIL@ADDRESS>, 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-11-11 14:15+0000\n"
12+
"PO-Revision-Date:2025-11-11 14:16+0000\n"
13+
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
14+
"sv/)\n"
15+
"MIME-Version:1.0\n"
16+
"Content-Type:text/plain; charset=UTF-8\n"
17+
"Content-Transfer-Encoding:8bit\n"
18+
"Language:sv\n"
19+
"Plural-Forms:nplurals=2; plural=(n != 1);\n"
20+
21+
msgid"Curses C API"
22+
msgstr""
23+
24+
msgid""
25+
":mod:`curses` exposes a small C interface for extension modules. Consumers "
26+
"must include the header file :file:`py_curses.h` (which is not included by "
27+
"default by :file:`Python.h`) and :c:func:`import_curses` must be invoked, "
28+
"usually as part of the module initialisation function, to populate :c:var:"
29+
"`PyCurses_API`."
30+
msgstr""
31+
32+
msgid""
33+
"Neither the C API nor the pure Python :mod:`curses` module are compatible "
34+
"with subinterpreters."
35+
msgstr""
36+
37+
msgid""
38+
"Import the curses C API. The macro does not need a semi-colon to be called."
39+
msgstr""
40+
41+
msgid"On success, populate the :c:var:`PyCurses_API` pointer."
42+
msgstr""
43+
44+
msgid""
45+
"On failure, set :c:var:`PyCurses_API` to NULL and set an exception. The "
46+
"caller must check if an error occurred via :c:func:`PyErr_Occurred`:"
47+
msgstr""
48+
49+
msgid""
50+
"import_curses(); // semi-colon is optional but recommended\n"
51+
"if (PyErr_Occurred()) { /* cleanup */ }"
52+
msgstr""
53+
54+
msgid""
55+
"Dynamically allocated object containing the curses C API. This variable is "
56+
"only available once :c:macro:`import_curses` succeeds."
57+
msgstr""
58+
59+
msgid"``PyCurses_API[0]`` corresponds to :c:data:`PyCursesWindow_Type`."
60+
msgstr""
61+
62+
msgid""
63+
"``PyCurses_API[1]``, ``PyCurses_API[2]``, and ``PyCurses_API[3]`` are "
64+
"pointers to predicate functions of type ``int (*)(void)``."
65+
msgstr""
66+
67+
msgid""
68+
"When called, these predicates return whether :func:`curses.setupterm`, :func:"
69+
"`curses.initscr`, and :func:`curses.start_color` have been called "
70+
"respectively."
71+
msgstr""
72+
73+
msgid""
74+
"See also the convenience macros :c:macro:`PyCursesSetupTermCalled`, :c:macro:"
75+
"`PyCursesInitialised`, and :c:macro:`PyCursesInitialisedColor`."
76+
msgstr""
77+
78+
msgid""
79+
"The number of entries in this structure is subject to changes. Consider "
80+
"using :c:macro:`PyCurses_API_pointers` to check if new fields are available "
81+
"or not."
82+
msgstr""
83+
84+
msgid""
85+
"The number of accessible fields (``4``) in :c:var:`PyCurses_API`. This "
86+
"number is incremented whenever new fields are added."
87+
msgstr""
88+
89+
msgid""
90+
"The :ref:`heap type <heap-types>` corresponding to :class:`curses.window`."
91+
msgstr""
92+
93+
msgid""
94+
"Return true if *op* is a :class:`curses.window` instance, false otherwise."
95+
msgstr""
96+
97+
msgid""
98+
"The following macros are convenience macros expanding into C statements. In "
99+
"particular, they can only be used as ``macro;`` or ``macro``, but not "
100+
"``macro()`` or ``macro();``."
101+
msgstr""
102+
103+
msgid"Macro checking if :func:`curses.setupterm` has been called."
104+
msgstr""
105+
106+
msgid"The macro expansion is roughly equivalent to:"
107+
msgstr""
108+
109+
msgid""
110+
"{\n"
111+
" typedef int (*predicate_t)(void);\n"
112+
" predicate_t was_setupterm_called = (predicate_t)PyCurses_API[1];\n"
113+
" if (!was_setupterm_called()) {\n"
114+
" return NULL;\n"
115+
" }\n"
116+
"}"
117+
msgstr""
118+
119+
msgid"Macro checking if :func:`curses.initscr` has been called."
120+
msgstr""
121+
122+
msgid""
123+
"{\n"
124+
" typedef int (*predicate_t)(void);\n"
125+
" predicate_t was_initscr_called = (predicate_t)PyCurses_API[2];\n"
126+
" if (!was_initscr_called()) {\n"
127+
" return NULL;\n"
128+
" }\n"
129+
"}"
130+
msgstr""
131+
132+
msgid"Macro checking if :func:`curses.start_color` has been called."
133+
msgstr""
134+
135+
msgid""
136+
"{\n"
137+
" typedef int (*predicate_t)(void);\n"
138+
" predicate_t was_start_color_called = (predicate_t)PyCurses_API[3];\n"
139+
" if (!was_start_color_called()) {\n"
140+
" return NULL;\n"
141+
" }\n"
142+
"}"
143+
msgstr""
144+
145+
msgid"Internal data"
146+
msgstr""
147+
148+
msgid""
149+
"The following objects are exposed by the C API but should be considered "
150+
"internal-only."
151+
msgstr""
152+
153+
msgid"Name of the curses capsule to pass to :c:func:`PyCapsule_Import`."
154+
msgstr""
155+
156+
msgid"Internal usage only. Use :c:macro:`import_curses` instead."
157+
msgstr""

‎c-api/descriptor.po‎

Lines changed: 41 additions & 1 deletion
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-05 14:15+0000\n"
14+
"POT-Creation-Date:2025-11-11 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/"
@@ -38,3 +38,43 @@ msgid ""
3838
"or ``0`` if it describes a method. *descr* must be a descriptor object; "
3939
"there is no error checking."
4040
msgstr""
41+
42+
msgid"Built-in descriptors"
43+
msgstr""
44+
45+
msgid""
46+
"The type object for super objects. This is the same object as :class:`super` "
47+
"in the Python layer."
48+
msgstr""
49+
50+
msgid""
51+
"The type of class method objects. This is the same object as :class:"
52+
"`classmethod` in the Python layer."
53+
msgstr""
54+
55+
msgid""
56+
"Create a new :class:`classmethod` object wrapping *callable*. *callable* "
57+
"must be a callable object and must not be ``NULL``."
58+
msgstr""
59+
60+
msgid""
61+
"On success, this function returns a :term:`strong reference` to a new class "
62+
"method descriptor. On failure, this function returns ``NULL`` with an "
63+
"exception set."
64+
msgstr""
65+
66+
msgid""
67+
"The type of static method objects. This is the same object as :class:"
68+
"`staticmethod` in the Python layer."
69+
msgstr""
70+
71+
msgid""
72+
"Create a new :class:`staticmethod` object wrapping *callable*. *callable* "
73+
"must be a callable object and must not be ``NULL``."
74+
msgstr""
75+
76+
msgid""
77+
"On success, this function returns a :term:`strong reference` to a new static "
78+
"method descriptor. On failure, this function returns ``NULL`` with an "
79+
"exception set."
80+
msgstr""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp