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 pt-br language #51

Merged
merged 1 commit into from
Oct 13, 2023
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
38 changes: 38 additions & 0 deletions locales/pt-br.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
local Translations = {
error = {
negative = 'Tentando vender uma quantidade negativa?',
no_melt = 'Você não me deu nada para derreter...',
no_items = 'Itens insuficientes',
inventory_full = 'Inventário muito cheio para receber todos os itens possíveis. Tente garantir que o inventário não esteja cheio da próxima vez. Itens perdidos: %{value}'
},
success = {
sold = 'Você vendeu %{value} x %{value2} por $%{value3}',
items_received = 'Você recebeu %{value} x %{value2}',
},
info = {
title = 'Loja de Penhores',
subject = 'Derretendo Itens',
message = 'Nós terminamos de derreter seus itens. Você pode vir buscá-los a qualquer momento.',
open_pawn = 'Abrir a Loja de Penhores',
sell = 'Vender Itens',
sell_pawn = 'Vender Itens para a Loja de Penhores',
melt = 'Derreter Itens',
melt_pawn = 'Abrir a Loja de Derretimento',
melt_pickup = 'Retirar Itens Derretidos',
pawn_closed = 'A loja de penhores está fechada. Volte entre %{value}:00 AM - %{value2}:00 PM',
sell_items = 'Preço de Venda $%{value}',
back = '⬅ Voltar',
melt_item = 'Derreter %{value}',
max = 'Quantidade Máxima %{value}',
submit = 'Derreter',
melt_wait = 'Me dê %{value} minutos e terei seus itens derretidos',
}
}

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