Skip to content

Commit

Permalink
Merge pull request #61 from Swellington-Soares/main
Browse files Browse the repository at this point in the history
Added pt-br language file
  • Loading branch information
GhzGarage authored Sep 25, 2023
2 parents 6ab159f + 282d2ee commit acf8b5a
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions locales/pt-br.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
local Translations = {
error = {
no_money = 'Dinheiro insuficiente',
too_far = 'Você está muito longe do seu Carrinho de Cachorro-Quente',
no_stand = 'Você não possui um carrinho de cachorro-quente',
cust_refused = 'Cliente recusou!',
no_stand_found = 'Seu carrinho de cachorro-quente não estava em lugar algum. Você não receberá seu depósito de volta!',
no_more = 'Você não tem mais %{value} em frente ao conselho',
deposit_notreturned = 'Você não tinha um Carrinho de Cachorro-Quente',
no_dogs = 'Você não tem nenhum cachorro-quente',
},
success = {
deposit = 'Você pagou um depósito de $%{deposit}!',
deposit_returned = 'Seu depósito de $%{deposit} foi devolvido!',
sold_hotdogs = '%{value} x Cachorro(s)-Quente(s) vendido(s) por $%{value2}',
made_hotdog = 'Você fez %{value} Cachorros-Quentes',
made_luck_hotdog = 'Você fez %{value} x %{value2} Cachorros-Quentes',
},
info = {
command = "Excluir Carrinho (Apenas para Administradores)",
blip_name = 'Carrinho de Cachorro-Quente',
start_working = '[E] Começar a Trabalhar',
start_work = 'Começar a Trabalhar',
stop_working = '[E] Parar de Trabalhar',
stop_work = 'Parar de Trabalhar',
grab_stall = '[~g~G~s~] Pegar Lugar',
drop_stall = '[~g~G~s~] Liberar Lugar',
grab = 'Pegar Lugar',
prepare = 'Preparar Cachorro-Quente',
toggle_sell = 'Alternar Venda',
selling_prep = '[~g~E~s~] Preparar Cachorro-Quente [Venda: ~g~Vendendo~w~]',
not_selling = '[~g~E~s~] Preparar Cachorro-Quente [Venda: ~r~Não Vendendo~w~]',
sell_dogs = '[~g~7~s~] Vender %{value} x Cachorros-Quentes por $%{value2} / [~g~8~s~] Rejeitar',
sell_dogs_target = 'Vender %{value} x Cachorros-Quentes por $%{value2}',
admin_removed = "Carrinho de Cachorro-Quente Removido",
label_a = "Perfeito (A)",
label_b = "Raro (B)",
label_c = "Comum (C)"
},
keymapping = {
gkey = 'Solte o Carrinho de Cachorro-Quente',
}
}

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

0 comments on commit acf8b5a

Please sign in to comment.