forked from Project-Sloth/ps-hud
-
Notifications
You must be signed in to change notification settings - Fork 3
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 Project-Sloth#70 from buddizer/patch-1
Patch 1
- Loading branch information
Showing
20 changed files
with
168 additions
and
44 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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,21 +1,35 @@ | ||
local Translations = { | ||
notify = { | ||
["hud_settings_loaded"] = "Configuración de HUD cargada.", | ||
["hud_restart"] = "HUD se está reiniciando.", | ||
["hud_start"] = "HUD funcionando.", | ||
["hud_command_info"] = "Este comando restablece la configuración del HUD", | ||
["load_square_map"] = "Cargando el mapa cuadrado.", | ||
["loaded_square_map"] = "El mapa cuadrado se ha cargado.", | ||
["load_circle_map"] = "Cargando el mapa circular.", | ||
["loaded_circle_map"] = "El mapa circular se ha cargado.", | ||
["cinematic_on"] = "Modo cinematográfico activado!", | ||
["cinematic_off"] = "Modo cinematográfico desactivado.", | ||
["engine_on"] = "¡Motor arrancado!", | ||
["engine_off"] = "Motor apagado.", | ||
["hud_settings_loaded"] = "Configuración de HUD cargada", | ||
["hud_restart"] = "El HUD se está reiniciando...", | ||
["hud_start"] = "El HUD ya está funcionando", | ||
["hud_command_info"] = "Este comando reestablece la configuración actual del HUD", | ||
["load_square_map"] = "Cargando mapa cuadrado...", | ||
["loaded_square_map"] = "El mapa cuadrado se cargó correctamente", | ||
["load_circle_map"] = "Cargando mapa circular...", | ||
["loaded_circle_map"] = "El mapa circular se cargó correctamente", | ||
["cinematic_on"] = "Modo cinematográfico activado", | ||
["cinematic_off"] = "Modo cinematográfico desactivado", | ||
["engine_on"] = "Motor encedido", | ||
["engine_off"] = "Motor apagado", | ||
["low_fuel"] = "¡Nivel de gasolina bajo!", | ||
["access_denied"] = "¿Que haces? ¡No estas autorizado!", | ||
["stress_gain"] = "Te estás sintiéndo más estresado/a.", | ||
["stress_removed"] = "Te estás sintiéndo más relajado/a." | ||
["access_denied"] = "¡No estás autorizado!", | ||
["stress_gain"] = "Te estás sintiéndo más estresado(o)", | ||
["stress_removed"] = "Te estás sintiéndo más relajado(a)" | ||
}, | ||
info = { | ||
["toggle_engine"] = "Encender/apagar motor", | ||
["open_menu"] = "Abrir menú", | ||
["check_cash_balance"] = "Revisar balance de efectivo", | ||
["check_bank_balance"] = "Revisar balance de banco", | ||
["toggle_dev_mode"] = "Habilitar/deshabilitar modo desarrollador", | ||
} | ||
} | ||
Lang = Locale:new({phrases = Translations, warnOnMissing = true}) | ||
|
||
if GetConvar('qb_locale', 'en') == 'es' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang, | ||
}) | ||
end |
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
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
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
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
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
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
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
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
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
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
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
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