summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortim_rawlinson <rawlinson@users.noreply.github.com>2019-02-08 13:21:35 +0000
committertim_rawlinson <tim.r@wlinson.co.uk>2019-02-08 13:36:25 +0000
commit3ab7b9a2dfb72e046fbf775c25fb1545350ff7f1 (patch)
tree34792e94155b1175c6420133f565edb79fd6f43b /src
parentUpdate inkscape.pot (diff)
downloadinkscape-3ab7b9a2dfb72e046fbf775c25fb1545350ff7f1.tar.gz
inkscape-3ab7b9a2dfb72e046fbf775c25fb1545350ff7f1.zip
Fix more capitalisation inconsistencies.
Diffstat (limited to 'src')
-rw-r--r--src/ui/contextmenu.cpp4
-rw-r--r--src/verbs.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/contextmenu.cpp b/src/ui/contextmenu.cpp
index 96a9dc649..efbe8b0ff 100644
--- a/src/ui/contextmenu.cpp
+++ b/src/ui/contextmenu.cpp
@@ -111,7 +111,7 @@ ContextMenu::ContextMenu(SPDesktop *desktop, SPItem *item) :
mi->show();
append(*mi);//insert(*mi,positionOfLastDialog++);
- mi = Gtk::manage(new Gtk::MenuItem(_("Unhide objects below"),true));
+ mi = Gtk::manage(new Gtk::MenuItem(_("Unhide Objects Below"),true));
mi->signal_activate().connect(sigc::bind<std::vector< SPItem * > >(sigc::mem_fun(*this, &ContextMenu::UnHideBelow), down_items));
if (!has_down_hidden) {
mi->set_sensitive(false);
@@ -127,7 +127,7 @@ ContextMenu::ContextMenu(SPDesktop *desktop, SPItem *item) :
mi->show();
append(*mi);//insert(*mi,positionOfLastDialog++);
- mi = Gtk::manage(new Gtk::MenuItem(_("Unlock objects below"),true));
+ mi = Gtk::manage(new Gtk::MenuItem(_("Unlock Objects Below"),true));
mi->signal_activate().connect(sigc::bind<std::vector< SPItem * > >(sigc::mem_fun(*this, &ContextMenu::UnLockBelow), down_items));
if (!has_down_locked) {
mi->set_sensitive(false);
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 17e31ddbe..deedecf75 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2662,7 +2662,7 @@ Verb *Verb::_base_verbs[] = {
N_("Remove any filters from selected objects"), nullptr),
new EditVerb(SP_VERB_EDIT_DELETE, "EditDelete", N_("_Delete"), N_("Delete selection"),
INKSCAPE_ICON("edit-delete")),
- new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"), N_("Duplicate selected objects"),
+ new EditVerb(SP_VERB_EDIT_DUPLICATE, "EditDuplicate", N_("Duplic_ate"), N_("Duplicate Selected Objects"),
INKSCAPE_ICON("edit-duplicate")),
new EditVerb(SP_VERB_EDIT_CLONE, "EditClone", N_("Create Clo_ne"),
N_("Create a clone (a copy linked to the original) of selected object"), INKSCAPE_ICON("edit-clone")),