Translation Update

Translation System now works!
This commit is contained in:
Yusarina
2024-07-05 13:01:59 +01:00
parent 0658e3a86f
commit ce9cc9684f
9 changed files with 86 additions and 35 deletions
+3 -2
View File
@@ -4,6 +4,7 @@ from typing import List, Tuple, Optional
from bpy.types import Material, Operator, Context, Object
from ..core.common import clean_material_names
from ..core.register import register_wrap
from ..functions.translations import t
def textures_match(tex1: bpy.types.ImageTexture, tex2: bpy.types.ImageTexture) -> bool:
return tex1.image == tex2.image and tex1.extension == tex2.extension
@@ -58,8 +59,8 @@ def report_consolidated(self: Operator, num_combined: int) -> None:
@register_wrap
class CombineMaterials(Operator):
bl_idname = "avatar_toolkit.combine_materials"
bl_label = "Combine Materials"
bl_description = "Combine similar materials to optimize the model"
bl_label = t("Optimization.combinematerials.label")
bl_description = t("Optimization.combinematerials.desc")
bl_options = {'REGISTER', 'UNDO'}
@classmethod
+37 -9
View File
@@ -19,10 +19,28 @@ def load_translations() -> None:
dictionary = dict()
languages = ["auto"]
language: str = bpy.context.preferences.view.language
# Populate languages list
for i in os.listdir(translations_dir):
languages.append(i.split(".")[0])
lang = i.split(".")[0]
if lang != "auto":
languages.append(lang)
# Check if the context and scene are available
if hasattr(bpy.context, "scene"):
# Check if the property exists before trying to access it
if hasattr(bpy.context.scene, "avatar_toolkit_language"):
language_index = bpy.context.scene.avatar_toolkit_language
if isinstance(language_index, str):
language_index = int(language_index)
if language_index == 0: # "auto"
language = bpy.context.preferences.view.language
else:
language = languages[language_index]
else:
language = bpy.context.preferences.view.language
else:
# Set a default language if the context or scene is not available
language = "en_US"
translation_file: str = os.path.join(translations_dir, language + ".json")
if os.path.exists(translation_file):
@@ -52,13 +70,23 @@ def t(phrase: str, *args, **kwargs) -> str:
return output.format(*args, **kwargs)
def get_languages_list(self, context) -> List[Tuple[str, str, str]]:
choices: List[Tuple[str, str, str]] = []
for language in languages:
choices.append((language, language, language))
return choices
return [(str(i), lang, f"Use {lang} language") for i, lang in enumerate(languages)]
def update_ui(self, context) -> None:
def refresh_translations():
load_translations()
bpy.ops.wm.redraw_timer(type='DRAW_WIN_SWAP', iterations=1)
# Force a full UI update
for window in bpy.context.window_manager.windows:
for area in window.screen.areas:
area.tag_redraw()
def update_ui(self, context):
refresh_translations()
# Force Blender to redraw all UI elements
for screen in bpy.data.screens:
for area in screen.areas:
area.tag_redraw()
# Update the Scene to trigger a full UI refresh
bpy.context.scene.update_tag()
# Initial load of translations
load_translations()