From 9866ed119bb166a621ffb4f761acabfb58598016 Mon Sep 17 00:00:00 2001 From: Ducko Date: Fri, 20 Oct 2023 16:08:42 +0200 Subject: [PATCH] Create da.lua --- locales/da.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 locales/da.lua diff --git a/locales/da.lua b/locales/da.lua new file mode 100644 index 0000000..5e97e1d --- /dev/null +++ b/locales/da.lua @@ -0,0 +1,15 @@ +local Translations = { + ui = { + last_location = "Seneste Placering", + confirm = "Bekræft", + where_would_you_like_to_start = "Hvor vil du gerne starte?", + } +} + +if GetConvar('qb_locale', 'en') == 'da' then + Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true, + fallbackLang = Lang, + }) +end \ No newline at end of file