-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upload of the new locale with traslations in spanish.^^
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
local Translations = { | ||
error = { | ||
["invalid_job"] = "No creo que trabaje aquí...", | ||
["invalid_items"] = "¡No tienes el item correcto!", | ||
["no_items"] = "No tienes ningun item", | ||
}, | ||
progress = { | ||
["pick_grapes"] = "Recogiendo uvas..", | ||
["process_grapes"] = "Procesando uvas.. ..", | ||
}, | ||
task = { | ||
["start_task"] = "[E] Para empezar", | ||
["load_ingrediants"] = "[E] Cargar Ingredientes", | ||
["wine_process"] = "[E] Comenzar la elaboracion del vino", | ||
["get_wine"] = "[E] Obtener Vino", | ||
["make_grape_juice"] = "[E] Hacer zumo de uva (Mosto)", | ||
["countdown"] = "Tiempo restante %{time}s", | ||
['cancel_task'] = "Has cancelado la tarea" | ||
}, | ||
text = { | ||
["start_shift"] = "¡Has comenzado tu turno en el viñedo!", | ||
["end_shift"] = "¡Has finalizado tu turno en el viñedo!", | ||
["valid_zone"] = "Zona Valida!", | ||
["invalid_zone"] = "Zona NO Valida!", | ||
["zone_entered"] = "%{zone} Entrando en zona", | ||
["zone_exited"] = "%{zone} Saliendo de zona", | ||
} | ||
} | ||
Lang = Locale:new({phrases = Translations, warnOnMissing = true}) |