From cccb4d05769daa2ae4348dad85df7cef8befdb51 Mon Sep 17 00:00:00 2001 From: IRedScarface <68557923+IRedScarface@users.noreply.github.com> Date: Thu, 26 Dec 2024 07:53:45 +0300 Subject: [PATCH] Update tr.lua --- locale/tr.lua | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/locale/tr.lua b/locale/tr.lua index 630cc1457..d1237211f 100644 --- a/locale/tr.lua +++ b/locale/tr.lua @@ -124,7 +124,10 @@ local Translations = { }, } -Lang = Lang or Locale:new({ - phrases = Translations, - warnOnMissing = true -}) +if GetConvar('qb_locale', 'en') == 'tr' then + Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true, + fallbackLang = Lang, + }) +end