diff --git a/PortMaster/muos/PortMaster.txt b/PortMaster/muos/PortMaster.txt index d2c2eba..151edfd 100644 --- a/PortMaster/muos/PortMaster.txt +++ b/PortMaster/muos/PortMaster.txt @@ -1,6 +1,7 @@ #!/bin/bash controlfolder="/mnt/mmc/MUOS/PortMaster" +toolsfolderloc="/mnt/mmc/MUOS/" if [ ! -z "$(df | grep '/mnt/sdcard')" ]; then directory="/mnt/sdcard" @@ -21,6 +22,78 @@ CUR_TTY=/dev/tty0 cd "$controlfolder" +## Autoinstallation Code +# This will automatically install zips found within the PortMaster/autoinstall directory using harbourmaster +AUTOINSTALL=$(find "${toolsfolderloc}/PortMaster/autoinstall" -type f \( -name "*.zip" -o -name "*.squashfs" \)) +if [ -n "$AUTOINSTALL" ]; then + source "$controlfolder/PortMasterDialog.txt" + + GW=$(PortMasterIPCheck) + PortMasterDialogInit "no-check" + + PortMasterDialog "messages_begin" + + PortMasterDialog "message" "Auto-installation" + + # Install the latest runtimes.zip + if [ -f "${toolsfolderloc}/PortMaster/autoinstall/runtimes.zip" ]; then + PortMasterDialog "message" "- Installing runtimes.zip, this could take a minute or two." + $ESUDO unzip -o "${toolsfolderloc}/PortMaster/autoinstall/runtimes.zip" -d "${toolsfolderloc}/PortMaster/libs" + $ESUDO rm -f "${toolsfolderloc}/PortMaster/autoinstall/runtimes.zip" + PortMasterDialog "message" "- SUCCESS: runtimes.zip" + fi + + for file_name in "${toolsfolderloc}/PortMaster/autoinstall"/*.squashfs + do + if [ ! -f "$file_name" ]; then + continue + fi + + $ESUDO mv -f "$file_name" "${toolsfolderloc}/PortMaster/libs" + PortMasterDialog "message" "- SUCCESS: $(basename $file_name)" + done + + for file_name in "${toolsfolderloc}/PortMaster/autoinstall"/*.zip + do + if [[ "$(basename $file_name)" == "PortMaster.zip" ]]; then + continue + fi + + if [ ! -f "$file_name" ]; then + continue + fi + + if [[ $(PortMasterDialogResult "install" "$file_name") == "OKAY" ]]; then + $ESUDO rm -f "$file_name" + PortMasterDialog "message" "- SUCCESS: $(basename $file_name)" + else + PortMasterDialog "message" "- FAILURE: $(basename $file_name)" + fi + done + + if [ -f "${toolsfolderloc}/PortMaster/autoinstall/PortMaster.zip" ]; then + file_name="${toolsfolderloc}/PortMaster/autoinstall/PortMaster.zip" + + if [[ $(PortMasterDialogResult "install" "$file_name") == "OKAY" ]]; then + $ESUDO rm -f "$file_name" + PortMasterDialog "message" "- SUCCESS: $(basename $file_name)" + else + PortMasterDialog "message" "- FAILURE: $(basename $file_name)" + fi + fi + + PortMasterDialog "messages_end" + if [ -z "$GW" ]; then + PortMasterDialogMessageBox "Finished running autoinstall.\n\nNo internet connection present so exiting." + PortMasterDialogExit + exit 0 + else + PortMasterDialogMessageBox "Finished running autoinstall." + PortMasterDialogExit + fi +fi + + export TERM=linux $ESUDO chmod 666 $CUR_TTY printf "\033c" > $CUR_TTY diff --git a/PortMaster/pugwash b/PortMaster/pugwash index a5f30b9..b9ef183 100755 --- a/PortMaster/pugwash +++ b/PortMaster/pugwash @@ -127,8 +127,8 @@ __builtins__.CURRENT_LANG = None ALL_LANGUAGES = { ## Keep it in order of importance, for example pt_PT before pt_BR. - "de_DE": _("German"), "da_DK": _("Danish"), + "de_DE": _("German"), "en_US": _("English"), "es_ES": _("Spanish"), "fi_FI": _("Finnish"), @@ -140,6 +140,8 @@ ALL_LANGUAGES = { "pl_PL": _("Polish"), "pt_PT": _("Portuguese (Portugal)"), "pt_BR": _("Portuguese (Brazil)"), + "ru_RU": _("Russian"), + "uk_UA": _("Ukrainian"), "zh_CN": _("Chinese Simplified"), } diff --git a/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/de_DE/LC_MESSAGES/messages.po index d5f0b68..ceb8454 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-07 08:34\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Deutsch" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Dänisch" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Deutsch" + #: PortMaster/pugwash:132 msgid "English" msgstr "Englisch" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Chinesisch (vereinfacht)" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "Unbekannte IP" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/V" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** KEIN PORT **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "Benötigt Dateien" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Installiert" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "Fehlt" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Update verfügbar" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "Nicht installiert" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "Okay" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Abbrechen" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "Lade aktuelle gameinfo.xml Dateien und Cover-Bilder herunter." -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "Lade gameinfo.xml für {source_name} herunter" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation von {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Deinstallation von {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Aktualisieren aller Port-Quellen:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Prüfe {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Es wird von {old_release_channel} zur {new_release_channel} Version gewechselt.\n\n" "Soll das Downgrade durchgeführt werden?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, 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:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Lade Quellen" msgid "Loading Ports." msgstr "Lade Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installiere Theme {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Wird installiert" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "Theme {download_name!r} erfolgreich installiert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Installiere {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} erfolgreich installiert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Installation fehlgeschlagen, entferne Dateien..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Port {download_name} Installation fehlgeschlagen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "Port {runtime} enthält eine unbekannte Runtime, möglicherweise funktioniert das Spiel nicht korrekt." -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Überprüft" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Nicht verifiziert" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Fehlerhaft" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "Runtimes lassen sich nicht im Offline Modus herunterladen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Überprüfe Runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Überprüfe" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, 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:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "Kann {runtime} in {device_arch} nicht herunterladen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} erfolgreich überprüft." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} verifiziert." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Aktualisiere {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Laufzeit- {runtime} ist defekt, Installiere neu." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Lade runtime {runtime} herunter" -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Erfolgreich {runtime} heruntergeladen" -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "Ports lassen sich nicht im Offline Modus herunterladen." -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Unbekannter Port {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Entferne {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "Erfolgreich {port_name} deinstalliert" diff --git a/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/es_ES/LC_MESSAGES/messages.po index 8d2e83f..be876eb 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Alemán" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Danés" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Alemán" + #: PortMaster/pugwash:132 msgid "English" msgstr "Inglés" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Portugués (Brasil)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Chino Simplificado" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "IP Desconocida" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/D" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** SIN PORT**" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Listo para Funcionar" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "Requiere Archivos" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "No Disponible" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Actualización Disponible" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "No Instalado" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "Aceptar" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Actualizando todas las fuentes de ports:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Checkeando {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Estas cambiando de la version {old_release_channel} a la version {new_release_channel}.\n\n" "Quieres hacer el downgrade?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "Hay una nueva version de PortMaster ({portmaster_version})\n\n" "Te gustaría actualizarla?" -#: PortMaster/pugwash:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Cargando Fuentes." msgid "Loading Ports." msgstr "Cargando Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalando Tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Instalando" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalando {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Instalación fallida, eliminando archivos..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "La instalación del Port {download_name} ha fallado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Verificado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Sin verificar" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Dañado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 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:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Verificando el runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Verificando" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, 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:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "Se verificó el {runtime} exitosamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} verificado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Actualizando el {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "El runtime {runtime} esta dañado, reinstalando." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Descargando tiempo de ejecución {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} Descargado correctamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 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:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port desconocido {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Eliminando {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} Desinstalado correctamente" diff --git a/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/fr_FR/LC_MESSAGES/messages.po index d8f9815..e716792 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Allemand" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Danois" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Allemand" + #: PortMaster/pugwash:132 msgid "English" msgstr "Anglais" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Portugais (Brésil)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Chinois simplifié" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "IP Inconnu" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** AUCUN RÉSULTAT **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Prêt à Exécuter" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "Fichiers Requis" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Installé" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "Manquant" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Nouvelle mise à jour disponible" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "Non installé" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "D'accord" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Annuler" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Installation de {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Désinstallation de {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Mise à jour de toutes les sources de ports :" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Vérification de {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Vous passez de l' {old_release_channel} à la version {new_release_channel} .\n\n" "Voulez-vous downgrader ?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, 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:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Chargement des sources." msgid "Loading Ports." msgstr "Chargement des Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installation du thème {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Installation en cours" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 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:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Installation de {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 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:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Échec de l'installation, suppression des fichiers en cours..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Échec de l'installation du port {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Vérifié" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Non vérifié" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Cassé" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 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:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Vérification du runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Vérification" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, 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:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} vérifié avec succès." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} vérifié." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Mise à jour {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "L'exécution {runtime} est cassée, réinstallation." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Téléchargement de la runtime {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Téléchargement de {runtime} réussi." -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 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:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port inconnu {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Suppression de {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} désinstallé avec succès." diff --git a/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/it_IT/LC_MESSAGES/messages.po index 0495024..71dd826 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Tedesco" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Danese" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Tedesco" + #: PortMaster/pugwash:132 msgid "English" msgstr "Inglese" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Portoghese (Brasile)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Cinese Semplificato" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "IP Ignoto" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** Nessun Risultato **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Ready to Run" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "File richiesti" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Installato" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "Mancante" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Aggiornamento Disponibile" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "Non Installato" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Annulla" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Installo {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Disinstallo {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Aggiorno le fonti..." -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verifico {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Stai passando dalla versione {old_release_channel} alla versione {new_release_channel} .\n\n" "Vuoi effettuare il downgrade?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, 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:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Caricamento Fonti." msgid "Loading Ports." msgstr "Caricamento Ports." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Installo Tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Installo" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} installato con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Installo {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} installato con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Installazione fallita, rimozione file in corso..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "{download_name} fallisce l'installazione." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Verificato" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Non verificato" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Corrotto" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "Impossibile scaricare la runtime in modalità offline" -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Verifico runtime {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Verifica in corso" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Impossibile trovare il download per {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} verificata con successo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} Verificata." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Aggiornamento {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Runtime {runtime} è corrotta, reinstallazione." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Scarico {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Scaricato con successo {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "Impossibile scaricare un Port in modalità offline" -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Port sconosciuto {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Rimuovo {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} disinstallato con successo." diff --git a/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po index ee067f7..0222bcc 100644 --- a/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "ドイツ語" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "デンマーク語" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "ドイツ語" + #: PortMaster/pugwash:132 msgid "English" msgstr "英語" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "ポルトガル語 (ブラジル)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "中国語 (簡体字)" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "不明なIP" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** ポートなし **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "実行準備完了" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "必要なファイル" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "インストール済み" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "欠落" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "アップデートが利用できます" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "インストールされていません" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "了解" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "キャンセル" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "{port_name} インストール中" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "{port_name} をアンインストール中" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "すべてのポートソースを更新しています:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "{runtime_name} を確認中" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "{old_release_channel} から {new_release_channel} へ切り替えています。\n\n" "ダウングレードしますか?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "PortMaster ({portmaster_version})\n\n" "アップグレードしますか?" -#: PortMaster/pugwash:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "ソースの読み込み中" msgid "Loading Ports." msgstr "ポートを読み込み中" -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "テーマ {download_name} のインストール中。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "インストール中" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "テーマ {download_name!r} のインストールに成功しました。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "{download_name} インストール中." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "ポート {download_name!r} が正常にインストールされました。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "インストールに失敗しました。ファイルの削除中..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "ポート {download_name} がインストールされませんでした。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "ポート {download_name!r} と {runtime_name!r} が正常にインストールされました。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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} は正常にインストールされましたが、{runtime_name!r} のインストールに失敗しました!\n\n" "再インストールして再試行するか、ウィキのヘルプを確認してください。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "ポート {runtime} に不正なランタイムが含まれています。ゲームが正しく動作しない可能性があります。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "認証済み" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "未確認" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "損壊" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "オフラインモードではランタイムをダウンロードできません。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "ランタイム {runtime} を確認しています" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "検証中" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "{runtime} のダウンロードが見つかりません。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} 認証された。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} 認証済み" -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "{runtime} を更新中" -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "ランタイム {runtime} が壊れています。再インストールします。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "ランタイム {runtime} をダウンロードしています。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "{runtime} をダウンロードできません。ゲームが正しく実行されない可能性があります。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} のダウンロードに成功しました。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "オフラインモードではポート ランタイムをダウンロードできません。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "{port_name} のソースが見つかりません" -#: PortMaster/pylibs/harbourmaster/harbour.py:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "不明なポート {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "{port_name} を削除中" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} のアンインストールに成功しました" diff --git a/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po index 6c0f66d..b517bc2 100644 --- a/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/ko_KR/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "독일어" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "덴마크어" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "독일어" + #: PortMaster/pugwash:132 msgid "English" msgstr "영어" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "포르투갈어 (브라질)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "중국어 간체" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "알 수 없는 IP" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "N/A" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** 포트 없음 **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "실행 준비 완료" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "필요한 파일" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "설치 완료" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "누락" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "업데이트 이용 가능" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "설치되지 않음" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "확인" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "취소" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "{port_name} 설치 중" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "{port_name} 제거 중" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "모든 포트 소스 업데이트 중:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "{runtime_name} 확인 중" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "{old_release_channel} 에서 {new_release_channel} 로 변경됩니다.\n\n" "다운그레이드 하겠습니까?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "포트마스터 새 버전({portmaster_version})이 있습니다.\n\n" "업그레이드 하겠습니까?" -#: PortMaster/pugwash:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "소스 불러오는 중" msgid "Loading Ports." msgstr "포트 불러오는 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "{download_name} 테마를 설치 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "설치 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "{download_name!r} 테마 설치에 성공했습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "{download_name} 설치 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "{download_name!r} 포트가 정상적으로 설치되었습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "설치에 실패했습니다. 파일 삭제 중..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "{download_name} 포트 설치에 실패했습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "{download_name!r} 포트와 {runtime_name!r} 가 정상적으로 설치되었습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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} 포트는 정상적으로 설치되었으나, {runtime_name!r} 설치에 실패했습니다!\n\n" "재설치 후에 다시 시도하든지, 위키의 도움말을 확인해 주세요." -#: PortMaster/pylibs/harbourmaster/harbour.py:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "{runtime} 포트에 비정상적인 런타임이 포함되어 있습니다. 게임이 올바르게 동작하지 않을 수 있습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "검증 완료" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "미검증" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "파손" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "오프라인 모드에서는 런타임을 다운로드할 수 없습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "런타임 {runtime} 를 검증 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "검증 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "{runtime} 다운로드를 찾을 수 없습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} 검증 성공" -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "{runtime} 검증 완료" -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "{runtime} 업데이트 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "런타임 {runtime} 가 파손되어 있어 다시 설치합니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "런타임 {runtime} 다운로드 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "{runtime} 를 다운로드할 수 없습니다. 게임이 올바르게 동작하지 않을 수 있습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} 다운로드 성공" -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "오프라인 모드에서는 포트를 다운로드할 수 없습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "{port_name} 소스를 찾을 수 없습니다." -#: PortMaster/pylibs/harbourmaster/harbour.py:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "알 수 없는 포트 {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "{port_name} 제거 중" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} 설치 성공" diff --git a/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pl_PL/LC_MESSAGES/messages.po index e74fb6f..bf2a54e 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-07 08:34\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Niemiecki" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Duński" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Niemiecki" + #: PortMaster/pugwash:132 msgid "English" msgstr "Angielski" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazylia)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Chiński Uproszczony" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "Nieznany adres IP" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "Nie dostępne" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** BRAK PORTU **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Gotowe do uruchomienia" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "Wymagane pliki" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Zainstalowane" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "Brakujące" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Dostępna aktualizacja" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "Nie zainstalowano" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "W porządku" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Anuluj" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "Pobieranie najnowszych plików gameinfo.xml i okładek." -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "Pobieranie gameinfo.xml dla {source_name}" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalacja {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Odinstalowywanie {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Aktualizowanie wszystkich źródeł portów:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Sprawdzanie {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Przechodzisz z {old_release_channel} na wersję {new_release_channel}.\n\n" "Czy chcesz kontynuować?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, 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:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Ładowanie źródeł." msgid "Loading Ports." msgstr "Ładowanie portów." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalowanie motywu {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Instalowanie" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "Motyw {download_name!r} zainstalowany pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalacja {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "Port {download_name!r} zainstalowany pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Instalacja nie powiodła się, usuwanie plików..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Port {download_name} nie został zainstalowany." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "Port {runtime} zawiera nieznany runtime, gra może nie działać prawidłowo." -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Zweryfikowane" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Niezweryfikowane" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Uszkodzone" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "Nie można pobrać runtime w trybie offline." -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Weryfikowanie czasu pracy {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Weryfikowanie" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Nie można znaleźć pobrania dla {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "Nie można pobrać {runtime} w {device_arch}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "Zweryfikowano {runtime} pomyślnie." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "Zweryfikowano {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Aktualizowanie {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Runtime {runtime} jest uszkodzony, reinstalacja." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Pobieranie runtime {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "Pomyślnie pobrano {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "Nie można pobrać portu w trybie offline." -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Nieznany port {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Usuwanie {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "Pomyślnie pobrano {port_name}" diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/messages.po index 083b66a..e8dcf3d 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: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-07 08:34\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "Alemão" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "Dinamarquês" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "Alemão" + #: PortMaster/pugwash:132 msgid "English" msgstr "Inglês" @@ -70,104 +70,112 @@ msgid "Portuguese (Brazil)" msgstr "Português (Brasil)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "Russo" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "Chines Simplificado" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "IP desconhecido" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "Não disponível" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** SEM JOGO **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "Pronto para executar" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "Arquivos necessários" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "Instalado" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "Faltando" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "Atualização disponível" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "Não instalado" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "Ok" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "Cancelar" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "Obtendo arquivos gameinfo.xml mais recentes e imagens de capa." -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "Baixando gameinfo.xml para {source_name}" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "Instalando {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "Desinstalando {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "Atualizando todas as fontes de jogos:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "Verificando {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "Você está trocando da versão {old_release_channel} para a versão {new_release_channel}.\n\n" "Você quer fazer o downgrade?" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, 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:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -203,154 +211,154 @@ msgstr "Carregando fontes." msgid "Loading Ports." msgstr "Carregando jogos." -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "Instalando tema {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "Instalando" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "Tema {download_name!r} instalado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "Instalando {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "Jogo {download_name!r} instalado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "Instalação falhou, removendo arquivos..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "Jogo {download_name} falhou na instalação." -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 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:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, 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:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "Jogo {runtime} contém um tempo de execução desconhecido, jogo talvez não rode corretamente." -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "Verificado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "Não verificado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "Quebrado" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 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:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "Verificando tempo de execução {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "Verificando" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "Incapaz de encontrar um download para {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "Não é possível baixar {runtime} em {device_arch}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "Verificado {runtime} com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "Verificado {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "Atualizando {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "Tempo de execução {runtime} está quebrado, reinstalando." -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "Baixando tempo de execução {runtime}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, 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:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "{runtime} baixado com sucesso." -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "Incapaz de baixar um jogo quando desconectado." -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, 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:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "Jogo desconhecido {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "Removendo {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "{port_name} desinstalado com sucesso" diff --git a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po index 4113e50..a503eda 100644 --- a/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po +++ b/PortMaster/pylibs/locales/pt_BR/LC_MESSAGES/themes.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-09-09 16:35+0800\n" -"PO-Revision-Date: 2024-03-07 08:34\n" +"PO-Revision-Date: 2024-03-10 05:51\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" diff --git a/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po b/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po index 181270a..9dbb358 100644 --- a/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po +++ b/PortMaster/pylibs/locales/zh_CN/LC_MESSAGES/messages.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: portmaster\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-06 19:02+0800\n" -"PO-Revision-Date: 2024-03-06 11:02\n" +"POT-Creation-Date: 2024-03-10 13:53+0800\n" +"PO-Revision-Date: 2024-03-10 05:53\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -18,13 +18,13 @@ msgstr "" "X-Crowdin-File-ID: 1\n" #: PortMaster/pugwash:130 -msgid "German" -msgstr "德语" - -#: PortMaster/pugwash:131 msgid "Danish" msgstr "丹麦语" +#: PortMaster/pugwash:131 +msgid "German" +msgstr "德语" + #: PortMaster/pugwash:132 msgid "English" msgstr "英语" @@ -70,102 +70,110 @@ msgid "Portuguese (Brazil)" msgstr "葡萄牙语 (巴西)" #: PortMaster/pugwash:143 +msgid "Russian" +msgstr "" + +#: PortMaster/pugwash:144 +msgid "Ukrainian" +msgstr "" + +#: PortMaster/pugwash:145 msgid "Chinese Simplified" msgstr "简体中文" -#: PortMaster/pugwash:643 +#: PortMaster/pugwash:645 msgid "Unknown IP" msgstr "未知IP地址" -#: PortMaster/pugwash:750 PortMaster/pugwash:891 +#: PortMaster/pugwash:752 PortMaster/pugwash:893 msgid "N/A" msgstr "不适用" -#: PortMaster/pugwash:859 +#: PortMaster/pugwash:861 msgid "** NO PORT **" msgstr "** 无PORT **" -#: PortMaster/pugwash:878 PortMaster/pylibs/pugscene.py:1751 +#: PortMaster/pugwash:880 PortMaster/pylibs/pugscene.py:1751 msgid "Ready to Run" msgstr "可以运行" -#: PortMaster/pugwash:878 +#: PortMaster/pugwash:880 msgid "Requires Files" msgstr "所需的文件" -#: PortMaster/pugwash:885 PortMaster/pugwash:912 +#: PortMaster/pugwash:887 PortMaster/pugwash:914 #: PortMaster/pylibs/pugscene.py:877 msgid "Installed" msgstr "已安装" -#: PortMaster/pugwash:887 +#: PortMaster/pugwash:889 msgid "Missing" msgstr "缺失" -#: PortMaster/pugwash:913 PortMaster/pylibs/harbourmaster/harbour.py:1608 +#: PortMaster/pugwash:915 PortMaster/pylibs/harbourmaster/harbour.py:1616 #: PortMaster/pylibs/pugscene.py:1753 msgid "Update Available" msgstr "有可用更新" -#: PortMaster/pugwash:914 PortMaster/pylibs/harbourmaster/harbour.py:1607 +#: PortMaster/pugwash:916 PortMaster/pylibs/harbourmaster/harbour.py:1615 #: PortMaster/pylibs/pugscene.py:877 PortMaster/pylibs/pugscene.py:1752 msgid "Not Installed" msgstr "未安装" -#: PortMaster/pugwash:1090 PortMaster/pugwash:1464 +#: PortMaster/pugwash:1092 PortMaster/pugwash:1466 #: PortMaster/pylibs/pugscene.py:2051 PortMaster/pylibs/pugscene.py:2099 #: PortMaster/pylibs/pugscene.py:2101 msgid "Okay" msgstr "确定" -#: PortMaster/pugwash:1093 PortMaster/pugwash:1465 +#: PortMaster/pugwash:1095 PortMaster/pugwash:1467 #: PortMaster/pylibs/pugscene.py:1205 PortMaster/pylibs/pugscene.py:1213 #: PortMaster/pylibs/pugscene.py:2020 PortMaster/pylibs/pugscene.py:2054 #: PortMaster/pylibs/pugscene.py:2099 msgid "Cancel" msgstr "取消" -#: PortMaster/pugwash:1316 +#: PortMaster/pugwash:1318 msgid "Fetching latest gameinfo.xml files and cover images." msgstr "" -#: PortMaster/pugwash:1337 +#: PortMaster/pugwash:1339 #, python-brace-format msgid "Downloading gameinfo.xml for {source_name}" msgstr "" -#: PortMaster/pugwash:1370 +#: PortMaster/pugwash:1372 #, python-brace-format msgid "Installing {port_name}" msgstr "正在安装 {port_name}" -#: PortMaster/pugwash:1379 +#: PortMaster/pugwash:1381 #, python-brace-format msgid "Uninstalling {port_name}" msgstr "正在卸载 {port_name}" -#: PortMaster/pugwash:1390 +#: PortMaster/pugwash:1392 msgid "Updating all port sources:" msgstr "正在更新所有端口源:" -#: PortMaster/pugwash:1400 +#: PortMaster/pugwash:1402 #, python-brace-format msgid "Checking {runtime_name}" msgstr "正在检查 {runtime_name}" -#: PortMaster/pugwash:1828 +#: PortMaster/pugwash:1830 #, python-brace-format msgid "You are switching from the {old_release_channel} to the {new_release_channel} version.\n\n" "Do you want to downgrade?" msgstr "你正在从 {old_release_channel} 切换到 {new_release_channel} 版本。" -#: PortMaster/pugwash:1834 +#: PortMaster/pugwash:1836 #, python-brace-format msgid "There is a new version of PortMaster ({portmaster_version})\n\n" "Do you want to upgrade?" msgstr "PortMaster有新版本 ({portmaster_version}) 可用" -#: PortMaster/pugwash:1839 +#: PortMaster/pugwash:1841 #, python-brace-format msgid "Do you want to reinstall PortMaster?\n\n" "This will reinstall from the {release_channel} channel to {portmaster_version}." @@ -201,154 +209,154 @@ msgstr "正在加载资源。" msgid "Loading Ports." msgstr "正在加载端口。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1317 +#: PortMaster/pylibs/harbourmaster/harbour.py:1325 #, python-brace-format msgid "Installing Theme {download_name}." msgstr "正在安装 {download_name} 主题。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1324 -#: PortMaster/pylibs/harbourmaster/harbour.py:1366 -#: PortMaster/pylibs/harbourmaster/harbour.py:1438 +#: PortMaster/pylibs/harbourmaster/harbour.py:1332 +#: PortMaster/pylibs/harbourmaster/harbour.py:1374 +#: PortMaster/pylibs/harbourmaster/harbour.py:1446 msgid "Installing" msgstr "正在安装" -#: PortMaster/pylibs/harbourmaster/harbour.py:1334 +#: PortMaster/pylibs/harbourmaster/harbour.py:1342 msgid "Theme {download_name!r} installed successfully." msgstr "主题 {download_name!r} 安装成功。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1357 -#: PortMaster/pylibs/harbourmaster/harbour.py:1429 +#: PortMaster/pylibs/harbourmaster/harbour.py:1365 +#: PortMaster/pylibs/harbourmaster/harbour.py:1437 #, python-brace-format msgid "Installing {download_name}." msgstr "正在安装 {download_name}." -#: PortMaster/pylibs/harbourmaster/harbour.py:1386 -#: PortMaster/pylibs/harbourmaster/harbour.py:1566 +#: PortMaster/pylibs/harbourmaster/harbour.py:1394 +#: PortMaster/pylibs/harbourmaster/harbour.py:1574 msgid "Port {download_name!r} installed successfully." msgstr "已成功安装了端口 {download_name!r} 。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1532 +#: PortMaster/pylibs/harbourmaster/harbour.py:1540 msgid "Installation failed, removing files..." msgstr "安装失败,正在移除文件..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1544 +#: PortMaster/pylibs/harbourmaster/harbour.py:1552 #, python-brace-format msgid "Port {download_name} installed failed." msgstr "端口 {download_name} 安装失败。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1556 +#: PortMaster/pylibs/harbourmaster/harbour.py:1564 msgid "Port {download_name!r} and {runtime_name!r} installed successfully." msgstr "端口 {download_name!r} 和 {runtime_name!r} 安装成功。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1561 +#: PortMaster/pylibs/harbourmaster/harbour.py:1569 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} 安装成功,但 {runtime_name!r} 运行时安装失败!\n\n" "请尝试重新安装,或者查阅wiki以获得帮助。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1576 +#: PortMaster/pylibs/harbourmaster/harbour.py:1584 #, python-brace-format msgid "Port {runtime} contains a bad runtime, game may not run correctly." msgstr "端口 {runtime} 包含了一个不适用的运行时,游戏可能无法正常运行。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1590 +#: PortMaster/pylibs/harbourmaster/harbour.py:1598 #, python-brace-format msgid "Port {runtime} contains an unknown runtime, game may not run correctly." msgstr "端口 {runtime} 包含了一个未知的运行时,游戏可能无法正常运行。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1609 +#: PortMaster/pylibs/harbourmaster/harbour.py:1617 msgid "Verified" msgstr "已验证" -#: PortMaster/pylibs/harbourmaster/harbour.py:1610 +#: PortMaster/pylibs/harbourmaster/harbour.py:1618 msgid "Unverified" msgstr "未验证" -#: PortMaster/pylibs/harbourmaster/harbour.py:1611 +#: PortMaster/pylibs/harbourmaster/harbour.py:1619 msgid "Broken" msgstr "损坏" -#: PortMaster/pylibs/harbourmaster/harbour.py:1618 +#: PortMaster/pylibs/harbourmaster/harbour.py:1626 msgid "Unable do download a runtime when in offline mode." msgstr "在离线模式下无法下载运行时。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1624 +#: PortMaster/pylibs/harbourmaster/harbour.py:1632 #, python-brace-format msgid "Verifying runtime {runtime}" msgstr "正在检查运行时 {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1633 -#: PortMaster/pylibs/harbourmaster/harbour.py:1636 +#: PortMaster/pylibs/harbourmaster/harbour.py:1641 +#: PortMaster/pylibs/harbourmaster/harbour.py:1644 msgid "Verifying" msgstr "正在验证" -#: PortMaster/pylibs/harbourmaster/harbour.py:1661 +#: PortMaster/pylibs/harbourmaster/harbour.py:1669 #, python-brace-format msgid "Unable to find a download for {runtime}." msgstr "无法找到 {runtime} 的下载链接。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1667 +#: PortMaster/pylibs/harbourmaster/harbour.py:1675 #, python-brace-format msgid "Unable to download {runtime} in {device_arch}." msgstr "无法下载适用于 {device_arch} 的运行时 {runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1688 +#: PortMaster/pylibs/harbourmaster/harbour.py:1696 #, python-brace-format msgid "Verified {runtime} successfully." msgstr "{runtime} 验证通过。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1691 +#: PortMaster/pylibs/harbourmaster/harbour.py:1699 #, python-brace-format msgid "Verified {runtime}." msgstr "已验证 {runtime}。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1697 +#: PortMaster/pylibs/harbourmaster/harbour.py:1705 #, python-brace-format msgid "Updating {runtime}." msgstr "正在更新{runtime}..." -#: PortMaster/pylibs/harbourmaster/harbour.py:1701 +#: PortMaster/pylibs/harbourmaster/harbour.py:1709 #, python-brace-format msgid "Runtime {runtime} is broken, reinstalling." msgstr "运行时{runtime} 损坏,正在重装。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1705 +#: PortMaster/pylibs/harbourmaster/harbour.py:1713 #, python-brace-format msgid "Downloading runtime {runtime}." msgstr "正在下载运行时{runtime}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1734 -#: PortMaster/pylibs/harbourmaster/harbour.py:1744 +#: PortMaster/pylibs/harbourmaster/harbour.py:1742 +#: PortMaster/pylibs/harbourmaster/harbour.py:1752 #, python-brace-format msgid "Unable to download {runtime}, game may not run correctly." msgstr "无法下载 {runtime},游戏可能无法正常运行。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1753 +#: PortMaster/pylibs/harbourmaster/harbour.py:1761 #, python-brace-format msgid "Successfully downloaded {runtime}." msgstr "成功下载 {runtime}。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1762 -#: PortMaster/pylibs/harbourmaster/harbour.py:1841 +#: PortMaster/pylibs/harbourmaster/harbour.py:1770 +#: PortMaster/pylibs/harbourmaster/harbour.py:1849 msgid "Unable do download a port when in offline mode." msgstr "在离线模式下无法下载运行时。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1859 +#: PortMaster/pylibs/harbourmaster/harbour.py:1867 #, python-brace-format msgid "Unable to find a source for {port_name}" msgstr "无法找到{port_name} 的下载资源。" -#: PortMaster/pylibs/harbourmaster/harbour.py:1873 +#: PortMaster/pylibs/harbourmaster/harbour.py:1881 #, python-brace-format msgid "Unknown port {port_name}" msgstr "未知端口 {port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1906 +#: PortMaster/pylibs/harbourmaster/harbour.py:1914 #, python-brace-format msgid "Removing {port_name}" msgstr "正在移除{port_name}" -#: PortMaster/pylibs/harbourmaster/harbour.py:1947 +#: PortMaster/pylibs/harbourmaster/harbour.py:1955 #, python-brace-format msgid "Successfully uninstalled {port_name}" msgstr "成功卸载 {port_name}" diff --git a/do_i18n.sh b/do_i18n.sh index ecb7fee..616706d 100755 --- a/do_i18n.sh +++ b/do_i18n.sh @@ -4,7 +4,7 @@ POT_DIR="PortMaster/pylibs/locales" POT_FILES=("messages" "themes") # Languages registered but not yet translated -NOT_WORKING=("da_DK" "fi_FI" "nl_NL") +NOT_WORKING=("da_DK" "fi_FI" "nl_NL" "ru_RU" "uk_UA") for POT_FILE in "${POT_FILES[@]}"; do if [[ "$POT_FILE" == "messages" ]]; then diff --git a/do_release.sh b/do_release.sh index 989d1ba..2ea3a9c 100755 --- a/do_release.sh +++ b/do_release.sh @@ -69,7 +69,7 @@ zip -9r PortMaster.zip PortMaster/ \ -x PortMaster/harbourmaster.txt \ -x '*.DS_Store' -if [[ "$3" == "stable" ]]; then +if [[ "$1" == "stable" ]]; then echo "Creating Installers" if [ ! -f "runtimes.zip" ]; then