Skip to content

Commit

Permalink
Merge pull request #143 from SjurdVrancken/main
Browse files Browse the repository at this point in the history
feat(banking): add .nl locales
  • Loading branch information
GhzGarage authored Oct 25, 2024
2 parents 8620a07 + 27ef6dc commit 2f6f3ec
Showing 1 changed file with 39 additions and 0 deletions.
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

0 comments on commit 2f6f3ec

Please sign in to comment.