Skip to content

Commit

Permalink
fix(crypto): added missing if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
SjurdVrancken authored Oct 14, 2024
1 parent d366591 commit d85bdb3
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions locales/nl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ local Translations = {
}
}

Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true
})
if GetConvar('qb_locale', 'en') == 'nl' then
Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end

0 comments on commit d85bdb3

Please sign in to comment.