Skip to content

Commit

Permalink
Merge pull request #73 from Borreke0/patch-2
Browse files Browse the repository at this point in the history
Create nl.lua
  • Loading branch information
GhzGarage authored Jan 23, 2024
2 parents 33c5a90 + 46458d4 commit 5bce8a3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions locales/nl.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
local Translations = {
error = {
process_canceled = "Proces gestopt",
plant_has_died = "De plant is gestorven. Druk ~r~ E ~w~ om de plant te verwijderen.",
cant_place_here = "Kan hier niet geplaatst worden",
not_safe_here = "Het is hier niet veilig, probeer het in huis",
not_need_nutrition = "Deze plant heeft geen voeding nodig",
this_plant_no_longer_exists = "Deze plant bestaat niet meer",
house_not_found = "Huis werd niet gevonden",
you_dont_have_enough_resealable_bags = "Je hebt niet genoeg verkoopbare zakken",
},
text = {
sort = 'Soort:',
harvest_plant = 'Druk ~g~ E ~w~ om te oogsten.',
nutrition = "Voeding:",
health = "Gezondheid:",
progress = "Voortgang:",
harvesting_plant = "Plant aan het oogsten",
planting = "Aan het planten",
feeding_plant = "Plant aan het voeden",
the_plant_has_been_harvested = "De plant is geoogst",
removing_the_plant = "Plant aan het verwijderen",
stage = "Huidig stadium:",
highestStage = "Oogst stadium:",
},
}

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

0 comments on commit 5bce8a3

Please sign in to comment.