feat: finish i18n extract work

- masically finish u18n extract work (most fields are extracted)
This commit is contained in:
2025-01-12 15:15:29 +08:00
parent 4ffe29654b
commit 04aa879c22
22 changed files with 255 additions and 172 deletions

View File

@ -39,9 +39,9 @@ class BBPPreferences(bpy.types.AddonPreferences):
row = layout.row()
col = row.column()
col.label(text = "Ballance Texture Folder")
col.label(text="Ballance Texture Folder", text_ctxt='BBPPreferences/draw')
col.prop(self, "ballance_texture_folder", text = "")
col.label(text = "No Component Collection")
col.label(text="No Component Collection", text_ctxt='BBPPreferences/draw')
col.prop(self, "no_component_collection", text = "")
def get_preferences() -> BBPPreferences: