Skip to content

Commit 258f289

Browse files
Update translations
1 parent 2516936 commit 258f289

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

howto/regex.po

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version: Python 3.9\n"
2020
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2025-05-16 17:24+0000\n"
21+
"POT-Creation-Date: 2025-06-06 17:28+0000\n"
2222
"PO-Revision-Date: 2017-02-16 17:45+0000\n"
2323
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
2424
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -2011,9 +2011,9 @@ msgid ""
20112011
"requiring that the first character of the extension is not a ``b``. This is "
20122012
"wrong, because the pattern also doesn't match ``foo.bar``."
20132013
msgstr ""
2014-
"``.*[.][^b].*$`` A primeira tentativa acima tenta excluir ``bat``, exigindo "
2015-
"que o primeiro caractere da extensão não seja um ``b``. Isso é errado, "
2016-
"porque o padrão também não corresponde a ``foo.bar``."
2014+
"``.*[.][^b].*$`` A primeira tentativa acima tenta excluir bat, exigindo que "
2015+
"o primeiro caractere da extensão não é um b. Isso é errado, porque o padrão "
2016+
"também não corresponde a ``foo.bar``."
20172017

20182018
#: ../../howto/regex.rst:1019
20192019
msgid "``.*[.]([^b]..|.[^a].|..[^t])$``"
@@ -2076,11 +2076,11 @@ msgid ""
20762076
"only starts with ``bat``, will be allowed. The ``[^.]*`` makes sure that "
20772077
"the pattern works when there are multiple dots in the filename."
20782078
msgstr ""
2079-
"``.*[.](?!bat$)[^.]*$`` A lookahead negativa significa: se a expressão "
2080-
"``bat`` não corresponder até este momento, tente o resto do padrão; se "
2081-
"``bat$`` tem correspondência, todo o padrão irá falhar. O final ``$`` é "
2082-
"necessário para garantir que algo como ``sample.batch``, onde a extensão só "
2083-
"começa com o ``bat``, será permitido."
2079+
"``.*[.](?!bat$).*$`` O lookahead negativo significa: se a expressão ``bat`` "
2080+
"não corresponder até este momento, tente o resto do padrão; se ``bat$`` tem "
2081+
"correspondência, todo o padrão irá falhar. O final ``$`` é necessário para "
2082+
"garantir que algo como ``sample.batch``, onde a extensão só começa com o "
2083+
"``bat``, será permitido."
20842084

20852085
#: ../../howto/regex.rst:1049
20862086
msgid ""

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "64.58%", "translated": 31982, "entries": 49524, "updated_at": "2025-06-20T00:46:38+00:00Z"}
1+
{"completion": "64.58%", "translated": 31982, "entries": 49524, "updated_at": "2025-06-21T00:44:49+00:00Z"}

0 commit comments

Comments
 (0)