diff --git a/NUSGet.py b/NUSGet.py
index 32d1918..8f79eb5 100644
--- a/NUSGet.py
+++ b/NUSGet.py
@@ -487,7 +487,8 @@ class MainWindow(QMainWindow, Ui_MainWindow):
script_data = json.load(script_file)
except json.JSONDecodeError as e:
msg_box.setText(app.translate("MainWindow", "An error occurred while parsing the script file!"))
- msg_box.setInformativeText(app.translate("MainWindow", f"Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again."))
+ msg_box.setInformativeText(app.translate("MainWindow", "Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.")
+ .format(lineno=e.lineno, colno=e.colno))
msg_box.exec()
return
# Build a list of the titles we need to download.
@@ -497,7 +498,8 @@ class MainWindow(QMainWindow, Ui_MainWindow):
tid = title["Title ID"]
except KeyError:
msg_box.setText(app.translate("MainWindow", "An error occurred while parsing Title IDs!"))
- msg_box.setInformativeText(app.translate("MainWindow", f"The title at index {script_data.index(title)} does not have a Title ID!"))
+ msg_box.setInformativeText(app.translate("MainWindow", "The title at index {index} does not have a Title ID!")
+ .format(index=script_data.index(title)))
msg_box.exec()
return
# No version key is acceptable, just treat it as latest.
@@ -660,8 +662,16 @@ if __name__ == "__main__":
app.installTranslator(translator)
translator = QTranslator(app)
path = os.path.join(os.path.dirname(__file__), "resources", "translations")
- if translator.load(QLocale.system(), 'nusget', '_', path):
- app.installTranslator(translator)
+ # Unix-likes and Windows handle this differently, apparently. Unix-likes will try `nusget_xx_XX.qm` and then fall
+ # back on just `nusget_xx.qm` if the region-specific translation for the language can't be found. On Windows, no
+ # such fallback exists, and so this code manually implements that fallback, since for languages like Spanish NUSGet
+ # doesn't use region-specific translations.
+ locale = QLocale.system()
+ lang = locale.name()
+ if not translator.load(QLocale.system(), 'nusget', '_', path):
+ base_locale = QLocale(locale.language())
+ translator.load(base_locale, 'nusget', '_', path)
+ app.installTranslator(translator)
window = MainWindow()
window.setWindowTitle("NUSGet")
diff --git a/qt/py/ui_AboutDialog.py b/qt/py/ui_AboutDialog.py
index e4cb010..2da906b 100644
--- a/qt/py/ui_AboutDialog.py
+++ b/qt/py/ui_AboutDialog.py
@@ -84,13 +84,13 @@ class AboutNUSGet(QDialog):
title_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
# NUSGet Version
- version_label = QLabel(self.tr("Version {nusget_version}".format(nusget_version=versions[0])))
+ version_label = QLabel(self.tr("Version {nusget_version}").format(nusget_version=versions[0]))
version_label.setProperty("class", "version")
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
# Library Versions
- libraries_label = QLabel(self.tr("Using libWiiPy {libwiipy_version} & libTWLPy {libtwlpy_version}"
- .format(libwiipy_version=versions[1], libtwlpy_version=versions[2])))
+ libraries_label = QLabel(self.tr("Using libWiiPy {libwiipy_version} & libTWLPy {libtwlpy_version}")
+ .format(libwiipy_version=versions[1], libtwlpy_version=versions[2]))
libraries_label.setProperty("class", "version")
libraries_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
@@ -145,7 +145,9 @@ class AboutNUSGet(QDialog):
"rolfiee": QLabel(self.tr(
"Norwegian (Norsk): rolfiee")),
"NotImplementedLife": QLabel(self.tr(
- "Romanian (Rom\u00e2n\u0103): NotImplementedLife"))
+ "Romanian (Rom\u00e2n\u0103): NotImplementedLife")),
+ "DarkMatterCore": QLabel(self.tr(
+ "Spanish (Español): DarkMatterCore"))
}
# Add team members to layout
diff --git a/resources/translations/nusget_de.ts b/resources/translations/nusget_de.ts
index ea42173..b6e4005 100644
--- a/resources/translations/nusget_de.ts
+++ b/resources/translations/nusget_de.ts
@@ -69,6 +69,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Rumänisch (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -87,246 +92,246 @@ Titel, welche in der Liste mit einem Haken markiert sind, haben ein frei verfüg
Standartmäßig werden alle Inhalte und Archive in einen "NUSGet Downloads"-Ordner im Downloads-Order gespeichert.
-
+
Pack installable archive (WAD/TAD)
Als installierbares Archiv verpacken (WAD/TAD)
-
+
Keep encrypted contents
"speichern" is more like "save" than "keep", but "behalten" would sound stupid
Verschlüsselte Inhalte speichern
-
+
Create decrypted contents (*.app)
Similar situation as with "Keep encrypted contents", means more like "Decrypt contents" because it sounds better
Inhalte entschlüsseln (*.app)
-
+
Use local files, if they exist
Vorhandene Dateien nutzen, sofern verfügbar
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Wii U-NUS benutzen (schneller, betrifft nur Wii/vWii)
-
+
Apply patches to IOS (Applies to WADs only)
Patches für IOS anwenden (Betrifft nur WADs)
-
+
Re-encrypt title using the Wii Common Key
Inhalte des Titels mit dem Wii Common-Key neu verschlüsseln
-
+
Check for updates on startup
Beim Start nach Updates suchen
-
+
Use a custom download directory
Benutzerspezifischen Downloads-Ordner nutzen
-
+
NUSGet Update Available
NUSGet-Update verfügbar
-
+
<b>There's a newer version of NUSGet available!</b>
<b>Eine neue version von NUSGet ist verfügbar!</b>
-
+
No Output Selected
"Output" is quite difficult to translate into anything sensical, so I added "format" to make it specifically refer to the type of output the user wants, which keeps it consistent with the rest of the text
Kein Ausgabeformat ausgewählt
-
+
You have not selected any format to output the data in!
Es wurde kein Ausgabeformat für die Inhalte ausgewählt!
-
+
Please select at least one option for how you would like the download to be saved.
Bitte wählen Sie mindestens ein Format aus für den herunterzuladenen Titel.
-
-
+
+
Invalid Download Directory
Fehlerhafter Downloads-Ordner
-
+
The specified download directory does not exist!
Der ausgewählte Downloads-Ordner konnte nicht gefunden werden!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
Bitte stellen Sie sicher, dass der Downloads-Ordner existiert und dass Sie Zugriff auf diesen haben.
-
+
Invalid Title ID
Fehlerhafte Title-ID
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b>Die angegebene Title-ID ist fehlerhaft!</b>
-
+
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.
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.
-
+
Title ID/Version Not Found
Title-ID/Version nicht gefunden
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>Es konnte kein Titel mit der gegebenen Title-ID bzw. Version gefunden werden!</b>
-
+
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.
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.
-
+
Content Decryption Failed
Inhaltsentschlüsselung fehlgeschlagen
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>Die Inhalte konnten nicht entschlüsselt werden.</b>
-
+
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.
Das TMD oder Ticket könnten wohlmöglich beschädigt sein oder stimmen nicht mit dem ausgewählten Titel überein, sofern "Vorhandene Dateien nutzen, sofern verfügbar" aktiviert wurde. Im letzteren Fall sollten Sie versuchen, diese Option auszuschalten und die Inhalte neu herunterzuladen.
-
+
Ticket Not Available
Ticket nicht verfügbar
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>Es konnte kein Ticket für den angegebenen TItel gefunden werden!</b>
-
+
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.
Es konnte kein Ticket für den ausgewählten Titel heruntergeladen werden, jedoch wurde "Als installierbares Archiv verpacken" bzw. "Inhalte entschlüsseln" ausgewählt. Diese Optionen erfordern ein Ticket. Es wurden nur verschlüsselte Inhalte gespeichert.
-
+
Unknown Error
Unbekannter Fehler
-
+
<b>An Unknown Error has Occurred!</b>
<b>Ein unbekannter Fehler ist aufgetreten!</b>
-
+
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.
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.
-
+
Script Issues Occurred
Script-Fehler aufgetreten
-
+
<b>Some issues occurred while running the download script.</b>
<b>Fehler sind während der Ausführung von Scripten aufgetreten.</b>
-
+
Check the log for more details about what issues were encountered.
Bitte schauen Sie im Log nach, welche Fehler aufgetreten sind.
-
+
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.
Die angegebenen Titel konnten wegen Fehlern nicht heruntergeladen werden. Bitte stellen Sie sicher, dass die Title-IDs und Versionen im Script korrekt sind.
-
+
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.
Sie haben "Inhalte entschlüsseln" bzw. "Als installierbares Archiv verpacken" ausgewählt, aber die angegebenen Titel im Script haben kein verfügbares Ticket. Sofern "Verschlüsselte Inhalte speichern" aktiv ist, wurden verschlüsselte Daten noch gespeichert.
-
+
Script Download Failed
Script-Download fehlgeschlagen
-
+
Open NUS Script
NUS-Script öffnen
-
+
NUS Scripts (*.nus *.json)
NUS-Scripts (*.nus *.json)
-
+
<b>An error occurred while parsing the script file!</b>
<b>Ein Fehler ist beim Lesen des Scripts aufgetreten!</b>
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
- Der Fehler ist bei Linie {e.lineno}, Zeile {e.colno} aufgetreten. Bitte überprüfen Sie ihr Script und versuchen Sie es erneut.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ Der Fehler ist bei Linie {lineno}, Zeile {colno} aufgetreten. Bitte überprüfen Sie ihr Script und versuchen Sie es erneut.
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>Ein Fehler ist beim Lesen der Title-IDs aufgetreten!</b>
-
- The title at index {script_data.index(title)} does not have a Title ID!
- Der Titel an Stelle {script_data.index(title)} hat keine Title-ID!
+
+ The title at index {index} does not have a Title ID!
+ Der Titel an Stelle {index} hat keine Title-ID!
-
+
Open Directory
Ordner öffnen
-
+
<b>The specified download directory does not exist!</b>
<b>Der angegebene Downloads-Ordner konnte nicht gefunden werden!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
Bitte stellen Sie sicher, dass der Downloads-Ordner, den Sie nutzen möchten, existiert und dass Sie darauf auch Zugriffen haben.
-
+
Could not check for updates.
@@ -335,7 +340,7 @@ Could not check for updates.
Konnte nicht nach Updates suchen.
-
+
There's a newer version of NUSGet available!
@@ -344,7 +349,7 @@ There's a newer version of NUSGet available!
Eine neuere Version von NUSGet ist verfügbar!
-
+
You're running the latest release of NUSGet.
diff --git a/resources/translations/nusget_es.ts b/resources/translations/nusget_es.ts
index 128dd71..4c4c2b1 100644
--- a/resources/translations/nusget_es.ts
+++ b/resources/translations/nusget_es.ts
@@ -6,67 +6,73 @@
About NUSGet
-
+ Acerca de NUSGet
NUSGet
-
+ NUSGet
Version {nusget_version}
-
+ Versión {nusget_version}
Using libWiiPy {libwiipy_version} & libTWLPy {libtwlpy_version}
-
+ Usando libWiiPy {libwiipy_version} y libTWLPy {libtwlpy_version}
© 2024-2025 NinjaCheetah & Contributors
-
+ © 2024-2025 NinjaCheetah y colaboradores
View Project on GitHub
-
+ Ver proyecto en GitHub
Translations
-
+ Traducciones
French (Français): <a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'><b>rougets</b></a>
-
+ Francés (Français): <a href=https://github.com/rougets style='color: #4a86e8; text-decoration: none;'><b>rougets</b></a>
German (Deutsch): <a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'><b>yeah-its-gloria</b></a>
-
+ Alemán (Deutsch): <a href=https://github.com/yeah-its-gloria style='color: #4a86e8; text-decoration: none;'><b>yeah-its-gloria</b></a>
Italian (Italiano): <a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'><b>LNLenost</b></a>
-
+ "Italiano" is spelled the same way in both Italian and Spanish.
+ Italiano: <a href=https://github.com/LNLenost style='color: #4a86e8; text-decoration: none;'><b>LNLenost</b></a>
Korean (한국어): <a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'><b>DDinghoya</b></a>
-
+ Coreano (한국어): <a href=https://github.com/DDinghoya style='color: #4a86e8; text-decoration: none;'><b>DDinghoya</b></a>
Norwegian (Norsk): <a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'><b>rolfiee</b></a>
-
+ Noruego (Norsk): <a href=https://github.com/rolfiee style='color: #4a86e8; text-decoration: none;'><b>rolfiee</b></a>
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
-
+ Rumano (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+ Español: <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
@@ -75,7 +81,7 @@
Wii
Does not change.
- Wii
+ Wii
@@ -98,47 +104,47 @@
MainWindow
-
+ VentanaPrincipal
Search
-
+ Buscar
Clear
-
+ Limpiar
Title ID
-
+ ID de título
Version
-
+ Versión
Console:
-
+ Consola:
Start Download
-
+ Iniciar descarga
Run Script
-
+ Ejecutar script
General Settings
-
+ Configuración general
@@ -150,173 +156,174 @@ li.unchecked::marker { content: "\2610"; }
li.checked::marker { content: "\2612"; }
</style></head><body style=" font-family:'.AppleSystemUIFont'; font-size:13pt; font-weight:400; font-style:normal;">
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans Serif'; font-size:9pt;"><br /></p></body></html>
-
+
About NUSGet
-
+ Acerca de NUSGet
-
+
Pack installable archive (WAD/TAD)
-
+ Generar paquete de instalación (WAD/TAD)
File Name
-
+ Nombre de archivo
-
+
Keep encrypted contents
-
+ Mantener contenidos encriptados
-
+
Create decrypted contents (*.app)
-
+ Crear contenidos desencriptados (*.app)
-
+
Use local files, if they exist
-
+ Usar archivos locales, si existen
vWii Title Settings
-
+ Configuración de títulos de vWii
-
+
Re-encrypt title using the Wii Common Key
-
+ Reencriptar título usando la clave común de Wii
App Settings
-
+ Configuración de aplicación
-
+
Check for updates on startup
-
+ Buscar actualizaciones al inicio
-
+
Use a custom download directory
-
+ Usar ruta de descarga personalizada
Select...
-
+ Seleccionar...
Help
-
+ Ayuda
About Qt
-
+ Acerca de Qt
Output Path
-
+ Ruta de descarga
-
+
Apply patches to IOS (Applies to WADs only)
-
+ Aplicar parches a IOS (sólo aplica a WADs)
-
+
NUSGet Update Available
-
+ Actualización de NUSGet disponible
-
+
No Output Selected
-
+ Formato de salida no escogido
-
+
You have not selected any format to output the data in!
-
+ ¡No has escogido un formato de salida para los datos!
-
+
Please select at least one option for how you would like the download to be saved.
-
+ Por favor, selecciona al menos un formato de salida para la descarga.
-
-
+
+
Invalid Download Directory
-
+ Directorio de descarga inválido
-
+
The specified download directory does not exist!
-
+ ¡El directorio de descarga especificado no existe!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
-
+ Por favor, asegúrate de que el directorio de descarga especificado existe, y de que tengas permisos para acceder a él.
-
+
Invalid Title ID
-
-
-
-
- <b>The Title ID you have entered is not in a valid format!</b>
-
-
-
-
- <b>No title with the provided Title ID or version could be found!</b>
-
+ ID de título inválido
+ <b>The Title ID you have entered is not in a valid format!</b>
+ <b>¡El ID de título introducido no tiene un formato válido!</b>
+
+
+
+ <b>No title with the provided Title ID or version could be found!</b>
+ <b>¡No se encontró un título que coincida con el ID de título y/o versión proporcionados!</b>
+
+
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
-
+ <b>¡El desencriptado de contenidos falló! No se han podido crear los contenidos desencriptados.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
-
+ "Ticket" may be translated as "billete", "boleto" or even "tique", but it is preferable to use the English term here for consistency's sake.
+ <b>¡No existe un ticket disponible para el título solicitado!</b>
-
+
<b>An Unknown Error has Occurred!</b>
-
+ <b>¡Ha ocurrido un error desconocido!</b>
-
+
<b>Some issues occurred while running the download script.</b>
-
-
-
-
- <b>An error occurred while parsing the script file!</b>
-
+ <b>Ocurrieron algunos problemas durante la ejecución del script de descarga.</b>
- <b>An error occurred while parsing Title IDs!</b>
-
+ <b>An error occurred while parsing the script file!</b>
+ <b>¡Ocurrió un error mientras se analizaba el archivo de script!</b>
-
+
+ <b>An error occurred while parsing Title IDs!</b>
+ <b>¡Ocurrió un error mientras se analizaban los IDs de títulos!</b>
+
+
+
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.
-
+ 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.
@@ -325,138 +332,152 @@ li.checked::marker { content: "\2612"; }
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.
-
+ "Ticket" may be translated as "billete", "boleto" or even "tique", but it is preferable to use the English term here for consistency's sake.
+ Selecciona un título desde la lista a la izquierda, o introduce un ID de título para empezar.
+
+Los títulos con una marca de verificación son gratuitos, tienen un ticket disponible y pueden ser desencriptados y/o empaquetados a un WAD o TAD. Los títulos con una "X" no cuentan con un ticket, y sólo pueden guardarse sus contenidos encriptados.
+
+Por defecto, los títulos serán descargados a una carpeta llamada "NUSGet Downloads" dentro de tu directorio de descargas.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
-
+ Usar NUS de Wii U (más rápido, sólo afecta a Wii/vWii)
-
+
<b>There's a newer version of NUSGet available!</b>
-
+ <b>¡Hay una nueva versión de NUSGet disponible!</b>
-
+
Title ID/Version Not Found
-
+ ID de título / versión no disponible
-
+
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.
-
+ 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.
-
+
Content Decryption Failed
-
+ El desencriptado de contenidos falló
-
+
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" may be translated as "billete", "boleto" or even "tique", but it is preferable to use the English term here for consistency's sake.
+ Tu TMD o ticket puede estar dañado, o puede que no correspondan al contenido que está siendo desencriptado. Si marcaste la casilla "Usar archivos locales, si existen", prueba con desactivar dicha opción antes de intentar nuevamente la descarga para corregir posibles problemas con los datos locales.
-
+
Ticket Not Available
-
+ "Ticket" may be translated as "billete", "boleto" or even "tique", but it is preferable to use the English term here for consistency's sake.
+ Ticket no disponible
-
+
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.
-
+ "Ticket" may be translated as "billete", "boleto" or even "tique", but it is preferable to use the English term here for consistency's sake.
+ No se pudo descargar un ticket para el título solicitado, pero has marcado la casilla "Generar paquete de instalación" o "Crear contenidos desencriptados". Estas opciones no están disponibles para títulos sin un ticket. Sólo se han guardado los contenidos encriptados.
-
+
Unknown Error
-
+ Error desconocido
-
+
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.
-
-
-
-
- Script Issues Occurred
-
-
-
-
- Check the log for more details about what issues were encountered.
-
+ 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.
- 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.
-
+ Script Issues Occurred
+ Ocurrieron problemas con el script
+
+
+
+ Check the log for more details about what issues were encountered.
+ Lee el registro para obtener más detalles sobre los problemas que se encontraron.
+ 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.
+ 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.
+
+
+
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.
-
+ Marcaste la casilla "Crear contenidos desencriptados" o "Generar paquete de instalación", 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.
-
+
Script Download Failed
-
+ La descarga del script falló
-
+
Open NUS Script
-
+ Abrir script de NUS
-
+
NUS Scripts (*.nus *.json)
-
+ Scripts de NUS (*.nus, *.json)
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
-
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ Error encontrado en la línea {lineno}, columna {colno}. Por favor, verifica el script e intenta nuevamente.
-
- The title at index {script_data.index(title)} does not have a Title ID!
-
+
+ The title at index {index} does not have a Title ID!
+ ¡El título con índice {index} no tiene un ID de título!
-
+
Open Directory
-
+ Abrir directorio
-
+
<b>The specified download directory does not exist!</b>
-
+ <b>¡El directorio de descarga especificado no existe!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
-
+ Por favor, asegúrate de que el directorio de descarga especificado existe, y de que tengas permisos para acceder a él.
-
+
Could not check for updates.
-
+
+
+No se pudo buscar actualizaciones.
-
+
There's a newer version of NUSGet available!
-
+
+
+¡Hay una nueva versión de NUSGet disponible!
-
+
You're running the latest release of NUSGet.
-
+
+
+Estás usando el lanzamiento más reciente de NUSGet.
diff --git a/resources/translations/nusget_fr.ts b/resources/translations/nusget_fr.ts
index aecfab9..1fd0f10 100644
--- a/resources/translations/nusget_fr.ts
+++ b/resources/translations/nusget_fr.ts
@@ -69,6 +69,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Roumain (Română) : <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -95,7 +100,7 @@ Les titres marqués d'une coche sont gratuits et ont un billet disponible,
Les titres seront téléchargés dans un dossier "NUSGet Downloads", à l'intérieur de votre dossier de téléchargements.
-
+
NUSGet Update Available
Mise à jour NUSGet disponible
@@ -117,88 +122,88 @@ Les titres marqués d'une coche sont gratuits et ont un billet disponible,
Les titres seront téléchargés dans un dossier "NUSGet Downloads", à l'intérieur de votre dossier de téléchargements.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Utiliser le NUS Wii U (plus rapide, n'affecte que Wii / vWii)
-
+
<b>There's a newer version of NUSGet available!</b>
<b>Une nouvelle version de NUSGet est disponible !</b>
-
+
No Output Selected
Aucun format sélectionné
-
+
You have not selected any format to output the data in!
Veuillez sélectionner un format de sortie pour les données !
-
+
Please select at least one option for how you would like the download to be saved.
Veuillez sélectionner au moins une option de téléchargement.
-
-
+
+
Invalid Download Directory
Dossier de téléchargement invalide
-
+
The specified download directory does not exist!
Le dossier de téléchargement choisi n'existe pas !
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
Assurez-vous que votre dossier de téléchargement existe, et que vous avez les droits suffisants pour y accéder.
-
+
Invalid Title ID
ID de titre invalide
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b>L'ID de titre que vous avez saisi a un format invalide !</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>Aucun titre trouvé pour l'ID ou la version fourni !</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>Le décryptage du contenu a échoué ! Le contenu décrypté ne peut être créé.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>Aucun billet disponible pour le titre demandé !</b>
-
+
<b>An Unknown Error has Occurred!</b>
<b>Une erreur inconnue est survenue !</b>
-
+
<b>Some issues occurred while running the download script.</b>
<b>Des erreurs sont survenues pendant l'exécution du script de téléchargement.</b>
-
+
<b>An error occurred while parsing the script file!</b>
<b>Une erreur est survenue pendant la lecture du script !</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>Une erreur est survenue à la lecture d'un ID de titre !</b>
@@ -207,12 +212,12 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
L'ID de titre que vous avez saisi a un format invalide !
-
+
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.
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.
-
+
Title ID/Version Not Found
ID de titre / Version introuvable
@@ -221,12 +226,12 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Aucun titre trouvé pour l'ID ou la version fourni !
-
+
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.
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.
-
+
Content Decryption Failed
Échec du décryptage
@@ -235,12 +240,12 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Le décryptage du contenu a échoué ! Le contenu décrypté ne peut être créé.
-
+
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.
Vos métadonnées (TMD) ou le billet sont probablement endommagés, ou ils ne correspondent pas au contenu décrypté. Si vous avez coché "Utiliser des fichiers locaux, s'ils existent", essayez de désactiver cette option avant d'essayer à nouveau pour résoudre les éventuelles erreurs avec les données locales.
-
+
Ticket Not Available
Billet indisponible
@@ -249,12 +254,12 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Aucun billet disponible pour le titre demandé !
-
+
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.
Un billet ne peut être téléchargé pour le titre demandé, mais vous avez sélectionné "Empaqueter une archive d'installation" ou "Décrypter le contenu". Ces options sont indisponibles pour les titres sans billet. Seul le contenu crypté a été enregistré.
-
+
Unknown Error
Erreur inconnue
@@ -263,12 +268,12 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Une erreur inconnue est survenue !
-
+
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.
Veuillez essayer à nouveau. Si le problème persiste, déclarez un problème sur GitHub en décrivant les actions qui ont provoqué l'erreur.
-
+
Script Issues Occurred
Erreurs survenues dans le script
@@ -277,32 +282,32 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Des erreurs sont survenues pendant l'exécution du script de téléchargement.
-
+
Check the log for more details about what issues were encountered.
Vérifiez le journal pour plus de détails à propos des erreurs rencontrées.
-
+
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.
Le téléchargement des titres suivants a échoué. Assurez-vous que les ID de titre et version du script soient valides.
-
+
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.
Vous avez activé "Décrypter le contenu" ou "Empaqueter une archive d'installation", mais les billets des titres suivants sont indisponibles. Si activé(s), le contenu crypté a été téléchargé.
-
+
Script Download Failed
Échec du script de téléchargement
-
+
Open NUS Script
Ouvrir un script NUS
-
+
NUS Scripts (*.nus *.json)
Scripts NUS (*.nus *.json)
@@ -311,31 +316,31 @@ Les titres seront téléchargés dans un dossier "NUSGet Downloads",
Une erreur est survenue pendant la lecture du script !
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
- Erreur recontrée ligne {e.lineno}, colonne {e.colno}. Vérifiez le script et réessayez.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ Erreur recontrée ligne {lineno}, colonne {colno}. Vérifiez le script et réessayez.
An error occurred while parsing Title IDs!
Une erreur est survenue à la lecture d'un ID de titre !
-
- The title at index {script_data.index(title)} does not have a Title ID!
- Le titre à l'index {script_data.index(title)} n'a pas d'ID !
+
+ The title at index {index} does not have a Title ID!
+ Le titre à l'index {index} n'a pas d'ID !
-
+
Open Directory
Ouvrir un dossier
-
+
<b>The specified download directory does not exist!</b>
<b>Le dossier de téléchargement choisi n'existe pas !</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
Assurez-vous que votre dossier de téléchargement existe, et que vous avez les droits suffisants pour y accéder.
@@ -422,7 +427,7 @@ li.checked::marker { content: "\2612"; }
À propos de NUSGet
-
+
Pack installable archive (WAD/TAD)
Empaqueter une archive d'installation (WAD / TAD)
@@ -432,17 +437,17 @@ li.checked::marker { content: "\2612"; }
Nom du fichier
-
+
Keep encrypted contents
Conserver le contenu crypté
-
+
Create decrypted contents (*.app)
Décrypter le contenu (*.app)
-
+
Use local files, if they exist
Utiliser des fichiers locaux, s'ils existent
@@ -451,7 +456,7 @@ li.checked::marker { content: "\2612"; }
Utiliser le NUS Wii U (plus rapide, n'affecte que Wii / vWii)
-
+
Apply patches to IOS (Applies to WADs only)
Appliquer des modifications aux IOS (WAD uniquement)
@@ -461,7 +466,7 @@ li.checked::marker { content: "\2612"; }
Titres vWii
-
+
Re-encrypt title using the Wii Common Key
Encrypter le titre avec la clé commune Wii
@@ -471,12 +476,12 @@ li.checked::marker { content: "\2612"; }
Paramètres
-
+
Check for updates on startup
Vérifier les mises à jour au démarrage
-
+
Use a custom download directory
Utiliser un dossier de téléchargement différent
diff --git a/resources/translations/nusget_it.ts b/resources/translations/nusget_it.ts
index c06fc6b..94600c2 100644
--- a/resources/translations/nusget_it.ts
+++ b/resources/translations/nusget_it.ts
@@ -68,6 +68,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -146,7 +151,7 @@
-
+
Pack installable archive (WAD/TAD)
Archivio installabile (WAD/TAD)
@@ -156,17 +161,17 @@
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
@@ -180,7 +185,7 @@
Impostazioni titoli vWii
-
+
Re-encrypt title using the Wii Common Key
Cripta titolo usando la Chiave Comune Wii
@@ -190,12 +195,12 @@
-
+
Check for updates on startup
-
+
Use a custom download directory
@@ -293,88 +298,88 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
-
+
<b>There's a newer version of NUSGet available!</b>
-
+
No Output Selected
Nessun output selezionato
-
+
You have not selected any format to output the data in!
Non hai selezionato alcun formato in cui esportare i dati!
-
+
Please select at least one option for how you would like the download to be saved.
Per favore scegli almeno un opzione per come vorresti che fosse salvato il download.
-
-
+
+
Invalid Download Directory
-
+
The specified download directory does not exist!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
-
+
Invalid Title ID
ID Titolo invalido
-
+
<b>The Title ID you have entered is not in a valid format!</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
-
+
<b>An Unknown Error has Occurred!</b>
-
+
<b>Some issues occurred while running the download script.</b>
-
+
<b>An error occurred while parsing the script file!</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
@@ -383,12 +388,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
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
@@ -397,12 +402,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
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
@@ -411,12 +416,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
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
@@ -425,12 +430,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
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
@@ -439,12 +444,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
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.
-
+
Script Issues Occurred
Errore script
@@ -453,32 +458,32 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
Ci sono stati degli errori con lo script di download.
-
+
Check the log for more details about what issues were encountered.
Guarda i log per più dettagli sull'errore.
-
+
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.
I seguenti titoli non sono stati scaricati a causa di un errore. Controlla che l'ID Titolo e la versione nello script siano validi.
-
+
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.
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.
-
+
Script Download Failed
Download script fallito
-
+
Open NUS Script
Apri script NUS
-
+
NUS Scripts (*.nus *.json)
Scrpit NUS (*.nus *.txt)
@@ -487,31 +492,31 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
Ci sono stati degli errori con lo script di download!
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
An error occurred while parsing Title IDs!
Ci sono stati degli errori con GLI id tITOLO!
-
- The title at index {script_data.index(title)} does not have a Title ID!
- The title at index {script_data.index(title)} does not have a Title ID!
+
+ The title at index {index} does not have a Title ID!
+ The title at index {index} does not have a Title ID!
-
+
Open Directory
-
+
<b>The specified download directory does not exist!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
@@ -553,12 +558,12 @@ 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.
-
+
Apply patches to IOS (Applies to WADs only)
Applica patch agli IOS (Solo per le WAD)
-
+
NUSGet Update Available
Aggiornamento di NUSGet disponibile
@@ -567,21 +572,21 @@ I titoli verranno scaricati nella cartella "NUSGet" all'interno d
Una nuova versione di NUSGet è disponibile!
-
+
Could not check for updates.
Impossibile trovare eventuali aggiornamenti.
-
+
There's a newer version of NUSGet available!
Una nuova versione di NUSGet è disponibile!
-
+
You're running the latest release of NUSGet.
diff --git a/resources/translations/nusget_ko.ts b/resources/translations/nusget_ko.ts
index d6104cc..2e600af 100644
--- a/resources/translations/nusget_ko.ts
+++ b/resources/translations/nusget_ko.ts
@@ -68,6 +68,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -146,7 +151,7 @@
NUSGet 정보
-
+
Pack installable archive (WAD/TAD)
설치 가능한 아카이브 (WAD/TAD) 팩
@@ -156,17 +161,17 @@
파일 이름
-
+
Keep encrypted contents
암호화된 내용 보관
-
+
Create decrypted contents (*.app)
복호화된 콘텐츠 (*.app) 생성
-
+
Use local files, if they exist
로컬 파일이 있으면 사용
@@ -180,7 +185,7 @@
vWii 타이틀 설정
-
+
Re-encrypt title using the Wii Common Key
Wii 공통 키를 사용하여 타이틀을 다시 암호화
@@ -190,12 +195,12 @@
앱 설정
-
+
Check for updates on startup
시작 시 업데이트 확인
-
+
Use a custom download directory
커스텀 다운로드 디렉터리 사용
@@ -301,88 +306,88 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
기본적으로 타이틀은 다운로드 폴더 내의 "NUSBet Downloads" 폴더에 다운로드됩니다.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Wii U NUS 사용 (더 빠르고 Wii/vWii에만 효과 있음)
-
+
<b>There's a newer version of NUSGet available!</b>
<b>NUSGet의 최신 버전이 출시되었습니다!</b>
-
+
No Output Selected
선택된 출력 없음
-
+
You have not selected any format to output the data in!
데이터를 출력할 형식을 선택하지 않았습니다!
-
+
Please select at least one option for how you would like the download to be saved.
다운로드를 저장할 방법을 하나 이상 선택하세요.
-
-
+
+
Invalid Download Directory
잘못된 다운로드 디렉터리
-
+
The specified download directory does not exist!
지정된 다운로드 디렉터리가 존재하지 않습니다!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
지정된 다운로드 디렉터리가 있는지, 그리고 해당 디렉터리에 접근할 수 있는 권한이 있는지 확인하세요.
-
+
Invalid Title ID
잘못된 제목 ID
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b>입력하신 타이틀 ID의 형식이 올바르지 않습니다!</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>제공된 타이틀 ID 또는 버전으로 제목을 찾을 수 없습니다!</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>콘텐츠 복호화에 실패했습니다! 복호화된 콘텐츠를 생성할 수 없습니다.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>요청하신 작품에 대한 티켓이 없습니다!</b>
-
+
<b>An Unknown Error has Occurred!</b>
<b>알 수 없는 오류가 발생했습니다!</b>
-
+
<b>Some issues occurred while running the download script.</b>
<b>다운로드 스크립트를 실행하는 동안 문제가 발생했습니다.</b>
-
+
<b>An error occurred while parsing the script file!</b>
<b>스크립트 파일을 구문 분석하는 동안 오류가 발생했습니다!</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>타이틀 ID를 구문 분석하는 동안 오류가 발생했습니다!</b>
@@ -391,12 +396,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
입력한 타이틀 ID의 형식이 올바르지 않습니다!
-
+
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.
타이틀 ID는 숫자와 문자로 구성된 16자리 문자열이어야 합니다. 올바르게 포맷된 타이틀 ID를 입력하거나 왼쪽 메뉴에서 하나를 선택하세요.
-
+
Title ID/Version Not Found
타이틀 ID/버전을 찾을 수 없음
@@ -405,12 +410,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
제공된 타이틀 ID 또는 버전으로 제목을 찾을 수 없습니다!
-
+
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.
유효한 타이틀 ID를 입력했는지 또는 타이틀 데이터베이스에서 선택했는지, 그리고 다운로드하려는 타이틀에 대해 제공된 버전이 있는지 확인하세요.
-
+
Content Decryption Failed
콘텐츠 복호화 실패
@@ -419,12 +424,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
콘텐츠 복호화가 성공하지 못했습니다! 복호화된 콘텐츠를 만들 수 없습니다.
-
+
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.
TMD 또는 티켓이 손상되었거나 복호화되는 콘텐츠와 일치하지 않을 수 있습니다. "로컬 파일이 있으면 사용"을 체크한 경우, 로컬 데이터와 관련된 잠재적인 문제를 해결하기 위해 다시 다운로드를 시도하기 전에 해당 옵션을 비활성화해 보세요.
-
+
Ticket Not Available
사용 가능한 티켓이 아님
@@ -433,12 +438,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
요청한 타이틀에 대한 티켓이 없습니다!
-
+
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
알 수 없는 오류
@@ -447,12 +452,12 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
알 수 없는 오류가 발생했습니다!
-
+
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.
다시 시도하세요. 이 문제가 지속되면 GitHub에서 새 이슈를 열어 이 오류가 발생했을 때 무엇을 하려고 했는지 자세히 설명하세요.
-
+
Script Issues Occurred
스크립트 문제가 발생함
@@ -461,32 +466,32 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
다운로드 스크립트를 실행하는 동안 몇 가지 문제가 발생했습니다.
-
+
Check the log for more details about what issues were encountered.
발생한 문제에 대한 자세한 내용은 로그를 확인하세요.
-
+
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.
다음 제목은 오류로 인해 다운로드할 수 없습니다. 스크립트에 나열된 타이틀 ID와 버전이 유효한지 확인하세요.
-
+
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.
"암호 해독된 콘텐츠 만들기" 또는 "설치 가능한 아카이브 압축"을 활성화했지만 스크립트의 다음 타이틀에는 사용 가능한 티켓이 없습니다. 활성화된 경우 암호화된 콘텐츠가 여전히 다운로드되었습니다.
-
+
Script Download Failed
스크립트 다운로드 실패함
-
+
Open NUS Script
NUS 스크립트 열기
-
+
NUS Scripts (*.nus *.json)
NUS 스크립트 (*.nus *.json)
@@ -495,31 +500,31 @@ By default, titles will be downloaded to a folder named "NUSGet Downloads&q
스크립트 파일을 구문 분석하는 동안 오류가 발생했습니다!
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
- {e.lineno} 줄, {e.colno} 열에서 오류가 발생했습니다. 스크립트를 다시 확인하고 다시 시도하세요.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ {lineno} 줄, {colno} 열에서 오류가 발생했습니다. 스크립트를 다시 확인하고 다시 시도하세요.
An error occurred while parsing Title IDs!
타이틀 ID를 구문 분석하는 동안 오류가 발생했습니다!
-
- The title at index {script_data.index(title)} does not have a Title ID!
- {script_data.index(title)} 인덱스의 타이틀에 타이틀 ID가 없습니다!
+
+ The title at index {index} does not have a Title ID!
+ {index} 인덱스의 타이틀에 타이틀 ID가 없습니다!
-
+
Open Directory
디렉터리 열기
-
+
<b>The specified download directory does not exist!</b>
<b>지정된 다운로드 디렉터리가 존재하지 않습니다!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
사용하려는 다운로드 디렉터리가 있는지, 그리고 해당 디렉터리에 접근할 수 있는 권한이 있는지 확인하세요.
@@ -562,12 +567,12 @@ DSi 지원 : libTWLPy {libtwlpy_version}에서 제공
타이틀은 다운로드 폴더 내의 "NUSBet"이라는 폴더에 다운로드됩니다.
-
+
Apply patches to IOS (Applies to WADs only)
IOS에 패치 적용 (WAD에만 적용)
-
+
NUSGet Update Available
NUSGet 업데이트 가능
@@ -576,7 +581,7 @@ DSi 지원 : libTWLPy {libtwlpy_version}에서 제공
NUSBet의 새로운 버전이 나왔습니다!
-
+
Could not check for updates.
@@ -585,7 +590,7 @@ Could not check for updates.
업데이트를 확인할 수 없습니다.
-
+
There's a newer version of NUSGet available!
@@ -594,7 +599,7 @@ There's a newer version of NUSGet available!
NUSBet의 새로운 버전이 나왔습니다!
-
+
You're running the latest release of NUSGet.
diff --git a/resources/translations/nusget_nb.ts b/resources/translations/nusget_nb.ts
index 953c8c0..e5de158 100644
--- a/resources/translations/nusget_nb.ts
+++ b/resources/translations/nusget_nb.ts
@@ -68,6 +68,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Rumensk (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -146,7 +151,7 @@
Om NUSGet
-
+
Pack installable archive (WAD/TAD)
Pakke installerbart arkiv (WAD/TAD)
@@ -156,17 +161,17 @@
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
@@ -180,7 +185,7 @@
vWii Tittelinstillinger
-
+
Re-encrypt title using the Wii Common Key
Krypter tittelen på nytt ved hjelp av Wii Common Key
@@ -190,12 +195,12 @@
Appinstillinger
-
+
Check for updates on startup
Sjekk for oppdateringer ved oppstart
-
+
Use a custom download directory
Bruke en egendefinert nedlastingsmappe
@@ -314,83 +319,83 @@ 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 Downloads" i nedlastingsmappen din.
-
+
<b>There's a newer version of NUSGet available!</b>
<b>Det finnes en nyere versjon av NUSGet tilgjengelig!</b>
-
+
No Output Selected
Ingen Utgang Valgt
-
+
You have not selected any format to output the data in!
Du ikke har valgt noe format å lagre dataene i!
-
+
Please select at least one option for how you would like the download to be saved.
Velg minst ett valg for hvordan du vil at nedlastingen skal lagres.
-
-
+
+
Invalid Download Directory
Ugyldig Nedlastingsmappe
-
+
The specified download directory does not exist!
Den angitte nedlastingsmappen finnes ikke!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse fil å få tilgang til den.
-
+
Invalid Title ID
Ugyldig Tittel ID
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b>Tittel IDen du har angitt er ikke i et gyldig format!</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>Ingen tittel med oppgitt Tittel ID eller versjon ble funnet!</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>Ingen billett er tilgjengelig for den forespurte tittelen!</b>
-
+
<b>An Unknown Error has Occurred!</b>
<b>En ukjent feil har oppstått!</b>
-
+
<b>Some issues occurred while running the download script.</b>
<b>Noen feil oppstod under kjøring av nedlastingsskriptet.</b>
-
+
<b>An error occurred while parsing the script file!</b>
<b>Det oppstod en feil under parsing av skriptfilen!</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>Det oppstod en feil under parsing av Tittel IDer!</b>
@@ -399,12 +404,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -413,12 +418,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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.
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.
-
+
Content Decryption Failed
Dekryptering av Innhold Mislyktes
@@ -427,12 +432,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -441,12 +446,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -455,12 +460,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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.
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.
-
+
Script Issues Occurred
Skriptfeil Oppstod
@@ -469,32 +474,32 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Noen feil oppstod under kjøring av nedlastingsskriptet.
-
+
Check the log for more details about what issues were encountered.
Sjekk loggen for mer informasjon om feilene som har oppstått.
-
+
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.
Følgende titler kunne ikke lastes ned på grunn av en feil. Sjekk at Tittel IDen og versjon som er oppført i skriptet er gyldige.
-
+
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.
Du aktiverte "Opprett dekryptert innhold" eller "Pakk installerbart archive", men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.
-
+
Script Download Failed
Skriptnedlasting Mislyktes
-
+
Open NUS Script
Åpne NUS Skript
-
+
NUS Scripts (*.nus *.json)
NUS Skript (*.nus *.json)
@@ -503,8 +508,8 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Det oppstod en feil under parsing av skriptfilen!
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
@@ -512,27 +517,27 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Det oppstod en feil under parsing av Tittel IDer!
-
- The title at index {script_data.index(title)} does not have a Title ID!
- Tittelen ved indeks {script_data.index(title)} har ikke en Tittel ID!
+
+ The title at index {index} does not have a Title ID!
+ Tittelen ved indeks {index} har ikke en Tittel ID!
-
+
Open Directory
Åpen Mappe
-
+
<b>The specified download directory does not exist!</b>
<b>Den angitte nedlastingsmappen finnes ikke!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse fil å få tilgang til den.
-
+
Apply patches to IOS (Applies to WADs only)
Påfør patcher på IOS (gjelder kun WADer)
@@ -550,12 +555,12 @@ Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypte
Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)
-
+
NUSGet Update Available
NUSGet Oppdatering Tilgjengelig
@@ -564,7 +569,7 @@ Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads&q
Det finnes en nyere versjon av NUSGet tilgjengelig!
-
+
Could not check for updates.
@@ -573,7 +578,7 @@ Could not check for updates.
Kunne ikke sjekke for oppdateringer.
-
+
There's a newer version of NUSGet available!
@@ -582,7 +587,7 @@ There's a newer version of NUSGet available!
Det finnes en nyere versjon av NUSGet tilgjengelig!
-
+
You're running the latest release of NUSGet.
diff --git a/resources/translations/nusget_no.ts b/resources/translations/nusget_no.ts
index 953c8c0..e5de158 100644
--- a/resources/translations/nusget_no.ts
+++ b/resources/translations/nusget_no.ts
@@ -68,6 +68,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Rumensk (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -146,7 +151,7 @@
Om NUSGet
-
+
Pack installable archive (WAD/TAD)
Pakke installerbart arkiv (WAD/TAD)
@@ -156,17 +161,17 @@
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
@@ -180,7 +185,7 @@
vWii Tittelinstillinger
-
+
Re-encrypt title using the Wii Common Key
Krypter tittelen på nytt ved hjelp av Wii Common Key
@@ -190,12 +195,12 @@
Appinstillinger
-
+
Check for updates on startup
Sjekk for oppdateringer ved oppstart
-
+
Use a custom download directory
Bruke en egendefinert nedlastingsmappe
@@ -314,83 +319,83 @@ 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 Downloads" i nedlastingsmappen din.
-
+
<b>There's a newer version of NUSGet available!</b>
<b>Det finnes en nyere versjon av NUSGet tilgjengelig!</b>
-
+
No Output Selected
Ingen Utgang Valgt
-
+
You have not selected any format to output the data in!
Du ikke har valgt noe format å lagre dataene i!
-
+
Please select at least one option for how you would like the download to be saved.
Velg minst ett valg for hvordan du vil at nedlastingen skal lagres.
-
-
+
+
Invalid Download Directory
Ugyldig Nedlastingsmappe
-
+
The specified download directory does not exist!
Den angitte nedlastingsmappen finnes ikke!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse fil å få tilgang til den.
-
+
Invalid Title ID
Ugyldig Tittel ID
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b>Tittel IDen du har angitt er ikke i et gyldig format!</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>Ingen tittel med oppgitt Tittel ID eller versjon ble funnet!</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>Dekryptering av innhold var ikke vellykket! Dekryptert innhold kunne ikke opprettes.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>Ingen billett er tilgjengelig for den forespurte tittelen!</b>
-
+
<b>An Unknown Error has Occurred!</b>
<b>En ukjent feil har oppstått!</b>
-
+
<b>Some issues occurred while running the download script.</b>
<b>Noen feil oppstod under kjøring av nedlastingsskriptet.</b>
-
+
<b>An error occurred while parsing the script file!</b>
<b>Det oppstod en feil under parsing av skriptfilen!</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>Det oppstod en feil under parsing av Tittel IDer!</b>
@@ -399,12 +404,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -413,12 +418,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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.
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.
-
+
Content Decryption Failed
Dekryptering av Innhold Mislyktes
@@ -427,12 +432,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -441,12 +446,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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
@@ -455,12 +460,12 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
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.
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.
-
+
Script Issues Occurred
Skriptfeil Oppstod
@@ -469,32 +474,32 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Noen feil oppstod under kjøring av nedlastingsskriptet.
-
+
Check the log for more details about what issues were encountered.
Sjekk loggen for mer informasjon om feilene som har oppstått.
-
+
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.
Følgende titler kunne ikke lastes ned på grunn av en feil. Sjekk at Tittel IDen og versjon som er oppført i skriptet er gyldige.
-
+
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.
Du aktiverte "Opprett dekryptert innhold" eller "Pakk installerbart archive", men følgende titler i skriptet har ikke tilgjengelige billetter. Hvis aktivert, ble kryptert innhold fortsatt lastet ned.
-
+
Script Download Failed
Skriptnedlasting Mislyktes
-
+
Open NUS Script
Åpne NUS Skript
-
+
NUS Scripts (*.nus *.json)
NUS Skript (*.nus *.json)
@@ -503,8 +508,8 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Det oppstod en feil under parsing av skriptfilen!
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
@@ -512,27 +517,27 @@ Titler er lastes ned til en mappe med navnet "NUSGet Downloads" i nedl
Det oppstod en feil under parsing av Tittel IDer!
-
- The title at index {script_data.index(title)} does not have a Title ID!
- Tittelen ved indeks {script_data.index(title)} har ikke en Tittel ID!
+
+ The title at index {index} does not have a Title ID!
+ Tittelen ved indeks {index} har ikke en Tittel ID!
-
+
Open Directory
Åpen Mappe
-
+
<b>The specified download directory does not exist!</b>
<b>Den angitte nedlastingsmappen finnes ikke!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
Kontroller at den angitte nedlastingsmappen finnes, og at du har tillatelse fil å få tilgang til den.
-
+
Apply patches to IOS (Applies to WADs only)
Påfør patcher på IOS (gjelder kun WADer)
@@ -550,12 +555,12 @@ Titler merket med en hake er fri og har en billett tilgjengelig, og kan dekrypte
Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads" i nedlastingsmappen din.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Bruk Wii U NUS (raskere, påvirker bare Wii/vWii)
-
+
NUSGet Update Available
NUSGet Oppdatering Tilgjengelig
@@ -564,7 +569,7 @@ Som standard, lastes titler ned til en mappe med navnet "NUSGet Downloads&q
Det finnes en nyere versjon av NUSGet tilgjengelig!
-
+
Could not check for updates.
@@ -573,7 +578,7 @@ Could not check for updates.
Kunne ikke sjekke for oppdateringer.
-
+
There's a newer version of NUSGet available!
@@ -582,7 +587,7 @@ There's a newer version of NUSGet available!
Det finnes en nyere versjon av NUSGet tilgjengelig!
-
+
You're running the latest release of NUSGet.
diff --git a/resources/translations/nusget_ro.ts b/resources/translations/nusget_ro.ts
index 947a0f2..450c2f4 100644
--- a/resources/translations/nusget_ro.ts
+++ b/resources/translations/nusget_ro.ts
@@ -68,6 +68,11 @@
Romanian (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
Română (Română): <a href=https://github.com/NotImplementedLife style='color: #4a86e8; text-decoration: none;'><b>NotImplementedLife</b></a>
+
+
+ Spanish (Español): <a href=https://github.com/DarkMatterCore style='color: #4a86e8; text-decoration: none;'><b>DarkMatterCore</b></a>
+
+
MainWindow
@@ -116,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.
-
+
NUSGet Update Available
Actualizare NUSGet disponibilă
@@ -138,88 +143,88 @@ 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.
-
+
Use the Wii U NUS (faster, only affects Wii/vWii)
Folosiți Wii U NUS (mai rapid, afectează doar Wii/vWii)
-
+
<b>There's a newer version of NUSGet available!</b>
<b>O nouă versiune de NUSGet este valabilă!</b>
-
+
No Output Selected
Nu s-a selectat un output
-
+
You have not selected any format to output the data in!
Nu ați selectat niciun format de ieșire!
-
+
Please select at least one option for how you would like the download to be saved.
Vă rugăm să selectați cel puțin o opțiune pentru modul în care doriți să salvați datele descărcate.
-
-
+
+
Invalid Download Directory
Director de descărcare invalid
-
+
The specified download directory does not exist!
Directorul de descărcare specificat nu există!
-
+
Please make sure the specified download directory exists, and that you have permission to access it.
Vă rugăm să vă asigurați că directorul de descărcare specificat există, și că aveți permisiuni pentru a-l accesa.
-
+
Invalid Title ID
Title ID invalid
-
+
<b>The Title ID you have entered is not in a valid format!</b>
<b> Title ID pe care l-ați introdus nu este într-un format valid!</b>
-
+
<b>No title with the provided Title ID or version could be found!</b>
<b>Nu s-a găsit niciun titlu cu Title ID sau versiunea introdusă!</b>
-
+
<b>Content decryption was not successful! Decrypted contents could not be created.</b>
<b>Decriptarea conținutului a eșuat! Nu s-a putut crea conținutul decriptat.</b>
-
+
<b>No Ticket is Available for the Requested Title!</b>
<b>Nu există tichet valabil pentru titlul cerut!</b>
-
+
<b>An Unknown Error has Occurred!</b>
<b>S-a produs o eroare necunoscută!</b>
-
+
<b>Some issues occurred while running the download script.</b>
<b>Au apărut câteva probleme la rularea scriptului de descărcare.</b>
-
+
<b>An error occurred while parsing the script file!</b>
<b>A apărut o eroare la procesarea fișierului script!</b>
-
+
<b>An error occurred while parsing Title IDs!</b>
<b>A apărut o eroare la procesarea Title ID-urilor!</b>
@@ -228,12 +233,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
Title ID pe care l-ați introdus este invalid!
-
+
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.
Title ID-urile trebuie să conțină exact 16 cifre și/sau litere. Vă rugăm introduceți un Title ID corect, sau selectați unul din meniul din stânga.
-
+
Title ID/Version Not Found
Title ID/Versiunea nu a fost găsită
@@ -242,12 +247,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
Niciun titlu care să corespundă cu Title ID-ul sau cu versiunea introdusă nu a fost găsit!
-
+
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.
Vă rugăm să vă asigurați că ați introdus un Title ID valid sau ați selectat unul din baza de date cu titluri, și că versiunea introdusă există pentru titlul pe care încercați să îl descărcați.
-
+
Content Decryption Failed
Decriptarea conținutului a eșuat
@@ -256,12 +261,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
Decriptarea conținutului nu a reușit. Nu s-a putut crea conținutul decriptat.
-
+
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.
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 să debifați această opțiune înainte de a descărca din nou pentru a rezolva potențiale probleme cu datele existente local.
-
+
Ticket Not Available
Ticket-ul nu este valabil
@@ -270,12 +275,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
Niciun Ticket nu este valabil pentru titlul dorit!
-
+
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.
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.
-
+
Unknown Error
Eroare necunoscută
@@ -284,12 +289,12 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
S-a produs o eroare necunoscută!
-
+
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.
Vă rugăm încercați din nou. Dacă problema persistă, vă rugăm să deschideți un issue pe GitHub în care să explicați ce ați încercat să faceți atunci când această eroare a apărut.
-
+
Script Issues Occurred
Au apărut probleme cu scriptul
@@ -298,32 +303,32 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
Au apărut câteva probleme la rularea scriptului descărcat.
-
+
Check the log for more details about what issues were encountered.
Verificați logurile pentru mai multe detalii despre problemele întâmpinate.
-
+
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.
Următoarele titluri nu au putut fi descărcate din cauza unei erori. Vă rugăm să vă asigurați că Title ID și versiunea listate în script sunt valide.
-
+
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.
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.
-
+
Script Download Failed
Descărcarea scriptului a eșuat
-
+
Open NUS Script
Deschideți script NUS
-
+
NUS Scripts (*.nus *.json)
Scripturi NUS (*.nus *.json)
@@ -332,31 +337,31 @@ Implicit, titlurile vor fi descărcate într-un folder numit „NUSGet Downloads
A apărut o eroare la parssarea acestui fișier script!
-
- Error encountered at line {e.lineno}, column {e.colno}. Please double-check the script and try again.
- S-a produs o eroare la linia {e.lineno}, coloana {e.colno}. Vă rugăm verificați scriptul și încercați din nou.
+
+ Error encountered at line {lineno}, column {colno}. Please double-check the script and try again.
+ S-a produs o eroare la linia {lineno}, coloana {colno}. Vă rugăm verificați scriptul și încercați din nou.
An error occurred while parsing Title IDs!
A apărut o eroare la procesarea Title ID-urilor!
-
- The title at index {script_data.index(title)} does not have a Title ID!
- Titlul la poziția {script_data.index(title)} nu are un Title ID!
+
+ The title at index {index} does not have a Title ID!
+ Titlul la poziția {index} nu are un Title ID!
-
+
Open Directory
Deschideți folder
-
+
<b>The specified download directory does not exist!</b>
<b>Directorul de descărcare specificat nu există!</b>
-
+
Please make sure the download directory you want to use exists, and that you have permission to access it.
Vă rugăm să vă asigurați că directorul de descărcare pe care vreți să il folosiți există, și că aveți permisiunea de a-l accesa.
@@ -459,7 +464,7 @@ li.checked::marker { content: "\2612"; }
Despre NUSGet
-
+
Pack installable archive (WAD/TAD)
Împachetați arhiva instalabilă (WAD/TAD)
@@ -469,17 +474,17 @@ li.checked::marker { content: "\2612"; }
Nume fișier
-
+
Keep encrypted contents
Păstrați conținuturile encriptate
-
+
Create decrypted contents (*.app)
Creați conținuturi decriptate (*.app)
-
+
Use local files, if they exist
Folosiți fișiere locale, dacă există
@@ -488,7 +493,7 @@ li.checked::marker { content: "\2612"; }
Folosiți Wii U NUS (mai rapid, doar pentru Wii/vWii)
-
+
Apply patches to IOS (Applies to WADs only)
Aplicați patch-uri pentru IOS (se aplică doar pentru WAD-uri)
@@ -498,7 +503,7 @@ li.checked::marker { content: "\2612"; }
vWII Setări titlu
-
+
Re-encrypt title using the Wii Common Key
Re-encriptați titlul folosind cheia comună Wii
@@ -508,12 +513,12 @@ li.checked::marker { content: "\2612"; }
Setări aplicație
-
+
Check for updates on startup
Verificați dacă există actualizări la startup
-
+
Use a custom download directory
Folosiți un director de descărcare propriu
@@ -538,7 +543,7 @@ li.checked::marker { content: "\2612"; }
Cale de ieșire
-
+
Could not check for updates.
@@ -547,7 +552,7 @@ Could not check for updates.
Nu s-a putut verifica dacă există actualizări.
-
+
There's a newer version of NUSGet available!
@@ -556,7 +561,7 @@ There's a newer version of NUSGet available!
O nouă versiune de NUSGet este valabilă!
-
+
You're running the latest release of NUSGet.