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

Merged
merged 2 commits into from
Nov 13, 2024
Merged
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
30 changes: 30 additions & 0 deletions locales/nl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
local Translations = {
error = {
minimum_store_robbery_police = "Er is niet genoeg politie, er zijn (%{MinimumStoreRobberyPolice} flikken nodig)",
not_driver = "Je bent geen chauffeur",
demolish_vehicle = "Je kunt nu geen voertuig kapot maken",
process_canceled = "Process gestopt..",
you_broke_the_lock_pick = "De lockpick is kapot gegaan, loserke",
},
text = {
the_cash_register_is_empty = "De kassa is leeg",
try_combination = "~g~E~w~ - Probeer combinatie",
safe_opened = "De kluis is open!",
emptying_the_register= "Haalt alles leeg..",
safe_code = "Kluis Code: "
},
email = {
shop_robbery = "SICAD101 | Winkeloverval",
someone_is_trying_to_rob_a_store = "Potentiele winkeloverval %{street} (CAMERA ID: %{cameraId1})",
storerobbery_progress = "Er is een winkeloverval bezig!"
},
}

if GetConvar('qb_locale', 'en') == 'nl' then
Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end

Loading