mirror of
https://github.com/NinjaCheetah/NUSGet.git
synced 2025-06-06 02:21:02 -04:00
Compare commits
3 Commits
c748400cd3
...
07579d7361
Author | SHA1 | Date | |
---|---|---|---|
07579d7361 | |||
9b4addc8a5 | |||
![]() |
a1bfcd5f8b |
@ -104,6 +104,10 @@ def run_nus_download_dsi(out_folder: pathlib.Path, tid: str, version: str, pack_
|
||||
tad_file_name += ".tad"
|
||||
else:
|
||||
tad_file_name = f"{tid}-v{title_version}.tad"
|
||||
# Certain special characters are prone to breaking things, so strip them from the file name before actually
|
||||
# opening the file for writing. On some platforms (like macOS), invalid characters get replaced automatically,
|
||||
# but on Windows the file will just fail to be written out at all.
|
||||
tad_file_name = tad_file_name.translate({ord(c): None for c in '/\\:*"?<>|'})
|
||||
# Have libTWLPy dump the TAD, and write that data out.
|
||||
version_dir.joinpath(tad_file_name).write_bytes(title.dump_tad())
|
||||
progress_callback.emit("Download complete!")
|
||||
|
@ -134,6 +134,10 @@ def run_nus_download_wii(out_folder: pathlib.Path, tid: str, version: str, pack_
|
||||
title = ios_patcher.dump()
|
||||
# Append "-PATCHED" to the end of the WAD file name to make it clear that it was modified.
|
||||
wad_file_name = wad_file_name[:-4] + "-PATCHED" + wad_file_name[-4:]
|
||||
# Certain special characters are prone to breaking things, so strip them from the file name before actually
|
||||
# opening the file for writing. On some platforms (like macOS), invalid characters get replaced automatically,
|
||||
# but on Windows the file will just fail to be written out at all.
|
||||
wad_file_name = wad_file_name.translate({ord(c): None for c in '/\\:*"?<>|'})
|
||||
# Have libWiiPy dump the WAD, and write that data out.
|
||||
version_dir.joinpath(wad_file_name).write_bytes(title.dump_wad())
|
||||
progress_callback.emit("Download complete!")
|
||||
|
@ -439,17 +439,17 @@ Sie nutzen bereits die neuste Version von NUSGet.</translation>
|
||||
<translation>App-Einstellungen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation>Downloads-Ordner</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Auswählen...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -468,17 +468,17 @@ li.checked::marker { content: "\2612"; }
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Hilfe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation type="unfinished">Über NUSGet</translation>
|
||||
<translation>Über NUSGet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Über Qt</translation>
|
||||
</message>
|
||||
|
@ -147,7 +147,7 @@
|
||||
<translation>Configuración general</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -159,7 +159,7 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation>Acerca de NUSGet</translation>
|
||||
</message>
|
||||
@ -214,22 +214,22 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation>Usar ruta de descarga personalizada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Seleccionar...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Ayuda</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Acerca de Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation>Ruta de descarga</translation>
|
||||
</message>
|
||||
|
@ -410,7 +410,7 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
|
||||
<translation>Configuration</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -422,7 +422,7 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation>À propos de NUSGet</translation>
|
||||
</message>
|
||||
@ -486,22 +486,22 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation>Utiliser un dossier de téléchargement différent</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Choisir</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Aide</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>À propos de Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation>Dossier de téléchargement</translation>
|
||||
</message>
|
||||
|
@ -6,72 +6,72 @@
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="16"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Info su NUSGet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="82"/>
|
||||
<source>NUSGet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>NUSGet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="87"/>
|
||||
<source>Version {nusget_version}</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Versione {nusget_version}</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="93"/>
|
||||
<source>Using libWiiPy {libwiipy_version} & libTWLPy {libtwlpy_version}</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Versione libWiiPy {libwiipy_version} & libTWLPy {libtwlpy_version}</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="98"/>
|
||||
<source>© 2024-2025 NinjaCheetah & Contributors</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>© 2024-2025 NinjaCheetah & Contributori</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="114"/>
|
||||
<source>View Project on GitHub</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Vedi il progetto su GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="130"/>
|
||||
<source>Translations</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Traduzioni</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="138"/>
|
||||
<source>French (Français): <a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'><b>rougets</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Francese (Français): <a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'><b>rougets</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="140"/>
|
||||
<source>German (Deutsch): <a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'><b>yeah-its-gloria</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Tedesco (Deutsch): <a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'><b>yeah-its-gloria</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="142"/>
|
||||
<source>Italian (Italiano): <a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'><b>LNLenost</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Italiano: <a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'><b>LNLenost</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="144"/>
|
||||
<source>Korean (한국어): <a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'><b>DDinghoya</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Coreano (한국어): <a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'><b>DDinghoya</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="146"/>
|
||||
<source>Norwegian (Norsk): <a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'><b>rolfiee</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Norvegese (Norsk): <a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'><b>rolfiee</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="148"/>
|
||||
<source>Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Rumeno (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/py/ui_AboutDialog.py" line="150"/>
|
||||
<source>Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Spagnolo (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -146,9 +146,9 @@
|
||||
<translation>Impostazioni generali</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Info su NUSGet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="167"/>
|
||||
@ -192,25 +192,25 @@
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
|
||||
<source>App Settings</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Impostazioni app</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="177"/>
|
||||
<source>Check for updates on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Controlla aggiornamenti all'avvio</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="178"/>
|
||||
<source>Use a custom download directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Usa una cartella di download personalizzata</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Seleziona...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -219,22 +219,29 @@ li.unchecked::marker { content: "\2610"; }
|
||||
li.checked::marker { content: "\2612"; }
|
||||
</style></head><body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
hr { height: 1px; border-width: 0; }
|
||||
li.unchecked::marker { content: "\2610"; }
|
||||
li.checked::marker { content: "\2612"; }
|
||||
</style></head><body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;">
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Aiuto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Info su Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cartella output</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
@ -295,17 +302,21 @@ I titoli verranno scaricati nella cartella "NUSGet Downloads" all&apos
|
||||
Titles marked with a checkmark are free and have a ticket available, and can be decrypted and/or packed into a WAD or TAD. Titles with an X do not have a ticket, and only their encrypted contents can be saved.
|
||||
|
||||
By default, titles will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Scegli un titolo dalla lista a sinistra o inserisci un ID Titolo per iniziare.
|
||||
|
||||
I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e possono essere decriptati e/o convertiti in WAD o TAD. I titoli con una X non hanno un ticket e solo il contenuto criptato può essere salvato.
|
||||
|
||||
Per impostazione predefinita, i titoli verranno scaricati nella cartella "NUSGet Downloads" all'interno della cartella Download.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="173"/>
|
||||
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Usa il NUS di Wii U (più veloce, influisce solo su Wii/vWii)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="243"/>
|
||||
<source><b>There's a newer version of NUSGet available!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>È disponibile una nuova versione di NUSGet!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="344"/>
|
||||
@ -326,17 +337,17 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
|
||||
<location filename="../../NUSGet.py" line="359"/>
|
||||
<location filename="../../NUSGet.py" line="565"/>
|
||||
<source>Invalid Download Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cartella di download non valida</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="360"/>
|
||||
<source>The specified download directory does not exist!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>La cartella di download specificata non esiste!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="363"/>
|
||||
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Assicurati che la cartella di download specificata esista e che tu abbia i permessi per accedervi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="393"/>
|
||||
@ -346,52 +357,52 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="394"/>
|
||||
<source><b>The Title ID you have entered is not in a valid format!</b></source>
|
||||
<translation><b>L'ID Titolo che hai inserito non è in un formato valido!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="396"/>
|
||||
<source>Title IDs must be 16 digit strings of numbers and letters. Please enter a correctly formatted Title ID, or select one from the menu on the left.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="399"/>
|
||||
<source><b>No title with the provided Title ID or version could be found!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Non è stato trovato alcun titolo con l'ID Titolo o la versione forniti!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="404"/>
|
||||
<source><b>Content decryption was not successful! Decrypted contents could not be created.</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>La decriptazione dei contenuti non è riuscita! Non è stato possibile creare i contenuti decriptati.</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="411"/>
|
||||
<source><b>No Ticket is Available for the Requested Title!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Nessun ticket disponibile per il titolo richiesto!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="417"/>
|
||||
<source><b>An Unknown Error has Occurred!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Si è verificato un errore sconosciuto!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="439"/>
|
||||
<source><b>Some issues occurred while running the download script.</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Si sono verificati alcuni problemi durante l'esecuzione dello script di download.</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="489"/>
|
||||
<source><b>An error occurred while parsing the script file!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Si è verificato un errore durante l'analisi del file script!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="500"/>
|
||||
<source><b>An error occurred while parsing Title IDs!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Si è verificato un errore durante l'analisi degli ID Titolo!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>The Title ID you have entered is not in a valid format!</source>
|
||||
<translation type="vanished">L' ID Titolo che hai inserito non è in un formato valido!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="396"/>
|
||||
<source>Title IDs must be 16 digit strings of numbers and letters. Please enter a correctly formatted Title ID, or select one from the menu on the left.</source>
|
||||
<translation>Gli ID Titolo sono un codice di 16 caratteri tra numeri e lettere. Per favore inserisci in ID Titolo formattato correttamente, o scegline uno dal menù a sinistra.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="398"/>
|
||||
<source>Title ID/Version Not Found</source>
|
||||
@ -470,7 +481,7 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="458"/>
|
||||
<source>You enabled "Create decrypted contents" or "Pack installable archive", but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
|
||||
<translation>You enabled "Create decrypted contents" or "Pack installable archive", but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</translation>
|
||||
<translation>Hai abilitato "Crea contenuto decriptato" o "Archivio installabile", ma i seguenti titoli nello script non hanno ticket disponibili. Se abilitati, i contenuti criptati sono stati comunque scaricati.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="477"/>
|
||||
@ -494,7 +505,7 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="491"/>
|
||||
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
|
||||
<translation>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</translation>
|
||||
<translation>Errore riscontrato alla riga {lineno}, colonna {colno}. Controlla nuovamente lo script e riprova.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>An error occurred while parsing Title IDs!</source>
|
||||
@ -503,22 +514,22 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="502"/>
|
||||
<source>The title at index {index} does not have a Title ID!</source>
|
||||
<translation>The title at index {index} does not have a Title ID!</translation>
|
||||
<translation>Il titolo all'indice {index} non ha un ID Titolo!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="555"/>
|
||||
<source>Open Directory</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Apri cartella</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="566"/>
|
||||
<source><b>The specified download directory does not exist!</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>La cartella di download specificata non esiste!</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="569"/>
|
||||
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Assicurati che la cartella di download che desideri utilizzare esista e che tu abbia i permessi per accedervi.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Open NUS script</source>
|
||||
|
@ -146,9 +146,9 @@
|
||||
<translation>일반 설정</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation type="unfinished">NUSGet 정보</translation>
|
||||
<translation>NUSGet 정보</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../NUSGet.py" line="167"/>
|
||||
@ -205,12 +205,12 @@
|
||||
<translation>커스텀 다운로드 디렉터리 사용</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>선택...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -222,7 +222,7 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>도움말</translation>
|
||||
</message>
|
||||
@ -231,12 +231,12 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation type="vanished">정보</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Qt 정보</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation>출력 경로</translation>
|
||||
</message>
|
||||
|
@ -146,7 +146,7 @@
|
||||
<translation>Generelle Instillinger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation>Om NUSGet</translation>
|
||||
</message>
|
||||
@ -205,12 +205,12 @@
|
||||
<translation>Bruke en egendefinert nedlastingsmappe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Velg...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -229,17 +229,17 @@ li.checked::marker { content: "\2612"; }
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Hjelp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Om Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translatorcomment>Utgangsbane</translatorcomment>
|
||||
<translation></translation>
|
||||
|
@ -146,7 +146,7 @@
|
||||
<translation>Generelle Instillinger</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation>Om NUSGet</translation>
|
||||
</message>
|
||||
@ -205,12 +205,12 @@
|
||||
<translation>Bruke en egendefinert nedlastingsmappe</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Velg...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -229,17 +229,17 @@ li.checked::marker { content: "\2612"; }
|
||||
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Hjelp</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Om Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translatorcomment>Utgangsbane</translatorcomment>
|
||||
<translation></translation>
|
||||
|
@ -447,7 +447,7 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
|
||||
<translation>Setări Generale</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="425"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
|
||||
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||||
<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css">
|
||||
p, li { white-space: pre-wrap; }
|
||||
@ -459,7 +459,7 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="464"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="471"/>
|
||||
<source>About NUSGet</source>
|
||||
<translation>Despre NUSGet</translation>
|
||||
</message>
|
||||
@ -523,22 +523,22 @@ li.checked::marker { content: "\2612"; }
|
||||
<translation>Folosiți un director de descărcare propriu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="371"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
|
||||
<source>Select...</source>
|
||||
<translation>Selectează...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="451"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="458"/>
|
||||
<source>Help</source>
|
||||
<translation>Ajutor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="475"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="482"/>
|
||||
<source>About Qt</source>
|
||||
<translation>Despre Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="361"/>
|
||||
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
|
||||
<source>Output Path</source>
|
||||
<translation>Cale de ieșire</translation>
|
||||
</message>
|
||||
|
Loading…
x
Reference in New Issue
Block a user