From 43b74b7778d07f4c58e524afdbed871369af53c8 Mon Sep 17 00:00:00 2001 From: NicoDK6400 <70647361+NicoDK6400@users.noreply.github.com> Date: Thu, 13 Jan 2022 18:50:06 +0100 Subject: [PATCH] Added danish translation Just another one for the translations --- locale/da.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/da.lua diff --git a/locale/da.lua b/locale/da.lua new file mode 100644 index 0000000..a442ead --- /dev/null +++ b/locale/da.lua @@ -0,0 +1,25 @@ +local Translations = { + error = { + not_online = 'Spiller ikke online', + wrong_format = 'ugyldigt format', + missing_args = 'Ikke alle argumenter er udfyldt (x, y, z)', + missing_args2 = 'Alle argumenter skal være udfyldt!', + no_access = 'Ingen adgang til denne command', + company_too_poor = 'Din ansat er fattig', + item_not_exist = 'Enheden eksistere ikke', + too_heavy = 'Dit inventory er for fyldt' + }, + success = {}, + info = { + received_paycheck = 'Du modtog din lønseddel på %{value} DKK', + job_info = 'Arbejde: %{value} | Grad: %{value2} | Job: %{value3}', + gang_info = 'Bande: %{value} | Grad: %{value2}', + on_duty = 'Du er nu på arbejde, god arbejdslyst!', + off_duty = 'Du er gået af arbejde!' + } +} + +Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true +})