diff --git a/NUSGet.py b/NUSGet.py
index cb502c7..f645df8 100644
--- a/NUSGet.py
+++ b/NUSGet.py
@@ -71,13 +71,13 @@ 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 = (app.translate("NUSGet v{nusget_version}\nDeveloped by NinjaCheetah\nPowered by libWiiPy "
+ log_message = (app.translate("MainWindow", "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")
+ "downloaded to a folder named \"NUSGet\" inside your downloads folder.")
.format(nusget_version=nusget_version, libwiipy_version=libwiipy_version,
libtwlpy_version=libtwlpy_version))
self.ui.log_text_browser.setText(log_message)
@@ -235,34 +235,33 @@ class MainWindow(QMainWindow, Ui_MainWindow):
msg_box.setStandardButtons(QMessageBox.StandardButton.Ok)
msg_box.setDefaultButton(QMessageBox.StandardButton.Ok)
if result == -1:
- 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")
+ window_title = app.translate("MainWindow", "Invalid Title ID")
+ title_text = app.translate("MainWindow", "The Title ID you have entered is not in a valid format!")
+ body_text = app.translate("MainWindow", "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.")
elif result == -2:
- 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.", "Target Not Found Error Body")
+ window_title = app.translate("MainWindow", "Title ID/Version Not Found")
+ title_text = app.translate("MainWindow", "No title with the provided Title ID or version could be found!")
+ body_text = app.translate("MainWindow", "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.")
elif result == -3:
- 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 "
+ window_title = app.translate("MainWindow", "Content Decryption Failed")
+ title_text = app.translate("MainWindow", "Content decryption was not successful! Decrypted contents could not be created.")
+ body_text = app.translate("MainWindow", "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.", "Decryption Error Body")
+ "option before trying the download again to fix potential issues with local data.")
elif result == 1:
msg_box.setIcon(QMessageBox.Icon.Warning)
- 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"
+ window_title = app.translate("MainWindow", "Ticket Not Available")
+ title_text = app.translate("MainWindow", "No Ticket is Available for the Requested Title!")
+ body_text = app.translate("MainWindow", "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")
+ "available for titles without a ticket. Only encrypted contents have been saved.")
else:
- 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")
+ window_title = app.translate("MainWindow", "Unknown Error")
+ title_text = app.translate("MainWindow", "An Unknown Error has Occurred!")
+ body_text = app.translate("MainWindow", "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.")
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 4baef26..12006bd 100644
--- a/qt/py/ui_MainMenu.py
+++ b/qt/py/ui_MainMenu.py
@@ -323,7 +323,7 @@ class Ui_MainWindow(object):
self.log_text_browser = QTextBrowser(self.centralwidget)
self.log_text_browser.setObjectName(u"log_text_browser")
- self.log_text_browser.setMinimumSize(QSize(0, 312))
+ self.log_text_browser.setMinimumSize(QSize(0, 247))
self.vertical_layout_controls.addWidget(self.log_text_browser)
diff --git a/qt/ui/MainMenu.ui b/qt/ui/MainMenu.ui
index bd89980..997079c 100644
--- a/qt/ui/MainMenu.ui
+++ b/qt/ui/MainMenu.ui
@@ -407,6 +407,9 @@
Qt::Vertical
+
+ QSizePolicy::Expanding
+ 20
@@ -513,7 +516,7 @@
0
- 312
+ 247
diff --git a/resources/translations/nusget_it.ts b/resources/translations/nusget_it.ts
index 25b9640..e5aea68 100644
--- a/resources/translations/nusget_it.ts
+++ b/resources/translations/nusget_it.ts
@@ -1,41 +1,6 @@
-
- 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
@@ -126,9 +91,68 @@ 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}
+
+ Invalid Title ID
+ ID Titolo invalido
+
+
+ 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!
+ Nessun ticket disponibile per il titolo richiesto!
+
+
+ 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.
+
+
+ Unknown Error
+ Errore sconosciuto
+
+
+ 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.
+ Per favore riprova. Se il problema persiste, apri un issue su GitHub specificando in modo dettagliato cosa volevi fare quando è comparso questo errore.
+
+
+ NUSGet v{nusget_version}
Developed by NinjaCheetah
Powered by libWiiPy {libwiipy_version}
DSi support provided by libTWLPy {libtwlpy_version}
@@ -137,9 +161,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.
-
- Welcome Text
+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}
@@ -151,74 +173,4 @@ I titoli marcati da una spunta sono disponibili e hanno un ticket libero, e poss
I titoli verranno scaricati nella cartella "NUSGet" all'interno della cartella Download.
-
- 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!
-
- 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.
-
- 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.
-
- 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!
-
- Invalid TID Error Title
- L' ID Titolo che hai inserito non è in un formato valido!
-
-
-
- Ticket Not Available
-
- No Ticket Error Window Title
- Ticket non disponibile
-
-
-
- Title ID/Version Not Found
-
- 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.
-
- 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
-
- 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.
-
- 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 2aa5154..7843ba3 100644
--- a/resources/translations/nusget_nb.ts
+++ b/resources/translations/nusget_nb.ts
@@ -1,41 +1,6 @@
-
- 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
@@ -126,9 +91,8 @@ 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}
+
+ NUSGet v{nusget_version}
Developed by NinjaCheetah
Powered by libWiiPy {libwiipy_version}
DSi support provided by libTWLPy {libtwlpy_version}
@@ -137,9 +101,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.
-
- Welcome Text
+Titles will be downloaded to a folder named "NUSGet" inside your downloads folder.
NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@@ -151,75 +113,65 @@ 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!
- No Ticket Error Title
- Ingen billett er tilgjengelig for den forespurte tittelen!
+ Invalid Title ID
+ Ugyldig Tittel ID
-
-
- No title with the provided Title ID or version could be found!
- Target Not Found Error Title
+ 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.
- Target Not Found Error Body
+ 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.
-
-
- 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
+ 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!
+ Ingen billett er tilgjengelig for den forespurte tittelen!
+
+
+ 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.
+
+
+ Unknown Error
+ Ukjent Feil
+
+
+ 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.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!
-
- Invalid TID Error Title
- Tittel IDen du har angitt er ikke i et gyldig format!
-
-
-
- Ticket Not Available
-
- No Ticket Error Window Title
- Billett Ikke Tilgjengelig
-
-
-
- Title ID/Version Not Found
-
- 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.
-
- 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
-
- 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.
-
- 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 2aa5154..7843ba3 100644
--- a/resources/translations/nusget_no.ts
+++ b/resources/translations/nusget_no.ts
@@ -1,41 +1,6 @@
-
- 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
@@ -126,9 +91,8 @@ 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}
+
+ NUSGet v{nusget_version}
Developed by NinjaCheetah
Powered by libWiiPy {libwiipy_version}
DSi support provided by libTWLPy {libtwlpy_version}
@@ -137,9 +101,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.
-
- Welcome Text
+Titles will be downloaded to a folder named "NUSGet" inside your downloads folder.
NUSGet v{nusget_version}
Utviklet av NinjaCheetah
Drevet av libWiiPy {libwiipy_version}
@@ -151,75 +113,65 @@ 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!
- No Ticket Error Title
- Ingen billett er tilgjengelig for den forespurte tittelen!
+ Invalid Title ID
+ Ugyldig Tittel ID
-
-
- No title with the provided Title ID or version could be found!
- Target Not Found Error Title
+ 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.
- Target Not Found Error Body
+ 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.
-
-
- 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
+ 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!
+ Ingen billett er tilgjengelig for den forespurte tittelen!
+
+
+ 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.
+
+
+ Unknown Error
+ Ukjent Feil
+
+
+ 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.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!
-
- Invalid TID Error Title
- Tittel IDen du har angitt er ikke i et gyldig format!
-
-
-
- Ticket Not Available
-
- No Ticket Error Window Title
- Billett Ikke Tilgjengelig
-
-
-
- Title ID/Version Not Found
-
- 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.
-
- 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
-
- 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.
-
- 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.
-
-