Improvements

- Added Most UI Translations.
- Improve Readability of the translation strings.
This commit is contained in:
Yusarina
2024-07-05 13:47:09 +01:00
parent ce9cc9684f
commit b7026b2a41
9 changed files with 86 additions and 51 deletions
+3 -2
View File
@@ -5,12 +5,13 @@ import re
from bpy.types import Operator, Context, Object
from ..core.dictionaries import bone_names
from ..core.common import get_armature, simplify_bonename
from ..functions.translations import t
@register_wrap
class ConvertToResonite(Operator):
bl_idname = 'avatar_toolkit.convert_to_resonite'
bl_label = "Convert to Resonite" #t('Tools.convert_to_resonite.label')
bl_description = "Converts bone names on a model to names compatable with Resonite" #t('Tools.convert_to_resonite.desc')
bl_label = t('Tools.convert_to_resonite.label')
bl_description = t('Tools.convert_to_resonite.desc')
bl_options = {'REGISTER', 'UNDO'}
@classmethod