Cleanup: I18n: Remove unused translation macros

The translated strings literals were empty.

Pull Request: https://projects.blender.org/blender/blender/pulls/147583
This commit is contained in:
Damien Picard
2025-10-08 00:21:29 +02:00
committed by Gitea
parent 30ee6a27df
commit 331ac6157f
2 changed files with 2 additions and 2 deletions

View File

@@ -965,7 +965,7 @@ static void ui_block_colorpicker(const bContext * /*C*/,
bt = uiDefBut(block,
ButType::Text,
0,
IFACE_(""),
"",
label_width,
yco,
text_width,

View File

@@ -115,7 +115,7 @@ static void node_declare(NodeDeclarationBuilder &b)
b.add_input<decl::Extend>("", "__extend__").custom_draw([](CustomSocketDrawParams &params) {
uiLayout &layout = params.layout;
layout.emboss_set(ui::EmbossType::None);
PointerRNA op_ptr = layout.op("node.index_switch_item_add", IFACE_(""), ICON_ADD);
PointerRNA op_ptr = layout.op("node.index_switch_item_add", "", ICON_ADD);
RNA_int_set(&op_ptr, "node_identifier", params.node.identifier);
});
}