feat (locale/lv): Added latvian.

I'm personally a native speaker and I can approve this is correct.
This commit is contained in:
Casper
2022-02-19 08:37:54 +02:00
committed by GitHub
parent 94a1f43734
commit 93be2817b1
+25
View File
@@ -0,0 +1,25 @@
local Translations = {
error = {
not_online = 'Spēlētājs nav online',
wrong_format = 'Nepareizs formāts',
missing_args = 'Ne visi argumenti tika ievadīti (x, y, z)',
missing_args2 = 'Visiem argumentiem ir jābut aizpildītiem!',
no_access = 'Nav piekļuve šai commandai',
company_too_poor = 'Jūsu darba vedējs ir nabadzīgs',
item_not_exist = 'Šī lieta nēeksistē',
too_heavy = 'Inventārs ir pārāk pilns'
},
success = {},
info = {
received_paycheck = 'Jūs esat saņēmuši savu algu par $%{value}',
job_info = 'Darbs: %{value} | Pakāpe: %{value2} | Pienākums: %{value3}',
gang_info = 'Banda: %{value} | Pakāpe: %{value2}',
on_duty = 'Jūs tagad esat dienestā!',
off_duty = 'Jūs tagad esat atbrīvots no dienesta!'
}
}
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true
})