Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD: Spanish translation #19

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions lib/l10n/app_es.arb
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"appTitle": "Retro",
"home_createOption": "Crear OTR",
"home_createOptionSubtitle": "Crear un OTR para SoH",
"home_inspectOption": "Inspeccionar OTR",
"home_inspectOptionSubtitle": "Inspeccionar el contenido de un OTR",
"createSelectionScreen_title": "Crear selección",
"createSelectionScreen_subtitle": "Seleccione el tipo de selección que desea crear",
"createSelectionScreen_nonHdTex": "Reemplazar texturas (no HD)",
"createSelectionScreen_customSequences": "Secuencias personalizadas",
"createSelectionScreen_custom": "Personalizada",
"createReplaceTexturesScreen_Option": "Reemplazar texturas",
"createReplaceTexturesScreen_OptionDescription": "Reemplace texturas de un OTR con otras personalizadas (no HD)",
"questionContentView_mainQuestion": "¿Ya tiene una carpeta de reemplazo de texturas?",
"questionContentView_mainText": "Si tiene una carpeta generada por esta herramienta con reemplazos, seleccione Sí.\nDe lo contrario, seleccione No y le ayudaremos con la creación de reemplazos.",
"questionContentView_yes": "Sí",
"questionContentView_no": "No",
"otrContentView_otrPath": "Ruta del OTR",
"otrContentView_otrSelect": "Seleccionar",
"otrContentView_details": "Detalles",
"otrContentView_step1": "1. Seleccione un OTR del que desee reemplazar texturas",
"otrContentView_step2": "2. Extraemos las texturas como PNG con la estructura de carpetas correcta",
"otrContentView_step3": "3. Reemplace las texturas de la carpeta de extracción",
"otrContentView_step4": "4. Ejecute este procedimiento de nuevo y seleccione la carpeta de extracción",
"otrContentView_step5": "5. ¡Generamos un OTR con las texturas modificadas! 🚀",
"otrContentView_processing": "Procesando...",
"folderContentView_customTexturePath": "Carpeta de reemplazos de texturas personalizadas",
"folderContentView_selectButton": "Seleccionar",
"folderContentView_stageTextures": "Agregar texturas",
"createCustomSequences_addCustomSequences": "Agregar secuencias personalizadas",
"createCustomSequences_addCustomSequencesDescription": "Seleccione una carpeta con secuencias y archivos meta",
"createCustomSequences_SequencesFolderPath": "Ruta de la carpeta de secuencias",
"createCustomSequences_selectButton": "Seleccionar",
"createCustomSequences_stageFiles": "Agregar archivos",
"createFinishScreen_finish": "Finalizar",
"createFinishScreen_finishSubtitle": "Compruebe los detalles de su OTR",
"createFinishScreen_generateOtr": "Generar OTR",
"components_ephemeralBar_finalizeOtr": "Finalizar OTR ⚡️",
"createCustomScreen_title": "Por ruta",
"createCustomScreen_subtitle": "Seleccione archivos que desee colocar en la ruta",
"createCustomScreen_labelPath": "Ruta",
"createCustomScreen_selectButton": "Seleccionar archivos",
"createCustomScreen_fileToInsert": "Archivos para insertar: ",
"createCustomScreen_stageFiles": "Agregar archivos",
"inspectOtrScreen_inspectOtr": "Inspeccionar OTR",
"inspectOtrScreen_inspectOtrSubtitle": "Inspeccione el contenido de un OTR",
"inspectOtrScreen_noOtrSelected": "No se ha seleccionado un OTR",
"inspectOtrScreen_selectButton": "Seleccionar"
}
3 changes: 2 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ class Retro extends StatelessWidget {
supportedLocales: const [
Locale('en', ''),
Locale('de', ''),
Locale('fr', '')
Locale('fr', ''),
Locale('es', '')
],
darkTheme: darkTheme(),
theme: lightTheme(),
Expand Down