diff --git a/NUSGet.py b/NUSGet.py index 5f7efc4..cb502c7 100644 --- a/NUSGet.py +++ b/NUSGet.py @@ -18,7 +18,7 @@ from PySide6.QtCore import QRunnable, Slot, QThreadPool, Signal, QObject, QLibra from qt.py.ui_MainMenu import Ui_MainWindow -nusget_version = "1.1" +nusget_version = "1.2.0" regions = {"World": ["41"], "USA/NTSC": ["45"], "Europe/PAL": ["50"], "Japan": ["4A"], "Korea": ["4B"], "China": ["43"], "Australia/NZ": ["55"]} @@ -71,13 +71,15 @@ class MainWindow(QMainWindow, Ui_MainWindow): # Basic intro text set to automatically show when the app loads. This may be changed in the future. libwiipy_version = "v" + version("libWiiPy") libtwlpy_version = "v" + version("libTWLPy") - log_message = self.tr(f"NUSGet v{nusget_version}\nDeveloped by NinjaCheetah\nPowered by libWiiPy " - f"{libwiipy_version}\nDSi support provided by libTWLPy {libtwlpy_version}\n\n" - f"Select a title from the list on the left, or enter a Title ID to begin.\n\n" - f"Titles marked with a checkmark are free and have a ticket available, and can" - f" be decrypted and/or packed into a WAD or TAD. Titles with an X do not have " - f"a ticket, and only their encrypted contents can be saved.\n\nTitles will be " - f"downloaded to a folder named \"NUSGet\" inside your downloads folder.") + log_message = (app.translate("NUSGet v{nusget_version}\nDeveloped by NinjaCheetah\nPowered by libWiiPy " + "{libwiipy_version}\nDSi support provided by libTWLPy {libtwlpy_version}\n\n" + "Select a title from the list on the left, or enter a Title ID to begin.\n\n" + "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.\n\nTitles will be " + "downloaded to a folder named \"NUSGet\" inside your downloads folder.", "Welcome Text") + .format(nusget_version=nusget_version, libwiipy_version=libwiipy_version, + libtwlpy_version=libtwlpy_version)) self.ui.log_text_browser.setText(log_message) # Add console entries to dropdown and attach on change signal. self.ui.console_select_dropdown.addItem("Wii") @@ -233,34 +235,34 @@ class MainWindow(QMainWindow, Ui_MainWindow): msg_box.setStandardButtons(QMessageBox.StandardButton.Ok) msg_box.setDefaultButton(QMessageBox.StandardButton.Ok) if result == -1: - window_title = self.tr("Invalid Title ID") - title_text = self.tr("The Title ID you have entered is not in a valid format!") - body_text = self.tr("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.") + window_title = app.translate("Invalid Title ID", "Invalid TID Error Window Title") + title_text = app.translate("The Title ID you have entered is not in a valid format!", "Invalid TID Error Title") + body_text = app.translate("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.", "Invalid Title ID Error Body") elif result == -2: - window_title = self.tr("Title ID/Version Not Found") - title_text = self.tr("No title with the provided Title ID or version could be found!") - body_text = self.tr("Please make sure that you have entered a valid Title ID, or selected one from the " + window_title = app.translate("Title ID/Version Not Found", "Target Not Found Error Window Title") + title_text = app.translate("No title with the provided Title ID or version could be found!", "Target Not Found Error Title") + body_text = app.translate("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.") + "to download.", "Target Not Found Error Body") elif result == -3: - window_title = self.tr("Content Decryption Failed") - title_text = self.tr("Content decryption was not successful! Decrypted contents could not be created.") - body_text = self.tr("Your TMD or Ticket may be damaged, or they may not correspond with the content being " + window_title = app.translate("Content Decryption Failed", "Decryption Error Window Title") + title_text = app.translate("Content decryption was not successful! Decrypted contents could not be created.", "Decryption Error Title") + body_text = app.translate("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.") + "option before trying the download again to fix potential issues with local data.", "Decryption Error Body") elif result == 1: msg_box.setIcon(QMessageBox.Icon.Warning) - window_title = self.tr("Ticket Not Available") - title_text = self.tr("No Ticket is Available for the Requested Title!") - body_text = self.tr("A ticket could not be downloaded for the requested title, but you have selected \"Pack" + window_title = app.translate("Ticket Not Available", "No Ticket Error Window Title") + title_text = app.translate("No Ticket is Available for the Requested Title!", "No Ticket Error Title") + body_text = app.translate("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.") + "available for titles without a ticket. Only encrypted contents have been saved.", "No Ticket Error Body") else: - window_title = self.tr("Unknown Error") - title_text = self.tr("An Unknown Error has Occurred!") - body_text = self.tr("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.") + window_title = app.translate("Unknown Error", "Unknown Error Window Title") + title_text = app.translate("An Unknown Error has Occurred!", "Unknown Error Title") + body_text = app.translate("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.", "Unknown Error Body") if result != 0: msg_box.setWindowTitle(window_title) msg_box.setText(title_text) diff --git a/qt/py/ui_MainMenu.py b/qt/py/ui_MainMenu.py index f24eed3..4baef26 100644 --- a/qt/py/ui_MainMenu.py +++ b/qt/py/ui_MainMenu.py @@ -160,10 +160,27 @@ class Ui_MainWindow(object): self.verticalLayout_7.addWidget(self.label_3) + self.pack_archive_row = QHBoxLayout() + self.pack_archive_row.setObjectName(u"pack_archive_row") self.pack_archive_chkbox = QCheckBox(self.centralwidget) self.pack_archive_chkbox.setObjectName(u"pack_archive_chkbox") + sizePolicy1 = QSizePolicy(QSizePolicy.Policy.Maximum, QSizePolicy.Policy.Fixed) + sizePolicy1.setHorizontalStretch(0) + sizePolicy1.setVerticalStretch(0) + sizePolicy1.setHeightForWidth(self.pack_archive_chkbox.sizePolicy().hasHeightForWidth()) + self.pack_archive_chkbox.setSizePolicy(sizePolicy1) + self.pack_archive_chkbox.setText(u"") - self.verticalLayout_7.addWidget(self.pack_archive_chkbox) + self.pack_archive_row.addWidget(self.pack_archive_chkbox) + + self.label_7 = QLabel(self.centralwidget) + self.label_7.setObjectName(u"label_7") + self.label_7.setWordWrap(True) + + self.pack_archive_row.addWidget(self.label_7) + + + self.verticalLayout_7.addLayout(self.pack_archive_row) self.archive_file_entry = QLineEdit(self.centralwidget) self.archive_file_entry.setObjectName(u"archive_file_entry") @@ -171,33 +188,94 @@ class Ui_MainWindow(object): self.verticalLayout_7.addWidget(self.archive_file_entry) + self.keep_enc_row = QHBoxLayout() + self.keep_enc_row.setObjectName(u"keep_enc_row") self.keep_enc_chkbox = QCheckBox(self.centralwidget) self.keep_enc_chkbox.setObjectName(u"keep_enc_chkbox") + sizePolicy1.setHeightForWidth(self.keep_enc_chkbox.sizePolicy().hasHeightForWidth()) + self.keep_enc_chkbox.setSizePolicy(sizePolicy1) + self.keep_enc_chkbox.setText(u"") self.keep_enc_chkbox.setChecked(True) - self.verticalLayout_7.addWidget(self.keep_enc_chkbox) + self.keep_enc_row.addWidget(self.keep_enc_chkbox) + self.label_6 = QLabel(self.centralwidget) + self.label_6.setObjectName(u"label_6") + self.label_6.setWordWrap(True) + + self.keep_enc_row.addWidget(self.label_6) + + + self.verticalLayout_7.addLayout(self.keep_enc_row) + + self.create_dec_row = QHBoxLayout() + self.create_dec_row.setObjectName(u"create_dec_row") self.create_dec_chkbox = QCheckBox(self.centralwidget) self.create_dec_chkbox.setObjectName(u"create_dec_chkbox") + sizePolicy1.setHeightForWidth(self.create_dec_chkbox.sizePolicy().hasHeightForWidth()) + self.create_dec_chkbox.setSizePolicy(sizePolicy1) + self.create_dec_chkbox.setText(u"") - self.verticalLayout_7.addWidget(self.create_dec_chkbox) + self.create_dec_row.addWidget(self.create_dec_chkbox) + self.create_dec_chkbox_lbl = QLabel(self.centralwidget) + self.create_dec_chkbox_lbl.setObjectName(u"create_dec_chkbox_lbl") + self.create_dec_chkbox_lbl.setWordWrap(True) + + self.create_dec_row.addWidget(self.create_dec_chkbox_lbl) + + + self.verticalLayout_7.addLayout(self.create_dec_row) + + self.use_local_row = QHBoxLayout() + self.use_local_row.setObjectName(u"use_local_row") self.use_local_chkbox = QCheckBox(self.centralwidget) self.use_local_chkbox.setObjectName(u"use_local_chkbox") self.use_local_chkbox.setEnabled(True) + sizePolicy1.setHeightForWidth(self.use_local_chkbox.sizePolicy().hasHeightForWidth()) + self.use_local_chkbox.setSizePolicy(sizePolicy1) + self.use_local_chkbox.setText(u"") - self.verticalLayout_7.addWidget(self.use_local_chkbox) + self.use_local_row.addWidget(self.use_local_chkbox) + self.use_local_chkbox_lbl = QLabel(self.centralwidget) + self.use_local_chkbox_lbl.setObjectName(u"use_local_chkbox_lbl") + self.use_local_chkbox_lbl.setWordWrap(True) + + self.use_local_row.addWidget(self.use_local_chkbox_lbl) + + + self.verticalLayout_7.addLayout(self.use_local_row) + + self.use_wiiu_nus_row = QHBoxLayout() + self.use_wiiu_nus_row.setObjectName(u"use_wiiu_nus_row") self.use_wiiu_nus_chkbox = QCheckBox(self.centralwidget) self.use_wiiu_nus_chkbox.setObjectName(u"use_wiiu_nus_chkbox") + sizePolicy1.setHeightForWidth(self.use_wiiu_nus_chkbox.sizePolicy().hasHeightForWidth()) + self.use_wiiu_nus_chkbox.setSizePolicy(sizePolicy1) + self.use_wiiu_nus_chkbox.setLayoutDirection(Qt.LeftToRight) + self.use_wiiu_nus_chkbox.setText(u"") self.use_wiiu_nus_chkbox.setChecked(True) - self.verticalLayout_7.addWidget(self.use_wiiu_nus_chkbox) + self.use_wiiu_nus_row.addWidget(self.use_wiiu_nus_chkbox) + + self.use_wiiu_nus_chkbox_lbl = QLabel(self.centralwidget) + self.use_wiiu_nus_chkbox_lbl.setObjectName(u"use_wiiu_nus_chkbox_lbl") + self.use_wiiu_nus_chkbox_lbl.setWordWrap(True) + + self.use_wiiu_nus_row.addWidget(self.use_wiiu_nus_chkbox_lbl) + + + self.verticalLayout_7.addLayout(self.use_wiiu_nus_row) self.verticalSpacer_2 = QSpacerItem(20, 40, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding) self.verticalLayout_7.addItem(self.verticalSpacer_2) + self.horizontalSpacer = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum) + + self.verticalLayout_7.addItem(self.horizontalSpacer) + self.horizontalLayout_5.addLayout(self.verticalLayout_7) @@ -209,16 +287,34 @@ class Ui_MainWindow(object): self.verticalLayout_8.addWidget(self.label_4) + self.pack_vwii_mode_row = QHBoxLayout() + self.pack_vwii_mode_row.setObjectName(u"pack_vwii_mode_row") self.pack_vwii_mode_chkbox = QCheckBox(self.centralwidget) self.pack_vwii_mode_chkbox.setObjectName(u"pack_vwii_mode_chkbox") self.pack_vwii_mode_chkbox.setEnabled(False) + sizePolicy1.setHeightForWidth(self.pack_vwii_mode_chkbox.sizePolicy().hasHeightForWidth()) + self.pack_vwii_mode_chkbox.setSizePolicy(sizePolicy1) + self.pack_vwii_mode_chkbox.setText(u"") - self.verticalLayout_8.addWidget(self.pack_vwii_mode_chkbox) + self.pack_vwii_mode_row.addWidget(self.pack_vwii_mode_chkbox) + + self.label_8 = QLabel(self.centralwidget) + self.label_8.setObjectName(u"label_8") + self.label_8.setWordWrap(True) + + self.pack_vwii_mode_row.addWidget(self.label_8) + + + self.verticalLayout_8.addLayout(self.pack_vwii_mode_row) self.verticalSpacer = QSpacerItem(20, 50, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Expanding) self.verticalLayout_8.addItem(self.verticalSpacer) + self.horizontalSpacer_2 = QSpacerItem(40, 20, QSizePolicy.Policy.Expanding, QSizePolicy.Policy.Minimum) + + self.verticalLayout_8.addItem(self.horizontalSpacer_2) + self.horizontalLayout_5.addLayout(self.verticalLayout_8) @@ -237,7 +333,7 @@ class Ui_MainWindow(object): MainWindow.setCentralWidget(self.centralwidget) self.menubar = QMenuBar(MainWindow) self.menubar.setObjectName(u"menubar") - self.menubar.setGeometry(QRect(0, 0, 1010, 29)) + self.menubar.setGeometry(QRect(0, 0, 1010, 30)) MainWindow.setMenuBar(self.menubar) self.retranslateUi(MainWindow) @@ -263,19 +359,19 @@ class Ui_MainWindow(object): self.console_select_dropdown.setCurrentText("") self.download_btn.setText(QCoreApplication.translate("MainWindow", u"Start Download", None)) self.label_3.setText(QCoreApplication.translate("MainWindow", u"General Settings", None)) - self.pack_archive_chkbox.setText(QCoreApplication.translate("MainWindow", u"Pack installable archive (WAD/TAD)", None)) + self.label_7.setText(QCoreApplication.translate("MainWindow", u"Pack installable archive (WAD/TAD)", None)) self.archive_file_entry.setPlaceholderText(QCoreApplication.translate("MainWindow", u"File Name", None)) - self.keep_enc_chkbox.setText(QCoreApplication.translate("MainWindow", u"Keep encrypted contents", None)) - self.create_dec_chkbox.setText(QCoreApplication.translate("MainWindow", u"Create decrypted contents (*.app)", None)) - self.use_local_chkbox.setText(QCoreApplication.translate("MainWindow", u"Use local files, if they exist", None)) - self.use_wiiu_nus_chkbox.setText(QCoreApplication.translate("MainWindow", u"Use the Wii U NUS (faster, only effects Wii/vWii)", None)) + self.label_6.setText(QCoreApplication.translate("MainWindow", u"Keep encrypted contents", None)) + self.create_dec_chkbox_lbl.setText(QCoreApplication.translate("MainWindow", u"Create decrypted contents (*.app)", None)) + self.use_local_chkbox_lbl.setText(QCoreApplication.translate("MainWindow", u"Use local files, if they exist", None)) + self.use_wiiu_nus_chkbox_lbl.setText(QCoreApplication.translate("MainWindow", u"Use the Wii U NUS (faster, only effects Wii/vWii)", None)) self.label_4.setText(QCoreApplication.translate("MainWindow", u"vWii Title Settings", None)) - self.pack_vwii_mode_chkbox.setText(QCoreApplication.translate("MainWindow", u"Re-encrypt title using the Wii Common Key", None)) + self.label_8.setText(QCoreApplication.translate("MainWindow", u"Re-encrypt title using the Wii Common Key", None)) self.log_text_browser.setMarkdown("") self.log_text_browser.setHtml(QCoreApplication.translate("MainWindow", u"\n" "\n" -"


