-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8770076
commit d366591
Showing
1 changed file
with
22 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,22 @@ | ||
local Translations = { | ||
menus = { | ||
header = 'Crafting Menu', | ||
pickupworkBench = 'Pak werkbank op', | ||
entercraftAmount = 'Voer hoeveelheid in:', | ||
}, | ||
notifications = { | ||
pickupBench = 'Je hebt je werkbank opgepakt.', | ||
invalidAmount = 'Ongeldige hoeveelheid', | ||
invalidInput = 'Ongeldige invoer', | ||
notenoughMaterials = "Je hebt niet genoeg materialen!", | ||
craftingCancelled = 'Je hebt je crafting geannuleerd', | ||
tablePlace = 'Je hebt je werkbank geplaatst', | ||
craftMessage = 'Je hebt een %s gemaakt', | ||
xpGain = 'Je hebt %d XP verkregen %s', | ||
} | ||
} | ||
|
||
Lang = Lang or Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true | ||
}) |