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

fix load dynamic language and add pt-br language #235

Merged
merged 1 commit into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ files {

shared_scripts {
'@qb-core/shared/locale.lua',
'locales/en.lua',
'locales/*.lua',
'config.lua',
}
Expand Down
49 changes: 49 additions & 0 deletions locales/pt-br.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
local Translations = {
notify = {
ydhk = 'Você não tem chaves deste veículo.',
nonear = 'Não há ninguém por perto para entregar as chaves',
vlock = 'Veículo trancado!',
vunlock = 'Veículo destrancado!',
vlockpick = 'Você conseguiu abrir a fechadura da porta!',
fvlockpick = 'Você não consegue encontrar as chaves e fica frustrado.',
vgkeys = 'Você entrega as chaves.',
vgetkeys = 'Você pegou as chaves do veículo!',
fpid = 'Preencha o ID do jogador e os argumentos da placa',
cjackfail = 'Falha na tentativa de roubo de carro!',
vehclose = 'Não há veículo próximo!',
},
progress = {
takekeys = 'Pegando as chaves do corpo...',
hskeys = 'Procurando as chaves do carro...',
acjack = 'Tentando roubo de carro...',
},
info = {
skeys = '~g~[H]~w~ - Procurar Chaves',
tlock = 'Alternar Trancamento do Veículo',
palert = 'Roubo de veículo em andamento. Tipo: ',
engine = 'Ligar/Desligar o Motor',
},
addcom = {
givekeys = 'Entrega as chaves a alguém. Se nenhum ID for fornecido, entrega para a pessoa mais próxima ou todos no veículo.',
givekeys_id = 'id',
givekeys_id_help = 'ID do jogador',
addkeys = 'Adiciona chaves a um veículo para alguém.',
addkeys_id = 'id',
addkeys_id_help = 'ID do jogador',
addkeys_plate = 'plate',
addkeys_plate_help = 'Placa',
rkeys = 'Remove as chaves de um veículo para alguém.',
rkeys_id = 'id',
rkeys_id_help = 'ID do jogador',
rkeys_plate = 'plate',
rkeys_plate_help = 'Placa',
}
}

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