[gnome-builder] shortcuts: tweak section names



commit e30703bd3f954006237a5e43b2197f8246a02fed
Author: Sebastien Lafargue <slafargue gnome org>
Date:   Tue Aug 15 17:48:38 2017 +0200

    shortcuts: tweak section names

 libide/editor/ide-editor-perspective-shortcuts.c |    8 ++++----
 libide/editor/ide-editor-view-shortcuts.c        |   18 +++++++++---------
 libide/layout/ide-layout-stack-shortcuts.c       |   10 +++++-----
 libide/workbench/ide-workbench-shortcuts.c       |    2 +-
 plugins/command-bar/gb-command-bar.c             |    2 +-
 plugins/project-tree/gb-project-tree-shortcuts.c |    8 ++++----
 6 files changed, 24 insertions(+), 24 deletions(-)
---
diff --git a/libide/editor/ide-editor-perspective-shortcuts.c 
b/libide/editor/ide-editor-perspective-shortcuts.c
index 80bb5cd..e3549eb 100644
--- a/libide/editor/ide-editor-perspective-shortcuts.c
+++ b/libide/editor/ide-editor-perspective-shortcuts.c
@@ -30,25 +30,25 @@
 static const DzlShortcutEntry editor_perspective_entries[] = {
   { "org.gnome.builder.editor.new-file",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Create a new document") },
 
   { "org.gnome.builder.editor.open-file",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Open a document") },
 
   { "org.gnome.builder.editor.navigation-panel",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Panels"),
     N_("Toggle navigation panel") },
 
   { "org.gnome.builder.editor.utilities-panel",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Panels"),
     N_("Toggle utilities panel") },
 };
diff --git a/libide/editor/ide-editor-view-shortcuts.c b/libide/editor/ide-editor-view-shortcuts.c
index 5f686c6..88c2a37 100644
--- a/libide/editor/ide-editor-view-shortcuts.c
+++ b/libide/editor/ide-editor-view-shortcuts.c
@@ -28,55 +28,55 @@
 static DzlShortcutEntry editor_view_shortcuts[] = {
   { "org.gnome.builder.editor-view.save",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Save the document") },
 
   { "org.gnome.builder.editor-view.save-as",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Save the document with a new name") },
 
   { "org.gnome.builder.editor-view.find",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Find") },
 
   { "org.gnome.builder.editor-view.find-replace",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Find and replace") },
 
   { "org.gnome.builder.editor-view.next-match",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Move to the next match") },
 
   { "org.gnome.builder.editor-view.prev-match",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Move to the previous match") },
 
   { "org.gnome.builder.editor-view.next-error",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Move to the next error") },
 
   { "org.gnome.builder.editor-view.prev-error",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Move to the previous error") },
 
   { "org.gnome.builder.editor-view.clear-highlight",
     0, NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Find and replace"),
     N_("Find the next match") },
 };
diff --git a/libide/layout/ide-layout-stack-shortcuts.c b/libide/layout/ide-layout-stack-shortcuts.c
index 45c7c35..9af09e3 100644
--- a/libide/layout/ide-layout-stack-shortcuts.c
+++ b/libide/layout/ide-layout-stack-shortcuts.c
@@ -29,35 +29,35 @@ static const DzlShortcutEntry stack_shortcuts[] = {
   { "org.gnome.builder.layoutstack.move-right",
     DZL_SHORTCUT_PHASE_CAPTURE,
     NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Move document to the right") },
 
   { "org.gnome.builder.layoutstack.move-left",
     DZL_SHORTCUT_PHASE_CAPTURE,
     NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Move document to the left") },
 
   { "org.gnome.builder.layoutstack.previous-document",
     DZL_SHORTCUT_PHASE_CAPTURE,
     NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Switch to the previous document") },
 
   { "org.gnome.builder.layoutstack.next-document",
     DZL_SHORTCUT_PHASE_CAPTURE,
     NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Switch to the next document") },
 
   { "org.gnome.builder.layoutstack.close-view",
     DZL_SHORTCUT_PHASE_BUBBLE,
     NULL,
-    N_("Editor"),
+    N_("Editor shortcuts"),
     N_("Files"),
     N_("Close the document") },
 };
diff --git a/libide/workbench/ide-workbench-shortcuts.c b/libide/workbench/ide-workbench-shortcuts.c
index 74177d3..8c9f20a 100644
--- a/libide/workbench/ide-workbench-shortcuts.c
+++ b/libide/workbench/ide-workbench-shortcuts.c
@@ -46,7 +46,7 @@ _ide_workbench_add_perspective_shortcut (IdeWorkbench   *self,
       const DzlShortcutEntry workbench_shortcut_entry[] = {
         { command_id,
           0, NULL,
-          N_("Workbench"),
+          N_("Workbench shortcuts"),
           N_("Perspectives"),
           N_(shortcut_help) },
       };
diff --git a/plugins/command-bar/gb-command-bar.c b/plugins/command-bar/gb-command-bar.c
index b324d61..abe39b7 100644
--- a/plugins/command-bar/gb-command-bar.c
+++ b/plugins/command-bar/gb-command-bar.c
@@ -712,7 +712,7 @@ gb_command_bar_class_finalize (GbCommandBarClass *klass)
 static const DzlShortcutEntry shortcuts[] = {
   { "org.gnome.builder.show-command-bar",
     0, NULL,
-    N_("Editor"),
+    N_("Workbench shortcuts"),
     N_("General"),
     N_("Command Bar") },
 };
diff --git a/plugins/project-tree/gb-project-tree-shortcuts.c 
b/plugins/project-tree/gb-project-tree-shortcuts.c
index b694c92..a626357 100644
--- a/plugins/project-tree/gb-project-tree-shortcuts.c
+++ b/plugins/project-tree/gb-project-tree-shortcuts.c
@@ -30,14 +30,14 @@
 static const DzlShortcutEntry gb_project_tree_entries[] = {
   { "org.gnome.builder.project-tree.rename-file",
     0, NULL,
-    N_("Project Tree"),
-    N_("General"),
+    N_("Editor shortcuts"),
+    N_("Project tree"),
     N_("Rename a file") },
 
   { "org.gnome.builder.project-tree.move-to-trah",
     0, NULL,
-    N_("Project Tree"),
-    N_("General"),
+    N_("Editor shortcuts"),
+    N_("Project tree"),
     N_("Move a file to the trash") },
 };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]