From d621a6278533581ade447f5e766dcc5444a43050 Mon Sep 17 00:00:00 2001 From: SteffeDEV <95856241+SteffeDEV@users.noreply.github.com> Date: Tue, 11 Jan 2022 18:44:44 +0200 Subject: [PATCH] Create fi.lua --- locale/fi.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/fi.lua diff --git a/locale/fi.lua b/locale/fi.lua new file mode 100644 index 0000000..6797b2c --- /dev/null +++ b/locale/fi.lua @@ -0,0 +1,25 @@ +local Translations = { + error = { + not_online = 'Pelaaja ei ole paikalla', + wrong_format = 'Virheellinen muoto', + missing_args = 'Kaikkia argumentteja ei ole syötetty (x, y, z)', + missing_args2 = 'Kaikkia argumentteja ei ole syötetty!', + no_access = 'Sinulla ei ole oikeuksia kyseiseen komentoon', + company_too_poor = 'Sinun firmasi on liian köyhä', + item_not_exist = 'Tätä itemiä ei ole olemassa', + too_heavy = 'Reppusi on liian täynnä' + }, + success = {}, + info = { + received_paycheck = 'Sinä sait palkan $%{value}', + job_info = 'Työ: %{value} | Arvo: %{value2} | Vuorossa: %{value3}', + gang_info = 'Jengi: %{value} | Arvo: %{value2}', + on_duty = 'Sinä olet nyt vuorossa!', + off_duty = 'Sinä poistuit vuorosta!' + } +} + +Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true +})