|
5 | 5 | # |
6 | 6 | # Translators: |
7 | 7 | # Maciej Olko <[email protected]>, 2024 |
8 | | -# Stanislaw Ulbrych, 2024 |
| 8 | +# Stan Ulbrych, 2025 |
9 | 9 | # |
10 | 10 | #, fuzzy |
11 | 11 | msgid "" |
12 | 12 | msgstr "" |
13 | 13 | "Project-Id-Version: Python 3.13\n" |
14 | 14 | "Report-Msgid-Bugs-To: \n" |
15 | | -"POT-Creation-Date: 2025-01-10 14:17+0000\n" |
| 15 | +"POT-Creation-Date: 2025-01-24 14:16+0000\n" |
16 | 16 | "PO-Revision-Date: 2021-06-28 01:49+0000\n" |
17 | | -"Last-Translator: Stanislaw Ulbrych, 2024\n" |
| 17 | +"Last-Translator: Stan Ulbrych, 2025\n" |
18 | 18 | "Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n" |
19 | 19 | "MIME-Version: 1.0\n" |
20 | 20 | "Content-Type: text/plain; charset=UTF-8\n" |
@@ -854,6 +854,9 @@ msgid "" |
854 | 854 | "... + 3}\"\n" |
855 | 855 | "'abc5'" |
856 | 856 | msgstr "" |
| 857 | +">>> f\"abc{a # This is a comment }\"\n" |
| 858 | +"... + 3}\"\n" |
| 859 | +"'abc5'" |
857 | 860 |
|
858 | 861 | msgid "" |
859 | 862 | "Prior to Python 3.7, an :keyword:`await` expression and comprehensions " |
@@ -950,6 +953,9 @@ msgid "" |
950 | 953 | ">>> f\"abc {a[\"x\"]} def\"\n" |
951 | 954 | "'abc 2 def'" |
952 | 955 | msgstr "" |
| 956 | +">>> a = dict(x=2)\n" |
| 957 | +">>> f\"abc {a[\"x\"]} def\"\n" |
| 958 | +"'abc 2 def'" |
953 | 959 |
|
954 | 960 | msgid "" |
955 | 961 | "Prior to Python 3.12, reuse of the same quoting type of the outer f-string " |
@@ -987,6 +993,11 @@ msgid "" |
987 | 993 | ">>> foo.__doc__ is None\n" |
988 | 994 | "True" |
989 | 995 | msgstr "" |
| 996 | +">>> def foo():\n" |
| 997 | +"... f\"Not a docstring\"\n" |
| 998 | +"...\n" |
| 999 | +">>> foo.__doc__ is None\n" |
| 1000 | +"True" |
990 | 1001 |
|
991 | 1002 | msgid "" |
992 | 1003 | "See also :pep:`498` for the proposal that added formatted string literals, " |
|
0 commit comments