diff options
| author | Tim Rawlinson <rawlinson@users.noreply.github.com> | 2019-02-07 22:36:38 +0000 |
|---|---|---|
| committer | Tim Rawlinson <rawlinson@users.noreply.github.com> | 2019-02-07 22:36:38 +0000 |
| commit | bd370127fa9f74dcf97c0baa8ca194173f98b772 (patch) | |
| tree | 2f99ea14c85bbbf4bc9456474437c05da501c572 /src | |
| parent | Fix wrong message in path parameter (diff) | |
| download | inkscape-bd370127fa9f74dcf97c0baa8ca194173f98b772.tar.gz inkscape-bd370127fa9f74dcf97c0baa8ca194173f98b772.zip | |
Fix capitalisation of menu items.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/contextmenu.cpp | 8 | ||||
| -rw-r--r-- | src/verbs.cpp | 14 |
2 files changed, 11 insertions, 11 deletions
diff --git a/src/ui/contextmenu.cpp b/src/ui/contextmenu.cpp index 486af0dda..96a9dc649 100644 --- a/src/ui/contextmenu.cpp +++ b/src/ui/contextmenu.cpp @@ -103,7 +103,7 @@ ContextMenu::ContextMenu(SPDesktop *desktop, SPItem *item) : } Gtk::MenuItem* mi; - mi = Gtk::manage(new Gtk::MenuItem(_("Hide selected objects"),true)); + mi = Gtk::manage(new Gtk::MenuItem(_("Hide Selected Objects"),true)); mi->signal_activate().connect(sigc::mem_fun(*this, &ContextMenu::HideSelected)); if (_desktop->selection->isEmpty()) { mi->set_sensitive(false); @@ -119,7 +119,7 @@ ContextMenu::ContextMenu(SPDesktop *desktop, SPItem *item) : mi->show(); append(*mi);//insert(*mi,positionOfLastDialog++); - mi = Gtk::manage(new Gtk::MenuItem(_("Lock selected objects"),true)); + mi = Gtk::manage(new Gtk::MenuItem(_("Lock Selected Objects"),true)); mi->signal_activate().connect(sigc::mem_fun(*this, &ContextMenu::LockSelected)); if (_desktop->selection->isEmpty()) { mi->set_sensitive(false); @@ -413,14 +413,14 @@ void ContextMenu::MakeItemMenu () select_same_submenu->append(*mi); /* Select same stroke style */ - mi = Gtk::manage(new Gtk::MenuItem(_("Object type"), true)); + mi = Gtk::manage(new Gtk::MenuItem(_("Object Type"), true)); mi->signal_activate().connect(sigc::mem_fun(*this, &ContextMenu::SelectSameObjectType)); mi->set_sensitive(!SP_IS_ANCHOR(_item)); mi->show(); select_same_submenu->append(*mi); /* Move to layer */ - mi = Gtk::manage(new Gtk::MenuItem(_("_Move to layer ..."), true)); + mi = Gtk::manage(new Gtk::MenuItem(_("_Move to Layer..."), true)); if (_desktop->selection->isEmpty()) { mi->set_sensitive(FALSE); } else { diff --git a/src/verbs.cpp b/src/verbs.cpp index e18ea71c7..17e31ddbe 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2602,13 +2602,13 @@ Verb *Verb::_base_verbs[] = { INKSCAPE_ICON("document-save-as")), new FileVerb(SP_VERB_FILE_SAVE_A_COPY, "FileSaveACopy", N_("Save a Cop_y..."), N_("Save a copy of the document under a new name"), nullptr), - new FileVerb(SP_VERB_FILE_SAVE_TEMPLATE, "FileSaveTemplate", N_("Save template ..."), + new FileVerb(SP_VERB_FILE_SAVE_TEMPLATE, "FileSaveTemplate", N_("Save Template..."), N_("Save a copy of the document as template"), nullptr), new FileVerb(SP_VERB_FILE_PRINT, "FilePrint", N_("_Print..."), N_("Print document"), INKSCAPE_ICON("document-print")), // TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions) new FileVerb( - SP_VERB_FILE_VACUUM, "FileVacuum", N_("Clean _up document"), + SP_VERB_FILE_VACUUM, "FileVacuum", N_("Clean _Up Document"), N_("Remove unused definitions (such as gradients or clipping paths) from the <defs> of the document"), INKSCAPE_ICON("document-cleanup")), new FileVerb(SP_VERB_FILE_IMPORT, "FileImport", N_("_Import..."), @@ -2756,7 +2756,7 @@ Verb *Verb::_base_verbs[] = { new SelectionVerb(SP_VERB_SELECTION_UNGROUP, "SelectionUnGroup", N_("_Ungroup"), N_("Ungroup selected groups"), INKSCAPE_ICON("object-ungroup")), new SelectionVerb(SP_VERB_SELECTION_UNGROUP_POP_SELECTION, "SelectionUnGroupPopSelection", - N_("_Pop selected objects out of group"), N_("Pop selected objects out of group"), + N_("_Pop Selected Objects out of Group"), N_("Pop selected objects out of group"), INKSCAPE_ICON("object-ungroup-pop-selection")), new SelectionVerb(SP_VERB_SELECTION_TEXTTOPATH, "SelectionTextToPath", N_("_Put on Path"), N_("Put text on path"), @@ -2887,7 +2887,7 @@ Verb *Verb::_base_verbs[] = { nullptr), new LayerVerb(SP_VERB_LAYER_TOGGLE_LOCK, "LayerToggleLock", N_("_Lock/Unlock Current Layer"), N_("Toggle lock on current layer"), nullptr), - new LayerVerb(SP_VERB_LAYER_TOGGLE_HIDE, "LayerToggleHide", N_("_Show/hide Current Layer"), + new LayerVerb(SP_VERB_LAYER_TOGGLE_HIDE, "LayerToggleHide", N_("_Show/Hide Current Layer"), N_("Toggle visibility of current layer"), nullptr), // Object @@ -3126,7 +3126,7 @@ Verb *Verb::_base_verbs[] = { new ZoomVerb(SP_VERB_VIEW_TOGGLE_XRAY, "ViewXRayToggle", N_("Toggle _XRay Mode"), N_("XRay around cursor"), nullptr), - new ZoomVerb(SP_VERB_VIEW_CMS_TOGGLE, "ViewCmsToggle", N_("Color-managed view"), + new ZoomVerb(SP_VERB_VIEW_CMS_TOGGLE, "ViewCmsToggle", N_("Color-Managed View"), N_("Toggle color-managed display for this document window"), INKSCAPE_ICON("color-management")), new ZoomVerb(SP_VERB_VIEW_ICON_PREVIEW, "ViewIconPreview", N_("Ico_n Preview..."), @@ -3197,11 +3197,11 @@ Verb *Verb::_base_verbs[] = { INKSCAPE_ICON("dialog-layers")), new DialogVerb(SP_VERB_DIALOG_OBJECTS, "DialogObjects", N_("Object_s..."), N_("View Objects"), INKSCAPE_ICON("dialog-layers")), - new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogTags", N_("Selection se_ts..."), N_("View Tags"), + new DialogVerb(SP_VERB_DIALOG_TAGS, "DialogTags", N_("Selection Se_ts..."), N_("View Tags"), INKSCAPE_ICON("edit-select-all-layers")), new DialogVerb(SP_VERB_DIALOG_STYLE, "DialogStyle", N_("Style Dialog..."), N_("View Style Dialog"), nullptr), new DialogVerb(SP_VERB_DIALOG_CSS, "DialogCss", N_("Css Dialog..."), N_("View Css Dialog"), nullptr), - new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects ..."), + new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffects..."), N_("Manage, edit, and apply path effects"), INKSCAPE_ICON("dialog-path-effects")), new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter _Editor..."), N_("Manage, edit, and apply SVG filters"), INKSCAPE_ICON("dialog-filters")), |
