Skip to content

Commit

Permalink
Merge pull request #70 from SjurdVrancken/main
Browse files Browse the repository at this point in the history
feat(locales): add .nl locales
  • Loading branch information
GhzGarage authored Nov 13, 2024
2 parents 211e5e9 + 459408b commit 6b28fdf
Showing 1 changed file with 30 additions and 0 deletions.
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

0 comments on commit 6b28fdf

Please sign in to comment.