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

feat(banking): add .nl locales #143

Merged
merged 2 commits into from
Oct 25, 2024
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
39 changes: 39 additions & 0 deletions locales/nl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
local Translations = {
success = {
withdraw = 'Sucessvol opgenomen',
deposit = 'Succesvol gestort',
transfer = 'Succesvol overgeschreven',
account = 'Account aangemaakt',
rename = 'Naamaanpassing is gelukt',
delete = 'Account verwijderd',
userAdd = 'Account aangemaakt',
userRemove = 'Account verwijderd',
card = 'Kaart aangemaakt',
give = '€%s cash gegeven',
receive = '€%s cash ontvangen',
},
error = {
error = 'Er is error opgedoken',
access = 'Je bent niet gemachtigd',
account = 'Account niet gevonden',
accounts = 'Maximum aantal account gemaakt',
user = 'Account reeds toegevoegd',
noUser = 'Account niet gevonden',
money = 'Je hebt niet genoeg geld',
pin = 'Foutieve pincode',
card = 'Geen bankkaart gevonden',
amount = 'Foute hoeveelheid',
toofar = 'Je bent te ver weg',
},
progress = {
atm = 'ATM gebruiken',
}
}

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