-
Notifications
You must be signed in to change notification settings - Fork 126
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 #61 from Swellington-Soares/main
Added pt-br language file
- Loading branch information
Showing
1 changed file
with
51 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,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 |