Start work on editor
All checks were successful
Build Dusk / build-linux (push) Successful in 54s
Build Dusk / build-psp (push) Successful in 1m10s

This commit is contained in:
2025-11-15 23:38:31 -06:00
parent 8525138594
commit 68b63d3007
7 changed files with 494 additions and 9 deletions

View File

@@ -3,10 +3,11 @@ import os
from assetstool.args import args
from assetstool.assetcache import assetCache, assetGetCache
from assetstool.assethelpers import getAssetRelativePath
from dusk.defs import defs
import polib
import re
LANGUAGE_CHUNK_CHAR_COUNT = 6 * 1024 # 6 KB per chunk
LANGUAGE_CHUNK_CHAR_COUNT = int(defs.get('ASSET_LANG_CHUNK_CHAR_COUNT'))
LANGUAGE_DATA = {}
LANGUAGE_KEYS = []