-
Notifications
You must be signed in to change notification settings - Fork 133
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 #71 from Swellington-Soares/main
Added pt-br language file
- Loading branch information
Showing
1 changed file
with
33 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,33 @@ | ||
local Translations = { | ||
error = { | ||
you_dont_have_a_cryptostick = 'Você não tem um Cryptostick', | ||
cryptostick_malfunctioned = 'Cryptostick com mau funcionamento' | ||
}, | ||
success = { | ||
you_have_exchanged_your_cryptostick_for = 'Você trocou seu Cryptostick por: %{amount} QBit(s)' | ||
}, | ||
credit = { | ||
there_are_amount_credited = 'Você recebeu %{amount} Qbit(s) creditado(s)!', | ||
you_have_qbit_purchased = 'Você comprou %{dataCoins} Qbit(s)!' | ||
}, | ||
debit = { | ||
you_have_sold = 'Você vendeu %{dataCoins} Qbit(s)!' | ||
}, | ||
text = { | ||
enter_usb = '[E] - Inserir USB', | ||
system_is_rebooting = 'Sistema está reiniciando - %{rebootInfoPercentage} %', | ||
you_have_not_given_a_new_value = 'Você não forneceu um novo valor ... Valor atual: %{crypto}', | ||
this_crypto_does_not_exist = 'Esta criptomoeda não existe, criptomoeda(s) disponível(is): Qbit', | ||
you_have_not_provided_crypto_available_qbit = 'Você não forneceu Crypto, disponível: Qbit', | ||
the_qbit_has_a_value_of = 'Qbit tem um valor de: %{crypto}', | ||
you_have_with_a_value_of = 'Você tem %{playerPlayerDataMoneyCrypto} QBit(s) com um valor de: %{mypocket},-' | ||
} | ||
} | ||
|
||
if GetConvar('qb_locale', 'en') == 'pt-br' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang, | ||
}) | ||
end |