-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #143 from SjurdVrancken/main
feat(banking): add .nl locales
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |