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

Added Spanish locale #560

Merged
merged 2 commits into from
Sep 5, 2024
Merged
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
57 changes: 57 additions & 0 deletions locales/es.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
local Translations = {
progress = {
['snowballs'] = 'Recolectando bolas de nieve..',
},
notify = {
['failed'] = 'Fallido',
['canceled'] = 'Cancelado',
['vlocked'] = 'Vehículo Bloqueado',
['notowned'] = '¡No posees este objeto!',
['missitem'] = '¡No tienes este objeto!',
['nonb'] = '¡No hay nadie cerca!',
['noaccess'] = 'No Accesible',
['nosell'] = 'No puedes vender este objeto..',
['itemexist'] = 'El objeto no existe',
['notencash'] = 'No tienes suficiente dinero..',
['noitem'] = 'No tienes los objetos adecuados..',
['gsitem'] = '¿No puedes darte un objeto a ti mismo?',
['tftgitem'] = '¡Estás demasiado lejos para dar objetos!',
['infound'] = '¡Objeto que intentaste dar no encontrado!',
['iifound'] = '¡Objeto incorrecto encontrado, intenta de nuevo!',
['gitemrec'] = 'Recibiste ',
['gitemfrom'] = ' De ',
['gitemyg'] = 'Diste ',
['gitinvfull'] = '¡El inventario del otro jugador está lleno!',
['giymif'] = '¡Tu inventario está lleno!',
['gitydhei'] = 'No tienes suficiente del objeto',
['gitydhitt'] = 'No tienes suficientes objetos para transferir',
['navt'] = 'No es un tipo válido..',
['anfoc'] = 'Argumentos no rellenados correctamente..',
['yhg'] = 'Has Dado ',
['cgitem'] = '¡No se puede dar el objeto!',
['idne'] = 'El Objeto No Existe',
['pdne'] = 'El Jugador No Está En Línea',
},
inf_mapping = {
['opn_inv'] = 'Abrir Inventario',
['tog_slots'] = 'Alterna ranuras de teclas',
['use_item'] = 'Usa el objeto en la ranura',
},
menu = {
['vending'] = 'Máquina Expendedora',
['bin'] = 'Abrir Contenedor de Basura',
['craft'] = 'Crear',
['o_bag'] = 'Abrir Bolsa',
},
interaction = {
['craft'] = '~g~E~w~ - Fabricar',
},
}

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