Skip to content

Commit

Permalink
Merge pull request #221 from Cocodrulo/feature/es-locale
Browse files Browse the repository at this point in the history
feat(locales): add Spanish translations
  • Loading branch information
GhzGarage authored Nov 13, 2024
2 parents 8d715a5 + 608470a commit 1481c66
Showing 1 changed file with 110 additions and 0 deletions.
110 changes: 110 additions & 0 deletions locales/es.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
local Translations = {
store = {
barber = "Peluquería",
surgeon = "Cirujano plástico",
clothing = "Tienda de ropa",
outfitchanger = "Cambiador de atuendo"
},

outfits = {
roomOutfits = "Atuendos preestablecidos",
myOutfits = "Mis atuendos",
character = "Ropa",
accessoires = "Accesorios"
},

menu = {
hair = "Cabello",
character = "Ropa",
accessoires = "Accesorios",
features = "Características"
},

ui = {
select = "Seleccionar",
delete = "Eliminar",
select_outfit = "Seleccionar Atuendo",
player_model = "Modelo del Jugador",
model = "Modelo",
mother = "Madre",
father = "Padre",
texture = "Textura",
type = "Tipo",
item = "Elemento",
skin_color = "Color de piel",
parent_mixer = "Mezcla de padres",
shape_mix = "Mezcla de forma",
skin_mix = "Mezcla de piel",
arms = "Brazos",
undershirt = "Camiseta interior/Cinturones",
color = "Color",
jacket = "Chaquetas/Tops",
vests = "Chalecos",
decals = "Calcomanías",
acessory = "Accesorios de cuello",
bags = "Bolsas",
pants = "Pantalones",
shoes = "Zapatos",
eye_color = "Color de ojos",
moles = "Lunares/Pecas",
opacity = "Opacidad",
nose_width = "Ancho de nariz",
width = "Ancho",
nose_peak_height = "Altura de pico de nariz",
height = "Altura",
nose_peak_length = "Longitud de pico de nariz",
length = "Longitud",
nose_bone_height = "Altura del hueso de la nariz",
nose_peak_lowering = "Bajada de pico de nariz",
lowering = "Descenso",
nose_bone_twist = "Torsión del hueso de la nariz",
twist = "Torsión",
eyebrow_height = "Altura de las cejas",
eyebrow_depth = "Profundidad de las cejas",
depth = "Profundidad",
cheeks_height = "Altura de mejillas",
cheeks_width = "Ancho de mejillas",
cheeks_depth = "Profundidad de mejillas",
eyes_opening = "Apertura de ojos",
opening = "Apertura",
lips_thickness = "Grosor de labios",
thickness = "Grosor",
jaw_bone_width = "Ancho del hueso de la mandíbula",
jaw_bone_length = "Longitud del hueso de la mandíbula",
chin_height = "Altura del mentón",
chin_width = "Ancho del mentón",
butt_chin = "Mentón partido",
size = "Tamaño",
neck_thickness = "Grosor del cuello",
ageing = "Envejecimiento",
hair = "Cabello",
eyebrow = "Cejas",
facial_hair = "Vello facial",
lipstick = "Lápiz labial",
blush = "Rubor",
makeup = "Maquillaje",
mask = "Máscaras",
hat = "Sombreros",
glasses = "Gafas",
ear_accessories = "Accesorios de oreja",
watch = "Relojes",
bracelet = "Pulseras",
btn_confirm = "Confirmar",
btn_cancel = "Cancelar",
btn_saveOutfit = "Guardar atuendo",
outfit_name = "Nombre del atuendo"
},

notify = {
error_bracelet = "No puedes quitar tu tobillera...",
info_deleteOutfit = "¡Has eliminado tu atuendo %{outfit}!"
}
}


if GetConvar('qb_locale', 'en') == 'es' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
})
end

0 comments on commit 1481c66

Please sign in to comment.