qbcore-framework / qb-inventory

Slot Based Inventory System Used With QB-Core :school_satchel:
GNU General Public License v3.0
51 stars 370 forks source link

Added Japanese locales #453

Closed DekoKiyo closed 10 months ago

DekoKiyo commented 11 months ago

Description

Add Japanese localization file to this script.

Checklist

DekoKiyo commented 11 months ago

Sorry I mistook file name, it is "jp.lua" but correctly "ja.lua" Fixed

Edvo1901 commented 11 months ago

Can you edit your PR to fit the autoswitch locales?

for example:

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