summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-03-04 18:11:33 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-03-04 18:11:33 +0000
commit2923e07b5f57858ff9ab7e611376a7c5fab66739 (patch)
tree56e0062cd0599b0202770511ec6038bddfc5f9e4 /src/verbs.cpp
parentReduce a half the spiro distance to redraw (diff)
parentFix for W3C test suite test filters-light-02-f.svg. Marker refX and refY defi... (diff)
downloadinkscape-2923e07b5f57858ff9ab7e611376a7c5fab66739.tar.gz
inkscape-2923e07b5f57858ff9ab7e611376a7c5fab66739.zip
update to trunk
(bzr r11950.1.274)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 653d5f892..8b72dd5ab 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2472,7 +2472,7 @@ Verb *Verb::_base_verbs[] = {
new EditVerb(SP_VERB_EDIT_DESELECT, "EditDeselect", N_("D_eselect"),
N_("Deselect any selected objects or nodes"), INKSCAPE_ICON("edit-select-none")),
new EditVerb(SP_VERB_EDIT_DELETE_ALL_GUIDES, "EditRemoveAllGuides", N_("Delete All Guides"),
- N_("Create four guides aligned with the page borders"), NULL),
+ N_("Delete all the guides in the document"), NULL),
new EditVerb(SP_VERB_EDIT_GUIDES_AROUND_PAGE, "EditGuidesAroundPage", N_("Create _Guides Around the Page"),
N_("Create four guides aligned with the page borders"), NULL),
new EditVerb(SP_VERB_EDIT_NEXT_PATHEFFECT_PARAMETER, "EditNextPathEffectParameter", N_("Next path effect parameter"),
@@ -2609,11 +2609,11 @@ Verb *Verb::_base_verbs[] = {
N_("Toggle visibility of current layer"), NULL),
// Object
- new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90&#176; CW"),
+ new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90\xc2\xb0 CW"),
// This is shared between tooltips and statusbar, so they
// must use UTF-8, not HTML entities for special characters.
N_("Rotate selection 90\xc2\xb0 clockwise"), INKSCAPE_ICON("object-rotate-right")),
- new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0&#176; CCW"),
+ new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0\xc2\xb0 CCW"),
// This is shared between tooltips and statusbar, so they
// must use UTF-8, not HTML entities for special characters.
N_("Rotate selection 90\xc2\xb0 counter-clockwise"), INKSCAPE_ICON("object-rotate-left")),