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

34 lines
1.3 KiB
Lua

local Translations = {
error = {
you_dont_have_a_cryptostick = 'Du har ikke en cryptostick',
cryptostick_malfunctioned = 'Cryptostick defekt'
},
success = {
you_have_exchanged_your_cryptostick_for = 'Du har byttet dit Cryptostick til: %{amount} QBit(s)'
},
credit = {
there_are_amount_credited = 'Der er %{amount} Qbit(s) krediteret!',
you_have_qbit_purchased = 'Du har købt %{dataCoins} Qbit(s)!'
},
depreciation = {
you_have_sold = 'Du har %{dataCoins} Qbit(s) solgt!'
},
text = {
enter_usb = '[E] - Indtast USB',
system_is_rebooting = 'Systemet genstarter - %{rebootInfoPercentage} %',
you_have_not_given_a_new_value = 'Du har ikke givet en ny værdi .. Nuværende værdier: %{crypto}',
this_crypto_does_not_exist = 'Denne krypto eksisterer ikke :(, tilgængelig: Qbit',
you_have_not_provided_crypto_available_qbit = 'Du har ikke leveret Krypto, tilgængelig: Qbit',
the_qbit_has_a_value_of = 'Qbit\'en har en værdi på: %{crypto}',
you_have_with_a_value_of = 'Du har: %{playerPlayerDataMoneyCrypto} QBit, med en værdi på: %{mypocket},-'
}
}
if GetConvar('qb_locale', 'en') == 'da' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end