UIMessages/i18n: Fix incorrect part of rBdabfac37e35274b.

My bad, forgot lower-level UI code does not handle translations itself.

Thanks to Hans Goudey (@HooglyBoogly) for the heads up.
This commit is contained in:
Bastien Montagne 2021-11-02 17:20:24 +01:00
parent 980bc5a707
commit 20b163b533
1 changed files with 2 additions and 2 deletions

View File

@ -1409,7 +1409,7 @@ static void panel_draw(const bContext *C, Panel *panel)
if (has_legacy_node) {
uiLayout *row = uiLayoutRow(layout, false);
uiItemL(row, N_("Node tree has legacy node"), ICON_ERROR);
uiItemL(row, TIP_("Node tree has legacy node"), ICON_ERROR);
uiLayout *sub = uiLayoutRow(row, false);
uiLayoutSetAlignment(sub, UI_LAYOUT_ALIGN_RIGHT);
uiItemO(sub, "", ICON_VIEWZOOM, "NODE_OT_geometry_node_view_legacy");
@ -1438,7 +1438,7 @@ static void output_attribute_panel_draw(const bContext *UNUSED(C), Panel *panel)
}
}
if (!has_output_attribute) {
uiItemL(layout, N_("No group output attributes connected"), ICON_INFO);
uiItemL(layout, TIP_("No group output attributes connected"), ICON_INFO);
}
}