Scripts/resources/[qb]/[qb_extras]/qb-cityhall/locales/pl.lua
2024-12-29 21:07:50 +01:00

36 lines
1.5 KiB
Lua

local Translations = {
error = {
not_in_range = 'Za daleko od ratusza'
},
success = {
recived_license = 'Otrzymałeś %{value} za $50'
},
info = {
new_job_app = 'Your application was sent to the boss of (%{job})',
bilp_text = 'Usługi Miejskie',
city_services_menu = '~g~E~w~ - Menu Usług Miejskich',
id_card = 'Dowód Osobisty',
driver_license = 'Prawo Jazdy',
weaponlicense = 'Licencja na Broń',
new_job = 'Gratulacje z powodu nowej pracy! (%{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 = 'Pan',
mrs = 'Pani',
sender = 'Ratusz',
subject = 'Prośba o lekcje jazdy',
message = 'Witaj %{gender} %{lastname}<br /><br />Właśnie otrzymaliśmy wiadomość, że ktoś chce wziąć lekcje jazdy<br />Jeśli chcesz uczyć, skontaktuj się z nami:<br />Imię: <strong>%{firstname} %{lastname}</strong><br />Numer: <strong>%{phone}</strong><br/><br/>Z poważaniem,<br />Ratusz Los Santos'
}
}
if GetConvar('qb_locale', 'en') == 'pl' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end