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:
parent
6ddb33135c
commit
11b35908fa
1 changed files with 3 additions and 3 deletions
|
|
@ -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 },
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue