This commit is contained in:
2026-01-22 00:06:13 +08:00
parent f26fc95ea3
commit ed7476e54b
316 changed files with 4962 additions and 14039 deletions

View File

@@ -25,7 +25,7 @@ def build_layers_ui(parent, actions, session):
filter = QtWidgets.QComboBox()
filter.setMinimumHeight(22 * scale_multiplier)
filter.setEditable(True)
filter.lineEdit().setPlaceholderText("Search...")
filter.lineEdit().setPlaceholderText("搜索...")
result.addWidget(filter)
# noinspection PyShadowingNames
clear = QAction(result)
@@ -83,7 +83,7 @@ def build_no_layers_ui(parent, actions, session):
selection_display = QtWidgets.QLabel("pPlane1")
selection_display.setStyleSheet("font-weight: bold")
selection_note = QtWidgets.QLabel("Skinning Layers cannot be attached to this object")
selection_note = QtWidgets.QLabel("蒙皮层无法附加到此对象")
selection_note.setWordWrap(True)
layout.addStretch(1)
@@ -104,11 +104,11 @@ def build_no_layers_ui(parent, actions, session):
selection_display.setText(session.state.selectedSkinCluster)
selection_display.setVisible(is_skinned)
note = "Select a mesh with a skin cluster attached."
note = "选择附着蒙皮节点的网格."
if is_skinned:
note = "Skinning layers are not yet initialized for this mesh."
note = "尚未为此网格初始化蒙皮层."
if import_v1_actions.can_import(session):
note = "Skinning layers from previous ngSkinTools version are initialized on this mesh."
note = "ngSkinTools的旧版本的蒙皮层在此网格上初始化."
selection_note.setText(note)