From 93be2817b12e0ccceed5bc3328600abe17d506b8 Mon Sep 17 00:00:00 2001 From: Casper <71441748+JajarGaming@users.noreply.github.com> Date: Sat, 19 Feb 2022 08:37:54 +0200 Subject: [PATCH] feat (locale/lv): Added latvian. I'm personally a native speaker and I can approve this is correct. --- locale/lv.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/lv.lua diff --git a/locale/lv.lua b/locale/lv.lua new file mode 100644 index 0000000..c7b4c38 --- /dev/null +++ b/locale/lv.lua @@ -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 +})