From cc5e81b4fd2c3edabc89e85b6e045207e9f4a07f Mon Sep 17 00:00:00 2001 From: Jacob Date: Mon, 9 Oct 2023 18:57:29 +0800 Subject: [PATCH] pugwash: fixed bug with port disk usage calculator, updated translations. --- .gitignore | 1 + PortMaster/pugwash | 11 +- PortMaster/pylibs/harbourmaster/util.py | 4 +- .../locales/de_DE/LC_MESSAGES/messages.po | 259 ++++++++++-------- .../locales/es_ES/LC_MESSAGES/messages.po | 259 ++++++++++-------- .../locales/fr_FR/LC_MESSAGES/messages.po | 259 ++++++++++-------- .../locales/it_IT/LC_MESSAGES/messages.po | 259 ++++++++++-------- .../locales/pl_PL/LC_MESSAGES/messages.po | 259 ++++++++++-------- .../locales/pt_BR/LC_MESSAGES/messages.po | 259 ++++++++++-------- 9 files changed, 865 insertions(+), 705 deletions(-) diff --git a/.gitignore b/.gitignore index 1c57a23..8e067dd 100644 --- a/.gitignore +++ b/.gitignore @@ -179,6 +179,7 @@ harbourmaster.txt PortMaster.zip pylibs.zip version +do_test.sh # PortMaster Installer scripts. makeself*/ diff --git a/PortMaster/pugwash b/PortMaster/pugwash index 2a920b6..31a587a 100755 --- a/PortMaster/pugwash +++ b/PortMaster/pugwash @@ -1,7 +1,7 @@ #!/usr/bin/env python3 ## -- BEGIN PORTMASTER INFO -- -PORTMASTER_VERSION = '8.4.17' +PORTMASTER_VERSION = '8.4.18' PORTMASTER_RELEASE_CHANNEL = 'beta' ## -- END PORTMASTER INFO -- @@ -309,11 +309,10 @@ class DirectoryScanner: return scan_info[0], True def _get_directory_size(self, path): - total_size = 0 - stack = [path] while len(stack) > 0: + total_size = 0 path = stack.pop(0) if path.is_file(): @@ -321,7 +320,7 @@ class DirectoryScanner: elif path.is_dir(): for entry in os.scandir(path): - if entry.name.startswith('.'): + if entry.name in ('.', '..'): continue elif entry.is_file(): @@ -330,9 +329,7 @@ class DirectoryScanner: elif entry.is_dir(): stack.append(Path(entry.path)) - yield total_size - - yield total_size + yield total_size def _calculate_total_size(self, path): total_size = 0 diff --git a/PortMaster/pylibs/harbourmaster/util.py b/PortMaster/pylibs/harbourmaster/util.py index 2653add..ac2ead5 100644 --- a/PortMaster/pylibs/harbourmaster/util.py +++ b/PortMaster/pylibs/harbourmaster/util.py @@ -51,7 +51,7 @@ def json_safe_load(*args): def fetch(url): - r = requests.get(url, timeout=10) + r = requests.get(url, timeout=20) if r.status_code != 200: logger.error(f"Failed to download {url!r}: {r.status_code}") return None @@ -303,7 +303,7 @@ def download(file_name, file_url, md5_source=None, md5_result=None, callback=Non md5_result = [None] try: - r = requests.get(file_url, stream=True, timeout=(10, 5)) + r = requests.get(file_url, stream=True, timeout=(30, 10)) if r.status_code != 200: if callback is not None: diff --git a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po index a73099d..3908c6a 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -69,97 +69,101 @@ msgstr "Portugiesisch (Brasilien)" msgid "Chinese Simplified" msgstr "Chinesisch (vereinfacht)" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "Unbekannte IP" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "N/V" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** KEIN PORT **" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "Benötigt Dateien" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Installiert" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "Fehlt" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Update verfügbar" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "Nicht installiert" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "Okay" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Abbrechen" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation von {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Deinstallation von {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Aktualisieren aller Port-Quellen:" -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Prüfe {runtime_name}" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "Es wird von {old_release_channel} zur {new_release_channel} Version gewechselt.\n\n" "Soll das Upgrade durchgeführt werden?" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Es gibt eine neue Version von PortMaster ({portmaster_version})\n\n" "Soll das Upgrade durchgeführt werden?" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "" +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Lädt..." @@ -185,148 +189,148 @@ msgstr "Lade neuste Porters" msgid "Loading Sources." msgstr "Lade Quellen" -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Lade Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installiere Theme {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Wird installiert" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Theme {download_name!r} erfolgreich installiert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Installiere {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} erfolgreich installiert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Installation fehlgeschlagen, entferne Dateien..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Port {download_name} Installation fehlgeschlagen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "Port {download_name!r} und {runtime_name!r} erfolgreich installiert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "Port {download_name!r} wurde erfolgreich installiert, Installation von {runtime_name!r} ist fehlgeschlagen\n" "Installiere den Port erneut um es nochmal zu versuchen oder besuche das Wiki für Hilfe." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "Port {runtime} enthält eine fehlerhafte Runtime, möglicherweise funktioniert das Spiel nicht korrekt." -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "Überprüft" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "Nicht verifiziert" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "Fehlerhaft" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "Runtimes lassen sich nicht im Offline Modus herunterladen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Überprüfe Runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "Überprüfe" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "Aktualisiere {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Laufzeit- {runtime} ist defekt, Installiere neu." -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Lade runtime {runtime} herunter" -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "Runtime konnte nicht runtergeladen werden, öglicherweise funktioniert das Spiel nicht korrekt." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Erfolgreich {runtime} heruntergeladen" -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Es konnte kein Download für {runtime} gefunden werden." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "Ports lassen sich nicht im Offline Modus herunterladen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "Es konnte keine Quelle für {port_name} gefunden werden." -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Unbekannter Port {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Entferne {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "Erfolgreich {port_name} deinstalliert" @@ -355,75 +359,82 @@ msgstr "Neuste Version bereits installiert" msgid "Fetching latest info" msgstr "Lade neuste Informationen" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Fertig" -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "{port_name} konnte nicht gefunden werden" -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "Für {port_name} konnten keine Überprüfungsinformationen gefunden werden." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "Für {port_name} konnten keine Überprüfungsinformationen heruntergeladen werden." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "Erfolgreich!" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Lade Informationen" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "Lade neuste Ports" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Lade Informationen" -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "Überprüfungsdatei konnte nicht heruntergeladen werden" -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "Nur Zip Dateien können heruntergeladen werden." -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "[{status_code}] konnte nicht heruntergeladen werden." -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Lade {file_url} - ({total_length_mb}) herunter." -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Lade Datei herunter" -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Download Überprüfung fehlgeschlagen" -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "Dateiüberprüfung erfolgreich" -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Download konnte nicht überprüft werden." @@ -614,9 +625,9 @@ msgstr "PortMaster Laufzeiten löschen" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Zurück" @@ -636,7 +647,7 @@ msgstr "Benutzt" msgid "Not Used" msgstr "Nicht verwendet" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Installieren" @@ -644,7 +655,7 @@ msgstr "Installieren" msgid "Check" msgstr "Überprüfen" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Deinstallieren" @@ -724,125 +735,141 @@ msgstr "Leerzeichen" msgid "Lower Case" msgstr "Kleinbuchstaben" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "KEINE PORTS" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** KEINE PORTS GEFUNDEN **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Zuerst Ports herunterladen." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Zuerst Filter entfernen" -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Info anzeigen" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filter" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "Aktion" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "Adventure" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "Casino/Card" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "First Person Shooter" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "Platformer" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "Puzzle" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "Racing" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "Rhythm" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "Role Playing Game" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "Simulation" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "Sports" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "Strategie" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "Sonstiges" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Genres:" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Attribute:" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porter:" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "Wirklich abbrechen?" diff --git a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po index 8fb4e7d..3b41a09 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -69,95 +69,99 @@ msgstr "" msgid "Chinese Simplified" msgstr "" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "IP Desconocida" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "N/D" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** SIN PORT**" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Listo para Funcionar" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "Requiere Archivos" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "No Disponible" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Actualización Disponible" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "No Instalado" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "Aceptar" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Actualizando todas las fuentes de ports:" -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "" +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Cargando..." @@ -183,148 +187,148 @@ msgstr "Obteniendo los últimos porters." msgid "Loading Sources." msgstr "Cargando Fuentes." -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Cargando Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalando Tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Instalando" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalando {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Instalación fallida, eliminando archivos..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "La instalación del Port {download_name} ha fallado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "Port {download_name!r} y {runtime_name!r} instalados correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "¡¡Port {download_name!r} instalado correctamente, pero la instalación de {runtime_name!r} ha fallado!!\n\n" "Reintenta la instalación o revisa la wiki para obtener ayuda." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "El Port {runtime} contiene un tiempo de ejecución defectuoso, el juego puede no ejecutarse correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "No se puede descargar un tiempo de ejecución en modo sin conexión." -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Descargando tiempo de ejecución {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "No se puede descargar {runtime}, es posible que el juego no funcione correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} Descargado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "No se ha podido encontrar una descarga para {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "No se puede descargar un Port en modo sin conexión." -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "No se ha podido encontrar una fuente para {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port desconocido {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Eliminando {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} Desinstalado correctamente" @@ -353,75 +357,82 @@ msgstr "Ya está actualizado" msgid "Fetching latest info" msgstr "Obteniendo información más reciente" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Hecho." -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "No se puede encontrar {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "No se ha podido encontrar la información de verificación para {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "No se puede descargar la información de verificación para {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "¡Éxito!" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Obteniendo información" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "{source_name}: Obteniendo los ports más recientes" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Obteniendo información." -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "No se puede descargar el archivo de verificación." -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "No se pueden descargar archivos de tipo no zip." -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "No se ha podido descargar el archivo. [{status_code}]" -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Descargando {file_url} - ({total_length_mb})" -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Descargando archivo." -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Error al validar la descarga." -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "Validación de archivo correcta." -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Error al validar la descarga." @@ -612,9 +623,9 @@ msgstr "" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Atrás" @@ -634,7 +645,7 @@ msgstr "" msgid "Not Used" msgstr "" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Instalar" @@ -642,7 +653,7 @@ msgstr "Instalar" msgid "Check" msgstr "" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Desinstalar" @@ -722,125 +733,141 @@ msgstr "Espacio" msgid "Lower Case" msgstr "Minúsculas" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "SIN PORTS" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** NO SE HAN ENCONTRADO PORTS **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Descarga ports primero." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Prueba a eliminar algunos filtros." -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Mostrar información" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filtros" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Géneros:" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Atributos:" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porters:" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "¿Está seguro de que quiere cancelar?" diff --git a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po index 6c924ef..399d1bc 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -69,97 +69,101 @@ msgstr "Portugais (Brésil)" msgid "Chinese Simplified" msgstr "Chinois simplifié" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "IP Inconnu" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** AUCUN RÉSULTAT **" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Prêt à Exécuter" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "Fichiers Requis" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Installé" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "Manquant" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Nouvelle mise à jour disponible" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "Non installé" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "D'accord" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Annuler" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation de {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Désinstallation de {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Mise à jour de toutes les sources de ports :" -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Vérification de {runtime_name}" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "Vous passez de l' {old_release_channel} à la version {new_release_channel} .\n\n" "Voulez-vous mettre à jour ?" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Il y a une nouvelle version de PortMaster ({portmaster_version})\n\n" "Voulez-vous mettre à jour ?" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "" +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Chargement..." @@ -185,148 +189,148 @@ msgstr "Récupération des derniers porteurs." msgid "Loading Sources." msgstr "Chargement des sources." -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Chargement des Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installation du thème {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Installation en cours" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Le thème {download_name!r} a été installé avec succès." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Installation de {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Le thème {download_name!r} a été installé avec succès." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Échec de l'installation, suppression des fichiers en cours..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Échec de l'installation du port {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "Port {download_name!r} et {runtime_name!r} installé avec succès." -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "Le port {download_name!r} a été installé avec succès, mais {runtime_name!r} n'a pas pu être installé!!\n\n" "Réinstaller pour essayer à nouveau, ou consulter le wiki pour obtenir de l'aide." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "Le port {runtime} contient une runtime corrompue, le jeu pourrait ne pas s'exécuter correctement." -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "Vérifié" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "Non vérifié" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "Cassé" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "Impossible de télécharger une runtime en mode hors ligne." -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Vérification du runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "Vérification" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "Mise à jour {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "L'exécution {runtime} est cassée, réinstallation." -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Téléchargement de la runtime {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "Impossible de télécharger {runtime}, le jeu pourrait ne pas s'exécuter correctement." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Téléchargement de {runtime} réussi." -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Impossible de trouver un téléchargement pour {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "Impossible de télécharger un port en mode hors ligne." -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "Impossible de trouver une source pour {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port inconnu {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Suppression de {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} désinstallé avec succès." @@ -355,75 +359,82 @@ msgstr "Déjà à jour" msgid "Fetching latest info" msgstr "Récupération des dernières informations" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Terminé." -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "Impossible de trouver {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "Impossible de trouver les informations de vérification pour {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "Impossible de télécharger les informations de vérification pour {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "Succès !" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Récupération des informations" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "{source_name} : Récupération" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Récupération des informations." -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "Impossible de télécharger le fichier de vérification." -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "Impossible de télécharger des fichiers non compressés." -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "Impossible de télécharger le fichier. [{status_code}]" -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Téléchargement de {file_url} - ({total_length_mb})" -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Téléchargement du fichier." -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Échec de la validation du téléchargement." -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "Validation du fichier réussie." -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Impossible de valider le téléchargement." @@ -614,9 +625,9 @@ msgstr "Supprimer PortMaster Runtimes" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Retour" @@ -636,7 +647,7 @@ msgstr "Utilisé" msgid "Not Used" msgstr "Inutilisé" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Installer" @@ -644,7 +655,7 @@ msgstr "Installer" msgid "Check" msgstr "Vérifier" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Désinstaller" @@ -724,125 +735,141 @@ msgstr "Espace" msgid "Lower Case" msgstr "Minuscule" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "AUCUN RÉSULTAT" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** AUCUN RÉSULTAT **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Téléchargez d'abord les ports." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Essayez de supprimer certains filtres." -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Afficher les Infos" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "Liste des Ports" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filtres" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "Infos Port" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "Action" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "Aventure" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "Casino/Carte" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "Fps" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "Plateforme" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "Réflexion" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "Jeu de course" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "Rythme" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "Jeu de rôle" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "Simulation" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "Sports" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "Stratégie" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "Autre" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Genres :" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Attributs :" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porteurs :" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "Messages" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "Êtes-vous sûr de vouloir annuler ?" diff --git a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po index a4529e1..34274d4 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -69,98 +69,102 @@ msgstr "Portoghese (Brasile)" msgid "Chinese Simplified" msgstr "Cinese Semplificato" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "IP Ignoto" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** Nessun Risultato **" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "File richiesti" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Installato" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "Mancante" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Aggiornamento Disponibile" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "Non Installato" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Annulla" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Installo {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Disinstallo {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Aggiorno le fonti..." -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verifico {runtime_name}" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "Stai passando dalla versione {old_release_channel} alla {new_release_channel}.\n\n" "Vuoi fare l'upgrade alla nuova versione?" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "C'è una nuova versione di PortMaster ({portmaster_version})\n\n" "Vuoi fare l'upgrade?" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Vuoi reinstallare PortMaster?\n\n" "Proseguendo scaricherai da {release_channel} la versione {portmaster_version}." +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Caricamento..." @@ -186,148 +190,148 @@ msgstr "Cerco nuovi porters" msgid "Loading Sources." msgstr "Caricamento Fonti." -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Caricamento Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installo Tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Installo" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} installato con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Installo {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} installato con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Installazione fallita, rimozione file in corso..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "{download_name} fallisce l'installazione." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "{download_name!r} e {runtime_name!r} sono stati installati con successo" -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "{download_name!r} e {runtime_name!r} hanno fallito l'installazione!!\n\n" "Riprova o controlla la wiki per ulteriori informazioni." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "Port {runtime} sembra avere una runtime corrota, il gioco potrebbe avere problemi" -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "Verificato" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "Non verificato" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "Corrotto" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "Impossibile scaricare la runtime in modalità offline" -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Verifico runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "Verifica in corso" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} verificata con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} Verificata." -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "Aggiornamento {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Runtime {runtime} è corrotta, reinstallazione." -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Scarico {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "Impossibile scaricare la runtime {runtime}, il gioco potrebbe presentare dei problemi." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Scaricato con successo {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Impossibile trovare il download per {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "Impossibile scaricare un Port in modalità offline" -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "Impossibile trovare una fonte per {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port sconosciuto {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Rimuovo {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} disinstallato con successo." @@ -356,75 +360,82 @@ msgstr "Già aggiornata" msgid "Fetching latest info" msgstr "Cerco nuove informazioni" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Fatto." -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "Impossibile trovare {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "Non posso verificare {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "Non posso scaricare le informazioni per verificare {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "Successo!" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Cerco Informazioni" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "{source_name}: Controllo Nuovi ports" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Cerco Informazioni" -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "Non posso scaricare i file di verifica" -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "Non posso scaricare i file non zip" -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "Impossibile Scaricare. [{status_code}]" -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Scarico {file_url} - ({total_length_mb})" -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Scarico i file" -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Validazione del download fallita." -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "File Validati" -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Impossibile validare il download." @@ -615,9 +626,9 @@ msgstr "Elimina Runtimes installate" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Indietro" @@ -637,7 +648,7 @@ msgstr "In uso" msgid "Not Used" msgstr "Non utilizzato" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Installa" @@ -645,7 +656,7 @@ msgstr "Installa" msgid "Check" msgstr "Verifica" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Disinstalla" @@ -725,125 +736,141 @@ msgstr "Spazio" msgid "Lower Case" msgstr "Minuscolo" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "Nessun Risultato" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** Nessun Risultato **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Scarica qualcosa prima." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Rimuovi qualche filtro." -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Mostra info" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "Lista dei Ports" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filtri" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "Port Info" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "Filtri" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "Azione" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "Avventura" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "Casino/Carta" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "Fps" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "Platform" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "Rompicapo" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "Racing" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "Musicale" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "Gioco Di Ruolo" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "Simulazione" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "Sport" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "Strategia" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "Visual Novel" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "Altro" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Runtime" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Genere" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Runtime" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porter" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "Avviso" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "Sicuro di voler annullare?" diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po index accd4ef..e7f0b31 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -69,98 +69,102 @@ msgstr "Portugalski (Brazylia)" msgid "Chinese Simplified" msgstr "Chiński Uproszczony" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "Nieznany adres IP" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "Nie dostępne" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** BRAK PORTU **" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Gotowe do uruchomienia" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "Wymagane pliki" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Zainstalowane" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "Brakujące" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Dostępna aktualizacja" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "Nie zainstalowano" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "W porządku" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Anuluj" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalacja {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Odinstalowywanie {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Aktualizowanie wszystkich źródeł portów:" -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Sprawdzanie {runtime_name}" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "Przełączasz się z {old_release_channel} na wersję {new_release_channel}.\n\n" "Czy chcesz zaktualizować?" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Dostępna jest nowa wersja PortMaster ({portmaster_version})\n\n" "Czy chcesz zaktualizować?" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Czy chcesz ponownie zainstalować PortMaster?\n\n" "Zostanie to ponownie zainstalowane z kanału {release_channel} do {portmaster_version}." +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Ładowanie..." @@ -186,148 +190,148 @@ msgstr "Pobieranie najnowszych portów." msgid "Loading Sources." msgstr "Ładowanie źródeł." -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Ładowanie portów." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalowanie motywu {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Instalowanie" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Motyw {download_name!r} zainstalowany pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalacja {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} zainstalowany pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Instalacja nie powiodła się, usuwanie plików..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Port {download_name} nie został zainstalowany." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "Port {download_name!r} i {runtime_name!r} zainstalowany pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "Port {download_name!r} zainstalowany pomyślnie, ale {runtime_name!r} nie udało się zainstalować!\n\n" "Zainstaluj ponownie, aby spróbować ponownie, lub sprawdź wiki po pomoc." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "Port {runtime} zawiera złe działanie, gra może nie działać prawidłowo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "Zweryfikowane" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "Niezweryfikowane" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "Uszkodzone" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "Nie można pobrać runtime w trybie offline." -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Weryfikowanie czasu pracy {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "Weryfikowanie" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "Zweryfikowano {runtime} pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "Zweryfikowano {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "Aktualizowanie {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Runtime {runtime} jest uszkodzony, reinstalacja." -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Pobieranie runtime {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "Nie można pobrać {runtime}, gra może nie działać poprawnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Pomyślnie pobrano {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Nie można znaleźć pobrania dla {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "Nie można pobrać portu w trybie offline." -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "Nie można odnaleźć źródła dla {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Nieznany port {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Usuwanie {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "Pomyślnie pobrano {port_name}" @@ -356,75 +360,82 @@ msgstr "Już aktualne" msgid "Fetching latest info" msgstr "Pobieranie najnowszych informacji" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Zrobione." -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "Nie można znaleźć {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "Nie można znaleźć informacji weryfikacyjnych dla {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "Nie można pobrać informacji weryfikacyjnych dla {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "Udało się!" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Pobieram informacje" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "{source_name}: Pobieranie najnowszych portów" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Pobieranie informacji." -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "Nie można pobrać pliku weryfikacyjnego." -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "Nie można pobrać plików bez zip." -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "Nie można pobrać pliku. [{status_code}]" -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Pobieranie {file_url} - ({total_length_mb})" -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Pobieranie pliku." -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Sprawdzanie poprawności pliku nie powiodło się." -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "Plik przeszedł pomyślnie walidację." -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Nie można zweryfikować pobrania." @@ -615,9 +626,9 @@ msgstr "Usuń runtime PortMastera" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Powrót" @@ -637,7 +648,7 @@ msgstr "Używane" msgid "Not Used" msgstr "Nieużywane" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Zainstaluj" @@ -645,7 +656,7 @@ msgstr "Zainstaluj" msgid "Check" msgstr "Sprawdź" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Odinstaluj" @@ -725,125 +736,141 @@ msgstr "Spacja" msgid "Lower Case" msgstr "Małe litery" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "BRAK PORTÓW" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** NIE ZNALEZIONO PORTÓW **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Najpierw pobierz porty." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Spróbuj usunąć kilka filtrów." -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Pokaż info" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "Listy portów" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filtry" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "Informacje o porcie" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "Filtry sceny" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "Akcja" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "Przygodowe" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "Kasino/Karta" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "Pierwszoosobowa strzelanka" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "Platformówka" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "Puzzle" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "Wyścigowe" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "Rytm" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "Role Playing" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "Symulacja" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "Sportowe" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "Strategie" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "Wizualna nowela" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "Inne" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "{runtime_name} Czas pracy" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Gatunek:" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Atrybuty:" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porterzy:" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "Wiadomości" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "Czy na pewno chcesz anulować?" diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po index 16c5814..402803f 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-04 16:46+0800\n" -"PO-Revision-Date: 2023-10-04 08:47\n" +"POT-Creation-Date: 2023-10-09 18:21+0800\n" +"PO-Revision-Date: 2023-10-09 10:21\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -69,98 +69,102 @@ msgstr "Português (Brasil)" msgid "Chinese Simplified" msgstr "Chines Simplificado" -#: PortMaster/pugwash:242 +#: PortMaster/pugwash:628 msgid "Unknown IP" msgstr "IP desconhecido" -#: PortMaster/pugwash:717 PortMaster/pugwash:856 +#: PortMaster/pugwash:728 PortMaster/pugwash:867 msgid "N/A" msgstr "Não disponível" -#: PortMaster/pugwash:825 +#: PortMaster/pugwash:836 msgid "** NO PORT **" msgstr "** SEM JOGO **" -#: PortMaster/pugwash:843 PortMaster/pylibs/pugscene.py:1394 +#: PortMaster/pugwash:854 PortMaster/pylibs/pugscene.py:1415 msgid "Ready to Run" msgstr "Pronto para executar" -#: PortMaster/pugwash:843 +#: PortMaster/pugwash:854 msgid "Requires Files" msgstr "Arquivos necessários" -#: PortMaster/pugwash:850 PortMaster/pugwash:877 +#: PortMaster/pugwash:861 PortMaster/pugwash:888 #: PortMaster/pylibs/pugscene.py:687 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:852 +#: PortMaster/pugwash:863 msgid "Missing" msgstr "Faltando" -#: PortMaster/pugwash:878 PortMaster/pylibs/harbourmaster/harbour.py:1208 -#: PortMaster/pylibs/pugscene.py:1396 +#: PortMaster/pugwash:889 PortMaster/pylibs/harbourmaster/harbour.py:1244 +#: PortMaster/pylibs/pugscene.py:1417 msgid "Update Available" msgstr "Atualização disponível" -#: PortMaster/pugwash:879 PortMaster/pylibs/harbourmaster/harbour.py:1207 -#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1395 +#: PortMaster/pugwash:890 PortMaster/pylibs/harbourmaster/harbour.py:1243 +#: PortMaster/pylibs/pugscene.py:687 PortMaster/pylibs/pugscene.py:1416 msgid "Not Installed" msgstr "Não instalado" -#: PortMaster/pugwash:1052 PortMaster/pugwash:1352 -#: PortMaster/pylibs/pugscene.py:1587 PortMaster/pylibs/pugscene.py:1635 -#: PortMaster/pylibs/pugscene.py:1637 +#: PortMaster/pugwash:1063 PortMaster/pugwash:1363 +#: PortMaster/pylibs/pugscene.py:1654 PortMaster/pylibs/pugscene.py:1702 +#: PortMaster/pylibs/pugscene.py:1704 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1055 PortMaster/pugwash:1353 +#: PortMaster/pugwash:1066 PortMaster/pugwash:1364 #: PortMaster/pylibs/pugscene.py:1009 PortMaster/pylibs/pugscene.py:1017 -#: PortMaster/pylibs/pugscene.py:1556 PortMaster/pylibs/pugscene.py:1590 -#: PortMaster/pylibs/pugscene.py:1635 +#: PortMaster/pylibs/pugscene.py:1623 PortMaster/pylibs/pugscene.py:1657 +#: PortMaster/pylibs/pugscene.py:1702 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1258 +#: PortMaster/pugwash:1269 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1267 +#: PortMaster/pugwash:1278 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1278 +#: PortMaster/pugwash:1289 msgid "Updating all port sources:" msgstr "Atualizando todas as fontes de jogos:" -#: PortMaster/pugwash:1288 +#: PortMaster/pugwash:1299 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verificando {runtime_name}" -#: PortMaster/pugwash:1670 +#: PortMaster/pugwash:1681 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to upgrade?" msgstr "Você está trocando da versão {old_release_channel} para a versão {new_release_channel}.\n\n" "Você quer atualizar?" -#: PortMaster/pugwash:1676 +#: PortMaster/pugwash:1687 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Há uma nova versão de Portmaster ({portmaster_version})\n\n" "Você quer atualizar?" -#: PortMaster/pugwash:1681 +#: PortMaster/pugwash:1692 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." msgstr "Você quer reinstalar PortMaster?\n\n" "Isso irá reinstalar do canal {release_channel} para {portmaster_version}." +#: PortMaster/pugwash:1719 +msgid "No network connection available." +msgstr "" + #: PortMaster/pylibs/harbourmaster/harbour.py:109 msgid "Loading..." msgstr "Carregando..." @@ -186,148 +190,148 @@ msgstr "Buscando porters mais recentes." msgid "Loading Sources." msgstr "Carregando fontes." -#: PortMaster/pylibs/harbourmaster/harbour.py:404 +#: PortMaster/pylibs/harbourmaster/harbour.py:409 msgid "Loading Ports." msgstr "Carregando jogos." -#: PortMaster/pylibs/harbourmaster/harbour.py:976 +#: PortMaster/pylibs/harbourmaster/harbour.py:1012 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalando tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:983 -#: PortMaster/pylibs/harbourmaster/harbour.py:1021 -#: PortMaster/pylibs/harbourmaster/harbour.py:1080 +#: PortMaster/pylibs/harbourmaster/harbour.py:1019 +#: PortMaster/pylibs/harbourmaster/harbour.py:1057 +#: PortMaster/pylibs/harbourmaster/harbour.py:1116 msgid "Installing" msgstr "Instalando" -#: PortMaster/pylibs/harbourmaster/harbour.py:993 +#: PortMaster/pylibs/harbourmaster/harbour.py:1029 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1012 -#: PortMaster/pylibs/harbourmaster/harbour.py:1071 +#: PortMaster/pylibs/harbourmaster/harbour.py:1048 +#: PortMaster/pylibs/harbourmaster/harbour.py:1107 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalando {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1037 -#: PortMaster/pylibs/harbourmaster/harbour.py:1181 +#: PortMaster/pylibs/harbourmaster/harbour.py:1073 +#: PortMaster/pylibs/harbourmaster/harbour.py:1217 msgid "Port {download_name!r} installed successfully." msgstr "Jogo {download_name!r} instalado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1147 +#: PortMaster/pylibs/harbourmaster/harbour.py:1183 msgid "Installation failed, removing files..." msgstr "Instalação falhou, removendo arquivos..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1159 +#: PortMaster/pylibs/harbourmaster/harbour.py:1195 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Jogo {download_name} falhou na instalação." -#: PortMaster/pylibs/harbourmaster/harbour.py:1171 +#: PortMaster/pylibs/harbourmaster/harbour.py:1207 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "Jogo {download_name!r} e {runtime_name!r} instalados com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1176 +#: PortMaster/pylibs/harbourmaster/harbour.py:1212 msgid "Port {download_name!r} installed sucessfully, but {runtime_name!r} failed to install!!\n\n" "Either reinstall to try again, or check the wiki for help." msgstr "Jogo {download_name!r} instalado com sucesso, mas {runtime_name!r} falhou em instalar!\n\n" "Ou reinstale para tentar novamente, ou cheque o site para ajuda." -#: PortMaster/pylibs/harbourmaster/harbour.py:1191 +#: PortMaster/pylibs/harbourmaster/harbour.py:1227 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "Jogo {runtime} contém um tempo de execução incompatível, jogo pode não executar corretamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1209 +#: PortMaster/pylibs/harbourmaster/harbour.py:1245 msgid "Verified" msgstr "Verificado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1210 +#: PortMaster/pylibs/harbourmaster/harbour.py:1246 msgid "Unverified" msgstr "Não verificado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1211 +#: PortMaster/pylibs/harbourmaster/harbour.py:1247 msgid "Broken" msgstr "Quebrado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1217 +#: PortMaster/pylibs/harbourmaster/harbour.py:1253 msgid "Unable do download a runtime when in offline mode." msgstr "Incapaz de baixar um tempo de execução quando desconectado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1221 +#: PortMaster/pylibs/harbourmaster/harbour.py:1257 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Verificando tempo de execução {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1230 -#: PortMaster/pylibs/harbourmaster/harbour.py:1237 +#: PortMaster/pylibs/harbourmaster/harbour.py:1266 +#: PortMaster/pylibs/harbourmaster/harbour.py:1273 msgid "Verifying" msgstr "Verificando" -#: PortMaster/pylibs/harbourmaster/harbour.py:1285 +#: PortMaster/pylibs/harbourmaster/harbour.py:1321 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "Verificado {runtime} com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1288 +#: PortMaster/pylibs/harbourmaster/harbour.py:1324 #, python-brace-format msgid "Verified {runtime}." msgstr "Verificado {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1294 +#: PortMaster/pylibs/harbourmaster/harbour.py:1330 #, python-brace-format msgid "Updating {runtime}." msgstr "Atualizando {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1298 +#: PortMaster/pylibs/harbourmaster/harbour.py:1334 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Tempo de execução {runtime} está quebrado, reinstalando." -#: PortMaster/pylibs/harbourmaster/harbour.py:1302 +#: PortMaster/pylibs/harbourmaster/harbour.py:1338 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Baixando tempo de execução {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1322 -#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1358 +#: PortMaster/pylibs/harbourmaster/harbour.py:1368 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "Incapaz de baixar {runtime}, jogo pode não funcionar corretamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1341 +#: PortMaster/pylibs/harbourmaster/harbour.py:1377 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} baixado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1347 +#: PortMaster/pylibs/harbourmaster/harbour.py:1383 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Incapaz de encontrar um download para {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1436 +#: PortMaster/pylibs/harbourmaster/harbour.py:1393 +#: PortMaster/pylibs/harbourmaster/harbour.py:1472 msgid "Unable do download a port when in offline mode." msgstr "Incapaz de baixar um jogo quando desconectado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1454 +#: PortMaster/pylibs/harbourmaster/harbour.py:1490 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "Incapaz de encontrar uma fonte para {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1468 +#: PortMaster/pylibs/harbourmaster/harbour.py:1504 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Jogo desconhecido {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1501 +#: PortMaster/pylibs/harbourmaster/harbour.py:1537 #, python-brace-format msgid "Removing {port_name}" msgstr "Removendo {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1533 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} desinstalado com sucesso" @@ -356,75 +360,82 @@ msgstr "Já está atualizado" msgid "Fetching latest info" msgstr "Buscando informação mais recente" -#: PortMaster/pylibs/harbourmaster/source.py:204 +#: PortMaster/pylibs/harbourmaster/source.py:193 msgid "Done." msgstr "Concluído." -#: PortMaster/pylibs/harbourmaster/source.py:212 +#: PortMaster/pylibs/harbourmaster/source.py:201 +#: PortMaster/pylibs/harbourmaster/source.py:535 #, python-brace-format msgid "Unable to find {port_name}." msgstr "Incapaz de encontrar {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:223 +#: PortMaster/pylibs/harbourmaster/source.py:212 #, python-brace-format msgid "Unable to find verification info for {port_name}." msgstr "Incapaz de encontrar informação de verificação para {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:230 +#: PortMaster/pylibs/harbourmaster/source.py:219 #, python-brace-format msgid "Unable to download verification info for {port_name}." msgstr "Incapaz de baixar informação de verificação para {port_name}." -#: PortMaster/pylibs/harbourmaster/source.py:240 +#: PortMaster/pylibs/harbourmaster/source.py:229 msgid "Success!" msgstr "Sucesso!" -#: PortMaster/pylibs/harbourmaster/source.py:295 +#: PortMaster/pylibs/harbourmaster/source.py:284 +#: PortMaster/pylibs/harbourmaster/source.py:448 #: PortMaster/pylibs/pugtheme.py:360 msgid "Fetching info" msgstr "Buscando informação" -#: PortMaster/pylibs/harbourmaster/source.py:477 +#: PortMaster/pylibs/harbourmaster/source.py:596 #, python-brace-format msgid "{source_name}: Fetching latest ports" msgstr "{source_name}: Buscando jogos mais recentes" -#: PortMaster/pylibs/harbourmaster/source.py:516 +#: PortMaster/pylibs/harbourmaster/source.py:635 msgid "Fetching info." msgstr "Buscando informação." -#: PortMaster/pylibs/harbourmaster/source.py:590 +#: PortMaster/pylibs/harbourmaster/source.py:709 msgid "Unable to download verification file." msgstr "Incapaz de baixar arquivo de verificação." -#: PortMaster/pylibs/harbourmaster/source.py:603 +#: PortMaster/pylibs/harbourmaster/source.py:722 msgid "Unable to download non zip files." msgstr "Incapaz de baixar arquivos que não sejam zip." -#: PortMaster/pylibs/harbourmaster/util.py:299 +#: PortMaster/pylibs/harbourmaster/util.py:310 #, python-brace-format msgid "Unable to download file. [{status_code}]" msgstr "Incapaz de baixar arquivo. [{status_code}]" -#: PortMaster/pylibs/harbourmaster/util.py:315 +#: PortMaster/pylibs/harbourmaster/util.py:326 #, python-brace-format msgid "Downloading {file_url} - ({total_length_mb})" msgstr "Baixando {file_url} - ({total_length_mb})" -#: PortMaster/pylibs/harbourmaster/util.py:327 -#: PortMaster/pylibs/harbourmaster/util.py:341 +#: PortMaster/pylibs/harbourmaster/util.py:338 +#: PortMaster/pylibs/harbourmaster/util.py:352 msgid "Downloading file." msgstr "Baixando arquivo." -#: PortMaster/pylibs/harbourmaster/util.py:350 +#: PortMaster/pylibs/harbourmaster/util.py:361 +#, python-brace-format +msgid "Download failed: {err}" +msgstr "" + +#: PortMaster/pylibs/harbourmaster/util.py:372 msgid "Download validation failed." msgstr "Validação do download falhou." -#: PortMaster/pylibs/harbourmaster/util.py:356 +#: PortMaster/pylibs/harbourmaster/util.py:378 msgid "Passed file validation." msgstr "Passou validação de arquivo." -#: PortMaster/pylibs/harbourmaster/util.py:361 +#: PortMaster/pylibs/harbourmaster/util.py:383 msgid "Unable to validate download." msgstr "Incapaz de validar download." @@ -615,9 +626,9 @@ msgstr "Deletar Tempos de Execução de PortMaster" #: PortMaster/pylibs/pugscene.py:808 PortMaster/pylibs/pugscene.py:890 #: PortMaster/pylibs/pugscene.py:891 PortMaster/pylibs/pugscene.py:944 #: PortMaster/pylibs/pugscene.py:945 PortMaster/pylibs/pugscene.py:1072 -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 PortMaster/pylibs/pugscene.py:1296 -#: PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 PortMaster/pylibs/pugscene.py:1309 +#: PortMaster/pylibs/pugscene.py:1311 msgid "Back" msgstr "Voltar" @@ -637,7 +648,7 @@ msgstr "Usado" msgid "Not Used" msgstr "Não usado" -#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1296 +#: PortMaster/pylibs/pugscene.py:701 PortMaster/pylibs/pugscene.py:1309 msgid "Install" msgstr "Instalar" @@ -645,7 +656,7 @@ msgstr "Instalar" msgid "Check" msgstr "Verificar" -#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1298 +#: PortMaster/pylibs/pugscene.py:705 PortMaster/pylibs/pugscene.py:1311 msgid "Uninstall" msgstr "Desinstalar" @@ -725,125 +736,141 @@ msgstr "Espaço" msgid "Lower Case" msgstr "Letra minúscula" -#: PortMaster/pylibs/pugscene.py:1121 +#: PortMaster/pylibs/pugscene.py:1109 PortMaster/pylibs/pugscene.py:1132 msgid "NO PORTS" msgstr "SEM JOGOS" -#: PortMaster/pylibs/pugscene.py:1128 +#: PortMaster/pylibs/pugscene.py:1113 PortMaster/pylibs/pugscene.py:1139 msgid "** NO PORTS FOUND **" msgstr "** NENHUM JOGO ENCONTRADO **" -#: PortMaster/pylibs/pugscene.py:1131 +#: PortMaster/pylibs/pugscene.py:1115 PortMaster/pylibs/pugscene.py:1142 msgid "Download ports first." msgstr "Baixe jogos primeiro." -#: PortMaster/pylibs/pugscene.py:1133 +#: PortMaster/pylibs/pugscene.py:1144 msgid "Try removing some filters." msgstr "Tente remover alguns filtros." -#: PortMaster/pylibs/pugscene.py:1259 PortMaster/pylibs/pugscene.py:1278 -#: PortMaster/pylibs/pugscene.py:1280 +#: PortMaster/pylibs/pugscene.py:1271 PortMaster/pylibs/pugscene.py:1291 +#: PortMaster/pylibs/pugscene.py:1293 msgid "Show Info" msgstr "Mostrar informação" -#: PortMaster/pylibs/pugscene.py:1264 +#: PortMaster/pylibs/pugscene.py:1276 msgid "Ports List" msgstr "Lista de Jogos" -#: PortMaster/pylibs/pugscene.py:1278 +#: PortMaster/pylibs/pugscene.py:1291 msgid "Filters" msgstr "Filtros" -#: PortMaster/pylibs/pugscene.py:1286 +#: PortMaster/pylibs/pugscene.py:1299 msgid "Port Info" msgstr "Informações de Jogo" -#: PortMaster/pylibs/pugscene.py:1351 +#: PortMaster/pylibs/pugscene.py:1364 msgid "Filters Scene" msgstr "Cena de Filtros" -#: PortMaster/pylibs/pugscene.py:1378 +#: PortMaster/pylibs/pugscene.py:1393 +msgid "Alphabetical" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1394 +msgid "Recently Added" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1395 +msgid "Recently Updated" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1398 msgid "Action" msgstr "Ação" -#: PortMaster/pylibs/pugscene.py:1379 +#: PortMaster/pylibs/pugscene.py:1399 msgid "Adventure" msgstr "Aventura" -#: PortMaster/pylibs/pugscene.py:1380 +#: PortMaster/pylibs/pugscene.py:1400 msgid "Arcade" msgstr "Arcade" -#: PortMaster/pylibs/pugscene.py:1381 +#: PortMaster/pylibs/pugscene.py:1401 msgid "Casino/Card" msgstr "Cassino/Cartas" -#: PortMaster/pylibs/pugscene.py:1382 +#: PortMaster/pylibs/pugscene.py:1402 msgid "First Person Shooter" msgstr "FPS (Tiro em primeira pessoa)" -#: PortMaster/pylibs/pugscene.py:1383 +#: PortMaster/pylibs/pugscene.py:1403 msgid "Platformer" msgstr "Plataforma" -#: PortMaster/pylibs/pugscene.py:1384 +#: PortMaster/pylibs/pugscene.py:1404 msgid "Puzzle" msgstr "Quebra-cabeça" -#: PortMaster/pylibs/pugscene.py:1385 +#: PortMaster/pylibs/pugscene.py:1405 msgid "Racing" msgstr "Corrida" -#: PortMaster/pylibs/pugscene.py:1386 +#: PortMaster/pylibs/pugscene.py:1406 msgid "Rhythm" msgstr "Ritmo" -#: PortMaster/pylibs/pugscene.py:1387 +#: PortMaster/pylibs/pugscene.py:1407 msgid "Role Playing Game" msgstr "RPG (Role Playing Game)" -#: PortMaster/pylibs/pugscene.py:1388 +#: PortMaster/pylibs/pugscene.py:1408 msgid "Simulation" msgstr "Simulação" -#: PortMaster/pylibs/pugscene.py:1389 +#: PortMaster/pylibs/pugscene.py:1409 msgid "Sports" msgstr "Esportes" -#: PortMaster/pylibs/pugscene.py:1390 +#: PortMaster/pylibs/pugscene.py:1410 msgid "Strategy" msgstr "Estratégia" -#: PortMaster/pylibs/pugscene.py:1391 +#: PortMaster/pylibs/pugscene.py:1411 msgid "Visual Novel" msgstr "Visual Novel (Romance Visual)" -#: PortMaster/pylibs/pugscene.py:1392 +#: PortMaster/pylibs/pugscene.py:1412 msgid "Other" msgstr "Outros" -#: PortMaster/pylibs/pugscene.py:1398 PortMaster/pylibs/pugscene.py:1399 +#: PortMaster/pylibs/pugscene.py:1420 PortMaster/pylibs/pugscene.py:1421 #, python-brace-format msgid "{runtime_name} Runtime" msgstr "Tempo de execução {runtime_name}" -#: PortMaster/pylibs/pugscene.py:1435 +#: PortMaster/pylibs/pugscene.py:1463 +msgid "Sort:" +msgstr "" + +#: PortMaster/pylibs/pugscene.py:1490 msgid "Genres:" msgstr "Gêneros:" -#: PortMaster/pylibs/pugscene.py:1463 +#: PortMaster/pylibs/pugscene.py:1517 msgid "Attributes:" msgstr "Atributos:" -#: PortMaster/pylibs/pugscene.py:1490 +#: PortMaster/pylibs/pugscene.py:1543 msgid "Porters:" msgstr "Porters:" -#: PortMaster/pylibs/pugscene.py:1540 +#: PortMaster/pylibs/pugscene.py:1607 msgid "Messages" msgstr "Mensagens" -#: PortMaster/pylibs/pugscene.py:1575 +#: PortMaster/pylibs/pugscene.py:1642 msgid "Are you sure you want to cancel?" msgstr "Tem certeza de que quer cancelar?"