35 lines
1.5 KiB
Lua
35 lines
1.5 KiB
Lua
|
local Translations = {
|
||
|
error = {
|
||
|
not_in_range = 'Te ver van het stadhuis'
|
||
|
},
|
||
|
success = {
|
||
|
recived_license = 'U heeft uw %{value} ontvangen voor $50'
|
||
|
},
|
||
|
info = {
|
||
|
new_job_app = 'Your application was sent to the boss of (%{job})',
|
||
|
bilp_text = 'Stadsdiensten',
|
||
|
city_services_menu = '~g~E~w~ - Stadsdiensten Menu',
|
||
|
id_card = 'ID Kaart',
|
||
|
driver_license = 'Rijbewijs',
|
||
|
weaponlicense = 'Vuurwapen Licentie',
|
||
|
new_job = 'Gefeliciteerd met je nieuwe baan! (%{job})'
|
||
|
},
|
||
|
email = {
|
||
|
jobAppSender = "%{job}",
|
||
|
jobAppSub = "Thank you for applying to %(job).",
|
||
|
jobAppMsg = "Hello %{gender} %{lastname}<br /><br />%{job} has received your application.<br /><br />The boss is looking into your request and will reach out to you for an interview at their earliest convienance.<br /><br />Once again, thank you for your application.",
|
||
|
mr = 'Dhr',
|
||
|
mrs = 'Mvr',
|
||
|
sender = 'Gemeente',
|
||
|
subject = 'Aanvraag Rijles',
|
||
|
message = 'Hallo %{gender} %{lastname}<br /><br />We hebben zojuist bericht gekregen dat iemand rijles wil gaan volgen<br />Als je bereid bent om les te geven, neem dan contact met ons op:<br />Naam: <strong>%{firstname} %{lastname}</strong><br />Telefoonnummer: <strong>%{phone}</strong><br/><br/>Vriendelijke groeten,<br />Gemeente Los Santos'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if GetConvar('qb_locale', 'en') == 'nl' then
|
||
|
Lang = Locale:new({
|
||
|
phrases = Translations,
|
||
|
warnOnMissing = true,
|
||
|
fallbackLang = Lang,
|
||
|
})
|
||
|
end
|