Skip to content

Commit

Permalink
feat(banking): add .nl locales
Browse files Browse the repository at this point in the history
  • Loading branch information
SjurdVrancken authored Aug 17, 2024
1 parent 8620a07 commit a75b94f
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions locales/nl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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',
}
}

Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true
})

0 comments on commit a75b94f

Please sign in to comment.