44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
7- # python-doc bot, 2025
7+ # python-doc bot, 2026
88#
99#, fuzzy
1010msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-06-20 14:21 +0000\n "
14+ "POT-Creation-Date : 2026-04-05 14:30 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
16- "Last-Translator : python-doc bot, 2025 \n "
16+ "Last-Translator : python-doc bot, 2026 \n "
1717"Language-Team : Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n "
1818"MIME-Version : 1.0\n "
1919"Content-Type : text/plain; charset=UTF-8\n "
@@ -22,7 +22,7 @@ msgstr ""
2222"Plural-Forms : nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n "
2323
2424#: ../../howto/regex.rst:5
25- msgid "Regular Expression HOWTO"
25+ msgid "Regular expression HOWTO"
2626msgstr ""
2727
2828#: ../../howto/regex.rst:0
@@ -84,7 +84,7 @@ msgid ""
8484msgstr ""
8585
8686#: ../../howto/regex.rst:51
87- msgid "Simple Patterns "
87+ msgid "Simple patterns "
8888msgstr ""
8989
9090#: ../../howto/regex.rst:53
@@ -102,7 +102,7 @@ msgid ""
102102msgstr ""
103103
104104#: ../../howto/regex.rst:63
105- msgid "Matching Characters "
105+ msgid "Matching characters "
106106msgstr ""
107107
108108#: ../../howto/regex.rst:65
@@ -273,7 +273,7 @@ msgid ""
273273msgstr ""
274274
275275#: ../../howto/regex.rst:163
276- msgid "Repeating Things "
276+ msgid "Repeating things "
277277msgstr ""
278278
279279#: ../../howto/regex.rst:165
@@ -389,7 +389,7 @@ msgid ""
389389" a ``'d'``."
390390msgstr ""
391391
392- #: ../../howto/regex.rst:209 ../../howto/regex.rst:213
392+ #: ../../howto/regex.rst:209
393393msgid "6"
394394msgstr ""
395395
@@ -401,6 +401,10 @@ msgstr ""
401401msgid "Back up again, so that ``[bcd]*`` is only matching ``bc``."
402402msgstr ""
403403
404+ #: ../../howto/regex.rst:213
405+ msgid "7"
406+ msgstr ""
407+
404408#: ../../howto/regex.rst:213
405409msgid ""
406410"Try ``b`` again. This time the character at the current position is "
@@ -467,7 +471,7 @@ msgid ""
467471msgstr ""
468472
469473#: ../../howto/regex.rst:259
470- msgid "Using Regular Expressions "
474+ msgid "Using regular expressions "
471475msgstr ""
472476
473477#: ../../howto/regex.rst:261
@@ -479,7 +483,7 @@ msgid ""
479483msgstr ""
480484
481485#: ../../howto/regex.rst:268
482- msgid "Compiling Regular Expressions "
486+ msgid "Compiling regular expressions "
483487msgstr ""
484488
485489#: ../../howto/regex.rst:270
@@ -526,7 +530,7 @@ msgid ""
526530msgstr ""
527531
528532#: ../../howto/regex.rst:299
529- msgid "The Backslash Plague "
533+ msgid "The backslash plague "
530534msgstr ""
531535
532536#: ../../howto/regex.rst:301
@@ -605,9 +609,9 @@ msgstr ""
605609msgid ""
606610"In addition, special escape sequences that are valid in regular expressions,"
607611" but not valid as Python string literals, now result in a "
608- ":exc:`DeprecationWarning ` and will eventually become a :exc:`SyntaxError`, "
609- "which means the sequences will be invalid if raw string notation or escaping"
610- " the backslashes isn't used."
612+ ":exc:`SyntaxWarning ` and will eventually become a :exc:`SyntaxError`, which "
613+ "means the sequences will be invalid if raw string notation or escaping the "
614+ "backslashes isn't used."
611615msgstr ""
612616
613617#: ../../howto/regex.rst:344
@@ -639,7 +643,7 @@ msgid "``r\"\\w+\\s+\\1\"``"
639643msgstr ""
640644
641645#: ../../howto/regex.rst:355
642- msgid "Performing Matches "
646+ msgid "Performing matches "
643647msgstr ""
644648
645649#: ../../howto/regex.rst:357
@@ -681,7 +685,7 @@ msgid "``findall()``"
681685msgstr ""
682686
683687#: ../../howto/regex.rst:371
684- msgid "Find all substrings where the RE matches, and returns them as a list."
688+ msgid "Find all substrings where the RE matches, and return them as a list."
685689msgstr ""
686690
687691#: ../../howto/regex.rst:374
@@ -690,7 +694,7 @@ msgstr ""
690694
691695#: ../../howto/regex.rst:374
692696msgid ""
693- "Find all substrings where the RE matches, and returns them as an "
697+ "Find all substrings where the RE matches, and return them as an "
694698":term:`iterator`."
695699msgstr ""
696700
@@ -865,8 +869,8 @@ msgid ""
865869"The ``r`` prefix, making the literal a raw string literal, is needed in this"
866870" example because escape sequences in a normal \" cooked\" string literal that"
867871" are not recognized by Python, as opposed to regular expressions, now result"
868- " in a :exc:`DeprecationWarning ` and will eventually become a "
869- ":exc:`SyntaxError`. See :ref:`the-backslash-plague`."
872+ " in a :exc:`SyntaxWarning ` and will eventually become a :exc:`SyntaxError`. "
873+ " See :ref:`the-backslash-plague`."
870874msgstr ""
871875
872876#: ../../howto/regex.rst:479
@@ -891,7 +895,7 @@ msgid ""
891895msgstr ""
892896
893897#: ../../howto/regex.rst:495
894- msgid "Module-Level Functions "
898+ msgid "Module-level functions "
895899msgstr ""
896900
897901#: ../../howto/regex.rst:497
@@ -929,7 +933,7 @@ msgid ""
929933msgstr ""
930934
931935#: ../../howto/regex.rst:522
932- msgid "Compilation Flags "
936+ msgid "Compilation flags "
933937msgstr ""
934938
935939#: ../../howto/regex.rst:526
@@ -1088,7 +1092,7 @@ msgid ""
10881092"the whitespace is in a character class or preceded by an unescaped "
10891093"backslash; this lets you organize and indent the RE more clearly. This flag"
10901094" also lets you put comments within a RE that will be ignored by the engine; "
1091- "comments are marked by a ``'#'`` that's neither in a character class or "
1095+ "comments are marked by a ``'#'`` that's neither in a character class nor "
10921096"preceded by an unescaped backslash."
10931097msgstr ""
10941098
@@ -1130,7 +1134,7 @@ msgid ""
11301134msgstr ""
11311135
11321136#: ../../howto/regex.rst:673
1133- msgid "More Pattern Power "
1137+ msgid "More pattern power "
11341138msgstr ""
11351139
11361140#: ../../howto/regex.rst:675
@@ -1141,7 +1145,7 @@ msgid ""
11411145msgstr ""
11421146
11431147#: ../../howto/regex.rst:683
1144- msgid "More Metacharacters "
1148+ msgid "More metacharacters "
11451149msgstr ""
11461150
11471151#: ../../howto/regex.rst:685
@@ -1475,7 +1479,7 @@ msgid ""
14751479msgstr ""
14761480
14771481#: ../../howto/regex.rst:879
1478- msgid "Non-capturing and Named Groups "
1482+ msgid "Non-capturing and named groups "
14791483msgstr ""
14801484
14811485#: ../../howto/regex.rst:881
@@ -1636,7 +1640,7 @@ msgid ""
16361640msgstr ""
16371641
16381642#: ../../howto/regex.rst:983
1639- msgid "Lookahead Assertions "
1643+ msgid "Lookahead assertions "
16401644msgstr ""
16411645
16421646#: ../../howto/regex.rst:985
@@ -1777,7 +1781,7 @@ msgid "``.*[.](?!bat$|exe$)[^.]*$``"
17771781msgstr ""
17781782
17791783#: ../../howto/regex.rst:1065
1780- msgid "Modifying Strings "
1784+ msgid "Modifying strings "
17811785msgstr ""
17821786
17831787#: ../../howto/regex.rst:1067
@@ -1816,7 +1820,7 @@ msgid ""
18161820msgstr ""
18171821
18181822#: ../../howto/regex.rst:1087
1819- msgid "Splitting Strings "
1823+ msgid "Splitting strings "
18201824msgstr ""
18211825
18221826#: ../../howto/regex.rst:1089
@@ -1890,7 +1894,7 @@ msgid ""
18901894msgstr ""
18911895
18921896#: ../../howto/regex.rst:1141
1893- msgid "Search and Replace "
1897+ msgid "Search and replace "
18941898msgstr ""
18951899
18961900#: ../../howto/regex.rst:1143
@@ -2044,7 +2048,7 @@ msgid ""
20442048msgstr ""
20452049
20462050#: ../../howto/regex.rst:1240
2047- msgid "Common Problems "
2051+ msgid "Common problems "
20482052msgstr ""
20492053
20502054#: ../../howto/regex.rst:1242
@@ -2056,7 +2060,7 @@ msgid ""
20562060msgstr ""
20572061
20582062#: ../../howto/regex.rst:1248
2059- msgid "Use String Methods "
2063+ msgid "Use string methods "
20602064msgstr ""
20612065
20622066#: ../../howto/regex.rst:1250
@@ -2156,7 +2160,7 @@ msgid ""
21562160msgstr ""
21572161
21582162#: ../../howto/regex.rst:1314
2159- msgid "Greedy versus Non-Greedy "
2163+ msgid "Greedy versus non-greedy "
21602164msgstr ""
21612165
21622166#: ../../howto/regex.rst:1316
@@ -2271,9 +2275,9 @@ msgstr ""
22712275#: ../../howto/regex.rst:1390
22722276msgid ""
22732277"Regular expressions are a complicated topic. Did this document help you "
2274- "understand them? Were there parts that were unclear, or Problems you "
2278+ "understand them? Were there parts that were unclear, or problems you "
22752279"encountered that weren't covered here? If so, please send suggestions for "
2276- "improvements to the author ."
2280+ "improvements to the :ref:`issue tracker <using-the-tracker>` ."
22772281msgstr ""
22782282
22792283#: ../../howto/regex.rst:1395
0 commit comments