Create fi.lua

This commit is contained in:
SteffeDEV
2022-01-11 18:44:44 +02:00
committed by GitHub
parent 12179d1608
commit d621a62785
+25
View File
@@ -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
})