Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7bfbd5c

Browse files
Update translations
1 parent 4104282 commit 7bfbd5c

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

potodo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,15 @@
262262
- windows.po 374 / 378 ( 98.0% translated).
263263

264264

265-
# whatsnew (74.68% done)
265+
# whatsnew (74.69% done)
266266

267267
- 2.3.po 327 / 387 ( 84.0% translated).
268268
- 2.4.po 266 / 319 ( 83.0% translated).
269269
- 2.5.po 384 / 452 ( 84.0% translated).
270270
- 2.6.po 537 / 626 ( 85.0% translated).
271271
- 3.0.po 192 / 212 ( 90.0% translated).
272272
- 3.1.po 114 / 132 ( 86.0% translated).
273-
- 3.10.po 529 / 550 ( 96.0% translated).
273+
- 3.10.po 530 / 550 ( 96.0% translated).
274274
- 3.12.po 832 / 833 ( 99.0% translated).
275275
- 3.2.po 65 / 576 ( 11.0% translated).
276276
- 3.3.po 137 / 682 ( 20.0% translated).

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "66.74%", "translated": 41297, "entries": 61877, "updated_at": "2025-03-02T23:27:47+00:00Z"}
1+
{"completion": "66.74%", "translated": 41298, "entries": 61877, "updated_at": "2025-03-03T23:28:03+00:00Z"}

whatsnew/3.10.po

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-01-03 14:53+0000\n"
14+
"POT-Creation-Date: 2025-02-14 14:53+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:34+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -1109,6 +1109,22 @@ msgid ""
11091109
" case _:\n"
11101110
" print(\"Not a point\")"
11111111
msgstr ""
1112+
"class Point:\n"
1113+
" x: int\n"
1114+
" y: int\n"
1115+
"\n"
1116+
"def location(point):\n"
1117+
" match point:\n"
1118+
" case Point(x=0, y=0):\n"
1119+
" print(\"O ponto está na origem.\")\n"
1120+
" case Point(x=0, y=y):\n"
1121+
" print(f \"Y={y} e o ponto está no eixo y.\")\n"
1122+
" case Point(x=x, y=0):\n"
1123+
" print(f \"X={x} e o ponto está no eixo x.\")\n"
1124+
" case Point():\n"
1125+
" print(\"O ponto está localizado em outro lugar no plano.\")\n"
1126+
" case _:\n"
1127+
" print(\"Não é um ponto\")"
11121128

11131129
#: ../../whatsnew/3.10.rst:574
11141130
msgid "Patterns with positional parameters"

0 commit comments

Comments
 (0)