[gimp] Issue #3112 - Missing mnemonics.
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Issue #3112 - Missing mnemonics.
- Date: Mon, 5 Aug 2019 20:45:11 +0000 (UTC)
commit e93a20e7ac5b6e6767dce3b0e09d3ea2d639a984
Author: Sabri Ünal <libreajans gmail com>
Date: Mon Aug 5 20:06:50 2019 +0000
Issue #3112 - Missing mnemonics.
(cherry picked from commit 30e4a7ee5e820027a0376c14f309eb71de3af7d2)
app/actions/dialogs-actions.c | 8 ++++----
app/actions/edit-actions.c | 4 ++--
app/actions/file-actions.c | 10 +++++-----
app/actions/filters-actions.c | 20 ++++++++++----------
app/actions/vectors-actions.c | 2 +-
app/actions/view-actions.c | 8 ++++----
app/actions/windows-actions.c | 6 +++---
plug-ins/common/goat-exercise.c | 2 +-
plug-ins/metadata/metadata-editor.c | 2 +-
plug-ins/metadata/metadata-viewer.c | 2 +-
plug-ins/script-fu/scripts/difference-clouds.scm | 2 +-
plug-ins/script-fu/scripts/reverse-layers.scm | 2 +-
12 files changed, 34 insertions(+), 34 deletions(-)
---
diff --git a/app/actions/dialogs-actions.c b/app/actions/dialogs-actions.c
index 700b5e16ae..2b3972d0ea 100644
--- a/app/actions/dialogs-actions.c
+++ b/app/actions/dialogs-actions.c
@@ -116,7 +116,7 @@ const GimpStringActionEntry dialogs_dockable_actions[] =
GIMP_HELP_UNDO_DIALOG },
{ "dialogs-cursor", GIMP_ICON_CURSOR,
- NC_("dialogs-action", "Pointer"), NULL,
+ NC_("dialogs-action", "_Pointer"), NULL,
NC_("dialogs-action", "Open the pointer information dialog"),
"gimp-cursor-view",
GIMP_HELP_POINTER_INFO_DIALOG },
@@ -146,7 +146,7 @@ const GimpStringActionEntry dialogs_dockable_actions[] =
GIMP_HELP_BRUSH_EDIT },
{ "dialogs-dynamics", GIMP_ICON_DYNAMICS,
- NC_("dialogs-action", "Paint Dynamics"), NULL,
+ NC_("dialogs-action", "Paint D_ynamics"), NULL,
NC_("dialogs-action", "Open paint dynamics dialog"),
"gimp-dynamics-list|gimp-dynamics-grid",
GIMP_HELP_DYNAMICS_DIALOG },
@@ -360,12 +360,12 @@ dialogs_actions_update (GimpActionGroup *group,
if (dialogs_actions_toolbox_exists (gimp))
{
- toolbox_label = _("Toolbox");
+ toolbox_label = _("Tool_box");
toolbox_tooltip = _("Raise the toolbox");
}
else
{
- toolbox_label = _("New Toolbox");
+ toolbox_label = _("New Tool_box");
toolbox_tooltip = _("Create a new toolbox");
}
diff --git a/app/actions/edit-actions.c b/app/actions/edit-actions.c
index e570be3d44..75ff20ca24 100644
--- a/app/actions/edit-actions.c
+++ b/app/actions/edit-actions.c
@@ -172,7 +172,7 @@ static const GimpEnumActionEntry edit_paste_actions[] =
GIMP_HELP_EDIT_PASTE },
{ "edit-paste-in-place", GIMP_ICON_EDIT_PASTE,
- NC_("edit-action", "Paste In Place"), "<primary><alt>V",
+ NC_("edit-action", "Paste In P_lace"), "<primary><alt>V",
NC_("edit-action",
"Paste the content of the clipboard at its original position"),
GIMP_PASTE_TYPE_FLOATING_IN_PLACE, FALSE,
@@ -186,7 +186,7 @@ static const GimpEnumActionEntry edit_paste_actions[] =
GIMP_HELP_EDIT_PASTE_INTO },
{ "edit-paste-into-in-place", GIMP_ICON_EDIT_PASTE_INTO,
- NC_("edit-action", "Paste Into Selection In Place"), NULL,
+ NC_("edit-action", "Paste Int_o Selection In Place"), NULL,
NC_("edit-action",
"Paste the content of the clipboard into the current selection "
"at its original position"),
diff --git a/app/actions/file-actions.c b/app/actions/file-actions.c
index 0c1ad40208..8f365ac169 100644
--- a/app/actions/file-actions.c
+++ b/app/actions/file-actions.c
@@ -92,7 +92,7 @@ static const GimpActionEntry file_actions[] =
GIMP_HELP_FILE_OPEN_LOCATION },
{ "file-create-template", NULL,
- NC_("file-action", "Create Template..."), NULL,
+ NC_("file-action", "Create _Template..."), NULL,
NC_("file-action", "Create a new template from this image"),
file_create_template_cmd_callback,
GIMP_HELP_FILE_CREATE_TEMPLATE },
@@ -104,7 +104,7 @@ static const GimpActionEntry file_actions[] =
GIMP_HELP_FILE_REVERT },
{ "file-close-all", GIMP_ICON_CLOSE_ALL,
- NC_("file-action", "Close all"), "<primary><shift>W",
+ NC_("file-action", "C_lose All"), "<primary><shift>W",
NC_("file-action", "Close all opened images"),
file_close_all_cmd_callback,
GIMP_HELP_FILE_CLOSE_ALL },
@@ -157,7 +157,7 @@ static const GimpEnumActionEntry file_save_actions[] =
GIMP_HELP_FILE_SAVE },
{ "file-export", NULL,
- NC_("file-action", "Export..."), "<primary>E",
+ NC_("file-action", "E_xport..."), "<primary>E",
NC_("file-action", "Export the image"),
GIMP_SAVE_MODE_EXPORT, FALSE,
GIMP_HELP_FILE_EXPORT },
@@ -169,7 +169,7 @@ static const GimpEnumActionEntry file_save_actions[] =
GIMP_HELP_FILE_OVERWRITE },
{ "file-export-as", NULL,
- NC_("file-action", "Export As..."), "<primary><shift>E",
+ NC_("file-action", "E_xport As..."), "<primary><shift>E",
NC_("file-action", "Export the image to various file formats such as PNG or JPEG"),
GIMP_SAVE_MODE_EXPORT_AS, FALSE,
GIMP_HELP_FILE_EXPORT_AS }
@@ -329,7 +329,7 @@ file_actions_update (GimpActionGroup *group,
{
gimp_action_group_set_action_label (group,
"file-export",
- C_("file-action", "Export..."));
+ C_("file-action", "E_xport..."));
}
/* needed for the empty display */
diff --git a/app/actions/filters-actions.c b/app/actions/filters-actions.c
index fa0620f1e3..2ebc3d9032 100644
--- a/app/actions/filters-actions.c
+++ b/app/actions/filters-actions.c
@@ -58,7 +58,7 @@ static const GimpActionEntry filters_menu_actions[] =
{ "filters-menu", NULL, NC_("filters-action",
"Filte_rs") },
{ "filters-recent-menu", NULL, NC_("filters-action",
- "Recently Used") },
+ "Recently _Used") },
{ "filters-blur-menu", NULL, NC_("filters-action",
"_Blur") },
{ "filters-noise-menu", NULL, NC_("filters-action",
@@ -285,22 +285,22 @@ static const GimpStringActionEntry filters_interactive_actions[] =
GIMP_HELP_FILTER_DESATURATE },
{ "filters-difference-of-gaussians", GIMP_ICON_GEGL,
- NC_("filters-action", "Difference of Gaussians..."), NULL, NULL,
+ NC_("filters-action", "Difference of _Gaussians..."), NULL, NULL,
"gegl:difference-of-gaussians",
GIMP_HELP_FILTER_DIFFERENCE_OF_GAUSSIANS },
{ "filters-diffraction-patterns", GIMP_ICON_GEGL,
- NC_("filters-action", "Diffraction Patterns..."), NULL, NULL,
+ NC_("filters-action", "D_iffraction Patterns..."), NULL, NULL,
"gegl:diffraction-patterns",
GIMP_HELP_FILTER_DIFFRACTION_PATTERNS },
{ "filters-displace", GIMP_ICON_GEGL,
- NC_("filters-action", "Displace..."), NULL, NULL,
+ NC_("filters-action", "_Displace..."), NULL, NULL,
"gegl:displace",
GIMP_HELP_FILTER_DISPLACE },
{ "filters-distance-map", GIMP_ICON_GEGL,
- NC_("filters-action", "Distance Map..."), NULL, NULL,
+ NC_("filters-action", "Distance _Map..."), NULL, NULL,
"gegl:distance-transform",
GIMP_HELP_FILTER_DISTANCE_MAP },
@@ -405,12 +405,12 @@ static const GimpStringActionEntry filters_interactive_actions[] =
GIMP_HELP_FILTER_KALEIDOSCOPE },
{ "filters-lens-distortion", GIMP_ICON_GEGL,
- NC_("filters-action", "Lens Distortion..."), NULL, NULL,
+ NC_("filters-action", "Le_ns Distortion..."), NULL, NULL,
"gegl:lens-distortion",
GIMP_HELP_FILTER_LENS_DISTORTION },
{ "filters-lens-flare", GIMP_ICON_GEGL,
- NC_("filters-action", "Lens Flare..."), NULL, NULL,
+ NC_("filters-action", "Lens _Flare..."), NULL, NULL,
"gegl:lens-flare",
GIMP_HELP_FILTER_LENS_FLARE },
@@ -490,12 +490,12 @@ static const GimpStringActionEntry filters_interactive_actions[] =
GIMP_HELP_FILTER_NEWSPRINT },
{ "filters-noise-cie-lch", GIMP_ICON_GEGL,
- NC_("filters-action", "CIE lch Noise..."), NULL, NULL,
+ NC_("filters-action", "_CIE lch Noise..."), NULL, NULL,
"gegl:noise-cie-lch",
GIMP_HELP_FILTER_NOISE_CIE_LCH },
{ "filters-noise-hsv", GIMP_ICON_GEGL,
- NC_("filters-action", "HSV Noise..."), NULL, NULL,
+ NC_("filters-action", "HS_V Noise..."), NULL, NULL,
"gegl:noise-hsv",
GIMP_HELP_FILTER_NOISE_HSV },
@@ -505,7 +505,7 @@ static const GimpStringActionEntry filters_interactive_actions[] =
GIMP_HELP_FILTER_NOISE_HURL },
{ "filters-noise-perlin", GIMP_ICON_GEGL,
- NC_("filters-action", "_Perlin Noise..."), NULL, NULL,
+ NC_("filters-action", "Perlin _Noise..."), NULL, NULL,
"gegl:perlin-noise",
GIMP_HELP_FILTER_NOISE_PERLIN },
diff --git a/app/actions/vectors-actions.c b/app/actions/vectors-actions.c
index 7ce3598a38..300203b0b7 100644
--- a/app/actions/vectors-actions.c
+++ b/app/actions/vectors-actions.c
@@ -116,7 +116,7 @@ static const GimpActionEntry vectors_actions[] =
GIMP_HELP_PATH_LOWER_TO_BOTTOM },
{ "vectors-fill", GIMP_ICON_TOOL_BUCKET_FILL,
- NC_("vectors-action", "Fill Path..."), NULL,
+ NC_("vectors-action", "Fill Pat_h..."), NULL,
NC_("vectors-action", "Fill the path"),
vectors_fill_cmd_callback,
GIMP_HELP_PATH_FILL },
diff --git a/app/actions/view-actions.c b/app/actions/view-actions.c
index 6ec6a02f8f..4d577a4a1a 100644
--- a/app/actions/view-actions.c
+++ b/app/actions/view-actions.c
@@ -97,7 +97,7 @@ static const GimpActionEntry view_actions[] =
GIMP_HELP_FILE_CLOSE },
{ "view-scroll-center", GIMP_ICON_CENTER,
- NC_("view-action", "Center Image in Window"), "<shift>J",
+ NC_("view-action", "C_enter Image in Window"), "<shift>J",
NC_("view-action", "Scroll the image so that it is centered in the window"),
view_scroll_center_cmd_callback,
GIMP_HELP_VIEW_SCROLL_CENTER },
@@ -244,7 +244,7 @@ static const GimpToggleActionEntry view_toggle_actions[] =
GIMP_HELP_VIEW_SHOW_GRID },
{ "view-show-sample-points", NULL,
- NC_("view-action", "Show Sample Points"), NULL,
+ NC_("view-action", "Sh_ow Sample Points"), NULL,
NC_("view-action", "Display the image's color sample points"),
view_toggle_sample_points_cmd_callback,
TRUE,
@@ -462,14 +462,14 @@ static const GimpRadioActionEntry view_zoom_explicit_actions[] =
static const GimpToggleActionEntry view_flip_actions[] =
{
{ "view-flip-horizontally", GIMP_ICON_OBJECT_FLIP_HORIZONTAL,
- NC_("view-action", "Flip Horizontally"), NULL,
+ NC_("view-action", "Flip _Horizontally"), NULL,
NC_("view-action", "Flip the view horizontally"),
view_flip_horizontally_cmd_callback,
FALSE,
GIMP_HELP_VIEW_FLIP },
{ "view-flip-vertically", GIMP_ICON_OBJECT_FLIP_VERTICAL,
- NC_("view-action", "Flip Vertically"), NULL,
+ NC_("view-action", "Flip _Vertically"), NULL,
NC_("view-action", "Flip the view vertically"),
view_flip_vertically_cmd_callback,
FALSE,
diff --git a/app/actions/windows-actions.c b/app/actions/windows-actions.c
index a90c20c47b..bd6a680054 100644
--- a/app/actions/windows-actions.c
+++ b/app/actions/windows-actions.c
@@ -124,21 +124,21 @@ static const GimpActionEntry windows_actions[] =
static const GimpToggleActionEntry windows_toggle_actions[] =
{
{ "windows-hide-docks", NULL,
- NC_("windows-action", "Hide Docks"), "Tab",
+ NC_("windows-action", "_Hide Docks"), "Tab",
NC_("windows-action", "When enabled, docks and other dialogs are hidden, leaving only image windows."),
windows_hide_docks_cmd_callback,
FALSE,
GIMP_HELP_WINDOWS_HIDE_DOCKS },
{ "windows-show-tabs", NULL,
- NC_("windows-action", "Show Tabs"), NULL,
+ NC_("windows-action", "_Show Tabs"), NULL,
NC_("windows-action", "When enabled, the image tabs bar is shown."),
windows_show_tabs_cmd_callback,
FALSE,
GIMP_HELP_WINDOWS_SHOW_TABS },
{ "windows-use-single-window-mode", NULL,
- NC_("windows-action", "Single-Window Mode"), NULL,
+ NC_("windows-action", "Single-Window _Mode"), NULL,
NC_("windows-action", "When enabled, GIMP is in a single-window mode."),
windows_use_single_window_mode_cmd_callback,
FALSE,
diff --git a/plug-ins/common/goat-exercise.c b/plug-ins/common/goat-exercise.c
index 8820f22edb..6e26a9e1cd 100644
--- a/plug-ins/common/goat-exercise.c
+++ b/plug-ins/common/goat-exercise.c
@@ -97,7 +97,7 @@ goat_create_procedure (GimpPlugIn *plug_in,
procedure = gimp_procedure_new (plug_in, name, GIMP_PLUGIN,
goat_run, NULL, NULL);
- gimp_procedure_set_menu_label (procedure, N_("Goat-exercise"));
+ gimp_procedure_set_menu_label (procedure, N_("Goat-e_xercise"));
gimp_procedure_set_documentation (procedure,
N_("Exercise a goat"),
diff --git a/plug-ins/metadata/metadata-editor.c b/plug-ins/metadata/metadata-editor.c
index 940336f286..ff91414114 100644
--- a/plug-ins/metadata/metadata-editor.c
+++ b/plug-ins/metadata/metadata-editor.c
@@ -413,7 +413,7 @@ query (void)
"Ben Touchette",
"Ben Touchette",
"2017",
- N_("Edit Metadata"),
+ N_("_Edit Metadata"),
"*",
GIMP_PLUGIN,
G_N_ELEMENTS (metadata_args), 0,
diff --git a/plug-ins/metadata/metadata-viewer.c b/plug-ins/metadata/metadata-viewer.c
index f88d4cd585..e7323d7058 100644
--- a/plug-ins/metadata/metadata-viewer.c
+++ b/plug-ins/metadata/metadata-viewer.c
@@ -124,7 +124,7 @@ query (void)
"Hartmut Kuhse, Michael Natterer, Ben Touchette",
"Hartmut Kuhse, Michael Natterer, Ben Touchette",
"2013, 2017",
- N_("View Metadata"),
+ N_("_View Metadata"),
"*",
GIMP_PLUGIN,
G_N_ELEMENTS (metadata_args), 0,
diff --git a/plug-ins/script-fu/scripts/difference-clouds.scm
b/plug-ins/script-fu/scripts/difference-clouds.scm
index 1cb9c31808..15b8fc81b9 100644
--- a/plug-ins/script-fu/scripts/difference-clouds.scm
+++ b/plug-ins/script-fu/scripts/difference-clouds.scm
@@ -67,7 +67,7 @@
)
(script-fu-register "script-fu-difference-clouds"
- _"Difference Clouds..."
+ _"_Difference Clouds..."
_"Solid noise applied with Difference layer mode"
"Martin Nordholts <enselic hotmail com>"
"Martin Nordholts"
diff --git a/plug-ins/script-fu/scripts/reverse-layers.scm b/plug-ins/script-fu/scripts/reverse-layers.scm
index 0118ef151b..d7e28825b6 100644
--- a/plug-ins/script-fu/scripts/reverse-layers.scm
+++ b/plug-ins/script-fu/scripts/reverse-layers.scm
@@ -39,7 +39,7 @@
)
(script-fu-register "script-fu-reverse-layers"
- _"Reverse Layer Order"
+ _"Reverse Layer _Order"
_"Reverse the order of layers in the image"
"Akkana Peck"
"Akkana Peck"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]