app: add missing context to make translations be used

gimp_action_group_add_actions has a loop that expected all strings
to have a context since msg_context was set. Without a context
the original string was used.
This commit is contained in:
Anders Jonsson 2025-08-18 18:36:22 +02:00
parent 6ddb33135c
commit 11b35908fa

View file

@ -62,9 +62,9 @@ static const GimpActionEntry layers_actions[] =
layers_edit_text_cmd_callback,
GIMP_HELP_LAYER_EDIT },
{ "layers-edit-vector", GIMP_ICON_TOOL_PATH,
N_("Path Tool"), NULL, { NULL },
N_("Activate the path tool on this vector layer's path"),
{ "layers-edit-vector", GIMP_ICON_TOOL_PATH,
NC_("layers-action", "Path Tool"), NULL, { NULL },
NC_("layers-action", "Activate the path tool on this vector layer's path"),
layers_edit_vector_cmd_callback,
GIMP_HELP_TOOL_PATH },