", None)) +"\n" +"


", None)) # retranslateUi diff --git a/qt/ui/MainMenu.ui b/qt/ui/MainMenu.ui index 351675c..bd89980 100644 --- a/qt/ui/MainMenu.ui +++ b/qt/ui/MainMenu.ui @@ -246,11 +246,31 @@ - - - Pack installable archive (WAD/TAD) - - + + + + + + 0 + 0 + + + + + + + + + + + Pack installable archive (WAD/TAD) + + + true + + + + @@ -263,41 +283,124 @@ - - - Keep encrypted contents - - - true - - + + + + + + 0 + 0 + + + + + + + true + + + + + + + Keep encrypted contents + + + true + + + + - - - Create decrypted contents (*.app) - - + + + + + + 0 + 0 + + + + + + + + + + + Create decrypted contents (*.app) + + + true + + + + - - - true - - - Use local files, if they exist - - + + + + + true + + + + 0 + 0 + + + + + + + + + + + Use local files, if they exist + + + true + + + + - - - Use the Wii U NUS (faster, only effects Wii/vWii) - - - true - - + + + + + + 0 + 0 + + + + Qt::LeftToRight + + + + + + true + + + + + + + Use the Wii U NUS (faster, only effects Wii/vWii) + + + true + + + + @@ -312,6 +415,19 @@ + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -330,14 +446,34 @@ - - - false - - - Re-encrypt title using the Wii Common Key - - + + + + + false + + + + 0 + 0 + + + + + + + + + + + Re-encrypt title using the Wii Common Key + + + true + + + + @@ -355,6 +491,19 @@ + + + + Qt::Horizontal + + + + 40 + 20 + + + + @@ -374,8 +523,8 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> @@ -389,7 +538,7 @@ p, li { white-space: pre-wrap; } 0 0 1010 - 29 + 30 diff --git a/resources/translations/nusget_es.ts b/resources/translations/nusget_es.ts index f3fdbf9..5d8d682 100644 --- a/resources/translations/nusget_es.ts +++ b/resources/translations/nusget_es.ts @@ -1,119 +1,134 @@ + + 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. + + No Ticket Error Body + + + + + An Unknown Error has Occurred! + + Unknown Error Title + + + + + Content Decryption Failed + + Decryption Error Window Title + + + + + Content decryption was not successful! Decrypted contents could not be created. + + Decryption Error Title + + + + + Invalid Title ID + + Invalid TID Error Window Title + + + MainWindow - - MainWindow - - - - - Available Titles - - - - Wii Does not change. Wii - vWii Does not change. vWii - DSi Does not change. DSi - - Title ID - - - - v Does not change. v - + MainWindow + + + + Available Titles + + + + Title ID + + + Version - Console: - Start Download - General Settings - Pack installable archive (WAD/TAD) - File Name - Keep encrypted contents - Create decrypted contents (*.app) - Use local files, if they exist - Use the Wii U NUS (faster, only effects Wii/vWii) - vWii Title Settings - Re-encrypt title using the Wii Common Key - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> - - - NUSGet v{nusget_version} + + + NUSGet v{nusget_version} Developed by NinjaCheetah Powered by libWiiPy {libwiipy_version} DSi support provided by libTWLPy {libtwlpy_version} @@ -122,82 +137,79 @@ 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. +Titles will be downloaded to a folder named "NUSGet" inside your downloads folder. + + Welcome Text + + + No Ticket is Available for the Requested Title! - - Invalid Title ID + No Ticket Error Title + + + No title with the provided Title ID or version could be found! - - The Title ID you have entered is not in a valid format! + Target Not Found Error Title + + + 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. - - 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. + Target Not Found Error Body + + + 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. - - Title ID/Version Not Found + Unknown Error Body + + + The Title ID you have entered is not in a valid format! - - No title with the provided Title ID or version could be found! + Invalid TID Error Title + + + Ticket Not Available - - 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. + No Ticket Error Window Title + + + Title ID/Version Not Found - - Content Decryption Failed + Target Not Found Error Window Title + + + 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. - - Content decryption was not successful! Decrypted contents could not be created. + Invalid Title ID Error Body + + + Unknown Error - - 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. + Unknown Error Window Title + + + 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. - - Ticket Not Available - - - - - No Ticket is Available for the Requested Title! - - - - - 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. - - - - - Unknown Error - - - - - An Unknown Error has Occurred! - - - - - 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. + Decryption Error Body diff --git a/resources/translations/nusget_it.ts b/resources/translations/nusget_it.ts index 82bf356..25b9640 100644 --- a/resources/translations/nusget_it.ts +++ b/resources/translations/nusget_it.ts @@ -1,11 +1,134 @@ + + 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. + + No Ticket Error Body + Non è stato possibile scaricare un ticket per il titolo richiesto, ma hai selezionato "Crea archivio installabile" o "Crea contenuto decriptato". Queste opzioni non sono disponibili per i titoli senza un ticket. Sono stati salvati solo i contenuti criptati. + + + + An Unknown Error has Occurred! + + Unknown Error Title + Errore sconosciuto! + + + + Content Decryption Failed + + Decryption Error Window Title + Decriptazione contenuti fallita + + + + Content decryption was not successful! Decrypted contents could not be created. + + Decryption Error Title + La decriptazione dei contenuti non è andata a buon fine! I contenuti decriptadi non sono stati creati. + + + + Invalid Title ID + + Invalid TID Error Window Title + ID Titolo invalido + + MainWindow - - NUSGet v{nusget_version} + MainWindow + Finestra principale + + + Available Titles + Titoli disponibili + + + Wii + Wii + + + vWii + vWii + + + DSi + DSi + + + Title ID + ID Titolo + + + v + v + + + Version + Versione + + + Console: + Console: + + + Start Download + Avvia download + + + General Settings + Impostazioni generali + + + Pack installable archive (WAD/TAD) + Archivio installabile (WAD/TAD) + + + File Name + Nome del file + + + Keep encrypted contents + Mantieni contenuti criptati + + + Create decrypted contents (*.app) + Crea contenuto decriptato (*.app) + + + Use local files, if they exist + Usa file locali, se esistenti + + + Use the Wii U NUS (faster, only effects Wii/vWii) + Usa il NUS di Wii U (più veloce, riguarda solo Wii/vWii) + + + vWii Title Settings + Impostazioni titoli vWii + + + Re-encrypt title using the Wii Common Key + Cripta titolo usando la Chiave Comune Wii + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + + NUSGet v{nusget_version} Developed by NinjaCheetah Powered by libWiiPy {libwiipy_version} DSi support provided by libTWLPy {libtwlpy_version} @@ -14,191 +137,88 @@ 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. - NUSGet v{nusget_version} Sviluppato da NinjaCheetah Funzionante con libWiiPy {libwiipy_version} Scegli un tittolo dalla lista a sinistra o inserisci un ID Titolo per iniziare. I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e possono essere decriptati/scaricati come WAD o TAD. I titoli con una X non hanno un ticket e solo il contenuto criptato può essere salvato. I titoli verranno scaricati nella cartella "NUSGet" all'interno della cartella Download. - +Titles will be downloaded to a folder named "NUSGet" inside your downloads folder. - - Invalid Title ID - ID Titolo invalido + Welcome Text + NUSGet v{nusget_version} +Sviluppato da NinjaCheetah +Funzionante con libWiiPy {libwiipy_version} + +Scegli un tittolo dalla lista a sinistra o inserisci un ID Titolo per iniziare. + +I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e possono essere decriptati/scaricati come WAD o TAD. I titoli con una X non hanno un ticket e solo il contenuto criptato può essere salvato. + +I titoli verranno scaricati nella cartella "NUSGet" all'interno della cartella Download. + + + No Ticket is Available for the Requested Title! - - The Title ID you have entered is not in a valid format! - L' ID Titolo che hai inserito non è in un formato valido! - - - - 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. - Gli ID Titolo sono un codice di 16 caratteri tra numeri e lettere. Per favore inserisci in ID Titolo formattato correttamente, o scegline uno dal menù a sinistra. - - - - Title ID/Version Not Found - ID Titolo/Versione non trovata - - - - No title with the provided Title ID or version could be found! - Non è stato trovato nessun titolo con l' ID Titolo o versione data! - - - - 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. - Assicurati di aver inserito un' ID Titolo valido, o scegline uno dal database, e che la versione richiesta esista per il titolo che vuoi scaricare. - - - - Content Decryption Failed - Decriptazione contenuti fallita - - - - Content decryption was not successful! Decrypted contents could not be created. - La decriptazione dei contenuti non è andata a buon fine! I contenuti decriptadi non sono stati creati. - - - - 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. - Il tuo TMD o Ticket potrebbe essere danneggiato, o potrebbe non corrispondere col contenuto da decriptare. Se hai selezionato "Usa file locali, se esistenti", prova a disabilitare quell'opzione prima di riprovare a scaricare per aggiustare potenziali errori coi dati locali. - - - - Ticket Not Available - Ticket non disponibile - - - - No Ticket is Available for the Requested Title! + No Ticket Error Title Nessun ticket disponibile per il titolo richiesto! + + + No title with the provided Title ID or version could be found! - - 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. - Non è stato possibile scaricare un ticket per il titolo richiesto, ma hai selezionato "Crea archivio installabile" o "Crea contenuto decriptato". Queste opzioni non sono disponibili per i titoli senza un ticket. Sono stati salvati solo i contenuti criptati. + Target Not Found Error Title + Non è stato trovato nessun titolo con l' ID Titolo o versione data! + + + 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. - - Unknown Error - Errore sconosciuto + Target Not Found Error Body + Assicurati di aver inserito un' ID Titolo valido, o scegline uno dal database, e che la versione richiesta esista per il titolo che vuoi scaricare. + + + 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. - - An Unknown Error has Occurred! - Errore sconosciuto! - - - - 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. + Unknown Error Body Per favore riprova. Se il problema persiste, apri un issue su GitHub specificando in modo dettagliato cosa volevi fare quando è comparso questo errore. + + + The Title ID you have entered is not in a valid format! - - MainWindow - Finestra principale + Invalid TID Error Title + L' ID Titolo che hai inserito non è in un formato valido! + + + Ticket Not Available - - Available Titles - Titoli disponibili + No Ticket Error Window Title + Ticket non disponibile + + + Title ID/Version Not Found - - Wii - Wii + Target Not Found Error Window Title + ID Titolo/Versione non trovata + + + 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. - - vWii - vWii + Invalid Title ID Error Body + Gli ID Titolo sono un codice di 16 caratteri tra numeri e lettere. Per favore inserisci in ID Titolo formattato correttamente, o scegline uno dal menù a sinistra. + + + Unknown Error - - DSi - DSi + Unknown Error Window Title + Errore sconosciuto + + + 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. - - Title ID - ID Titolo - - - - v - v - - - - Version - Versione - - - - Console: - Console: - - - - Start Download - Avvia download - - - - General Settings - Impostazioni generali - - - - Pack installable archive (WAD/TAD) - Archivio installabile (WAD/TAD) - - - - File Name - Nome del file - - - - Keep encrypted contents - Mantieni contenuti criptati - - - - Create decrypted contents (*.app) - Crea contenuto decriptato (*.app) - - - - Use local files, if they exist - Usa file locali, se esistenti - - - - Use the Wii U NUS (faster, only effects Wii/vWii) - Usa il NUS di Wii U (più veloce, riguarda solo Wii/vWii) - - - - vWii Title Settings - Impostazioni titoli vWii - - - - Re-encrypt title using the Wii Common Key - Cripta titolo usando la Chiave Comune Wii - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + Decryption Error Body + Il tuo TMD o Ticket potrebbe essere danneggiato, o potrebbe non corrispondere col contenuto da decriptare. Se hai selezionato "Usa file locali, se esistenti", prova a disabilitare quell'opzione prima di riprovare a scaricare per aggiustare potenziali errori coi dati locali. diff --git a/resources/translations/nusget_nb.ts b/resources/translations/nusget_nb.ts index 0530bc6..2aa5154 100644 --- a/resources/translations/nusget_nb.ts +++ b/resources/translations/nusget_nb.ts @@ -1,11 +1,134 @@ + + 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. + + No Ticket Error Body + 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 tilgjenelige for titler uten billett. Bare kryptert innhold har blitt lagret. + + + + An Unknown Error has Occurred! + + Unknown Error Title + En ukjent feil har oppstått! + + + + Content Decryption Failed + + Decryption Error Window Title + Dekryptering av Innhold Mislyktes + + + + Content decryption was not successful! Decrypted contents could not be created. + + Decryption Error Title + Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes. + + + + Invalid Title ID + + Invalid TID Error Window Title + Ugyldig Tittel ID + + MainWindow - - NUSGet v{nusget_version} + MainWindow + MainWindow + + + Available Titles + Tilgjengelige Titler + + + Wii + Wii + + + vWii + vWii + + + DSi + DSi + + + Title ID + Tittel ID + + + v + v + + + Version + Versjon + + + Console: + Konsoll: + + + Start Download + Start Nedlasting + + + General Settings + Generelle Instillinger + + + Pack installable archive (WAD/TAD) + Pakke installerbart arkiv (WAD/TAD) + + + File Name + Filnavn + + + Keep encrypted contents + Oppbevar kryptert innhold + + + Create decrypted contents (*.app) + Opprette dekryptert innold (*.app) + + + Use local files, if they exist + Bruk lokale filer, hvis de finnes + + + Use the Wii U NUS (faster, only effects Wii/vWii) + Bruk Wii U NUS (raskere, påvirker bare Wii/vWii) + + + vWii Title Settings + vWii Tittelinstillinger + + + Re-encrypt title using the Wii Common Key + Krypter tittelen på nytt ved hjelp av Wii Common Key + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + + NUSGet v{nusget_version} Developed by NinjaCheetah Powered by libWiiPy {libwiipy_version} DSi support provided by libTWLPy {libtwlpy_version} @@ -14,7 +137,9 @@ 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. +Titles will be downloaded to a folder named "NUSGet" inside your downloads folder. + + Welcome Text NUSGet v{nusget_version} Utviklet av NinjaCheetah Drevet av libWiiPy {libwiipy_version} @@ -26,188 +151,75 @@ Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypte Titler er lastes ned til en mappe med navnet "NUSGet" i nedlastingsmappen din. + + + No Ticket is Available for the Requested Title! - - Invalid Title ID - Ugyldig Tittel ID - - - - The Title ID you have entered is not in a valid format! - Tittel IDen du har angitt er ikke i et gyldig format! - - - - 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. - Tittel IDer må være 16-sifrede tall og bokstav strenger. Vennligst skriv inn en korrekt formatert Tittel ID, eller velg en fra menyen til venstre. - - - - Title ID/Version Not Found - Tittel ID/Versjon Ikke Funnet - - - - No title with the provided Title ID or version could be found! - Ingen tittel med oppgitt Tittel ID eller versjon ble funnet! - - - - 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. - Vennligst kontroller 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. - - - - Content Decryption Failed - Dekryptering av Innhold Mislyktes - - - - Content decryption was not successful! Decrypted contents could not be created. - Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes. - - - - 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. - TMDen eller Billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet some 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 på nytt for å løse eventuelle problemer med lokale data. - - - - Ticket Not Available - Billett Ikke Tilgjengelig - - - - No Ticket is Available for the Requested Title! + No Ticket Error Title Ingen billett er tilgjengelig for den forespurte tittelen! + + + No title with the provided Title ID or version could be found! - - 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. - 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 tilgjenelige for titler uten billett. Bare kryptert innhold har blitt lagret. + Target Not Found Error Title + Ingen tittel med oppgitt Tittel ID eller versjon ble funnet! + + + 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. - - Unknown Error - Ukjent Feil + Target Not Found Error Body + Vennligst kontroller 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. + + + 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. - - An Unknown Error has Occurred! - En ukjent feil har oppstått! - - - - 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. + Unknown Error Body Vennligst prøv igjen. Hvis dette problemet vedvarer, åpne et nytt issue på GitHub med detaljer om hva du prøvde å gjøre da denne feilen oppstod. + + + The Title ID you have entered is not in a valid format! - - MainWindow - MainWindow + Invalid TID Error Title + Tittel IDen du har angitt er ikke i et gyldig format! + + + Ticket Not Available - - Available Titles - Tilgjengelige Titler + No Ticket Error Window Title + Billett Ikke Tilgjengelig + + + Title ID/Version Not Found - - Wii - Wii + Target Not Found Error Window Title + Tittel ID/Versjon Ikke Funnet + + + 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. - - vWii - vWii + Invalid Title ID Error Body + Tittel IDer må være 16-sifrede tall og bokstav strenger. Vennligst skriv inn en korrekt formatert Tittel ID, eller velg en fra menyen til venstre. + + + Unknown Error - - DSi - DSi + Unknown Error Window Title + Ukjent Feil + + + 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. - - Title ID - Tittel ID - - - - v - v - - - - Version - Versjon - - - - Console: - Konsoll: - - - - Start Download - Start Nedlasting - - - - General Settings - Generelle Instillinger - - - - Pack installable archive (WAD/TAD) - Pakke installerbart arkiv (WAD/TAD) - - - - File Name - Filnavn - - - - Keep encrypted contents - Oppbevar kryptert innhold - - - - Create decrypted contents (*.app) - Opprette dekryptert innold (*.app) - - - - Use local files, if they exist - Bruk lokale filer, hvis de finnes - - - - Use the Wii U NUS (faster, only effects Wii/vWii) - Bruk Wii U NUS (raskere, påvirker bare Wii/vWii) - - - - vWii Title Settings - vWii Tittelinstillinger - - - - Re-encrypt title using the Wii Common Key - Krypter tittelen på nytt ved hjelp av Wii Common Key - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + Decryption Error Body + TMDen eller Billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet some 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 på nytt for å løse eventuelle problemer med lokale data. diff --git a/resources/translations/nusget_no.ts b/resources/translations/nusget_no.ts index 0530bc6..2aa5154 100644 --- a/resources/translations/nusget_no.ts +++ b/resources/translations/nusget_no.ts @@ -1,11 +1,134 @@ + + 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. + + No Ticket Error Body + 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 tilgjenelige for titler uten billett. Bare kryptert innhold har blitt lagret. + + + + An Unknown Error has Occurred! + + Unknown Error Title + En ukjent feil har oppstått! + + + + Content Decryption Failed + + Decryption Error Window Title + Dekryptering av Innhold Mislyktes + + + + Content decryption was not successful! Decrypted contents could not be created. + + Decryption Error Title + Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes. + + + + Invalid Title ID + + Invalid TID Error Window Title + Ugyldig Tittel ID + + MainWindow - - NUSGet v{nusget_version} + MainWindow + MainWindow + + + Available Titles + Tilgjengelige Titler + + + Wii + Wii + + + vWii + vWii + + + DSi + DSi + + + Title ID + Tittel ID + + + v + v + + + Version + Versjon + + + Console: + Konsoll: + + + Start Download + Start Nedlasting + + + General Settings + Generelle Instillinger + + + Pack installable archive (WAD/TAD) + Pakke installerbart arkiv (WAD/TAD) + + + File Name + Filnavn + + + Keep encrypted contents + Oppbevar kryptert innhold + + + Create decrypted contents (*.app) + Opprette dekryptert innold (*.app) + + + Use local files, if they exist + Bruk lokale filer, hvis de finnes + + + Use the Wii U NUS (faster, only effects Wii/vWii) + Bruk Wii U NUS (raskere, påvirker bare Wii/vWii) + + + vWii Title Settings + vWii Tittelinstillinger + + + Re-encrypt title using the Wii Common Key + Krypter tittelen på nytt ved hjelp av Wii Common Key + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Noto Sans'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + + + + NUSGet v{nusget_version} Developed by NinjaCheetah Powered by libWiiPy {libwiipy_version} DSi support provided by libTWLPy {libtwlpy_version} @@ -14,7 +137,9 @@ 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. +Titles will be downloaded to a folder named "NUSGet" inside your downloads folder. + + Welcome Text NUSGet v{nusget_version} Utviklet av NinjaCheetah Drevet av libWiiPy {libwiipy_version} @@ -26,188 +151,75 @@ Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypte Titler er lastes ned til en mappe med navnet "NUSGet" i nedlastingsmappen din. + + + No Ticket is Available for the Requested Title! - - Invalid Title ID - Ugyldig Tittel ID - - - - The Title ID you have entered is not in a valid format! - Tittel IDen du har angitt er ikke i et gyldig format! - - - - 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. - Tittel IDer må være 16-sifrede tall og bokstav strenger. Vennligst skriv inn en korrekt formatert Tittel ID, eller velg en fra menyen til venstre. - - - - Title ID/Version Not Found - Tittel ID/Versjon Ikke Funnet - - - - No title with the provided Title ID or version could be found! - Ingen tittel med oppgitt Tittel ID eller versjon ble funnet! - - - - 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. - Vennligst kontroller 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. - - - - Content Decryption Failed - Dekryptering av Innhold Mislyktes - - - - Content decryption was not successful! Decrypted contents could not be created. - Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes. - - - - 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. - TMDen eller Billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet some 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 på nytt for å løse eventuelle problemer med lokale data. - - - - Ticket Not Available - Billett Ikke Tilgjengelig - - - - No Ticket is Available for the Requested Title! + No Ticket Error Title Ingen billett er tilgjengelig for den forespurte tittelen! + + + No title with the provided Title ID or version could be found! - - 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. - 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 tilgjenelige for titler uten billett. Bare kryptert innhold har blitt lagret. + Target Not Found Error Title + Ingen tittel med oppgitt Tittel ID eller versjon ble funnet! + + + 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. - - Unknown Error - Ukjent Feil + Target Not Found Error Body + Vennligst kontroller 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. + + + 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. - - An Unknown Error has Occurred! - En ukjent feil har oppstått! - - - - 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. + Unknown Error Body Vennligst prøv igjen. Hvis dette problemet vedvarer, åpne et nytt issue på GitHub med detaljer om hva du prøvde å gjøre da denne feilen oppstod. + + + The Title ID you have entered is not in a valid format! - - MainWindow - MainWindow + Invalid TID Error Title + Tittel IDen du har angitt er ikke i et gyldig format! + + + Ticket Not Available - - Available Titles - Tilgjengelige Titler + No Ticket Error Window Title + Billett Ikke Tilgjengelig + + + Title ID/Version Not Found - - Wii - Wii + Target Not Found Error Window Title + Tittel ID/Versjon Ikke Funnet + + + 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. - - vWii - vWii + Invalid Title ID Error Body + Tittel IDer må være 16-sifrede tall og bokstav strenger. Vennligst skriv inn en korrekt formatert Tittel ID, eller velg en fra menyen til venstre. + + + Unknown Error - - DSi - DSi + Unknown Error Window Title + Ukjent Feil + + + 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. - - Title ID - Tittel ID - - - - v - v - - - - Version - Versjon - - - - Console: - Konsoll: - - - - Start Download - Start Nedlasting - - - - General Settings - Generelle Instillinger - - - - Pack installable archive (WAD/TAD) - Pakke installerbart arkiv (WAD/TAD) - - - - File Name - Filnavn - - - - Keep encrypted contents - Oppbevar kryptert innhold - - - - Create decrypted contents (*.app) - Opprette dekryptert innold (*.app) - - - - Use local files, if they exist - Bruk lokale filer, hvis de finnes - - - - Use the Wii U NUS (faster, only effects Wii/vWii) - Bruk Wii U NUS (raskere, påvirker bare Wii/vWii) - - - - vWii Title Settings - vWii Tittelinstillinger - - - - Re-encrypt title using the Wii Common Key - Krypter tittelen på nytt ved hjelp av Wii Common Key - - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p></body></html> + Decryption Error Body + TMDen eller Billetten kan være skadet, eller det kan hende at de ikke samsvarer med innholdet some 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 på nytt for å løse eventuelle problemer med lokale data.