From 16ad12cbf1241ae598c953743edd47807cbaba69 Mon Sep 17 00:00:00 2001 From: shanruto Date: Sat, 2 Apr 2022 17:31:36 +0200 Subject: [PATCH] Add Serbian translation --- locale/rs.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/rs.lua diff --git a/locale/rs.lua b/locale/rs.lua new file mode 100644 index 0000000..803eb88 --- /dev/null +++ b/locale/rs.lua @@ -0,0 +1,25 @@ +local Translations = { + error = { + not_online = 'Igrac nije online', + wrong_format = 'Netacan format', + missing_args = 'Nije unet svaki argument (x, y, z)', + missing_args2 = 'Svi argumenti moraju biti popunjeni!', + no_access = 'Nemate pristup ovoj komandi', + company_too_poor = 'Vas poslodavac nema para', + item_not_exist = 'Stavka ne postoji', + too_heavy = 'Inventar je prepun' + }, + success = {}, + info = { + received_paycheck = 'Dobili ste platu od $%{value}', + job_info = 'Posao: %{value} | Rank: %{value2} | Duznost: %{value3}', + gang_info = 'Banda: %{value} | Rank: %{value2}', + on_duty = 'Sada ste na duznosti!', + off_duty = 'Sada ste van duznosti!' + } +} + +Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true +})