Updated the way the output dir is handled internally

No longer a global variable, wow! This change means that the "open output directory" button will always open the appropriate directory based on your current settings and simplifies output dir validation.
This commit is contained in:
Campbell 2026-01-05 17:03:42 -05:00
parent ed90dd529b
commit 6a6ecd0fd5
Signed by: NinjaCheetah
GPG Key ID: B547958AF96ED344
9 changed files with 941 additions and 933 deletions

108
NUSGet.py
View File

@ -357,7 +357,7 @@ class MainWindow(QMainWindow, Ui_MainWindow):
self.ui.archive_file_entry.setText(archive_name)
danger_text = selected_title.danger
# Add warning text to the log if the selected title has no ticket.
if selected_title.ticket is False:
if not selected_title.ticket:
danger_text = danger_text + ("Note: This Title does not have a Ticket available, so it cannot be decrypted"
" or packed into a WAD/TAD.")
# Print log info about the selected title and version.
@ -422,24 +422,10 @@ class MainWindow(QMainWindow, Ui_MainWindow):
"like the download to be saved."))
msg_box.exec()
return
out_path = self.get_output_dir()
if out_path is None:
return
self.lock_ui()
# Check for a custom output directory, and ensure that it's valid. If it is, then use that.
if self.ui.custom_out_dir_checkbox.isChecked() and self.ui.custom_out_dir_entry.text() != "":
out_path = pathlib.Path(self.ui.custom_out_dir_entry.text())
if not out_path.exists() or not out_path.is_dir():
msg_box = QMessageBox()
msg_box.setIcon(QMessageBox.Icon.Critical)
msg_box.setStandardButtons(QMessageBox.StandardButton.Ok)
msg_box.setDefaultButton(QMessageBox.StandardButton.Ok)
msg_box.setWindowTitle(app.translate("MainWindow", "Invalid Download Directory"))
msg_box.setText(app.translate("MainWindow", "The specified download directory does not exist!"))
msg_box.setInformativeText(app.translate("MainWindow",
"Please make sure the specified download directory exists,"
" and that you have permission to access it."))
msg_box.exec()
return
else:
out_path = out_folder
# Create a new worker object to handle the download in a new thread.
if self.ui.console_select_dropdown.currentText() == "DSi":
worker = Worker(run_nus_download_dsi, out_path, self.ui.tid_entry.text(),
@ -615,8 +601,11 @@ class MainWindow(QMainWindow, Ui_MainWindow):
archive_name = ""
break
titles.append(BatchTitleData(tid, title_version, console, archive_name))
out_path = self.get_output_dir()
if out_path is None:
return
self.lock_ui()
worker = Worker(run_nus_download_batch, out_folder, titles, self.ui.pack_archive_checkbox.isChecked(),
worker = Worker(run_nus_download_batch, out_path, titles, self.ui.pack_archive_checkbox.isChecked(),
self.ui.keep_enc_checkbox.isChecked(), self.ui.create_dec_checkbox.isChecked(),
self.ui.use_wiiu_nus_checkbox.isChecked(), self.ui.use_local_checkbox.isChecked(),
self.ui.pack_vwii_mode_checkbox.isChecked(), self.ui.patch_ios_checkbox.isChecked())
@ -626,13 +615,16 @@ class MainWindow(QMainWindow, Ui_MainWindow):
def open_output_dir(self):
# Like all good things in life, this is a platform-dependent procedure. Did I say good? I meant annoying.
out_path = self.get_output_dir()
if out_path is None:
return
system = platform.system()
if system == "Windows":
subprocess.run(["explorer.exe", out_folder])
subprocess.run(["explorer.exe", out_path])
elif system == "Darwin":
subprocess.run(["open", out_folder])
subprocess.run(["open", out_path])
else:
subprocess.run(["xdg-open", out_folder])
subprocess.run(["xdg-open", out_path])
def choose_output_dir(self):
# Use this handy convenience method to prompt the user to select a directory. Then we just need to validate
@ -641,20 +633,11 @@ class MainWindow(QMainWindow, Ui_MainWindow):
"", QFileDialog.ShowDirsOnly | QFileDialog.DontResolveSymlinks)
if selected_dir == "":
return
out_path = pathlib.Path(selected_dir)
if not out_path.exists() or not out_path.is_dir():
msg_box = QMessageBox()
msg_box.setIcon(QMessageBox.Icon.Critical)
msg_box.setStandardButtons(QMessageBox.StandardButton.Ok)
msg_box.setDefaultButton(QMessageBox.StandardButton.Ok)
msg_box.setWindowTitle(app.translate("MainWindow", "Invalid Download Directory"))
msg_box.setText(app.translate("MainWindow", "<b>The specified download directory does not exist!</b>"))
msg_box.setInformativeText(app.translate("MainWindow",
"Please make sure the download directory you want to use exists, and "
"that you have permission to access it."))
msg_box.exec()
# Write it to the box and use existing validation code. Efficiency!
self.ui.custom_out_dir_entry.setText(selected_dir)
out_path = self.get_output_dir()
if out_path is None:
return
self.ui.custom_out_dir_entry.setText(str(out_path))
config_data["out_path"] = str(out_path.absolute())
save_config(config_data)
@ -670,6 +653,44 @@ class MainWindow(QMainWindow, Ui_MainWindow):
config_data["out_path"] = str(out_path.absolute())
save_config(config_data)
def get_output_dir(self) -> pathlib.Path | None:
# Whether a custom download directory is set.
if self.ui.custom_out_dir_checkbox.isChecked() and self.ui.custom_out_dir_entry.text() != "":
# Check for a custom output directory, and ensure that it's valid. If it is, then use that. Otherwise,
# return None and let the calling code determine how to continue.
out_path = pathlib.Path(self.ui.custom_out_dir_entry.text())
if not out_path.exists() or not out_path.is_dir():
msg_box = QMessageBox()
msg_box.setIcon(QMessageBox.Icon.Critical)
msg_box.setStandardButtons(QMessageBox.StandardButton.Ok)
msg_box.setDefaultButton(QMessageBox.StandardButton.Ok)
msg_box.setWindowTitle(app.translate("MainWindow", "Invalid Download Directory"))
msg_box.setText(app.translate("MainWindow", "<b>The specified download directory does not exist!</b>"))
msg_box.setInformativeText(app.translate("MainWindow",
"Please make sure the specified download directory exists,"
" and that you have permission to access it."))
msg_box.exec()
return None
return out_path
else:
# Default path if there's no custom download directory configured. Yay for platform differences!
if os.name == 'nt':
# This code is required because on Windows, the name of the downloads directory is localized based on your
# system's language. This means that literally "Downloads" isn't always going to exist, so we want to ask
# the registry what it's named on this particular machine.
import winreg
sub_key = r'SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders'
downloads_guid = '{374DE290-123F-4565-9164-39C4925E467B}'
with winreg.OpenKey(winreg.HKEY_CURRENT_USER, sub_key) as key:
location = pathlib.Path(winreg.QueryValueEx(key, downloads_guid)[0])
else:
location = pathlib.Path(os.path.expanduser('~')).joinpath('Downloads')
# Build the path by combining the path to the Downloads photo with "NUSGet".
out_folder = location.joinpath("NUSGet Downloads")
# Create the "NUSGet Downloads" directory if it doesn't exist.
out_folder.mkdir(exist_ok=True, parents=True)
return out_folder
def about_nusget(self):
about_box = AboutNUSGet([nusget_version, version("libWiiPy"), version("libTWLPy")])
about_box.exec()
@ -704,23 +725,6 @@ if __name__ == "__main__":
vwii_database = json.load(database_file)
database_file = open(os.path.join(os.path.dirname(__file__), "data", "dsi-database.json"), encoding="utf-8")
dsi_database = json.load(database_file)
# Load the user's Downloads directory, which of course requires different steps on Windows vs macOS/Linux.
if os.name == 'nt':
import winreg
sub_key = r'SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders'
downloads_guid = '{374DE290-123F-4565-9164-39C4925E467B}'
with winreg.OpenKey(winreg.HKEY_CURRENT_USER, sub_key) as key:
location = pathlib.Path(winreg.QueryValueEx(key, downloads_guid)[0])
else:
# Silence a false linter warning about redeclaration, since this is actually only ever assigned once.
# noinspection PyRedeclaration
location = pathlib.Path(os.path.expanduser('~')).joinpath('Downloads')
# Build the path by combining the path to the Downloads photo with "NUSGet".
out_folder = location.joinpath("NUSGet Downloads")
# Create the "NUSGet Downloads" directory if it doesn't exist. In the future, this will be user-customizable, but
# this works for now, and avoids using a directory next to the binary (mostly an issue on macOS/Linux).
if not out_folder.is_dir():
out_folder.mkdir()
# Load the config path and then the configuration data, if it exists. If not, then we should initialize it and write
# it out.

View File

@ -20,7 +20,7 @@
<translation>Version {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Mit libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</translation>
</message>
@ -78,7 +78,7 @@
<context>
<name>MainWindow</name>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -92,257 +92,254 @@ Titel, welche in der Liste mit einem Haken markiert sind, haben ein frei verfüg
Standartmäßig werden alle Inhalte und Archive in einen &quot;NUSGet Downloads&quot;-Ordner im Downloads-Order gespeichert.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Als installierbares Archiv verpacken (WAD/TAD)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translatorcomment>&quot;speichern&quot; is more like &quot;save&quot; than &quot;keep&quot;, but &quot;behalten&quot; would sound stupid</translatorcomment>
<translation>Verschlüsselte Inhalte speichern</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translatorcomment>Similar situation as with &quot;Keep encrypted contents&quot;, means more like &quot;Decrypt contents&quot; because it sounds better</translatorcomment>
<translation>Inhalte entschlüsseln (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Vorhandene Dateien nutzen, sofern verfügbar</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Wii U-NUS benutzen (schneller, betrifft nur Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Patches für IOS anwenden (Betrifft nur WADs)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Inhalte des Titels mit dem Wii Common-Key neu verschlüsseln</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Beim Start nach Updates suchen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Benutzerspezifischen Downloads-Ordner nutzen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>NUSGet-Update verfügbar</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;Eine neue version von NUSGet ist verfügbar!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translatorcomment>&quot;Output&quot; is quite difficult to translate into anything sensical, so I added &quot;format&quot; to make it specifically refer to the type of output the user wants, which keeps it consistent with the rest of the text</translatorcomment>
<translation>Kein Ausgabeformat ausgewählt</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Es wurde kein Ausgabeformat für die Inhalte ausgewählt!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Bitte wählen Sie mindestens ein Format aus für den herunterzuladenen Titel.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Fehlerhafter Downloads-Ordner</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation>Der ausgewählte Downloads-Ordner konnte nicht gefunden werden!</translation>
<translation type="vanished">Der ausgewählte Downloads-Ordner konnte nicht gefunden werden!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation>Bitte stellen Sie sicher, dass der Downloads-Ordner existiert und dass Sie Zugriff auf diesen haben.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>Fehlerhafte Title-ID</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;Die angegebene Title-ID ist fehlerhaft!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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>Title-IDs müssen aus 16 alphanumerischen Zeichen bestehen. Bitte geben Sie eine korrekte Title-ID ein oder wählen Sie einen Titel aus der Liste links.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>Title-ID/Version nicht gefunden</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Es konnte kein Titel mit der gegebenen Title-ID bzw. Version gefunden werden!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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>Bitte stellen Sie sicher, dass Sie eine korrekte Title-ID eingegeben haben und dass die Version auch existiert. Alternativ können Sie diese auch in der Liste links finden.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Inhaltsentschlüsselung fehlgeschlagen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;Die Inhalte konnten nicht entschlüsselt werden.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>Das TMD oder Ticket könnten wohlmöglich beschädigt sein oder stimmen nicht mit dem ausgewählten Titel überein, sofern &quot;Vorhandene Dateien nutzen, sofern verfügbar&quot; aktiviert wurde. Im letzteren Fall sollten Sie versuchen, diese Option auszuschalten und die Inhalte neu herunterzuladen.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Ticket nicht verfügbar</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Es konnte kein Ticket für den angegebenen TItel gefunden werden!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>Es konnte kein Ticket für den ausgewählten Titel heruntergeladen werden, jedoch wurde &quot;Als installierbares Archiv verpacken&quot; bzw. &quot;Inhalte entschlüsseln&quot; ausgewählt. Diese Optionen erfordern ein Ticket. Es wurden nur verschlüsselte Inhalte gespeichert.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Unbekannter Fehler</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ein unbekannter Fehler ist aufgetreten!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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>Bitte versuchen Sie noch einmal. Sofern das Problem weiter besteht, wenden Sie sich bitte an den Issue-Tracker auf GitHub mit Details dazu, was Sie versucht haben.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Script-Fehler aufgetreten</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Fehler sind während der Ausführung von Scripten aufgetreten.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Bitte schauen Sie im Log nach, welche Fehler aufgetreten sind.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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>Die angegebenen Titel konnten wegen Fehlern nicht heruntergeladen werden. Bitte stellen Sie sicher, dass die Title-IDs und Versionen im Script korrekt sind.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Sie haben &quot;Inhalte entschlüsseln&quot; bzw. &quot;Als installierbares Archiv verpacken&quot; ausgewählt, aber die angegebenen Titel im Script haben kein verfügbares Ticket. Sofern &quot;Verschlüsselte Inhalte speichern&quot; aktiv ist, wurden verschlüsselte Daten noch gespeichert.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Script-Download fehlgeschlagen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>NUS-Script öffnen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>NUS-Scripts (*.nus *.json)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ein Fehler ist beim Lesen des Scripts aufgetreten!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>Der Fehler ist bei Linie {lineno}, Zeile {colno} aufgetreten. Bitte überprüfen Sie ihr Script und versuchen Sie es erneut.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ein Fehler ist beim Lesen der Title-IDs aufgetreten!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Der Titel an Stelle {index} hat keine Title-ID!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Ordner öffnen</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;Der angegebene Downloads-Ordner konnte nicht gefunden werden!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Bitte stellen Sie sicher, dass der Downloads-Ordner, den Sie nutzen möchten, existiert und dass Sie darauf auch Zugriffen haben.</translation>
<translation type="vanished">Bitte stellen Sie sicher, dass der Downloads-Ordner, den Sie nutzen möchten, existiert und dass Sie darauf auch Zugriffen haben.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Neustart erforderlich</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet muss erneut gestartet werden, um die ausgewählte Sprache zu nutzen.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet muss erneut gestartet werden, um die ausgewählte Darstellung zu nutzen.</translation>
</message>
@ -430,42 +427,60 @@ Sie nutzen bereits die neuste Version von NUSGet.</translation>
<translation>Herunterladen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Script ausführen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Datei-Name</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>vWii-Titeleinstellungen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>App-Einstellungen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation>Downloads-Ordner</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Auswählen...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@ -474,7 +489,7 @@ li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
@ -484,48 +499,48 @@ li.checked::marker { content: &quot;\2612&quot;; }
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Hilfe</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Optionen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Sprache</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Darstellung</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Über NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Über Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>System (Standart)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Hell</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Dunkel</translation>
</message>

View File

@ -19,7 +19,7 @@
<translation>Versión {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Usando libWiiPy {libwiipy_version} y libTWLPy {libtwlpy_version}</translation>
</message>
@ -137,227 +137,232 @@
<translation>Iniciar descarga</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Ejecutar script</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Configuración general</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Opciones</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Idioma</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Tema</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Acerca de NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>Sistema (por defecto)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Claro</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Oscuro</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Generar paquete de instalación (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Nombre de archivo</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Mantener contenidos encriptados</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Crear contenidos desencriptados (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Usar archivos locales, si existen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>Configuración de títulos de vWii</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Reencriptar título usando la clave común de Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Configuración de aplicación</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Buscar actualizaciones al inicio</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Usar ruta de descarga personalizada</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Seleccionar...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<source>Options</source>
<translation>Opciones</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<source>Language</source>
<translation>Idioma</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<source>Theme</source>
<translation>Tema</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<source>About NUSGet</source>
<translation>Acerca de NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<source>System (Default)</source>
<translation>Sistema (por defecto)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<source>Light</source>
<translation>Claro</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<source>Dark</source>
<translation>Oscuro</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Generar paquete de instalación (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<source>File Name</source>
<translation>Nombre de archivo</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<source>Keep encrypted contents</source>
<translation>Mantener contenidos encriptados</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<source>Create decrypted contents (*.app)</source>
<translation>Crear contenidos desencriptados (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<source>Use local files, if they exist</source>
<translation>Usar archivos locales, si existen</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<source>vWii Title Settings</source>
<translation>Configuración de títulos de vWii</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Reencriptar título usando la clave común de Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<source>App Settings</source>
<translation>Configuración de aplicación</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<source>Check for updates on startup</source>
<translation>Buscar actualizaciones al inicio</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<source>Use a custom download directory</source>
<translation>Usar ruta de descarga personalizada</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Select...</source>
<translation>Seleccionar...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Ayuda</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Acerca de Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation>Ruta de descarga</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Aplicar parches a IOS (sólo aplica a WADs)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>Actualización de NUSGet disponible</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Formato de salida no escogido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>¡No has escogido un formato de salida para los datos!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Por favor, selecciona al menos un formato de salida para la descarga.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Directorio de descarga inválido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation>¡El directorio de descarga especificado no existe!</translation>
<translation type="vanished">¡El directorio de descarga especificado no existe!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation>Por favor, asegúrate de que el directorio de descarga especificado existe, y de que tengas permisos para acceder a él.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>ID de título inválido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡El ID de título introducido no tiene un formato válido!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡No se encontró un título que coincida con el ID de título y/o versión proporcionados!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;¡El desencriptado de contenidos falló! No se han podido crear los contenidos desencriptados.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translatorcomment>&quot;Ticket&quot; may be translated as &quot;billete&quot;, &quot;boleto&quot; or even &quot;tique&quot;, but it is preferable to use the English term here for consistency&apos;s sake.</translatorcomment>
<translation>&lt;b&gt;¡No existe un ticket disponible para el título solicitado!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡Ha ocurrido un error desconocido!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Ocurrieron algunos problemas durante la ejecución del script de descarga.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡Ocurrió un error mientras se analizaba el archivo de script!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡Ocurrió un error mientras se analizaban los IDs de títulos!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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>Los IDs de títulos tienen que ser cadenas alfanuméricas de 16 dígitos. Por favor, introduce un ID de título con el formato apropiado, o selecciona uno desde el menú a la izquierda.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -371,131 +376,130 @@ Los títulos con una marca de verificación son gratuitos, tienen un ticket disp
Por defecto, los títulos serán descargados a una carpeta llamada &quot;NUSGet Downloads&quot; dentro de tu directorio de descargas.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Usar NUS de Wii U (más rápido, sólo afecta a Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡Hay una nueva versión de NUSGet disponible!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>ID de título / versión no disponible</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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>Por favor, asegúrate de haber introducido un ID de título válido o de seleccionar uno de la base de datos de títulos, y que la versión proporcionada existe para el título que estás tratando de descargar.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>El desencriptado de contenidos falló</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translatorcomment>&quot;Ticket&quot; may be translated as &quot;billete&quot;, &quot;boleto&quot; or even &quot;tique&quot;, but it is preferable to use the English term here for consistency&apos;s sake.</translatorcomment>
<translation>Tu TMD o ticket puede estar dañado, o puede que no correspondan al contenido que está siendo desencriptado. Si marcaste la casilla &quot;Usar archivos locales, si existen&quot;, prueba con desactivar dicha opción antes de intentar nuevamente la descarga para corregir posibles problemas con los datos locales.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translatorcomment>&quot;Ticket&quot; may be translated as &quot;billete&quot;, &quot;boleto&quot; or even &quot;tique&quot;, but it is preferable to use the English term here for consistency&apos;s sake.</translatorcomment>
<translation>Ticket no disponible</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translatorcomment>&quot;Ticket&quot; may be translated as &quot;billete&quot;, &quot;boleto&quot; or even &quot;tique&quot;, but it is preferable to use the English term here for consistency&apos;s sake.</translatorcomment>
<translation>No se pudo descargar un ticket para el título solicitado, pero has marcado la casilla &quot;Generar paquete de instalación&quot; o &quot;Crear contenidos desencriptados&quot;. Estas opciones no están disponibles para títulos sin un ticket. Sólo se han guardado los contenidos encriptados.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Error desconocido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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>Por favor, intenta de nuevo. Si el problema persiste, por favor abre un reporte de problema en GitHub detallando lo que intentabas hacer cuando ocurrió este error.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Ocurrieron problemas con el script</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Lee el registro para obtener más detalles sobre los problemas que se encontraron.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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>Los siguientes títulos no pudieron ser descargados debido a un error. Por favor, asegúrate de que el ID de título y la versión listados en el script son válidos.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Marcaste la casilla &quot;Crear contenidos desencriptados&quot; o &quot;Generar paquete de instalación&quot;, pero los siguientes títulos del script no tienen un ticket disponible. Si se marcó su opción, los contenidos encriptados fueron descargados de todas maneras.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>La descarga del script falló</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Abrir script de NUS</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>Scripts de NUS (*.nus, *.json)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>Error encontrado en la línea {lineno}, columna {colno}. Por favor, verifica el script e intenta nuevamente.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>¡El título con índice {index} no tiene un ID de título!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Abrir directorio</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;¡El directorio de descarga especificado no existe!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Por favor, asegúrate de que el directorio de descarga especificado existe, y de que tengas permisos para acceder a él.</translation>
<translation type="vanished">Por favor, asegúrate de que el directorio de descarga especificado existe, y de que tengas permisos para acceder a él.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Reinicio requerido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet tiene que reiniciarse para aplicar el idioma seleccionado.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet tiene que reiniciarse para aplicar el tema seleccionado.</translation>
</message>

View File

@ -19,7 +19,7 @@
<translation></translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Utilise libWiiPy {libwiipy_version} et libTWLPy {libtwlpy_version}</translation>
</message>
@ -100,7 +100,7 @@ Les titres marqués d&apos;une coche sont gratuits et ont un billet disponible,
Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;, à l&apos;intérieur de votre dossier de téléchargements.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>Mise à jour NUSGet disponible</translation>
</message>
@ -109,7 +109,7 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Une nouvelle version de NUSGet est disponible !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -122,104 +122,102 @@ Les titres marqués d&apos;une coche sont gratuits et ont un billet disponible,
Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;, à l&apos;intérieur de votre dossier de téléchargements.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Utiliser le NUS Wii U (plus rapide, n&apos;affecte que Wii / vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;Une nouvelle version de NUSGet est disponible !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Aucun format sélectionné</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Veuillez sélectionner un format de sortie pour les données !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Veuillez sélectionner au moins une option de téléchargement.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Dossier de téléchargement invalide</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation>Le dossier de téléchargement choisi n&apos;existe pas !</translation>
<translation type="vanished">Le dossier de téléchargement choisi n&apos;existe pas !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation>Assurez-vous que votre dossier de téléchargement existe, et que vous avez les droits suffisants pour y accéder.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>ID de titre invalide</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;L&apos;ID de titre que vous avez saisi a un format invalide !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Aucun titre trouvé pour l&apos;ID ou la version fourni !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;Le décryptage du contenu a échoué ! Le contenu décrypté ne peut être créé.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Aucun billet disponible pour le titre demandé !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;Une erreur inconnue est survenue !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Des erreurs sont survenues pendant l&apos;exécution du script de téléchargement.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;Une erreur est survenue pendant la lecture du script !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;Une erreur est survenue à la lecture d&apos;un ID de titre !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Redémarrage requis</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet doit redémarrer pour appliquer la langue choisie.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet doit redémarrer pour appliquer le thème choisi.</translation>
</message>
@ -228,12 +226,12 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">L&apos;ID de titre que vous avez saisi a un format invalide !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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>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>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>ID de titre / Version introuvable</translation>
</message>
@ -242,12 +240,12 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Aucun titre trouvé pour l&apos;ID ou la version fourni !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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>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>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Échec du décryptage</translation>
</message>
@ -256,12 +254,12 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Le décryptage du contenu a échoué ! Le contenu décrypté ne peut être créé.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<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é &quot;Utiliser des fichiers locaux, s&apos;ils existent&quot;, essayez de désactiver cette option avant d&apos;essayer à nouveau pour résoudre les éventuelles erreurs avec les données locales.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Billet indisponible</translation>
</message>
@ -270,12 +268,12 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Aucun billet disponible pour le titre demandé !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>Un billet ne peut être téléchargé pour le titre demandé, mais vous avez sélectionné &quot;Empaqueter une archive d&apos;installation&quot; ou &quot;Décrypter le contenu&quot;. Ces options sont indisponibles pour les titres sans billet. Seul le contenu crypté a é enregistré.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Erreur inconnue</translation>
</message>
@ -284,12 +282,12 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Une erreur inconnue est survenue !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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>Veuillez essayer à nouveau. Si le problème persiste, déclarez un problème sur GitHub en décrivant les actions qui ont provoqué l&apos;erreur.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Erreurs survenues dans le script</translation>
</message>
@ -298,32 +296,32 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Des erreurs sont survenues pendant l&apos;exécution du script de téléchargement.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Vérifiez le journal pour plus de détails à propos des erreurs rencontrées.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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>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>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Vous avez activé &quot;Décrypter le contenu&quot; ou &quot;Empaqueter une archive d&apos;installation&quot;, mais les billets des titres suivants sont indisponibles. Si activé(s), le contenu crypté a é téléchargé.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Échec du script de téléchargement</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Ouvrir un script NUS</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>Scripts NUS (*.nus *.json)</translation>
</message>
@ -332,7 +330,7 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Une erreur est survenue pendant la lecture du script !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>Erreur recontrée ligne {lineno}, colonne {colno}. Vérifiez le script et réessayez.</translation>
</message>
@ -341,24 +339,23 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation type="vanished">Une erreur est survenue à la lecture d&apos;un ID de titre !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Le titre à l&apos;index {index} n&apos;a pas d&apos;ID !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Ouvrir un dossier</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;Le dossier de téléchargement choisi n&apos;existe pas !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Assurez-vous que votre dossier de téléchargement existe, et que vous avez les droits suffisants pour y accéder.</translation>
<translation type="vanished">Assurez-vous que votre dossier de téléchargement existe, et que vous avez les droits suffisants pour y accéder.</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="26"/>
@ -416,85 +413,73 @@ Les titres seront téléchargés dans un dossier &quot;NUSGet Downloads&quot;,
<translation>Télécharger</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Exécuter le script</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Configuration</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Langue</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Thème</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>À propos de NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>Système (par défaut)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Clair</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Sombre</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Empaqueter une archive d&apos;installation (WAD / TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Nom du fichier</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Conserver le contenu crypté</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Décrypter le contenu (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Utiliser des fichiers locaux, s&apos;ils existent</translation>
</message>
@ -503,52 +488,71 @@ li.checked::marker { content: &quot;\2612&quot;; }
<translation type="vanished">Utiliser le NUS Wii U (plus rapide, n&apos;affecte que Wii / vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Appliquer des modifications aux IOS (WAD uniquement)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>Titres vWii</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Encrypter le titre avec la clé commune Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Paramètres</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Vérifier les mises à jour au démarrage</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Utiliser un dossier de téléchargement différent</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Choisir</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Aide</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>À propos de Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation>Dossier de téléchargement</translation>
</message>

View File

@ -19,7 +19,7 @@
<translation>Versione {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Versione libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</translation>
</message>
@ -136,73 +136,73 @@
<translation>Avvia download</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Avvia Script</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Impostazioni generali</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Opzioni</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Lingua</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Tema</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Info su NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>Sistema (Default)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Chiaro</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Scuro</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Archivio installabile (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Nome del file</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Mantieni contenuti criptati</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Crea contenuto decriptato (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Usa file locali, se esistenti</translation>
</message>
@ -211,37 +211,36 @@
<translation type="vanished">Usa il NUS di Wii U (più veloce, riguarda solo Wii/vWii)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>Impostazioni titoli vWii</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Cripta titolo usando la Chiave Comune Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Impostazioni app</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Controlla aggiornamenti all&apos;avvio</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Usa una cartella di download personalizzata</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Seleziona...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@ -250,7 +249,7 @@ li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
@ -260,21 +259,22 @@ li.checked::marker { content: &quot;\2612&quot;; }
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Aiuto</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Info su Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation>Cartella output</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@ -283,7 +283,7 @@ li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
@ -327,7 +327,7 @@ I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e poss
I titoli verranno scaricati nella cartella &quot;NUSGet Downloads&quot; all&apos;interno della cartella Download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -340,109 +340,107 @@ I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e poss
Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;NUSGet Downloads&quot; all&apos;interno della cartella Download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Usa il NUS di Wii U (più veloce, influisce solo su Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;È disponibile una nuova versione di NUSGet!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Nessun output selezionato</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Non hai selezionato alcun formato in cui esportare i dati!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Per favore scegli almeno un opzione per come vorresti che fosse salvato il download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Cartella di download non valida</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation>La cartella di download specificata non esiste!</translation>
<translation type="vanished">La cartella di download specificata non esiste!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<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="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>ID Titolo invalido</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;L&apos;ID Titolo che hai inserito non è in un formato valido!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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 del titolo devono essere costituiti da stringhe di 16 cifre di numeri e lettere. Inserire un ID titolo formattato correttamente o selezionarne uno dal menu a sinistra.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Non è stato trovato alcun titolo con l&apos;ID Titolo o la versione forniti!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;La decriptazione dei contenuti non è riuscita! Non è stato possibile creare i contenuti decriptati.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Nessun ticket disponibile per il titolo richiesto!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;Si è verificato un errore sconosciuto!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Si sono verificati alcuni problemi durante l&apos;esecuzione dello script di download.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;Si è verificato un errore durante l&apos;analisi del file script!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;Si è verificato un errore durante l&apos;analisi degli ID Titolo!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Riavvio necessario</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet ha bisogno di essere riavviato per poter cambiare la lingua.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet ha bisogno di essere riavviato per poter cambiare il tema.</translation>
</message>
@ -451,7 +449,7 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">L&apos; ID Titolo che hai inserito non è in un formato valido!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>ID Titolo/Versione non trovata</translation>
</message>
@ -460,12 +458,12 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Non è stato trovato nessun titolo con l&apos; ID Titolo o versione data!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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>Assicurati di aver inserito un&apos; ID Titolo valido, o scegline uno dal database, e che la versione richiesta esista per il titolo che vuoi scaricare.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Decriptazione contenuti fallita</translation>
</message>
@ -474,12 +472,12 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">La decriptazione dei contenuti non è andata a buon fine! I contenuti decriptadi non sono stati creati.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>Il tuo TMD o Ticket potrebbe essere danneggiato, o potrebbe non corrispondere col contenuto da decriptare. Se hai selezionato &quot;Usa file locali, se esistenti&quot;, prova a disabilitare quell&apos;opzione prima di riprovare a scaricare per aggiustare potenziali errori coi dati locali.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Ticket non disponibile</translation>
</message>
@ -488,12 +486,12 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Nessun ticket disponibile per il titolo richiesto!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>Non è stato possibile scaricare un ticket per il titolo richiesto, ma hai selezionato &quot;Crea archivio installabile&quot; o &quot;Crea contenuto decriptato&quot;. Queste opzioni non sono disponibili per i titoli senza un ticket. Sono stati salvati solo i contenuti criptati.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Errore sconosciuto</translation>
</message>
@ -502,12 +500,12 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Errore sconosciuto!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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>Per favore riprova. Se il problema persiste, apri un issue su GitHub specificando in modo dettagliato cosa volevi fare quando è comparso questo errore.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Errore script</translation>
</message>
@ -516,32 +514,32 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Ci sono stati degli errori con lo script di download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Guarda i log per più dettagli sull&apos;errore.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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>I seguenti titoli non sono stati scaricati a causa di un errore. Controlla che l&apos;ID Titolo e la versione nello script siano validi.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Hai abilitato &quot;Crea contenuto decriptato&quot; o &quot;Archivio installabile&quot;, 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="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Download script fallito</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Apri script NUS</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>Scrpit NUS (*.nus *.txt)</translation>
</message>
@ -550,7 +548,7 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Ci sono stati degli errori con lo script di download!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>Errore riscontrato alla riga {lineno}, colonna {colno}. Controlla nuovamente lo script e riprova.</translation>
</message>
@ -559,24 +557,23 @@ Per impostazione predefinita, i titoli verranno scaricati nella cartella &quot;N
<translation type="vanished">Ci sono stati degli errori con GLI id tITOLO!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Il titolo all&apos;indice {index} non ha un ID Titolo!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Apri cartella</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;La cartella di download specificata non esiste!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Assicurati che la cartella di download che desideri utilizzare esista e che tu abbia i permessi per accedervi.</translation>
<translation type="vanished">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>
@ -616,12 +613,12 @@ I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e poss
I titoli verranno scaricati nella cartella &quot;NUSGet&quot; all&apos;interno della cartella Download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Applica patch agli IOS (Solo per le WAD)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>Aggiornamento di NUSGet disponibile</translation>
</message>

View File

@ -19,7 +19,7 @@
<translation> {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version} </translation>
</message>
@ -136,73 +136,73 @@
<translation> </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation> </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation> </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>NUSGet </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation> ()</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation></translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation> (WAD/TAD) </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation> (*.app) </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation> </translation>
</message>
@ -211,49 +211,37 @@
<translation type="vanished">Wii U NUS ( Wii/vWii에만 )</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>vWii </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Wii </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation> </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation></translation>
</message>
@ -262,16 +250,17 @@ li.checked::marker { content: &quot;\2612&quot;; }
<translation type="vanished"></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Qt </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation> </translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
@ -280,7 +269,7 @@ li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
@ -324,7 +313,7 @@ DSi 지원 : libTWLPy {libtwlpy_version}에서 제공
&quot;NUSGet Downloads&quot; .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -337,104 +326,102 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
&quot;NUSBet Downloads&quot; .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Wii U NUS ( Wii/vWii에만 )</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;NUSGet의 !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation> !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation> .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation> !</translation>
<translation type="vanished"> !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation> , .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation> ID</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt; ID의 !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt; ID !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt; ! .&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt; !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt; !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt; .&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt; !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt; ID를 !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation> NUSGet을 .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation> NUSGet을 .</translation>
</message>
@ -443,12 +430,12 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> ID의 !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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> ID는 16 . ID를 .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation> ID/ </translation>
</message>
@ -457,12 +444,12 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> ID !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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> ID를 , .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation> </translation>
</message>
@ -471,12 +458,12 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> ! .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>TMD . &quot; &quot; , .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation> </translation>
</message>
@ -485,12 +472,12 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation> &quot; &quot; &quot; &quot; . . .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation> </translation>
</message>
@ -499,12 +486,12 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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> . GitHub에서 .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation> </translation>
</message>
@ -513,32 +500,32 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation> .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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> . ID와 .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>&quot; &quot; &quot; &quot; . .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>NUS </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>NUS (*.nus *.json)</translation>
</message>
@ -547,7 +534,7 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>{lineno} , {colno} . .</translation>
</message>
@ -556,24 +543,23 @@ By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&q
<translation type="vanished"> ID를 !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>{index} ID가 !</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation> </translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt; !&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation> , .</translation>
<translation type="vanished"> , .</translation>
</message>
<message>
<source>Open NUS script</source>
@ -614,12 +600,12 @@ DSi 지원 : libTWLPy {libtwlpy_version}에서 제공
&quot;NUSBet&quot; .</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>IOS에 (WAD에만 )</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>NUSGet </translation>
</message>

View File

@ -4,80 +4,80 @@
<context>
<name>AboutNUSGet</name>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="16"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="16"/>
<source>About NUSGet</source>
<translation>Om NUSGet</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="33"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="33"/>
<source>NUSGet</source>
<translation>NUSGet</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="38"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="38"/>
<source>Version {nusget_version}</source>
<translation>Versjon {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Bruker libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="49"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="49"/>
<source>© 2024-2025 NinjaCheetah &amp; Contributors</source>
<translation>© 2024-2025 NinjaCheetah &amp; Contributors</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="65"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="65"/>
<source>View Project on GitHub</source>
<translation>Se prosjektet GitHub</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="81"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="81"/>
<source>Translations</source>
<translation>Oversettelser</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="89"></location>
<source>French (Français): &lt;a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</source>
<translation>Fransk (Français): &lt;a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="89"/>
<source>French (Français): &lt;a href=https://github.com/rougets style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</source>
<translation>Fransk (Français): &lt;a href=https://github.com/rougets style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="91"></location>
<source>German (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</source>
<translation>Tysk (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="91"/>
<source>German (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</source>
<translation>Tysk (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="93"></location>
<source>Italian (Italiano): &lt;a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</source>
<translation>Italiensk (Italiano): &lt;a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="93"/>
<source>Italian (Italiano): &lt;a href=https://github.com/LNLenost style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</source>
<translation>Italiensk (Italiano): &lt;a href=https://github.com/LNLenost style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="95"></location>
<source>Korean (): &lt;a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</source>
<translation>Koreansk (): &lt;a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="95"/>
<source>Korean (): &lt;a href=https://github.com/DDinghoya style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</source>
<translation>Koreansk (): &lt;a href=https://github.com/DDinghoya style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="97"></location>
<source>Norwegian (Norsk): &lt;a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</source>
<translation>Norsk (Bokmål): &lt;a href=https://github.com/dandelionsprout style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;Imre Eilertsen&lt;/b&gt;&lt;/a&gt;, &lt;a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="97"/>
<source>Norwegian (Norsk): &lt;a href=https://github.com/rolfiee style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</source>
<translation>Norsk (Bokmål): &lt;a href=https://github.com/dandelionsprout style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;Imre Eilertsen&lt;/b&gt;&lt;/a&gt;, &lt;a href=https://github.com/rolfiee style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="99"></location>
<source>Romanian (Română): &lt;a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</source>
<translation>Rumensk (Română): &lt;a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="99"/>
<source>Romanian (Română): &lt;a href=https://github.com/NotImplementedLife style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</source>
<translation>Rumensk (Română): &lt;a href=https://github.com/NotImplementedLife style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="101"></location>
<source>Spanish (Español): &lt;a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</source>
<translation>Spansk (Español): &lt;a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="101"/>
<source>Spanish (Español): &lt;a href=https://github.com/DarkMatterCore style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</source>
<translation>Spansk (Español): &lt;a href=https://github.com/DarkMatterCore style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="26"></location>
<location filename="../../qt/ui/MainMenu.ui" line="26"/>
<source>MainWindow</source>
<translation>MainWindow</translation>
</message>
@ -86,123 +86,123 @@
<translation type="vanished">Tilgjengelige titler</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="46"></location>
<location filename="../../qt/ui/MainMenu.ui" line="46"/>
<source>Search</source>
<translation>Søk</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="59"></location>
<location filename="../../qt/ui/MainMenu.ui" line="59"/>
<source>Clear</source>
<translation>Klar</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="90"></location>
<location filename="../../qt/ui/MainMenu.ui" line="90"/>
<source>Wii</source>
<translation>Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="100"></location>
<location filename="../../qt/ui/MainMenu.ui" line="100"/>
<source>vWii</source>
<translation>vWii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="110"></location>
<location filename="../../qt/ui/MainMenu.ui" line="110"/>
<source>DSi</source>
<translation>DSi</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="135"></location>
<location filename="../../qt/ui/MainMenu.ui" line="135"/>
<source>Title ID</source>
<translation>Tittel-ID</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="142"></location>
<location filename="../../qt/ui/MainMenu.ui" line="142"/>
<source>v</source>
<translation>v</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="155"></location>
<location filename="../../qt/ui/MainMenu.ui" line="155"/>
<source>Version</source>
<translation>Versjon</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="162"></location>
<location filename="../../qt/ui/MainMenu.ui" line="162"/>
<source>Console:</source>
<translation>Konsoll:</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="198"></location>
<location filename="../../qt/ui/MainMenu.ui" line="198"/>
<source>Start Download</source>
<translation>Start nedlasting</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"></location>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Kjør skript</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"></location>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Generelle innstillinger</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"></location>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Innstillinger</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"></location>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Språk</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"></location>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Tema</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"></location>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Om NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"></location>
<location filename="../../qt/ui/MainMenu.ui" line="617"></location>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>System (Standard)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"></location>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Lys</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"></location>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Mørk</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"></location>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Pakk installerbart arkiv (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"></location>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Filnavn</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"></location>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Oppbevar kryptert innhold</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"></location>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Opprett dekryptert innhold (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"></location>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Bruk lokale filer, hvis de finnes</translation>
</message>
@ -211,99 +211,99 @@
<translation type="vanished">Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"></location>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>vWii-tittelinnstillinger</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"></location>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Krypter tittelen nytt ved hjelp av Wii Common Key</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"></location>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Appinnstillinger</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"></location>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Sjekk for oppdateringer ved oppstart</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"></location>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Bruk en selvvalgt nedlastingsmappe</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"></location>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Velg...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"></location>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"></location>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Hjelp</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"></location>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Om Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"></location>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translatorcomment>Utgangsbane</translatorcomment>
<translation></translation>
</message>
<message>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>NUSGet v{nusget_version}
@ -315,7 +315,7 @@ 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 will be downloaded to a folder named "NUSGet" inside your downloads folder.</source>
Titles will be downloaded to a folder named &quot;NUSGet&quot; inside your downloads folder.</source>
<translation type="vanished">NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@ -325,7 +325,7 @@ Velg en tittel fra listen til venstre, eller skriv inn en Tittel ID for å begyn
Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X ikke har en billett, og bare det krypterte innholdet kan lagres.
Titler er lastes ned til en mappe med navnet "NUSGet" i nedlastingsmappen din.</translation>
Titler er lastes ned til en mappe med navnet &quot;NUSGet&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<source>NUSGet v{nusget_version}
@ -337,7 +337,7 @@ 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 will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
Titles will be downloaded to a folder named &quot;NUSGet Downloads&quot; inside your downloads folder.</source>
<translation type="vanished">NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@ -347,102 +347,100 @@ Velg en tittel fra listen til venstre, eller skriv inn en Tittel ID for å begyn
Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X ikke har en billett, og bare det krypterte innholdet kan lagres.
Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.</translation>
Titler er lastes ned til en mappe med navnet &quot;NUSGet Downloads&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"></location>
<source>&lt;b&gt;There's a newer version of NUSGet available!&lt;/b&gt;</source>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;En nyere versjon av NUSGet er tilgjengelig!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"></location>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Ingen utdata valgt</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"></location>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Du har ikke valgt noe format å lagre dataene i!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"></location>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Velg minst ett valg for hvordan du vil at nedlastingen skal lagres.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"></location>
<location filename="../../NUSGet.py" line="628"></location>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Ugyldig nedlastingsmappe</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"></location>
<source>The specified download directory does not exist!</source>
<translation>Den angitte nedlastingsmappen finnes ikke!</translation>
<translation type="vanished">Den angitte nedlastingsmappen finnes ikke!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"></location>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation>Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"></location>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>Ugyldig tittel-ID</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"></location>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;Tittel-ID-en du har angitt er ikke i et gyldig format!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"></location>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ingen tittel med oppgitt tittel-ID eller -versjon ble funnet!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"></location>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;Dekryptering av innholdet mislyktes! Dekryptert innhold kunne ikke opprettes.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"></location>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ingen billett er tilgjengelig for den forespurte tittelen!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"></location>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;En ukjent feil har oppstått!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"></location>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Noen feil oppstod under kjøring av nedlastingsskriptet.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"></location>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;Det oppstod en feil under parsing av skriptfilen!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"></location>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;Det oppstod en feil under parsing av tittel-ID-er!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"></location>
<location filename="../../NUSGet.py" line="671"></location>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Omstart kreves</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"></location>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet startes nytt for at det valgte språket skal tre i kraft.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"></location>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet startes nytt for at det valgte temaet skal tre i kraft.</translation>
</message>
@ -451,12 +449,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Tittel IDen du har angitt er ikke i et gyldig format!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"></location>
<location filename="../../NUSGet.py" line="455"/>
<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>Tittel-ID-er være 16-sifrede strenger med tall og bokstaver. Vennligst skriv inn en korrekt formatert tittel-ID, eller velg en fra menyen til venstre.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"></location>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>Tittel-ID/-versjon ble ikke funnet</translation>
</message>
@ -465,12 +463,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Ingen tittel med oppgitt Tittel ID eller versjon ble funnet!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"></location>
<location filename="../../NUSGet.py" line="460"/>
<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>Sjekk at du har oppgitt en gyldig tittel-ID, eller valgt en fra titteldatabasen, og at den angitte versjonen finnes for tittelen du forsøker å laste ned.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"></location>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Dekryptering av innhold mislyktes</translation>
</message>
@ -479,12 +477,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"></location>
<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>TMD-en eller billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet som dekrypteres. Hvis du har krysset av for "Bruk lokale filer, hvis de finnes", kan du prøve å deaktivere dette alternativet før du prøver nedlastingen nytt for å løse eventuelle problemer med lokale data.</translation>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>TMD-en eller billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet som dekrypteres. Hvis du har krysset av for &quot;Bruk lokale filer, hvis de finnes&quot;, kan du prøve å deaktivere dette alternativet før du prøver nedlastingen nytt for å løse eventuelle problemer med lokale data.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"></location>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Billett ikke tilgjengelig</translation>
</message>
@ -493,12 +491,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Ingen billett er tilgjengelig for den forespurte tittelen!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"></location>
<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>En billett kunne ikke lastes ned for den forespurte tittelen, men du har valgt "Pakk installerbart arkiv" eller "Opprett dekryptert innhold". Disse alternativene er ikke tilgjengelige for titler uten billett. Bare kryptert innhold har blitt lagret.</translation>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>En billett kunne ikke lastes ned for den forespurte tittelen, men du har valgt &quot;Pakk installerbart arkiv&quot; eller &quot;Opprett dekryptert innhold&quot;. Disse alternativene er ikke tilgjengelige for titler uten billett. Bare kryptert innhold har blitt lagret.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"></location>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Ukjent feil</translation>
</message>
@ -507,12 +505,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">En ukjent feil har oppstått!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"></location>
<location filename="../../NUSGet.py" line="478"/>
<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>Prøv igjen. Hvis dette problemet vedvarer, åpne en ny saksrapport GitHub med detaljer om hva du prøvde å gjøre da denne feilen oppstod.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"></location>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Skriptfeil oppstod</translation>
</message>
@ -521,32 +519,32 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Noen feil oppstod under kjøring av nedlastingsskriptet.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"></location>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Sjekk loggen for mer informasjon om feilene som har oppstått.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"></location>
<location filename="../../NUSGet.py" line="506"/>
<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>Følgende titler kunne ikke lastes ned grunn av en feil. Sjekk at tittel-ID-en og -versjonen som er oppført i skriptet er gyldige.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"></location>
<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>Du skrudde "Opprett dekryptert innhold" eller "Pakk installerbart arkiv", men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.</translation>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Du skrudde &quot;Opprett dekryptert innhold&quot; eller &quot;Pakk installerbart arkiv&quot;, men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"></location>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Skriptnedlasting mislyktes</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"></location>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Åpne NUS-skript</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"></location>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>NUS-skript (*.nus *.json)</translation>
</message>
@ -555,7 +553,7 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Det oppstod en feil under parsing av skriptfilen!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"></location>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation></translation>
</message>
@ -564,59 +562,58 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Det oppstod en feil under parsing av Tittel IDer!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"></location>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Tittelen ved indeks {index} har ikke en tittel-ID!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"></location>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Åpne mappe</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"></location>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;Den angitte nedlastingsmappen finnes ikke!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"></location>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
<translation type="vanished">Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"></location>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Benytt patcher IOS (gjelder kun WAD-er)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"></location>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
By default, titles will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&quot; inside your downloads folder.</source>
<translation>Velg en tittel fra listen til venstre, eller skriv inn en tittel-ID for å begynne.
Titler merket med en hake er gratis og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X har ikke en billett, og bare det krypterte innholdet kan lagres.
Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.</translation>
Som standard, lastes titler ned til en mappe med navnet &quot;NUSGet Downloads&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"></location>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"></location>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>NUSGet-oppdatering tilgjengelig</translation>
</message>
<message>
<source>There's a newer version of NUSGet available!</source>
<source>There&apos;s a newer version of NUSGet available!</source>
<translation type="vanished">Det finnes en nyere versjon av NUSGet tilgjengelig!</translation>
</message>
<message>
<location filename="../../modules/core.py" line="74"></location>
<location filename="../../modules/core.py" line="74"/>
<source>
Could not check for updates.</source>
@ -625,19 +622,19 @@ Could not check for updates.</source>
Kunne ikke sjekke for oppdateringer.</translation>
</message>
<message>
<location filename="../../modules/core.py" line="84"></location>
<location filename="../../modules/core.py" line="84"/>
<source>
There's a newer version of NUSGet available!</source>
There&apos;s a newer version of NUSGet available!</source>
<translation>
En nyere versjon av NUSGet er tilgjengelig!</translation>
</message>
<message>
<location filename="../../modules/core.py" line="86"></location>
<location filename="../../modules/core.py" line="86"/>
<source>
You're running the latest release of NUSGet.</source>
You&apos;re running the latest release of NUSGet.</source>
<translation>
Du kjører den nyeste versjonen av NUSGet.</translation>

View File

@ -4,80 +4,80 @@
<context>
<name>AboutNUSGet</name>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="16"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="16"/>
<source>About NUSGet</source>
<translation>Om NUSGet</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="33"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="33"/>
<source>NUSGet</source>
<translation>NUSGet</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="38"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="38"/>
<source>Version {nusget_version}</source>
<translation>Versjon {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Bruker libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="49"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="49"/>
<source>© 2024-2025 NinjaCheetah &amp; Contributors</source>
<translation>© 2024-2025 NinjaCheetah &amp; Contributors</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="65"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="65"/>
<source>View Project on GitHub</source>
<translation>Se prosjektet GitHub</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="81"></location>
<location filename="../../qt/py/ui_AboutDialog.py" line="81"/>
<source>Translations</source>
<translation>Oversettelser</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="89"></location>
<source>French (Français): &lt;a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</source>
<translation>Fransk (Français): &lt;a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="89"/>
<source>French (Français): &lt;a href=https://github.com/rougets style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</source>
<translation>Fransk (Français): &lt;a href=https://github.com/rougets style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rougets&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="91"></location>
<source>German (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</source>
<translation>Tysk (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="91"/>
<source>German (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</source>
<translation>Tysk (Deutsch): &lt;a href=https://github.com/yeah-its-gloria style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;yeah-its-gloria&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="93"></location>
<source>Italian (Italiano): &lt;a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</source>
<translation>Italiensk (Italiano): &lt;a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="93"/>
<source>Italian (Italiano): &lt;a href=https://github.com/LNLenost style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</source>
<translation>Italiensk (Italiano): &lt;a href=https://github.com/LNLenost style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;LNLenost&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="95"></location>
<source>Korean (): &lt;a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</source>
<translation>Koreansk (): &lt;a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="95"/>
<source>Korean (): &lt;a href=https://github.com/DDinghoya style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</source>
<translation>Koreansk (): &lt;a href=https://github.com/DDinghoya style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DDinghoya&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="97"></location>
<source>Norwegian (Norsk): &lt;a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</source>
<translation>Norsk (Bokmål): &lt;a href=https://github.com/dandelionsprout style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;Imre Eilertsen&lt;/b&gt;&lt;/a&gt;, &lt;a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="97"/>
<source>Norwegian (Norsk): &lt;a href=https://github.com/rolfiee style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</source>
<translation>Norsk (Bokmål): &lt;a href=https://github.com/dandelionsprout style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;Imre Eilertsen&lt;/b&gt;&lt;/a&gt;, &lt;a href=https://github.com/rolfiee style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;rolfiee&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="99"></location>
<source>Romanian (Română): &lt;a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</source>
<translation>Rumensk (Română): &lt;a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="99"/>
<source>Romanian (Română): &lt;a href=https://github.com/NotImplementedLife style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</source>
<translation>Rumensk (Română): &lt;a href=https://github.com/NotImplementedLife style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;NotImplementedLife&lt;/b&gt;&lt;/a&gt;</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="101"></location>
<source>Spanish (Español): &lt;a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</source>
<translation>Spansk (Español): &lt;a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</translation>
<location filename="../../qt/py/ui_AboutDialog.py" line="101"/>
<source>Spanish (Español): &lt;a href=https://github.com/DarkMatterCore style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</source>
<translation>Spansk (Español): &lt;a href=https://github.com/DarkMatterCore style=&apos;color: #4a86e8; text-decoration: none;&apos;&gt;&lt;b&gt;DarkMatterCore&lt;/b&gt;&lt;/a&gt;</translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="26"></location>
<location filename="../../qt/ui/MainMenu.ui" line="26"/>
<source>MainWindow</source>
<translation>MainWindow</translation>
</message>
@ -86,123 +86,123 @@
<translation type="vanished">Tilgjengelige Titler</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="46"></location>
<location filename="../../qt/ui/MainMenu.ui" line="46"/>
<source>Search</source>
<translation>Søk</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="59"></location>
<location filename="../../qt/ui/MainMenu.ui" line="59"/>
<source>Clear</source>
<translation>Klar</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="90"></location>
<location filename="../../qt/ui/MainMenu.ui" line="90"/>
<source>Wii</source>
<translation>Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="100"></location>
<location filename="../../qt/ui/MainMenu.ui" line="100"/>
<source>vWii</source>
<translation>vWii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="110"></location>
<location filename="../../qt/ui/MainMenu.ui" line="110"/>
<source>DSi</source>
<translation>DSi</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="135"></location>
<location filename="../../qt/ui/MainMenu.ui" line="135"/>
<source>Title ID</source>
<translation>Tittel-ID</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="142"></location>
<location filename="../../qt/ui/MainMenu.ui" line="142"/>
<source>v</source>
<translation>v</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="155"></location>
<location filename="../../qt/ui/MainMenu.ui" line="155"/>
<source>Version</source>
<translation>Versjon</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="162"></location>
<location filename="../../qt/ui/MainMenu.ui" line="162"/>
<source>Console:</source>
<translation>Konsoll:</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="198"></location>
<location filename="../../qt/ui/MainMenu.ui" line="198"/>
<source>Start Download</source>
<translation>Start nedlasting</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"></location>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Kjør skript</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"></location>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Generelle innstillinger</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"></location>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Innstillinger</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"></location>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Språk</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"></location>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Tema</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"></location>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Om NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"></location>
<location filename="../../qt/ui/MainMenu.ui" line="617"></location>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>System (Standard)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"></location>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Lys</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"></location>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Mørk</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"></location>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Pakk installerbart arkiv (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"></location>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Filnavn</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"></location>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Oppbevar kryptert innhold</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"></location>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Opprett dekryptert innhold (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"></location>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Bruk lokale filer, hvis de finnes</translation>
</message>
@ -211,99 +211,99 @@
<translation type="vanished">Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"></location>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>vWii-tittelinnstillinger</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"></location>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Krypter tittelen nytt ved hjelp av Wii Common Key</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"></location>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Appinnstillinger</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"></location>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Sjekk for oppdateringer ved oppstart</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"></location>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Bruk en selvvalgt nedlastingsmappe</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"></location>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Velg...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"></location>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"></location>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Hjelp</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"></location>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Om Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"></location>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translatorcomment>Utgangsbane</translatorcomment>
<translation></translation>
</message>
<message>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;meta charset="utf-8" /&gt;&lt;style type="text/css"&gt;
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name="qrichtext" content="1" /&gt;&lt;style type="text/css"&gt;
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation type="vanished">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"&gt;
&lt;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;"&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans Serif&apos;; font-size:9pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<source>NUSGet v{nusget_version}
@ -315,7 +315,7 @@ 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 will be downloaded to a folder named "NUSGet" inside your downloads folder.</source>
Titles will be downloaded to a folder named &quot;NUSGet&quot; inside your downloads folder.</source>
<translation type="vanished">NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@ -325,7 +325,7 @@ Velg en tittel fra listen til venstre, eller skriv inn en Tittel ID for å begyn
Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X ikke har en billett, og bare det krypterte innholdet kan lagres.
Titler er lastes ned til en mappe med navnet "NUSGet" i nedlastingsmappen din.</translation>
Titler er lastes ned til en mappe med navnet &quot;NUSGet&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<source>NUSGet v{nusget_version}
@ -337,7 +337,7 @@ 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 will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
Titles will be downloaded to a folder named &quot;NUSGet Downloads&quot; inside your downloads folder.</source>
<translation type="vanished">NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@ -347,102 +347,100 @@ Velg en tittel fra listen til venstre, eller skriv inn en Tittel ID for å begyn
Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X ikke har en billett, og bare det krypterte innholdet kan lagres.
Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.</translation>
Titler er lastes ned til en mappe med navnet &quot;NUSGet Downloads&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"></location>
<source>&lt;b&gt;There's a newer version of NUSGet available!&lt;/b&gt;</source>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;En nyere versjon av NUSGet tilgjengelig!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"></location>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Ingen utdata valgt</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"></location>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Du har ikke valgt noe format å lagre dataene i!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"></location>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation>Velg minst ett valg for hvordan du vil at nedlastingen skal lagres.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"></location>
<location filename="../../NUSGet.py" line="628"></location>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Ugyldig nedlastingsmappe</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"></location>
<source>The specified download directory does not exist!</source>
<translation>Den angitte nedlastingsmappen finnes ikke!</translation>
<translation type="vanished">Den angitte nedlastingsmappen finnes ikke!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"></location>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation>Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"></location>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>Ugyldig tittel-ID</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"></location>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt;Tittel-ID-en du har angitt er ikke i et gyldig format!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"></location>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ingen tittel med oppgitt tittel-ID eller -versjon ble funnet!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"></location>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;Dekryptering av innholdet mislyktes! Dekryptert innhold kunne ikke opprettes.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"></location>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Ingen billett er tilgjengelig for den forespurte tittelen!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"></location>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;En ukjent feil har oppstått!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"></location>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Noen feil oppstod under kjøring av nedlastingsskriptet.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"></location>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;Det oppstod en feil under parsing av skriptfilen!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"></location>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;Det oppstod en feil under parsing av tittel-ID-er!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"></location>
<location filename="../../NUSGet.py" line="671"></location>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Omstart kreves</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"></location>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet startes nytt for at det valgte språket skal tre i kraft.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"></location>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet startes nytt for at det valgte temaet skal tre i kraft.</translation>
</message>
@ -451,12 +449,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Tittel IDen du har angitt er ikke i et gyldig format!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"></location>
<location filename="../../NUSGet.py" line="455"/>
<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>Tittel-ID-er være 16-sifrede strenger med tall og bokstaver. Vennligst skriv inn en korrekt formatert tittel-ID, eller velg en fra menyen til venstre.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"></location>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>Tittel-ID/-versjon ble ikke funnet</translation>
</message>
@ -465,12 +463,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Ingen tittel med oppgitt Tittel ID eller versjon ble funnet!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"></location>
<location filename="../../NUSGet.py" line="460"/>
<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>Sjekk at du har oppgitt en gyldig tittel-ID, eller valgt en fra titteldatabasen, og at den angitte versjonen finnes for tittelen du forsøker å laste ned.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"></location>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Dekryptering av innhold mislyktes</translation>
</message>
@ -479,12 +477,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"></location>
<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>TMD-en eller billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet som dekrypteres. Hvis du har krysset av for "Bruk lokale filer, hvis de finnes", kan du prøve å deaktivere dette alternativet før du prøver nedlastingen nytt for å løse eventuelle problemer med lokale data.</translation>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>TMD-en eller billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet som dekrypteres. Hvis du har krysset av for &quot;Bruk lokale filer, hvis de finnes&quot;, kan du prøve å deaktivere dette alternativet før du prøver nedlastingen nytt for å løse eventuelle problemer med lokale data.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"></location>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Billett ikke tilgjengelig</translation>
</message>
@ -493,12 +491,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Ingen billett er tilgjengelig for den forespurte tittelen!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"></location>
<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>En billett kunne ikke lastes ned for den forespurte tittelen, men du har valgt "Pakk installerbart arkiv" eller "Opprett dekryptert innhold". Disse alternativene er ikke tilgjengelige for titler uten billett. Bare kryptert innhold har blitt lagret.</translation>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>En billett kunne ikke lastes ned for den forespurte tittelen, men du har valgt &quot;Pakk installerbart arkiv&quot; eller &quot;Opprett dekryptert innhold&quot;. Disse alternativene er ikke tilgjengelige for titler uten billett. Bare kryptert innhold har blitt lagret.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"></location>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Ukjent feil</translation>
</message>
@ -507,12 +505,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">En ukjent feil har oppstått!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"></location>
<location filename="../../NUSGet.py" line="478"/>
<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>Prøv igjen. Hvis dette problemet vedvarer, åpne en ny saksrapport GitHub med detaljer om hva du prøvde å gjøre da denne feilen oppstod.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"></location>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Skriptfeil oppstod</translation>
</message>
@ -521,32 +519,32 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Noen feil oppstod under kjøring av nedlastingsskriptet.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"></location>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Sjekk loggen for mer informasjon om feilene som har oppstått.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"></location>
<location filename="../../NUSGet.py" line="506"/>
<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>Følgende titler kunne ikke lastes ned grunn av en feil. Sjekk at tittel-ID-en og -versjonen som er oppført i skriptet er gyldige.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"></location>
<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>Du skrudde "Opprett dekryptert innhold" eller "Pakk installerbart arkiv", men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.</translation>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Du skrudde &quot;Opprett dekryptert innhold&quot; eller &quot;Pakk installerbart arkiv&quot;, men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"></location>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Skriptnedlasting mislyktes</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"></location>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Åpne NUS-skript</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"></location>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>NUS-skript (*.nus *.json)</translation>
</message>
@ -555,7 +553,7 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Det oppstod en feil under parsing av skriptfilen!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"></location>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation></translation>
</message>
@ -564,59 +562,58 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmap
<translation type="vanished">Det oppstod en feil under parsing av Tittel IDer!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"></location>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Tittelen ved indeks {index} har ikke en tittel-ID!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"></location>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Åpne mappe</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"></location>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;Den angitte nedlastingsmappen finnes ikke!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"></location>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation>Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
<translation type="vanished">Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse til å tilgang til den.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"></location>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Benytt patcher IOS (gjelder kun WAD-er)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"></location>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
By default, titles will be downloaded to a folder named "NUSGet Downloads" inside your downloads folder.</source>
By default, titles will be downloaded to a folder named &quot;NUSGet Downloads&quot; inside your downloads folder.</source>
<translation>Velg en tittel fra listen til venstre, eller skriv inn en tittel-ID for å begynne.
Titler merket med en hake er gratis og har en billett tilgjengelig, og kan dekrypteres og/eller pakkes inn i en WAD eller TAD. Titler med en X har ikke en billett, og bare det krypterte innholdet kan lagres.
Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.</translation>
Som standard, lastes titler ned til en mappe med navnet &quot;NUSGet Downloads&quot; i nedlastingsmappen din.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"></location>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"></location>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>NUSGet-oppdatering tilgjengelig</translation>
</message>
<message>
<source>There's a newer version of NUSGet available!</source>
<source>There&apos;s a newer version of NUSGet available!</source>
<translation type="vanished">Det finnes en nyere versjon av NUSGet tilgjengelig!</translation>
</message>
<message>
<location filename="../../modules/core.py" line="74"></location>
<location filename="../../modules/core.py" line="74"/>
<source>
Could not check for updates.</source>
@ -625,19 +622,19 @@ Could not check for updates.</source>
Kunne ikke sjekke for oppdateringer.</translation>
</message>
<message>
<location filename="../../modules/core.py" line="84"></location>
<location filename="../../modules/core.py" line="84"/>
<source>
There's a newer version of NUSGet available!</source>
There&apos;s a newer version of NUSGet available!</source>
<translation>
En nyere versjon av NUSGet er tilgjengelig!</translation>
</message>
<message>
<location filename="../../modules/core.py" line="86"></location>
<location filename="../../modules/core.py" line="86"/>
<source>
You're running the latest release of NUSGet.</source>
You&apos;re running the latest release of NUSGet.</source>
<translation>
Du kjører den nyeste versjonen av NUSGet.</translation>

View File

@ -19,7 +19,7 @@
<translation>Versiunea {nusget_version}</translation>
</message>
<message>
<location filename="../../qt/py/ui_AboutDialog.py" line="44"/>
<location filename="../../qt/py/ui_AboutDialog.py" line="43"/>
<source>Using libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</source>
<translation>Folosește libWiiPy {libwiipy_version} &amp; libTWLPy {libtwlpy_version}</translation>
</message>
@ -121,7 +121,7 @@ Titlurile marcate cu bifă sunt gratuite și au un tichet disponibil și pot fi
Titlurile vor fi descărcate într-un folder numit NUSGet Downloads în fișierul dvs. de download.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="305"/>
<location filename="../../NUSGet.py" line="317"/>
<source>NUSGet Update Available</source>
<translation>Actualizare NUSGet disponibilă</translation>
</message>
@ -130,7 +130,7 @@ Titlurile vor fi descărcate într-un folder numit „NUSGet Downloads” în fi
<translation type="vanished">O nouă versiune NUSGet este disponibilă!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="119"/>
<location filename="../../NUSGet.py" line="116"/>
<source>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.
@ -143,104 +143,102 @@ Titlurile marcate cu bifă sunt libere și au un tichet valabil, ele pot fi decr
Implicit, titlurile vor fi descărcate într-un folder numit NUSGet Downloads în folderul dvs. de descărcări.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="224"/>
<location filename="../../NUSGet.py" line="236"/>
<source>Use the Wii U NUS (faster, only affects Wii/vWii)</source>
<translation>Folosiți Wii U NUS (mai rapid, afectează doar Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="306"/>
<location filename="../../NUSGet.py" line="318"/>
<source>&lt;b&gt;There&apos;s a newer version of NUSGet available!&lt;/b&gt;</source>
<translation>&lt;b&gt;O nouă versiune de NUSGet este valabilă!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="407"/>
<location filename="../../NUSGet.py" line="419"/>
<source>No Output Selected</source>
<translation>Nu s-a selectat un output</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="408"/>
<location filename="../../NUSGet.py" line="420"/>
<source>You have not selected any format to output the data in!</source>
<translation>Nu ați selectat niciun format de ieșire!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="410"/>
<location filename="../../NUSGet.py" line="421"/>
<source>Please select at least one option for how you would like the download to be saved.</source>
<translation> rugăm selectați cel puțin o opțiune pentru modul în care doriți salvați datele descărcate.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="422"/>
<location filename="../../NUSGet.py" line="628"/>
<location filename="../../NUSGet.py" line="667"/>
<source>Invalid Download Directory</source>
<translation>Director de descărcare invalid</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="423"/>
<source>The specified download directory does not exist!</source>
<translation>Directorul de descărcare specificat nu există!</translation>
<translation type="vanished">Directorul de descărcare specificat nu există!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="426"/>
<location filename="../../NUSGet.py" line="669"/>
<source>Please make sure the specified download directory exists, and that you have permission to access it.</source>
<translation> rugăm asigurați directorul de descărcare specificat există, și aveți permisiuni pentru a-l accesa.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="456"/>
<location filename="../../NUSGet.py" line="453"/>
<source>Invalid Title ID</source>
<translation>Title ID invalid</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="457"/>
<location filename="../../NUSGet.py" line="454"/>
<source>&lt;b&gt;The Title ID you have entered is not in a valid format!&lt;/b&gt;</source>
<translation>&lt;b&gt; Title ID pe care l-ați introdus nu este într-un format valid!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="462"/>
<location filename="../../NUSGet.py" line="459"/>
<source>&lt;b&gt;No title with the provided Title ID or version could be found!&lt;/b&gt;</source>
<translation>&lt;b&gt;Nu s-a găsit niciun titlu cu Title ID sau versiunea introdusă!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="467"/>
<location filename="../../NUSGet.py" line="464"/>
<source>&lt;b&gt;Content decryption was not successful! Decrypted contents could not be created.&lt;/b&gt;</source>
<translation>&lt;b&gt;Decriptarea conținutului a eșuat! Nu s-a putut crea conținutul decriptat.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="474"/>
<location filename="../../NUSGet.py" line="471"/>
<source>&lt;b&gt;No Ticket is Available for the Requested Title!&lt;/b&gt;</source>
<translation>&lt;b&gt;Nu există tichet valabil pentru titlul cerut!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="480"/>
<location filename="../../NUSGet.py" line="477"/>
<source>&lt;b&gt;An Unknown Error has Occurred!&lt;/b&gt;</source>
<translation>&lt;b&gt;S-a produs o eroare necunoscută!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="502"/>
<location filename="../../NUSGet.py" line="500"/>
<source>&lt;b&gt;Some issues occurred while running the download script.&lt;/b&gt;</source>
<translation>&lt;b&gt;Au apărut câteva probleme la rularea scriptului de descărcare.&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="552"/>
<location filename="../../NUSGet.py" line="550"/>
<source>&lt;b&gt;An error occurred while parsing the script file!&lt;/b&gt;</source>
<translation>&lt;b&gt;A apărut o eroare la procesarea fișierului script!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="563"/>
<location filename="../../NUSGet.py" line="561"/>
<source>&lt;b&gt;An error occurred while parsing Title IDs!&lt;/b&gt;</source>
<translation>&lt;b&gt;A apărut o eroare la procesarea Title ID-urilor!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="661"/>
<location filename="../../NUSGet.py" line="671"/>
<location filename="../../NUSGet.py" line="704"/>
<location filename="../../NUSGet.py" line="714"/>
<source>Restart Required</source>
<translation>Repornire necesară</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="662"/>
<location filename="../../NUSGet.py" line="705"/>
<source>NUSGet must be restarted for the selected language to take effect.</source>
<translation>NUSGet trebuie repornit pentru ca noua limbă aibă efect.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="672"/>
<location filename="../../NUSGet.py" line="715"/>
<source>NUSGet must be restarted for the selected theme to take effect.</source>
<translation>NUSGet trebuie repornit pentru ca noua temă aibă efect.</translation>
</message>
@ -249,12 +247,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">Title ID pe care l-ați introdus este invalid!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="459"/>
<location filename="../../NUSGet.py" line="455"/>
<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>Title ID-urile trebuie conțină exact 16 cifre și/sau litere. rugăm introduceți un Title ID corect, sau selectați unul din meniul din stânga.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="461"/>
<location filename="../../NUSGet.py" line="458"/>
<source>Title ID/Version Not Found</source>
<translation>Title ID/Versiunea nu a fost găsită</translation>
</message>
@ -263,12 +261,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">Niciun titlu care corespundă cu Title ID-ul sau cu versiunea introdusă nu a fost găsit!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="464"/>
<location filename="../../NUSGet.py" line="460"/>
<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> rugăm asigurați ați introdus un Title ID valid sau ați selectat unul din baza de date cu titluri, și versiunea introdusă există pentru titlul pe care încercați îl descărcați.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="466"/>
<location filename="../../NUSGet.py" line="463"/>
<source>Content Decryption Failed</source>
<translation>Decriptarea conținutului a eșuat</translation>
</message>
@ -277,12 +275,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">Decriptarea conținutului nu a reușit. Nu s-a putut crea conținutul decriptat.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="470"/>
<location filename="../../NUSGet.py" line="465"/>
<source>Your TMD or Ticket may be damaged, or they may not correspond with the content being decrypted. If you have checked &quot;Use local files, if they exist&quot;, try disabling that option before trying the download again to fix potential issues with local data.</source>
<translation>TMD-ul sau Ticket-ul dvs. sunt corupte, sau nu corespund cu conținutul de decriptat. Dacă ați bifat Folosiți fișiere locale, dacă există, încercați debifați această opțiune înainte de a descărca din nou pentru a rezolva potențiale probleme cu datele existente local.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="473"/>
<location filename="../../NUSGet.py" line="470"/>
<source>Ticket Not Available</source>
<translation>Ticket-ul nu este valabil</translation>
</message>
@ -291,12 +289,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">Niciun Ticket nu este valabil pentru titlul dorit!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="477"/>
<location filename="../../NUSGet.py" line="472"/>
<source>A ticket could not be downloaded for the requested title, but you have selected &quot;Pack installable archive&quot; or &quot;Create decrypted contents&quot;. These options are not available for titles without a ticket. Only encrypted contents have been saved.</source>
<translation>Nu se poate descărca un tichet pentru titlul cerut, dar ați selectat Împachetați arhiva instalabilă sau Creați conținut decriptat. Aceste opțiuni nu sunt valabile pentru titluri fărătichet. Doar conținuturile criptate au fost salvate.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="479"/>
<location filename="../../NUSGet.py" line="476"/>
<source>Unknown Error</source>
<translation>Eroare necunoscută</translation>
</message>
@ -305,12 +303,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">S-a produs o eroare necunoscută!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="482"/>
<location filename="../../NUSGet.py" line="478"/>
<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> rugăm încercați din nou. Dacă problema persistă, rugăm deschideți un issue pe GitHub în care explicați ce ați încercat faceți atunci când această eroare a apărut.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="501"/>
<location filename="../../NUSGet.py" line="499"/>
<source>Script Issues Occurred</source>
<translation>Au apărut probleme cu scriptul</translation>
</message>
@ -319,32 +317,32 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">Au apărut câteva probleme la rularea scriptului descărcat.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="504"/>
<location filename="../../NUSGet.py" line="502"/>
<source>Check the log for more details about what issues were encountered.</source>
<translation>Verificați logurile pentru mai multe detalii despre problemele întâmpinate.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="511"/>
<location filename="../../NUSGet.py" line="506"/>
<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>Următoarele titluri nu au putut fi descărcate din cauza unei erori. rugăm asigurați Title ID și versiunea listate în script sunt valide.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="521"/>
<location filename="../../NUSGet.py" line="515"/>
<source>You enabled &quot;Create decrypted contents&quot; or &quot;Pack installable archive&quot;, but the following titles in the script do not have tickets available. If enabled, encrypted contents were still downloaded.</source>
<translation>Ați activat Creare conținut decriptat sau Împachetați arhiva instalabilă, dar următoarele titluri în script nu au tichete valabile.În acest caz, conținuturile encriptate au fost oricum descărcate.</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="540"/>
<location filename="../../NUSGet.py" line="538"/>
<source>Script Download Failed</source>
<translation>Descărcarea scriptului a eșuat</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="541"/>
<location filename="../../NUSGet.py" line="539"/>
<source>Open NUS Script</source>
<translation>Deschideți script NUS</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="542"/>
<location filename="../../NUSGet.py" line="540"/>
<source>NUS Scripts (*.nus *.json)</source>
<translation>Scripturi NUS (*.nus *.json)</translation>
</message>
@ -353,7 +351,7 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">A apărut o eroare la parssarea acestui fișier script!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="554"/>
<location filename="../../NUSGet.py" line="551"/>
<source>Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.</source>
<translation>S-a produs o eroare la linia {lineno}, coloana {colno}. rugăm verificați scriptul și încercați din nou.</translation>
</message>
@ -362,24 +360,23 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation type="vanished">A apărut o eroare la procesarea Title ID-urilor!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="565"/>
<location filename="../../NUSGet.py" line="562"/>
<source>The title at index {index} does not have a Title ID!</source>
<translation>Titlul la poziția {index} nu are un Title ID!</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="618"/>
<location filename="../../NUSGet.py" line="632"/>
<source>Open Directory</source>
<translation>Deschideți folder</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="629"/>
<location filename="../../NUSGet.py" line="668"/>
<source>&lt;b&gt;The specified download directory does not exist!&lt;/b&gt;</source>
<translation>&lt;b&gt;Directorul de descărcare specificat nu există!&lt;/b&gt;</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="632"/>
<source>Please make sure the download directory you want to use exists, and that you have permission to access it.</source>
<translation> rugăm asigurați directorul de descărcare pe care vreți il folosiți există, și aveți permisiunea de a-l accesa.</translation>
<translation type="vanished"> rugăm asigurați directorul de descărcare pe care vreți il folosiți există, și aveți permisiunea de a-l accesa.</translation>
</message>
<message>
<source>Open NUS script</source>
@ -453,85 +450,73 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
<translation>Începeți descărcarea</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="211"/>
<location filename="../../qt/ui/MainMenu.ui" line="221"/>
<source>Run Script</source>
<translation>Rulați script</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="238"/>
<location filename="../../qt/ui/MainMenu.ui" line="248"/>
<source>General Settings</source>
<translation>Setări Generale</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="432"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;.AppleSystemUIFont&apos;; font-size:13pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation></translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="485"/>
<location filename="../../qt/ui/MainMenu.ui" line="495"/>
<source>Options</source>
<translation>Opțiuni</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="489"/>
<location filename="../../qt/ui/MainMenu.ui" line="499"/>
<source>Language</source>
<translation>Limbă</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="503"/>
<location filename="../../qt/ui/MainMenu.ui" line="513"/>
<source>Theme</source>
<translation>Temă</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="520"/>
<location filename="../../qt/ui/MainMenu.ui" line="530"/>
<source>About NUSGet</source>
<translation>Despre NUSGet</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="545"/>
<location filename="../../qt/ui/MainMenu.ui" line="617"/>
<location filename="../../qt/ui/MainMenu.ui" line="555"/>
<location filename="../../qt/ui/MainMenu.ui" line="627"/>
<source>System (Default)</source>
<translation>Sistem (Implicit)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="625"/>
<location filename="../../qt/ui/MainMenu.ui" line="635"/>
<source>Light</source>
<translation>Luminos</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="633"/>
<location filename="../../qt/ui/MainMenu.ui" line="643"/>
<source>Dark</source>
<translation>Întunecat</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="218"/>
<location filename="../../NUSGet.py" line="230"/>
<source>Pack installable archive (WAD/TAD)</source>
<translation>Împachetați arhiva instalabilă (WAD/TAD)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="251"/>
<location filename="../../qt/ui/MainMenu.ui" line="261"/>
<source>File Name</source>
<translation>Nume fișier</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="220"/>
<location filename="../../NUSGet.py" line="232"/>
<source>Keep encrypted contents</source>
<translation>Păstrați conținuturile encriptate</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="222"/>
<location filename="../../NUSGet.py" line="234"/>
<source>Create decrypted contents (*.app)</source>
<translation>Creați conținuturi decriptate (*.app)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="223"/>
<location filename="../../NUSGet.py" line="235"/>
<source>Use local files, if they exist</source>
<translation>Folosiți fișiere locale, dacă există</translation>
</message>
@ -540,52 +525,71 @@ li.checked::marker { content: &quot;\2612&quot;; }
<translation type="vanished">Folosiți Wii U NUS (mai rapid, doar pentru Wii/vWii)</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="226"/>
<location filename="../../NUSGet.py" line="238"/>
<source>Apply patches to IOS (Applies to WADs only)</source>
<translation>Aplicați patch-uri pentru IOS (se aplică doar pentru WAD-uri)</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="324"/>
<location filename="../../qt/ui/MainMenu.ui" line="334"/>
<source>vWii Title Settings</source>
<translation>vWII Setări titlu</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="227"/>
<location filename="../../NUSGet.py" line="239"/>
<source>Re-encrypt title using the Wii Common Key</source>
<translation>Re-encriptați titlul folosind cheia comună Wii</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="343"/>
<location filename="../../qt/ui/MainMenu.ui" line="353"/>
<source>App Settings</source>
<translation>Setări aplicație</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="228"/>
<location filename="../../NUSGet.py" line="240"/>
<source>Check for updates on startup</source>
<translation>Verificați dacă există actualizări la startup</translation>
</message>
<message>
<location filename="../../NUSGet.py" line="229"/>
<location filename="../../NUSGet.py" line="241"/>
<source>Use a custom download directory</source>
<translation>Folosiți un director de descărcare propriu</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<location filename="../../qt/ui/MainMenu.ui" line="388"/>
<source>Select...</source>
<translation>Selectează...</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="477"/>
<location filename="../../qt/ui/MainMenu.ui" line="442"/>
<source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
<translation>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;meta charset=&quot;utf-8&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
hr { height: 1px; border-width: 0; }
li.unchecked::marker { content: &quot;\2610&quot;; }
li.checked::marker { content: &quot;\2612&quot;; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Noto Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot;-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:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="487"/>
<source>Help</source>
<translation>Ajutor</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="531"/>
<location filename="../../qt/ui/MainMenu.ui" line="541"/>
<source>About Qt</source>
<translation>Despre Qt</translation>
</message>
<message>
<location filename="../../qt/ui/MainMenu.ui" line="368"/>
<location filename="../../qt/ui/MainMenu.ui" line="378"/>
<source>Output Path</source>
<translation>Cale de ieșire</translation>
</message>