-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #221 from Cocodrulo/feature/es-locale
feat(locales): add Spanish translations
- Loading branch information
Showing
1 changed file
with
110 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,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 |