-
Notifications
You must be signed in to change notification settings - Fork 162
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 #70 from SjurdVrancken/main
feat(locales): add .nl locales
- Loading branch information
Showing
1 changed file
with
30 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,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 | ||
|