Skip to content

Commit 683775e

Browse files
Update translations
1 parent 609cf9c commit 683775e

File tree

4 files changed

+11
-15
lines changed

4 files changed

+11
-15
lines changed

howto/regex.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,9 +2020,9 @@ msgid ""
20202020
"requiring that the first character of the extension is not a ``b``. This is "
20212021
"wrong, because the pattern also doesn't match ``foo.bar``."
20222022
msgstr ""
2023-
"``.*[.][^b].*$`` A primeira tentativa acima tenta excluir ``bat``, exigindo "
2024-
"que o primeiro caractere da extensão não seja um ``b``. Isso é errado, "
2025-
"porque o padrão também não corresponde a ``foo.bar``."
2023+
"``.*[.][^b].*$`` A primeira tentativa acima tenta excluir bat, exigindo que "
2024+
"o primeiro caractere da extensão não é um b. Isso é errado, porque o padrão "
2025+
"também não corresponde a ``foo.bar``."
20262026

20272027
#: ../../howto/regex.rst:1024
20282028
msgid "``.*[.]([^b]..|.[^a].|..[^t])$``"
@@ -2085,11 +2085,11 @@ msgid ""
20852085
"only starts with ``bat``, will be allowed. The ``[^.]*`` makes sure that "
20862086
"the pattern works when there are multiple dots in the filename."
20872087
msgstr ""
2088-
"``.*[.](?!bat$)[^.]*$`` A lookahead negativa significa: se a expressão "
2089-
"``bat`` não corresponder até este momento, tente o resto do padrão; se "
2090-
"``bat$`` tem correspondência, todo o padrão irá falhar. O final ``$`` é "
2091-
"necessário para garantir que algo como ``sample.batch``, onde a extensão só "
2092-
"começa com o ``bat``, será permitido."
2088+
"``.*[.](?!bat$).*$`` O lookahead negativo significa: se a expressão ``bat`` "
2089+
"não corresponder até este momento, tente o resto do padrão; se ``bat$`` tem "
2090+
"correspondência, todo o padrão irá falhar. O final ``$`` é necessário para "
2091+
"garantir que algo como ``sample.batch``, onde a extensão só começa com o "
2092+
"``bat``, será permitido."
20932093

20942094
#: ../../howto/regex.rst:1054
20952095
msgid ""

library/pkgutil.po

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,6 @@ msgid ""
197197
"containing fullname, otherwise they will be all registered top level finders "
198198
"(i.e. those on both :data:`sys.meta_path` and :data:`sys.path_hooks`)."
199199
msgstr ""
200-
"Se fullname contiver ``'.'``, os localizadores serão para o pacote que "
201-
"contém fullname, caso contrário, serão todos os localizadores de nível "
202-
"superior registrados (ou seja, aqueles em :data:`sys.meta_path` e :data:`sys."
203-
"path_hooks`)."
204200

205201
#: ../../library/pkgutil.rst:135
206202
msgid ""

potodo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686

8787

88-
# library (63.51% done)
88+
# library (63.50% done)
8989

9090
- _thread.po 49 / 51 ( 96.0% translated).
9191
- abc.po 48 / 49 ( 97.0% translated).
@@ -199,7 +199,7 @@
199199
- pathlib.po 217 / 230 ( 94.0% translated).
200200
- pdb.po 114 / 115 ( 99.0% translated).
201201
- pipes.po 5 / 20 ( 25.0% translated).
202-
- pkgutil.po 40 / 51 ( 78.0% translated).
202+
- pkgutil.po 39 / 51 ( 76.0% translated).
203203
- platform.po 54 / 57 ( 94.0% translated).
204204
- plistlib.po 42 / 43 ( 97.0% translated).
205205
- poplib.po 10 / 54 ( 18.0% translated).

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "67.82%", "translated": 37853, "entries": 55811, "updated_at": "2025-06-19T23:54:36+00:00Z"}
1+
{"completion": "67.82%", "translated": 37852, "entries": 55811, "updated_at": "2025-06-20T23:54:39+00:00Z"}

0 commit comments

Comments
 (0)