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(locales): add .nl locales #70

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
45 changes: 45 additions & 0 deletions locales/nl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
local Translations = {
error = {
finish_work = "Maak eerst al je werk af",
vehicle_not_correct = "Dit is niet het juiste voertuig",
failed = "Tis mislukt",
not_towing_vehicle = "Je moet in je takeldienst voertuig zitten",
too_far_away = "Je bent iets te ver weg",
no_work_done = "Er is nog geen werk",
no_deposit = "$%{value} Waarborg nodig",
},
success = {
paid_with_cash = "$%{value} Waarborg betaald met cash",
paid_with_bank = "$%{value} Waarborg betaald van de bank",
refund_to_cash = "$%{value} Waarborg betaald met cash",
you_earned = "Je hebt €%{value} verdiend",
},
menu = {
header = "Beschikbare voertuigen",
close_menu = "⬅ Sluit Menu",
},
mission = {
delivered_vehicle = "Je hebt een voertuig afgeleverd",
get_new_vehicle = "Je kan een nieuw voertuig ophalen",
towing_vehicle = "Voertuig takelen..",
goto_depot = "Breng het voertuig naar den depot",
vehicle_towed = "Voertuig getakeld",
untowing_vehicle = "Zet het voertuig terug op de grond",
vehicle_takenoff = "Voertuig is succesvol op de grond geplaatst",
},
info = {
tow = "Takel een voertuig op uw takeldienstding",
toggle_npc = "Zet NPC job aan",
skick = "Niet exploiten, voale vettigen das!",
},
label = {
payslip = "Betalingsbewijs",
vehicle = "Voertuig",
npcz = "NPCZone",
}
}

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