diff --git a/source/blender/editors/curve/editfont.cc b/source/blender/editors/curve/editfont.cc index d8a4f489cfe..d76d68a953f 100644 --- a/source/blender/editors/curve/editfont.cc +++ b/source/blender/editors/curve/editfont.cc @@ -742,18 +742,51 @@ static uiBlock *wm_block_insert_unicode_create(bContext *C, ARegion *region, voi split->column(false); if (windows_layout) { - confirm = uiDefIconTextBut( - block, UI_BTYPE_BUT, 0, 0, "Insert", 0, 0, 0, UI_UNIT_Y, nullptr, 0, 0, std::nullopt); + confirm = uiDefIconTextBut(block, + UI_BTYPE_BUT, + 0, + 0, + IFACE_("Insert"), + 0, + 0, + 0, + UI_UNIT_Y, + nullptr, + 0, + 0, + std::nullopt); split->column(false); } - cancel = uiDefIconTextBut( - block, UI_BTYPE_BUT, 0, 0, "Cancel", 0, 0, 0, UI_UNIT_Y, nullptr, 0, 0, std::nullopt); + cancel = uiDefIconTextBut(block, + UI_BTYPE_BUT, + 0, + 0, + IFACE_("Cancel"), + 0, + 0, + 0, + UI_UNIT_Y, + nullptr, + 0, + 0, + std::nullopt); if (!windows_layout) { split->column(false); - confirm = uiDefIconTextBut( - block, UI_BTYPE_BUT, 0, 0, "Insert", 0, 0, 0, UI_UNIT_Y, nullptr, 0, 0, std::nullopt); + confirm = uiDefIconTextBut(block, + UI_BTYPE_BUT, + 0, + 0, + IFACE_("Insert"), + 0, + 0, + 0, + UI_UNIT_Y, + nullptr, + 0, + 0, + std::nullopt); } UI_block_func_set(block, nullptr, nullptr, nullptr);