@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.14\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-09-16 17:23 +0000\n "
14+ "POT-Creation-Date :2025-10-05 14:11 +0000\n "
1515"PO-Revision-Date :2025-09-16 00:01+0000\n "
1616"Last-Translator :python-doc bot, 2025\n "
1717"Language-Team :Swedish (https://app.transifex.com/python-doc/teams/5390/ "
@@ -44,7 +44,7 @@ msgid ""
4444"Template strings are a mechanism for custom string processing. They have the "
4545"full flexibility of Python's :ref:`f-strings`, but return a :class:"
4646"`Template` instance that gives access to the static and interpolated (in "
47- "curlybraces ) parts of a string *before* they are combined."
47+ "curlybrackets ) parts of a string *before* they are combined."
4848msgstr ""
4949
5050msgid ""
@@ -180,14 +180,19 @@ msgstr ""
180180msgid "The evaluated value of the interpolation."
181181msgstr ""
182182
183- msgid "The text of a valid Python expression, or an empty string."
183+ msgid ""
184+ "For interpolations created by t-string literals, :attr:`!expression` is the "
185+ "expression text found inside the curly brackets (``{`` & ``}``), including "
186+ "any whitespace, excluding the curly brackets themselves, and ending before "
187+ "the first ``!``, ``:``, or ``=`` if any is present. For manually created "
188+ "interpolations, :attr:`!expression` is the arbitrary string provided when "
189+ "constructing the interpolation instance."
184190msgstr ""
185191
186192msgid ""
187- "The :attr:`.expression` is the original text of the interpolation's Python "
188- "expression, if the interpolation was created from a t-string literal. "
189- "Developers creating interpolations manually should either set this to an "
190- "empty string or choose a suitable valid Python expression."
193+ "We recommend using valid Python expressions or the empty string for the "
194+ "``expression`` field of manually created :class:`!Interpolation` instances, "
195+ "although this is not enforced at runtime."
191196msgstr ""
192197
193198msgid "The conversion to apply to the value, or ``None``."
@@ -231,6 +236,9 @@ msgstr ""
231236msgid "The evaluated, in-scope result of the interpolation."
232237msgstr ""
233238
239+ msgid "The text of a valid Python expression, or an empty string."
240+ msgstr ""
241+
234242msgid ""
235243"The :ref:`conversion <formatstrings>` to be used, one of ``None``, ``'a'``, "
236244"``'r'``, or ``'s'``."