diff --git a/io_scene_psk_psa/i18n.py b/io_scene_psk_psa/i18n.py index a67c7cb..c1a1c45 100644 --- a/io_scene_psk_psa/i18n.py +++ b/io_scene_psk_psa/i18n.py @@ -14,5 +14,9 @@ langs = { ('*', 'The minimum number of keyframes to be exported'): 'エクスポートするキーフレームの最小数', ('*', 'Select a PSA file'): 'PSAファイルを選択', ('*', 'Case Insensitive'): '大文字小文字を区別しない', + ('*', 'All bones will be exported'): 'すべてのボーンがエクスポートされます', + ('*', 'Only bones belonging to the selected bone groups and their ancestors will be exported'): + '選択したボーングループとその祖先に属するボーンのみがエクスポートされます', + ('*', 'Raw Mesh Data'): '生のメッシュデータ', } } diff --git a/io_scene_psk_psa/psk/export/ui.py b/io_scene_psk_psa/psk/export/ui.py index 6a7a056..d75ad92 100644 --- a/io_scene_psk_psa/psk/export/ui.py +++ b/io_scene_psk_psa/psk/export/ui.py @@ -4,7 +4,7 @@ from bpy.types import UIList class PSK_UL_materials(UIList): def draw_item(self, context, layout, data, item, icon, active_data, active_propname, index): row = layout.row() - row.label(text=str(getattr(item, 'material_name')), icon='MATERIAL') + row.label(text=item.material_name, icon='MATERIAL', translate=False) classes = ( diff --git a/io_scene_psk_psa/psk/import_/operators.py b/io_scene_psk_psa/psk/import_/operators.py index db484fd..c7e10e9 100644 --- a/io_scene_psk_psa/psk/import_/operators.py +++ b/io_scene_psk_psa/psk/import_/operators.py @@ -28,7 +28,7 @@ class PSK_OT_import(Operator, ImportHelper): default=True, options=empty_set, name='Vertex Colors', - description='Import vertex colors from PSKX files, if available' + description='Import vertex colors, if available' ) vertex_color_space: EnumProperty( name='Vertex Color Space',