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

Commit88e7366

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

File tree

3 files changed

+124
-7
lines changed

3 files changed

+124
-7
lines changed

‎howto/remote_debugging.po‎

Lines changed: 107 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-09-11 14:18+0000\n"
14+
"POT-Creation-Date:2025-09-13 14:14+0000\n"
1515
"PO-Revision-Date:2025-08-15 19:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -25,6 +25,112 @@ msgstr ""
2525
msgid"Remote debugging attachment protocol"
2626
msgstr""
2727

28+
msgid""
29+
"This protocol enables external tools to attach to a running CPython process "
30+
"and execute Python code remotely."
31+
msgstr""
32+
33+
msgid""
34+
"Most platforms require elevated privileges to attach to another Python "
35+
"process."
36+
msgstr""
37+
38+
msgid"Permission requirements"
39+
msgstr""
40+
41+
msgid""
42+
"Attaching to a running Python process for remote debugging requires elevated "
43+
"privileges on most platforms. The specific requirements and troubleshooting "
44+
"steps depend on your operating system:"
45+
msgstr""
46+
47+
msgid"Linux"
48+
msgstr""
49+
50+
msgid""
51+
"The tracer process must have the ``CAP_SYS_PTRACE`` capability or equivalent "
52+
"privileges. You can only trace processes you own and can signal. Tracing may "
53+
"fail if the process is already being traced, or if it is running with set-"
54+
"user-ID or set-group-ID. Security modules like Yama may further restrict "
55+
"tracing."
56+
msgstr""
57+
58+
msgid"To temporarily relax ptrace restrictions (until reboot), run:"
59+
msgstr""
60+
61+
msgid"``echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope``"
62+
msgstr""
63+
64+
msgid""
65+
"Disabling ``ptrace_scope`` reduces system hardening and should only be done "
66+
"in trusted environments."
67+
msgstr""
68+
69+
msgid""
70+
"If running inside a container, use ``--cap-add=SYS_PTRACE`` or ``--"
71+
"privileged``, and run as root if needed."
72+
msgstr""
73+
74+
msgid"Try re-running the command with elevated privileges:"
75+
msgstr""
76+
77+
msgid"``sudo -E !!``"
78+
msgstr""
79+
80+
msgid"macOS"
81+
msgstr""
82+
83+
msgid""
84+
"To attach to another process, you typically need to run your debugging tool "
85+
"with elevated privileges. This can be done by using ``sudo`` or running as "
86+
"root."
87+
msgstr""
88+
89+
msgid""
90+
"Even when attaching to processes you own, macOS may block debugging unless "
91+
"the debugger is run with root privileges due to system security restrictions."
92+
msgstr""
93+
94+
msgid"Windows"
95+
msgstr""
96+
97+
msgid""
98+
"To attach to another process, you usually need to run your debugging tool "
99+
"with administrative privileges. Start the command prompt or terminal as "
100+
"Administrator."
101+
msgstr""
102+
103+
msgid""
104+
"Some processes may still be inaccessible even with Administrator rights, "
105+
"unless you have the ``SeDebugPrivilege`` privilege enabled."
106+
msgstr""
107+
108+
msgid""
109+
"To resolve file or folder access issues, adjust the security permissions:"
110+
msgstr""
111+
112+
msgid"Right-click the file or folder and select **Properties**."
113+
msgstr""
114+
115+
msgid"Go to the **Security** tab to view users and groups with access."
116+
msgstr""
117+
118+
msgid"Click **Edit** to modify permissions."
119+
msgstr""
120+
121+
msgid"Select your user account."
122+
msgstr""
123+
124+
msgid"In **Permissions**, check **Read** or **Full control** as needed."
125+
msgstr""
126+
127+
msgid"Click **Apply**, then **OK** to confirm."
128+
msgstr""
129+
130+
msgid""
131+
"Ensure you've satisfied all :ref:`permission-requirements` before proceeding."
132+
msgstr""
133+
28134
msgid""
29135
"This section describes the low-level protocol that enables external tools to "
30136
"inject and execute a Python script within a running CPython process."

‎library/csv.po‎

Lines changed: 6 additions & 5 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-09-11 14:18+0000\n"
14+
"POT-Creation-Date:2025-09-13 14:14+0000\n"
1515
"PO-Revision-Date:2025-08-15 19:00+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -491,7 +491,8 @@ msgstr ""
491491

492492
msgid""
493493
"When :const:`True`, spaces immediately following the *delimiter* are "
494-
"ignored. The default is :const:`False`."
494+
"ignored. The default is :const:`False`. When combining ``delimiter=' '`` "
495+
"with ``skipinitialspace=True``, unquoted empty fields are not allowed."
495496
msgstr""
496497

497498
msgid""
@@ -680,9 +681,9 @@ msgstr ""
680681

681682
msgid""
682683
"If ``newline=''`` is not specified, newlines embedded inside quoted fields "
683-
"will not be interpreted correctly, and on platforms that use ``\\r\\n`` "
684-
"linendings on write an extra ``\\r`` will be added. It should always be "
685-
"safeto specify ``newline=''``, since the csv module does its own (:term:"
684+
"will not be interpreted correctly, and on platforms that use ``\\r\\n``line"
685+
"endings on write an extra ``\\r`` will be added. It should always be safe "
686+
"to specify ``newline=''``, since the csv module does its own (:term:"
686687
"`universal <universal newlines>`) newline handling."
687688
msgstr""
688689

‎whatsnew/changelog.po‎

Lines changed: 11 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-09-11 14:18+0000\n"
14+
"POT-Creation-Date: 2025-09-13 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-15 19:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Swedish (https://app.transifex.com/python-doc/teams/5390/"
@@ -90,11 +90,21 @@ msgstr ""
9090
msgid "Core and Builtins"
9191
msgstr ""
9292

93+
msgid ""
94+
":gh:`71810`: Raise :exc:`OverflowError` for ``(-1).to_bytes()`` for signed "
95+
"conversions when bytes count is zero. Patch by Sergey B Kirpichev."
96+
msgstr ""
97+
9398
msgid ""
9499
":gh:`138192`: Fix :mod:`contextvars` initialization so that all "
95100
"subinterpreters are assigned the :attr:`~contextvars.Token.MISSING` value."
96101
msgstr ""
97102

103+
msgid ""
104+
":gh:`138479`: Fix a crash when a generic object's ``__typing_subst__`` "
105+
"returns an object that isn't a :class:`tuple`."
106+
msgstr ""
107+
98108
msgid ""
99109
":gh:`138372`: Fix :exc:`SyntaxWarning` emitted for erroneous subscript "
100110
"expressions involving :ref:`template string literals <t-strings>`. Patch by "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp