2025-04-05 22:25:06 +00:00

34 lines
1.3 KiB
Lua

local Translations = {
error = {
you_dont_have_a_cryptostick = 'Não possui um Cryptostick',
cryptostick_malfunctioned = 'Cryptostick com defeito'
},
success = {
you_have_exchanged_your_cryptostick_for = 'Trocou seu Cryptostick por: %{amount} QBit(s)'
},
credit = {
there_are_amount_credited = 'Foram creditados %{amount} Qbit(s)!',
you_have_qbit_purchased = 'Comprou %{dataCoins} Qbit(s)!'
},
debit = {
you_have_sold = 'Vendeu %{dataCoins} Qbit(s)!'
},
text = {
enter_usb = '[E] - Colocar USB',
system_is_rebooting = 'O sistema está a reiniciar - %{rebootInfoPercentage} %',
you_have_not_given_a_new_value = 'Não deu um novo valor .. Valor actual: %{crypto}',
this_crypto_does_not_exist = 'Esta crypto não existe :(, Disponivel: Qbit',
you_have_not_provided_crypto_available_qbit = 'Não forneceu crypto, Disponivel: Qbit',
the_qbit_has_a_value_of = 'Qbit tem um valor de: %{crypto}',
you_have_with_a_value_of = 'Tem: %{playerPlayerDataMoneyCrypto} QBit, com uma valor de: %{mypocket},-'
}
}
if GetConvar('qb_locale', 'en') == 'pt' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end