Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/modules/bl_i18n_utils/settings.py
| Show First 20 Lines • Show All 538 Lines • ▼ Show 20 Lines | |||||
| # Mo file name. | # Mo file name. | ||||
| MO_FILE_NAME = DOMAIN + ".mo" | MO_FILE_NAME = DOMAIN + ".mo" | ||||
| # Where to search for py files that may contain ui strings (relative to one of the 'resource_path' of Blender). | # Where to search for py files that may contain ui strings (relative to one of the 'resource_path' of Blender). | ||||
| CUSTOM_PY_UI_FILES = [ | CUSTOM_PY_UI_FILES = [ | ||||
| os.path.join("scripts", "startup", "bl_ui"), | os.path.join("scripts", "startup", "bl_ui"), | ||||
| os.path.join("scripts", "startup", "bl_operators"), | os.path.join("scripts", "startup", "bl_operators"), | ||||
| os.path.join("scripts", "modules", "rna_prop_ui.py"), | os.path.join("scripts", "modules", "rna_prop_ui.py"), | ||||
| os.path.join("scripts", "presets", "keyconfig"), | |||||
| ] | ] | ||||
| # An optional text file listing files to force include/exclude from py_xgettext process. | # An optional text file listing files to force include/exclude from py_xgettext process. | ||||
| SRC_POTFILES = "" | SRC_POTFILES = "" | ||||
| # A cache storing validated msgids, to avoid re-spellchecking them. | # A cache storing validated msgids, to avoid re-spellchecking them. | ||||
| SPELL_CACHE = os.path.join("/tmp", ".spell_cache") | SPELL_CACHE = os.path.join("/tmp", ".spell_cache") | ||||
| ▲ Show 20 Lines • Show All 148 Lines • Show Last 20 Lines | |||||