mirror of https://github.com/GNOME/gimp.git
Applied patch from Zbigniew Chyla (bug 345982):
2006-06-27 Sven Neumann <sven@gimp.org> Applied patch from Zbigniew Chyla (bug 345982): * app/widgets/gimpactiongroup.c (gimp_action_group_add_string_actions) strip translation context from translated entries[i].label. * app/tools/gimpmagnifytool.c: added translation context.
This commit is contained in:
parent
9282180296
commit
dd5962fa67
|
@ -1,3 +1,12 @@
|
|||
2006-06-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
Applied patch from Zbigniew Chyla (bug 345982):
|
||||
|
||||
* app/widgets/gimpactiongroup.c (gimp_action_group_add_string_actions)
|
||||
strip translation context from translated entries[i].label.
|
||||
|
||||
* app/tools/gimpmagnifytool.c: added translation context.
|
||||
|
||||
2006-06-27 Sven Neumann <sven@gimp.org>
|
||||
|
||||
Applied patch from Zbigniew Chyla (bug 345982):
|
||||
|
|
|
@ -91,7 +91,7 @@ gimp_magnify_tool_register (GimpToolRegisterCallback callback,
|
|||
"gimp-zoom-tool",
|
||||
_("Zoom"),
|
||||
_("Zoom in & out"),
|
||||
N_("_Zoom"), "Z",
|
||||
N_("tool|_Zoom"), "Z",
|
||||
NULL, GIMP_HELP_TOOL_ZOOM,
|
||||
GIMP_STOCK_TOOL_ZOOM,
|
||||
data);
|
||||
|
|
|
@ -549,7 +549,7 @@ gimp_action_group_add_string_actions (GimpActionGroup *group,
|
|||
gchar *label;
|
||||
const gchar *tooltip;
|
||||
|
||||
label = gettext (entries[i].label);
|
||||
label = g_strip_context (entries[i].label, gettext (entries[i].label));
|
||||
tooltip = gettext (entries[i].tooltip);
|
||||
|
||||
if (! group->mnemonics)
|
||||
|
|
Loading…
Reference in New Issue