Files
red-valley/resources/[framework]/[addons]/[quasar]/qs-licenses/shared/translations.lua
Kotzu 978c9bc759 fix(qb-core): add global CreateUsableItem alias for qs-inventory compatibility
qs-inventory apelează CreateUsableItem ca funcție globală, dar qb-core definea doar QBCore.Functions.CreateUseableItem (cu 'e'). Adăugat alias global + fix 16 stringuri sparte în items.lua care blocau parsarea.
2026-04-02 00:08:19 +03:00

28 lines
1.0 KiB
Lua

Config = Config or {}
Config.Language = 'en'
Config.Languages = {
['en'] = {
['LICENSES_PROGRESS'] = 'Getting licensed...',
['LICENSES_SUCCESS'] = 'Thanks for waiting, here is your new',
['LICENSES_NO_MONEY'] = "You don't have enough money",
['LICENSES_WOMEN_LABEL'] = 'Female',
['LICENSES_MAN_LABEL'] = 'Man',
['LICENSES_DIALOG_HEADER'] = 'Do you want to buy this license?',
['LICENSES_DIALOG_CONTENT'] = 'This license will cost you ${price} and will take {timer} seconds to complete.',
},
['es'] = {
['LICENSES_PROGRESS'] = 'Obteniendo licencia...',
['LICENSES_SUCCESS'] = 'Gracias por esperar, aquí tienes tu nueva',
['LICENSES_NO_MONEY'] = 'No tienes dinero suficiente',
['LICENSES_WOMEN_LABEL'] = 'Mujer',
['LICENSES_MAN_LABEL'] = 'Hombre',
['LICENSES_DIALOG_HEADER'] = '¿Quieres comprar esta licencia?',
['LICENSES_DIALOG_CONTENT'] = 'Esta licencia costará ${price} y tardará {timer} segundos en completarse.',
},
}