Skip to content

Commit 56c72f3

Browse files
committed
Update translations to 5ff9bc5.
1 parent 5ff9bc5 commit 56c72f3

7 files changed

Lines changed: 55 additions & 9 deletions

File tree

docs/locales/de/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
88
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
99
"Language-Team: de <LL@li.org>\n"

docs/locales/es/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: 2026-04-10 19:09+0000\n"
88
"Last-Translator: Francisco Serrador <fserrador@gmail.com>\n"
99
"Language-Team: Spanish <https://hosted.weblate.org/projects/beeware/tutorial/es/>\n"

docs/locales/fr/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: 2026-04-06 20:09+0000\n"
88
"Last-Translator: kursk140 <yannick.monnier.1@gmail.com>\n"
99
"Language-Team: French <https://hosted.weblate.org/projects/beeware/tutorial/fr/>\n"

docs/locales/it/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: 2026-03-30 09:09+0000\n"
88
"Last-Translator: tfr tint <tfrtint@gmail.com>\n"
99
"Language-Team: Italian <https://hosted.weblate.org/projects/beeware/tutorial/it/>\n"

docs/locales/pt/translations.po

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
#
22
msgid ""
3-
msgstr "Project-Id-Version: BeeWare 0.1\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2026-06-06 20:01+0000\nPO-Revision-Date: 2026-06-07 01:01+0000\nLast-Translator: Américo Monteiro <a_monteiro@gmx.com>\nLanguage-Team: Portuguese <https://hosted.weblate.org/projects/beeware/tutorial/pt/>\nLanguage: pt\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nPlural-Forms: nplurals=2; plural=n > 1;\nX-Generator: Weblate 2026.6\n"
3+
msgstr ""
4+
"Project-Id-Version: BeeWare 0.1\n"
5+
"Report-Msgid-Bugs-To: \n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
7+
"PO-Revision-Date: 2026-06-07 01:01+0000\n"
8+
"Last-Translator: Américo Monteiro <a_monteiro@gmx.com>\n"
9+
"Language-Team: Portuguese <https://hosted.weblate.org/projects/beeware/tutorial/pt/>\n"
10+
"Language: pt\n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: 8bit\n"
14+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
15+
"X-Generator: Translate Toolkit 3.19.11\n"
416

517
#: docs/en/SUMMARY.md:5
618
msgid "[Tutorial 0 - Let's get set up!]{1}"
@@ -2826,7 +2838,36 @@ msgid ""
28262838
"\n"
28272839
" def say_hello(self, widget):\n"
28282840
" print(f\"Hello, {self.name_input.value}\")"
2829-
msgstr "class HelloWorld(toga.App):\n def startup(self):\n main_box = toga.Box(direction=COLUMN)\n\n name_label = toga.Label(\n \"O seu nome: \",\n margin=(0, 5),\n )\n self.name_input = toga.TextInput(flex=1)\n\n name_box = toga.Box(direction=ROW, margin=5)\n name_box.add(name_label)\n name_box.add(self.name_input)\n\n button = toga.Button(\n \"Diz Olá!\",\n on_press=self.say_hello,\n margin=5,\n )\n\n main_box.add(name_box)\n main_box.add(button)\n\n self.main_window = toga.MainWindow(title=self.formal_name)\n self.main_window.content = main_box\n self.main_window.show()\n\n def say_hello(self, widget):\n print(f\"Olá, {self.name_input.value}\")"
2841+
msgstr ""
2842+
"class HelloWorld(toga.App):\n"
2843+
" def startup(self):\n"
2844+
" main_box = toga.Box(direction=COLUMN)\n"
2845+
"\n"
2846+
" name_label = toga.Label(\n"
2847+
" \"O seu nome: \",\n"
2848+
" margin=(0, 5),\n"
2849+
" )\n"
2850+
" self.name_input = toga.TextInput(flex=1)\n"
2851+
"\n"
2852+
" name_box = toga.Box(direction=ROW, margin=5)\n"
2853+
" name_box.add(name_label)\n"
2854+
" name_box.add(self.name_input)\n"
2855+
"\n"
2856+
" button = toga.Button(\n"
2857+
" \"Diz Olá!\",\n"
2858+
" on_press=self.say_hello,\n"
2859+
" margin=5,\n"
2860+
" )\n"
2861+
"\n"
2862+
" main_box.add(name_box)\n"
2863+
" main_box.add(button)\n"
2864+
"\n"
2865+
" self.main_window = toga.MainWindow(title=self.formal_name)\n"
2866+
" self.main_window.content = main_box\n"
2867+
" self.main_window.show()\n"
2868+
"\n"
2869+
" def say_hello(self, widget):\n"
2870+
" print(f\"Olá, {self.name_input.value}\")"
28302871

28312872
#: docs/en/tutorial/tutorial-2.md:147
28322873
msgid "Let's look in detail at what has changed."
@@ -2867,7 +2908,12 @@ msgid ""
28672908
" margin=(0, 5),\n"
28682909
")\n"
28692910
"self.name_input = toga.TextInput(flex=1)"
2870-
msgstr "name_label = toga.Label(\n \"O seu nome: \",\n margin=(0, 5),\n)\nself.name_input = toga.TextInput(flex=1)"
2911+
msgstr ""
2912+
"name_label = toga.Label(\n"
2913+
" \"O seu nome: \",\n"
2914+
" margin=(0, 5),\n"
2915+
")\n"
2916+
"self.name_input = toga.TextInput(flex=1)"
28712917

28722918
#: docs/en/tutorial/tutorial-2.md:178
28732919
#, fuzzy

docs/locales/zh_CN/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: 2025-10-15 17:07+0000\n"
88
"Last-Translator: John <johnzhou721@gmail.com>\n"
99
"Language-Team: Chinese (Simplified Han script) <https://hosted.weblate.org/projects/beeware/tutorial/zh_Hans/>\n"

docs/locales/zh_TW/translations.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ msgid ""
33
msgstr ""
44
"Project-Id-Version: BeeWare 0.1\n"
55
"Report-Msgid-Bugs-To: \n"
6-
"POT-Creation-Date: 2026-06-06 20:01+0000\n"
6+
"POT-Creation-Date: 2026-06-07 01:01+0000\n"
77
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
88
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
99
"Language-Team: zh_TW <LL@li.org>\n"

0 commit comments

Comments
 (0)