forked from NinjaCheetah/NUSGet
Compare commits
6 Commits
92bfeb2374
...
ab28a7bf1a
Author | SHA1 | Date | |
---|---|---|---|
ab28a7bf1a | |||
0bb87bf75f | |||
d1570711ac | |||
449a680d32 | |||
![]() |
35989d038a | ||
bf313eedf3 |
20
NUSGet.py
20
NUSGet.py
@ -502,11 +502,21 @@ if __name__ == "__main__":
|
|||||||
# it looks nice, but fallback on kvantum if it isn't, since kvantum is likely to exist. If all else fails, fusion.
|
# it looks nice, but fallback on kvantum if it isn't, since kvantum is likely to exist. If all else fails, fusion.
|
||||||
if platform.system() == "Linux":
|
if platform.system() == "Linux":
|
||||||
if os.path.isdir("/usr/lib/qt6/plugins"):
|
if os.path.isdir("/usr/lib/qt6/plugins"):
|
||||||
app.addLibraryPath("/usr/lib/qt6/plugins")
|
import subprocess
|
||||||
if "Breeze" in QStyleFactory.keys():
|
try:
|
||||||
app.setStyle("Breeze")
|
# This CANNOT be the best way to get the system Qt version, but it's what I came up with for now.
|
||||||
elif "kvantum" in QStyleFactory.keys():
|
result = subprocess.run(['/usr/lib/qt6/bin/qtdiag'], stdout=subprocess.PIPE)
|
||||||
app.setStyle("kvantum")
|
result_str = result.stdout.decode("utf-8").split("\n")[0]
|
||||||
|
sys_qt_ver = result_str.split(" ")[1].split(".")
|
||||||
|
pyside_qt_ver = version("PySide6").split(".")
|
||||||
|
if sys_qt_ver[0:2] == pyside_qt_ver[0:2]:
|
||||||
|
app.addLibraryPath("/usr/lib/qt6/plugins")
|
||||||
|
if "Breeze" in QStyleFactory.keys():
|
||||||
|
app.setStyle("Breeze")
|
||||||
|
elif "kvantum" in QStyleFactory.keys():
|
||||||
|
app.setStyle("kvantum")
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
# Load qtbase translations, and then apps-specific translations.
|
# Load qtbase translations, and then apps-specific translations.
|
||||||
path = QLibraryInfo.path(QLibraryInfo.LibraryPath.TranslationsPath)
|
path = QLibraryInfo.path(QLibraryInfo.LibraryPath.TranslationsPath)
|
||||||
|
21
README.md
21
README.md
@ -1,10 +1,17 @@
|
|||||||
# NUSGet After Dark
|
# NUSGet After Dark
|
||||||
A modern and supercharged NUS downloader built with Python and Qt6. Powered by libWiiPy and libTWLPy. Fork with features not acceptable for prod.
|
A modern and supercharged NUS downloader built with Python and Qt6. Powered by libWiiPy and libTWLPy. Fork with features not acceptable for prod.
|
||||||
|
<div align="center">
|
||||||
|
<img src="https://github.com/user-attachments/assets/156eb949-93aa-4453-b7a0-99b784ec0c8c" alt="The icon for NUSGet" width=256 height=256>
|
||||||
|
<h1>NUSGet</h1>
|
||||||
|
<p>A modern and supercharged NUS downloader built with Python and Qt6.</p>
|
||||||
|
<p>Powered by libWiiPy and libTWLPy.</p>
|
||||||
|
<a href="https://github.com/NinjaCheetah/NUSGet/actions/workflows/python-build.yml">
|
||||||
|
<img src="https://github.com/NinjaCheetah/NUSGet/actions/workflows/python-build.yml/badge.svg">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
[](https://github.com/NinjaCheetah/NUSGet/actions/workflows/python-build.yml)
|

|
||||||
|
|
||||||
The name is a play on NuGet, the .NET package manager. Thank you [@Janni9009](https://github.com/Janni9009) for the name idea!
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
NUSGet allows you to download any content from the Nintendo Update Servers. Free content (content with a Ticket freely available on the servers) can be decrypted or packed directly into an installable archive (WAD/TAD).
|
NUSGet allows you to download any content from the Nintendo Update Servers. Free content (content with a Ticket freely available on the servers) can be decrypted or packed directly into an installable archive (WAD/TAD).
|
||||||
|
|
||||||
@ -74,7 +81,7 @@ A huge thanks to all the wonderful translators who've helped make NUSGet availab
|
|||||||
If your language isn't present or is out of date, and you'd like to contribute, you can check out [TRANSLATING.md](https://github.com/NinjaCheetah/NUSGet/blob/main/TRANSLATING.md) for directions on how to translate NUSGet.
|
If your language isn't present or is out of date, and you'd like to contribute, you can check out [TRANSLATING.md](https://github.com/NinjaCheetah/NUSGet/blob/main/TRANSLATING.md) for directions on how to translate NUSGet.
|
||||||
|
|
||||||
|
|
||||||
## Why this and not NUSD?
|
## Additional Thanks
|
||||||
NUS Downloader (Nintendo Update Server Downloader), is an old tool for downloading titles from the Nintendo Update Servers for the Wii and DSi. Originally released in 2009, and effectively last updated in 2011, it stills works today, however it definitely shows its age, and is in need of a refresh. One of the major shortcomings of NUSD is that it only supports Windows, as most of the tools for the Wii from that era are written in C# and use the .NET Framework, especially since they tend to rely on the C# library libWiiSharp. NUSD also has far more limited support for DSi titles, and no support whatsoever for vWii titles.
|
The name is a play on NuGet, the .NET package manager. Thank you [@Janni9009](https://github.com/Janni9009) for the name idea!
|
||||||
|
|
||||||
With my introduction of [libWiiPy](https://github.com/NinjaCheetah/libWiiPy), there's now a work-in-progress Python library designed to eventually have feature parity with libWiiSharp. At this point in time, the library is featured enough that every piece of libWiiSharp that NUSD relied on is now available in libWiiPy, so I decided to put that to use and create a replacement for it. NUSGet offers nearly all the same features as NUSD (currently there is no support for the DSi servers or for scripting), but is built on top of a modern library with a modern graphical framework, that being Qt6. A major benefit of this rewrite is that its fully cross-platform, and is natively compiled for Windows, Linux, and macOS.
|
Thanks to all those who contributed to libWiiSharp and NUSD, without which this project would not exist.
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
# Copyright 2024-2025 NinjaCheetah
|
# Copyright 2024-2025 NinjaCheetah
|
||||||
|
|
||||||
import pathlib
|
import pathlib
|
||||||
from typing import List, Tuple
|
|
||||||
|
|
||||||
import libTWLPy
|
import libTWLPy
|
||||||
|
|
||||||
|
@ -146,7 +146,7 @@ def run_nus_download_wii(out_folder: pathlib.Path, tid: str, version: str, pack_
|
|||||||
title.ticket.title_key_enc = title_key_common
|
title.ticket.title_key_enc = title_key_common
|
||||||
# Get the WAD certificate chain, courtesy of libWiiPy.
|
# Get the WAD certificate chain, courtesy of libWiiPy.
|
||||||
progress_callback.emit(" - Building certificate...")
|
progress_callback.emit(" - Building certificate...")
|
||||||
title.wad.set_cert_data(libWiiPy.title.download_cert(wiiu_endpoint=wiiu_nus_enabled))
|
title.load_cert_chain(libWiiPy.title.download_cert_chain(wiiu_endpoint=wiiu_nus_enabled))
|
||||||
# Use a typed WAD name if there is one, and auto generate one based on the TID and version if there isn't.
|
# Use a typed WAD name if there is one, and auto generate one based on the TID and version if there isn't.
|
||||||
progress_callback.emit(" - Packing WAD...")
|
progress_callback.emit(" - Packing WAD...")
|
||||||
if wad_file_name != "" and wad_file_name is not None:
|
if wad_file_name != "" and wad_file_name is not None:
|
||||||
|
@ -15,277 +15,286 @@ Select a title from the list on the left, or enter a Title ID to begin.
|
|||||||
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.
|
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.
|
||||||
|
|
||||||
Titles will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
|
Titles will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>NUSGet v{nusget_version}
|
||||||
|
Développé par NinjaCheetah
|
||||||
|
Alimenté par libWiiPy {libwiipy_version}
|
||||||
|
Support DSi fourni par libTWLPy {libtwlpy_version}
|
||||||
|
|
||||||
|
Choisissez un titre depuis la liste à gauche, ou saisissez un ID de titre pour commencer.
|
||||||
|
|
||||||
|
Les titres marqués d'une coche sont gratuits et ont un billet disponible, et peuvent être décryptés et/ou empaquetés dans un fichier WAD ou TAD. Les titres marqués d'une croix n'ont pas de billets, et seul leur contenu crypté peut être enregistré.
|
||||||
|
|
||||||
|
Les titres seront téléchargés dans un dossier "NUSGet Downloads", à l'intérieur de votre dossier de téléchargements.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="192"/>
|
<location filename="../../NUSGet.py" line="192"/>
|
||||||
<source>NUSGet Update Available</source>
|
<source>NUSGet Update Available</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Mise à jour NUSGet disponible</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="193"/>
|
<location filename="../../NUSGet.py" line="193"/>
|
||||||
<source>There's a newer version of NUSGet available!</source>
|
<source>There's a newer version of NUSGet available!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Une nouvelle version de NUSGet est disponible !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="286"/>
|
<location filename="../../NUSGet.py" line="286"/>
|
||||||
<source>No Output Selected</source>
|
<source>No Output Selected</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Aucun format sélectionné</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="287"/>
|
<location filename="../../NUSGet.py" line="287"/>
|
||||||
<source>You have not selected any format to output the data in!</source>
|
<source>You have not selected any format to output the data in!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Veuillez sélectionner un format de sortie pour les données !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="289"/>
|
<location filename="../../NUSGet.py" line="289"/>
|
||||||
<source>Please select at least one option for how you would like the download to be saved.</source>
|
<source>Please select at least one option for how you would like the download to be saved.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Veuillez sélectionner au moins une option de téléchargement.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="318"/>
|
<location filename="../../NUSGet.py" line="318"/>
|
||||||
<source>Invalid Title ID</source>
|
<source>Invalid Title ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>ID de titre invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="319"/>
|
<location filename="../../NUSGet.py" line="319"/>
|
||||||
<source>The Title ID you have entered is not in a valid format!</source>
|
<source>The Title ID you have entered is not in a valid format!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>L'ID de titre que vous avez saisi a un format invalide !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="321"/>
|
<location filename="../../NUSGet.py" line="321"/>
|
||||||
<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>
|
<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>
|
<translation>Les ID de titre doivent être composés de 16 caractères alphanumériques. Veuillez saisir un ID formaté correctement, ou sélectionnez-en un depuis le menu de gauche.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="323"/>
|
<location filename="../../NUSGet.py" line="323"/>
|
||||||
<source>Title ID/Version Not Found</source>
|
<source>Title ID/Version Not Found</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>ID de titre / Version introuvable</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="324"/>
|
<location filename="../../NUSGet.py" line="324"/>
|
||||||
<source>No title with the provided Title ID or version could be found!</source>
|
<source>No title with the provided Title ID or version could be found!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Aucun titre trouvé pour l'ID ou la version fourni !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="326"/>
|
<location filename="../../NUSGet.py" line="326"/>
|
||||||
<source>Please make sure that you have entered a valid Title ID, or selected one from the title database, and that the provided version exists for the title you are attempting to download.</source>
|
<source>Please make sure that you have entered a valid Title ID, or selected one from the title database, and that the provided version exists for the title you are attempting to download.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Veuillez vous assurez que vous avez saisi un ID valide, ou sélectionnez-en un depuis la base de données, et que la version fournie existe pour le titre que vous souhaitez télécharger.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="328"/>
|
<location filename="../../NUSGet.py" line="328"/>
|
||||||
<source>Content Decryption Failed</source>
|
<source>Content Decryption Failed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Échec du décryptage</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="329"/>
|
<location filename="../../NUSGet.py" line="329"/>
|
||||||
<source>Content decryption was not successful! Decrypted contents could not be created.</source>
|
<source>Content decryption was not successful! Decrypted contents could not be created.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Le décryptage du contenu a échoué ! Le contenu décrypté ne peut être créé.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="332"/>
|
<location filename="../../NUSGet.py" line="332"/>
|
||||||
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked "Use local files, if they exist", try disabling that option before trying the download again to fix potential issues with local data.</source>
|
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked "Use local files, if they exist", try disabling that option before trying the download again to fix potential issues with local data.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vos métadonnées (TMD) ou le billet sont probablement endommagés, ou ils ne correspondent pas au contenu décrypté. Si vous avez coché "Utiliser des fichiers locaux, s'ils existent", essayez de désactiver cette option avant d'essayer à nouveau pour résoudre les éventuelles erreurs avec les données locales.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="335"/>
|
<location filename="../../NUSGet.py" line="335"/>
|
||||||
<source>Ticket Not Available</source>
|
<source>Ticket Not Available</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Billet indisponible</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="336"/>
|
<location filename="../../NUSGet.py" line="336"/>
|
||||||
<source>No Ticket is Available for the Requested Title!</source>
|
<source>No Ticket is Available for the Requested Title!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Aucun billet disponible pour le titre demandé !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="339"/>
|
<location filename="../../NUSGet.py" line="339"/>
|
||||||
<source>A ticket could not be downloaded for the requested title, but you have selected "Pack installable archive" or "Create decrypted contents". These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
|
<source>A ticket could not be downloaded for the requested title, but you have selected "Pack installable archive" or "Create decrypted contents". These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Un billet ne peut être téléchargé pour le titre demandé, mais vous avez sélectionné "Empaqueter une archive d'installation" ou "Décrypter le contenu". Ces options sont indisponibles pour les titres sans billet. Seul le contenu crypté a été enregistré.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="341"/>
|
<location filename="../../NUSGet.py" line="341"/>
|
||||||
<source>Unknown Error</source>
|
<source>Unknown Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Erreur inconnue</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="342"/>
|
<location filename="../../NUSGet.py" line="342"/>
|
||||||
<source>An Unknown Error has Occurred!</source>
|
<source>An Unknown Error has Occurred!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Une erreur inconnue est survenue !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="344"/>
|
<location filename="../../NUSGet.py" line="344"/>
|
||||||
<source>Please try again. If this issue persists, please open a new issue on GitHub detailing what you were trying to do when this error occurred.</source>
|
<source>Please try again. If this issue persists, please open a new issue on GitHub detailing what you were trying to do when this error occurred.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Veuillez essayer à nouveau. Si le problème persiste, déclarez un problème sur GitHub en décrivant les actions qui ont provoqué l'erreur.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="363"/>
|
<location filename="../../NUSGet.py" line="363"/>
|
||||||
<source>Script Issues Occurred</source>
|
<source>Script Issues Occurred</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Erreurs survenues dans le script</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="364"/>
|
<location filename="../../NUSGet.py" line="364"/>
|
||||||
<source>Some issues occurred while running the download script.</source>
|
<source>Some issues occurred while running the download script.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Des erreurs sont survenues pendant l'exécution du script de téléchargement.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="366"/>
|
<location filename="../../NUSGet.py" line="366"/>
|
||||||
<source>Check the log for more details about what issues were encountered.</source>
|
<source>Check the log for more details about what issues were encountered.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Vérifiez le journal pour plus de détails à propos des erreurs rencontrées.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="373"/>
|
<location filename="../../NUSGet.py" line="373"/>
|
||||||
<source>The following titles could not be downloaded due to an error. Please ensure that the Title ID and version listed in the script are valid.</source>
|
<source>The following titles could not be downloaded due to an error. Please ensure that the Title ID and version listed in the script are valid.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Le téléchargement des titres suivants a échoué. Assurez-vous que les ID de titre et version du script soient valides.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="383"/>
|
<location filename="../../NUSGet.py" line="383"/>
|
||||||
<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>
|
<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 type="unfinished"></translation>
|
<translation>Vous avez activé "Décrypter le contenu" ou "Empaqueter une archive d'installation", mais les billets des titres suivants sont indisponibles. Si activé(s), le contenu crypté a été téléchargé.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="402"/>
|
<location filename="../../NUSGet.py" line="402"/>
|
||||||
<source>Script Download Failed</source>
|
<source>Script Download Failed</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Échec du script de téléchargement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="403"/>
|
<location filename="../../NUSGet.py" line="403"/>
|
||||||
<source>Open NUS Script</source>
|
<source>Open NUS Script</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Ouvrir un script NUS</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="404"/>
|
<location filename="../../NUSGet.py" line="404"/>
|
||||||
<source>NUS Scripts (*.nus *.json)</source>
|
<source>NUS Scripts (*.nus *.json)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Scripts NUS (*.nus *.json)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="414"/>
|
<location filename="../../NUSGet.py" line="414"/>
|
||||||
<source>An error occurred while parsing the script file!</source>
|
<source>An error occurred while parsing the script file!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Une erreur est survenue pendant la lecture du script !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="415"/>
|
<location filename="../../NUSGet.py" line="415"/>
|
||||||
<source>Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.</source>
|
<source>Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Erreur recontrée ligne {e.lineno}, colonne {e.colno}. Vérifiez le script et réessayez.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="424"/>
|
<location filename="../../NUSGet.py" line="424"/>
|
||||||
<source>An error occurred while parsing Title IDs!</source>
|
<source>An error occurred while parsing Title IDs!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Une erreur est survenue à la lecture d'un ID de titre !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../NUSGet.py" line="425"/>
|
<location filename="../../NUSGet.py" line="425"/>
|
||||||
<source>The title at index {script_data.index(title)} does not have a Title ID!</source>
|
<source>The title at index {script_data.index(title)} does not have a Title ID!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Le titre à l'index {script_data.index(title)} n'a pas d'ID !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="26"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="26"/>
|
||||||
<source>MainWindow</source>
|
<source>MainWindow</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>FenetrePrincipale</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="46"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="46"/>
|
||||||
<source>Search</source>
|
<source>Search</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Rechercher</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="59"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="59"/>
|
||||||
<source>Clear</source>
|
<source>Clear</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Effacer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="90"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="90"/>
|
||||||
<source>Wii</source>
|
<source>Wii</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="100"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="100"/>
|
||||||
<source>vWii</source>
|
<source>vWii</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="110"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="110"/>
|
||||||
<source>DSi</source>
|
<source>DSi</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="135"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="135"/>
|
||||||
<source>Title ID</source>
|
<source>Title ID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>ID du titre</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="142"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="142"/>
|
||||||
<source>v</source>
|
<source>v</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="155"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="155"/>
|
||||||
<source>Version</source>
|
<source>Version</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="162"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="162"/>
|
||||||
<source>Console:</source>
|
<source>Console:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Console :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="198"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="198"/>
|
||||||
<source>Start Download</source>
|
<source>Start Download</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Télécharger</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
|
||||||
<source>Run Script</source>
|
<source>Run Script</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Exécuter le script</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
|
||||||
<source>General Settings</source>
|
<source>General Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Configuration</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="269"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="269"/>
|
||||||
<source>Pack installable archive (WAD/TAD)</source>
|
<source>Pack installable archive (WAD/TAD)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Empaqueter une archive d'installation (WAD / TAD)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="284"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="284"/>
|
||||||
<source>File Name</source>
|
<source>File Name</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Nom du fichier</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="318"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="318"/>
|
||||||
<source>Keep encrypted contents</source>
|
<source>Keep encrypted contents</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Conserver le contenu crypté</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="354"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="354"/>
|
||||||
<source>Create decrypted contents (*.app)</source>
|
<source>Create decrypted contents (*.app)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Décrypter le contenu (*.app)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="393"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="393"/>
|
||||||
<source>Use local files, if they exist</source>
|
<source>Use local files, if they exist</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Utiliser des fichiers locaux, s'ils existent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="438"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="438"/>
|
||||||
<source>Use the Wii U NUS (faster, only effects Wii/vWii)</source>
|
<source>Use the Wii U NUS (faster, only effects Wii/vWii)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Utiliser le NUS Wii U (plus rapide, n'affecte que Wii / vWii)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="480"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="480"/>
|
||||||
<source>Apply patches to IOS (Applies to WADs only)</source>
|
<source>Apply patches to IOS (Applies to WADs only)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Appliquer des modifications aux IOS (WAD uniquement)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="536"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="536"/>
|
||||||
<source>vWii Title Settings</source>
|
<source>vWii Title Settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Titres vWii</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="570"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="570"/>
|
||||||
<source>Re-encrypt title using the Wii Common Key</source>
|
<source>Re-encrypt title using the Wii Common Key</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>Encrypter le titre avec la clé commune Wii</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
|
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
|
||||||
@ -297,28 +306,34 @@ li.unchecked::marker { content: "\2610"; }
|
|||||||
li.checked::marker { content: "\2612"; }
|
li.checked::marker { content: "\2612"; }
|
||||||
</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;">
|
</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; 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>
|
<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></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../modules/core.py" line="52"/>
|
<location filename="../../modules/core.py" line="52"/>
|
||||||
<source>
|
<source>
|
||||||
|
|
||||||
Could not check for updates.</source>
|
Could not check for updates.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>
|
||||||
|
|
||||||
|
Impossible de vérifier les mises à jour.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../modules/core.py" line="60"/>
|
<location filename="../../modules/core.py" line="60"/>
|
||||||
<source>
|
<source>
|
||||||
|
|
||||||
There's a newer version of NUSGet available!</source>
|
There's a newer version of NUSGet available!</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>
|
||||||
|
|
||||||
|
Une nouvelle version de NUSGet est disponible !</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../../modules/core.py" line="62"/>
|
<location filename="../../modules/core.py" line="62"/>
|
||||||
<source>
|
<source>
|
||||||
|
|
||||||
You're running the latest release of NUSGet.</source>
|
You're running the latest release of NUSGet.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation>
|
||||||
|
|
||||||
|
Vous utilisez la dernière version de NUSGet.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user