From 45baf27199323c7816584d60efa4503101e62fa0 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 4 Nov 2023 17:50:27 +0800 Subject: [PATCH] pugwash: fixed some bugs, updated translations, bumped version. --- PortMaster/pugwash | 4 +- PortMaster/pylibs/harbourmaster/config.py | 5 +- PortMaster/pylibs/harbourmaster/harbour.py | 4 + PortMaster/pylibs/harbourmaster/info.py | 1 + PortMaster/pylibs/harbourmaster/util.py | 3 +- .../locales/de_DE/LC_MESSAGES/messages.po | 93 ++++++++++--------- .../locales/de_DE/LC_MESSAGES/themes.po | 8 +- .../locales/es_ES/LC_MESSAGES/messages.po | 6 +- .../locales/fr_FR/LC_MESSAGES/messages.po | 6 +- .../locales/it_IT/LC_MESSAGES/messages.po | 8 +- .../locales/pl_PL/LC_MESSAGES/messages.po | 8 +- .../locales/pl_PL/LC_MESSAGES/themes.po | 2 +- .../locales/pt_BR/LC_MESSAGES/messages.po | 8 +- .../locales/pt_BR/LC_MESSAGES/themes.po | 2 +- PortMaster/pylibs/pugscene.py | 2 +- 15 files changed, 87 insertions(+), 73 deletions(-) diff --git a/PortMaster/pugwash b/PortMaster/pugwash index 91848e6..c0c662e 100755 --- a/PortMaster/pugwash +++ b/PortMaster/pugwash @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ## -- BEGIN PORTMASTER INFO -- -PORTMASTER_VERSION = '8.4.23' +PORTMASTER_VERSION = '8.4.24' PORTMASTER_RELEASE_CHANNEL = 'beta' ## -- END PORTMASTER INFO -- @@ -947,7 +947,7 @@ class PortMasterGUI(pySDL2gui.GUI, harbourmaster.Callback): def delete_port_size(self, port_name): # Delete info about a port if port_name in self.port_size_files: - for port_file, port_info in self.port_size_files[port_name]: + for port_file, port_info in self.port_size_files[port_name].items(): if port_name in self.port_size_file_lookup[port_file]: self.port_size_file_lookup[port_file].remove(port_name) diff --git a/PortMaster/pylibs/harbourmaster/config.py b/PortMaster/pylibs/harbourmaster/config.py index e04032d..4790b95 100644 --- a/PortMaster/pylibs/harbourmaster/config.py +++ b/PortMaster/pylibs/harbourmaster/config.py @@ -27,7 +27,10 @@ HM_DEFAULT_PORTS_DIR = Path("/roms/ports") HM_DEFAULT_TOOLS_DIR = Path("/roms/ports") -if (Path().cwd() / '.git').is_dir() or (Path().cwd() / '..' / '.git').is_dir(): +if (Path().cwd() / '..' / '.git').is_dir(): + os.chdir(Path().cwd() / '..') + +if (Path().cwd() / '.git').is_dir(): ## For testing HM_DEFAULT_TOOLS_DIR = Path('.').absolute() HM_DEFAULT_PORTS_DIR = Path('ports/').absolute() diff --git a/PortMaster/pylibs/harbourmaster/harbour.py b/PortMaster/pylibs/harbourmaster/harbour.py index e675165..3dda4bb 100644 --- a/PortMaster/pylibs/harbourmaster/harbour.py +++ b/PortMaster/pylibs/harbourmaster/harbour.py @@ -768,6 +768,10 @@ def port_info_attrs(self, port_info): if rtr: add_list_unique(attrs, 'rtr') + exp = port_info.get('attr', {}).get('exp', False) + if exp: + add_list_unique(attrs, 'exp') + if port_info['name'].casefold() in self.installed_ports: add_list_unique(attrs, 'installed') diff --git a/PortMaster/pylibs/harbourmaster/info.py b/PortMaster/pylibs/harbourmaster/info.py index c41cc48..6356b6b 100644 --- a/PortMaster/pylibs/harbourmaster/info.py +++ b/PortMaster/pylibs/harbourmaster/info.py @@ -30,6 +30,7 @@ 'porter': [], 'image': {}, 'rtr': False, + 'exp': False, 'runtime': None, 'reqs': [], } diff --git a/PortMaster/pylibs/harbourmaster/util.py b/PortMaster/pylibs/harbourmaster/util.py index ac2ead5..90f42c1 100644 --- a/PortMaster/pylibs/harbourmaster/util.py +++ b/PortMaster/pylibs/harbourmaster/util.py @@ -505,11 +505,12 @@ def timeit_wrapper(*args, **kwargs): total_time = end_time - start_time logger.debug(f'TIME: {func.__name__}({args}, {kwargs}): Took {total_time:.4f} seconds') return result + return timeit_wrapper def port_sort_alphabetical(port_info): - port_info.get('attr', {}).get('title', port_info['name']).casefold() + return port_info.get('attr', {}).get('title', port_info['name']).casefold() def port_sort_date_added(port_info): diff --git a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po index b8535d2..16fe9e3 100644 --- a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-11-01 10:19\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -158,11 +158,12 @@ msgstr "Es gibt eine neue Version von PortMaster ({portmaster_version})\n\n" #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." -msgstr "" +msgstr "PortMaster neu installieren?\n\n" +"Dies wird vom {release_channel} Kanal zur Version {portmaster_version} installiert." #: PortMaster/pugwash:1757 msgid "No network connection available." -msgstr "" +msgstr "Keine Netzwerkverbindung verfügbar." #: PortMaster/pylibs/harbourmaster/harbour.py:111 msgid "Loading..." @@ -174,7 +175,7 @@ msgstr "Lade Informationen." #: PortMaster/pylibs/harbourmaster/harbour.py:228 msgid "Fetching latest featured ports." -msgstr "" +msgstr "Lade neueste Ports." #: PortMaster/pylibs/harbourmaster/harbour.py:237 #: PortMaster/pylibs/harbourmaster/harbour.py:255 @@ -272,12 +273,12 @@ msgstr "Überprüfe" #: PortMaster/pylibs/harbourmaster/harbour.py:1381 #, python-brace-format msgid "Verified {runtime} successfully." -msgstr "" +msgstr "{runtime} erfolgreich überprüft." #: PortMaster/pylibs/harbourmaster/harbour.py:1384 #, python-brace-format msgid "Verified {runtime}." -msgstr "" +msgstr "{runtime} verifiziert." #: PortMaster/pylibs/harbourmaster/harbour.py:1390 #, python-brace-format @@ -424,7 +425,7 @@ msgstr "Lade Datei herunter" #: PortMaster/pylibs/harbourmaster/util.py:361 #, python-brace-format msgid "Download failed: {err}" -msgstr "" +msgstr "Download fehlgeschlagen: {err}" #: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." @@ -440,15 +441,15 @@ msgstr "Download konnte nicht überprüft werden." #: PortMaster/pylibs/pugscene.py:327 msgid "Main Menu" -msgstr "" +msgstr "Hauptmenü" #: PortMaster/pylibs/pugscene.py:335 PortMaster/pylibs/pugscene.py:1094 msgid "Featured Ports" -msgstr "" +msgstr "Empfohlene Ports" #: PortMaster/pylibs/pugscene.py:336 msgid "Hand curated lists of ports" -msgstr "" +msgstr "Von Hand ausgewählte Ports" #: PortMaster/pylibs/pugscene.py:339 msgid "All Ports" @@ -456,7 +457,7 @@ msgstr "Alle Ports" #: PortMaster/pylibs/pugscene.py:340 msgid "List all ports available on PortMaster." -msgstr "" +msgstr "Alle verfügbaren PortMaster Ports auflisten." #: PortMaster/pylibs/pugscene.py:343 msgid "Ready to Run Ports" @@ -464,15 +465,15 @@ msgstr "Ready to Run Ports" #: PortMaster/pylibs/pugscene.py:344 msgid "List all ports that are ready to play!" -msgstr "" +msgstr "Alle Ports auflisten, die zum Spielen bereit sind!" #: PortMaster/pylibs/pugscene.py:347 msgid "Manage Ports" -msgstr "" +msgstr "Ports verwalten" #: PortMaster/pylibs/pugscene.py:348 msgid "Update / Uninstall Ports" -msgstr "" +msgstr "Ports aktualisieren / deinstallieren" #: PortMaster/pylibs/pugscene.py:353 msgid "Options" @@ -480,7 +481,7 @@ msgstr "Optionen" #: PortMaster/pylibs/pugscene.py:354 msgid "PortMaster Options" -msgstr "" +msgstr "PortMaster Optionen" #: PortMaster/pylibs/pugscene.py:357 msgid "Exit" @@ -488,7 +489,7 @@ msgstr "Beenden" #: PortMaster/pylibs/pugscene.py:358 msgid "Quit PortMaster" -msgstr "" +msgstr "PortMaster beenden" #: PortMaster/pylibs/pugscene.py:360 PortMaster/pylibs/pugscene.py:493 #: PortMaster/pylibs/pugscene.py:1042 PortMaster/pylibs/pugscene.py:1050 @@ -518,7 +519,7 @@ msgstr "Deaktiviert" #: PortMaster/pylibs/pugscene.py:419 msgid "Options Menu" -msgstr "" +msgstr "Optionen" #: PortMaster/pylibs/pugscene.py:424 msgid "System" @@ -530,7 +531,7 @@ msgstr "Ports aktualisieren" #: PortMaster/pylibs/pugscene.py:429 msgid "Update all ports and associated information" -msgstr "" +msgstr "Alle Ports und zugehörigen Informationen aktualisieren" #: PortMaster/pylibs/pugscene.py:432 msgid "Update PortMaster" @@ -538,15 +539,15 @@ msgstr "PortMaster aktualisieren" #: PortMaster/pylibs/pugscene.py:433 msgid "Force check for a new PortMaster version." -msgstr "" +msgstr "Auf neue PortMaster Version prüfen." #: PortMaster/pylibs/pugscene.py:440 PortMaster/pylibs/pugscene.py:641 msgid "Runtime Manager" msgstr "Runtime-Verwaltung" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." -msgstr "" +msgid "Manage port runtimes." +msgstr "Port Runtimes verwalten." #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 #, python-brace-format @@ -555,7 +556,7 @@ msgstr "Controller-Modus: {controller_mode}" #: PortMaster/pylibs/pugscene.py:448 msgid "Toggle between various controller layouts." -msgstr "" +msgstr "Zwischen verschiedenen Controller-Layouts wechseln." #: PortMaster/pylibs/pugscene.py:450 msgid "Audio" @@ -567,7 +568,7 @@ msgstr "Musik" #: PortMaster/pylibs/pugscene.py:455 msgid "Enable or Disable background music in PortMaster." -msgstr "" +msgstr "Hintergrundmusik in PortMaster aktivieren oder deaktivieren." #: PortMaster/pylibs/pugscene.py:458 PortMaster/pylibs/pugscene.py:541 msgid "Sound FX: " @@ -575,7 +576,7 @@ msgstr "Sound FX" #: PortMaster/pylibs/pugscene.py:459 msgid "Enable or Disable soundfx in PortMaster." -msgstr "" +msgstr "Soundfx in PortMaster aktivieren oder deaktivieren." #: PortMaster/pylibs/pugscene.py:461 msgid "Interface" @@ -587,7 +588,7 @@ msgstr "Sprache wählen" #: PortMaster/pylibs/pugscene.py:466 msgid "Select the language PortMaster uses." -msgstr "" +msgstr "Sprache auswählen." #: PortMaster/pylibs/pugscene.py:469 PortMaster/pylibs/pugscene.py:807 msgid "Select Theme" @@ -595,7 +596,7 @@ msgstr "Theme auswählen" #: PortMaster/pylibs/pugscene.py:470 msgid "Select a theme for PortMaster." -msgstr "" +msgstr "Theme auswählen." #: PortMaster/pylibs/pugscene.py:476 msgid "Select Color Scheme" @@ -603,7 +604,7 @@ msgstr "Farbschema auswählen" #: PortMaster/pylibs/pugscene.py:477 msgid "Select a colour scheme for PortMaster" -msgstr "" +msgstr "Farbschema auswählen" #: PortMaster/pylibs/pugscene.py:480 msgid "Secret Options" @@ -615,7 +616,7 @@ msgstr "PortMaster Konfiguration löschen" #: PortMaster/pylibs/pugscene.py:484 PortMaster/pylibs/pugscene.py:488 msgid "This can break stuff, don't touch unless you know what you are doing." -msgstr "" +msgstr "Griffel weg wenn du kein Plan hast, sonst machst du noch alles kaputt!" #: PortMaster/pylibs/pugscene.py:487 msgid "Delete PortMaster Runtimes" @@ -637,11 +638,11 @@ msgstr "Lösche Runtimes:" #: PortMaster/pylibs/pugscene.py:633 msgid "Source Manager" -msgstr "" +msgstr "Quellen-Manager" #: PortMaster/pylibs/pugscene.py:670 msgid "Download All" -msgstr "" +msgstr "Alles herunterladen" #: PortMaster/pylibs/pugscene.py:715 msgid "Used" @@ -665,7 +666,7 @@ msgstr "Installieren" #: PortMaster/pylibs/pugscene.py:748 msgid "Are you sure you want to download and verify all runtimes?" -msgstr "" +msgstr "Alle runtimes herunterladen und verifizieren?" #: PortMaster/pylibs/pugscene.py:790 #, python-brace-format @@ -695,7 +696,7 @@ msgstr "Theme wechseln?\n\n" #: PortMaster/pylibs/pugscene.py:904 msgid "Select Colour Scheme" -msgstr "" +msgstr "Farbschema auswählen" #: PortMaster/pylibs/pugscene.py:918 #, python-brace-format @@ -710,7 +711,7 @@ msgstr "Farbschema für das Theme ändern?\n\n" #: PortMaster/pylibs/pugscene.py:962 msgid "Language Select" -msgstr "" +msgstr "Sprachauswahl" #: PortMaster/pylibs/pugscene.py:972 #, python-brace-format @@ -762,7 +763,7 @@ msgstr "Info anzeigen" #: PortMaster/pylibs/pugscene.py:1310 msgid "Ports List" -msgstr "" +msgstr "Portliste" #: PortMaster/pylibs/pugscene.py:1329 msgid "Filters" @@ -770,32 +771,32 @@ msgstr "Filter" #: PortMaster/pylibs/pugscene.py:1337 msgid "Port Info" -msgstr "" +msgstr "Port Info" #: PortMaster/pylibs/pugscene.py:1347 msgid "Reinstall" -msgstr "" +msgstr "Neuinstallieren" #: PortMaster/pylibs/pugscene.py:1383 #, python-brace-format msgid "Are you sure you want to uninstall {port_name}?" -msgstr "" +msgstr "{port_name} wirklich deinstallieren?" #: PortMaster/pylibs/pugscene.py:1400 msgid "Filters Scene" -msgstr "" +msgstr "Filter-Szene" #: PortMaster/pylibs/pugscene.py:1429 msgid "Alphabetical" -msgstr "" +msgstr "Alphabetisch" #: PortMaster/pylibs/pugscene.py:1430 msgid "Recently Added" -msgstr "" +msgstr "Zuletzt hinzugefügt" #: PortMaster/pylibs/pugscene.py:1431 msgid "Recently Updated" -msgstr "" +msgstr "Vor kurzem aktualisiert" #: PortMaster/pylibs/pugscene.py:1434 msgid "Action" @@ -859,7 +860,7 @@ msgstr "Sonstiges" #: PortMaster/pylibs/pugscene.py:1454 msgid "Broken Ports" -msgstr "" +msgstr "Defekte Ports" #: PortMaster/pylibs/pugscene.py:1457 PortMaster/pylibs/pugscene.py:1458 #, python-brace-format @@ -868,11 +869,11 @@ msgstr "{runtime_name} Runtime" #: PortMaster/pylibs/pugscene.py:1501 msgid "Sort:" -msgstr "" +msgstr "Sortieren:" #: PortMaster/pylibs/pugscene.py:1516 msgid "Clear Filters" -msgstr "" +msgstr "Filter löschen" #: PortMaster/pylibs/pugscene.py:1540 msgid "Genres:" @@ -888,7 +889,7 @@ msgstr "Porter:" #: PortMaster/pylibs/pugscene.py:1666 msgid "Messages" -msgstr "" +msgstr "Meldungen" #: PortMaster/pylibs/pugscene.py:1701 msgid "Are you sure you want to cancel?" diff --git a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po index cb5eb10..4279a00 100644 --- a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po +++ b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/themes.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-09-09 16:35+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"PO-Revision-Date: 2023-11-01 10:19\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -136,5 +136,9 @@ msgid "Name: {runtime_info.name}\n" "Ports: {runtime_info.ports}\n" "Download Size: {runtime_info.download_size}\n" "Install Size: {runtime_info.disk_size}" -msgstr "" +msgstr "Name: {runtime_info.name}\n" +"Status: {runtime_info.status}\n" +"Ports: {runtime_info.ports}\n" +"Downloadgröße: {runtime_info.download_size}\n" +"Installationsgröße: {runtime_info.disk_size}" diff --git a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po index 416f2a6..c37e8e4 100644 --- a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-10-30 10:11\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -543,7 +543,7 @@ msgid "Runtime Manager" msgstr "" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." +msgid "Manage port runtimes." msgstr "" #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 diff --git a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po index e983de0..a542113 100644 --- a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-10-30 10:11\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -545,7 +545,7 @@ msgid "Runtime Manager" msgstr "Gestionnaire de Runtime" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." +msgid "Manage port runtimes." msgstr "" #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 diff --git a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po index 4b71aa3..13fe1e4 100644 --- a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-10-30 10:11\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -546,8 +546,8 @@ msgid "Runtime Manager" msgstr "Runtime Manager" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." -msgstr "Scarica/Controlla/Elimina le Runtimes disponibili." +msgid "Manage port runtimes." +msgstr "" #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 #, python-brace-format diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po index 98c782f..f7ad40a 100644 --- a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-11-01 09:02\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -546,8 +546,8 @@ msgid "Runtime Manager" msgstr "Menadżer Runtime" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." -msgstr "Pobierz/Sprawdź/Usuń runtime portów." +msgid "Manage port runtimes." +msgstr "Zarządzaj runtime porta." #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 #, python-brace-format diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po index 0d5d204..2966c02 100644 --- a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po +++ b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/themes.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-09-09 16:35+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"PO-Revision-Date: 2023-11-01 09:02\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po index 69fd5fe..7cf222f 100644 --- a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-10-29 17:14+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"POT-Creation-Date: 2023-10-30 18:11+0800\n" +"PO-Revision-Date: 2023-11-04 09:21\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -546,8 +546,8 @@ msgid "Runtime Manager" msgstr "Gerenciador de Tempos de Execução" #: PortMaster/pylibs/pugscene.py:441 -msgid "Download/Check/Delete Port runtimes." -msgstr "Baixar/Verificar/Deletar tempos de execução de jogo." +msgid "Manage port runtimes." +msgstr "Gerenciar tempos de execução dos jogos." #: PortMaster/pylibs/pugscene.py:447 PortMaster/pylibs/pugscene.py:559 #, python-brace-format diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po index a033bbe..30fff54 100644 --- a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po +++ b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-09-09 16:35+0800\n" -"PO-Revision-Date: 2023-10-29 09:15\n" +"PO-Revision-Date: 2023-11-04 09:21\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" diff --git a/PortMaster/pylibs/pugscene.py b/PortMaster/pylibs/pugscene.py index b771205..772e4fd 100644 --- a/PortMaster/pylibs/pugscene.py +++ b/PortMaster/pylibs/pugscene.py @@ -438,7 +438,7 @@ def __init__(self, gui): self.tags['option_list'].add_option( 'runtime-manager', _("Runtime Manager"), - description=_("Download/Check/Delete Port runtimes.")) + description=_("Manage port runtimes.")) if len(self.gui.hm.get_gcd_modes()) > 0: gcd_mode = self.gui.hm.get_gcd_mode()