summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorKees Cook <kees@outflux.net>2007-03-14 04:23:43 +0000
committerkeescook <keescook@users.sourceforge.net>2007-03-14 04:23:43 +0000
commit62940621a14f2f1971934e89d0ff76d7c16d70be (patch)
treed792a4ad3421f0d917564ebdcfc8c27d8dde60ed /src/verbs.cpp
parentClean up indentation (diff)
downloadinkscape-62940621a14f2f1971934e89d0ff76d7c16d70be.tar.gz
inkscape-62940621a14f2f1971934e89d0ff76d7c16d70be.zip
Swap out entities in tooltips. Fixes https://bugs.launchpad.net/ubuntu/+source/inkscape/+bug/91548
(bzr r2640)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index f88422407..7f3b3bc47 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2252,9 +2252,11 @@ Verb *Verb::_base_verbs[] = {
/* Object */
new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90&#176; CW"),
- N_("Rotate selection 90&#176; clockwise"), "object_rotate_90_CW"),
+ // Tooltips cannot have entities: must use UTF-8 for symbols
+ N_("Rotate selection 90° clockwise"), "object_rotate_90_CW"),
new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0&#176; CCW"),
- N_("Rotate selection 90&#176; counter-clockwise"), "object_rotate_90_CCW"),
+ // Tooltips cannot have entities: must use UTF-8 for symbols
+ N_("Rotate selection 90° counter-clockwise"), "object_rotate_90_CCW"),
new ObjectVerb(SP_VERB_OBJECT_FLATTEN, "ObjectRemoveTransform", N_("Remove _Transformations"),
N_("Remove transformations from object"), "object_reset"),
new ObjectVerb(SP_VERB_OBJECT_TO_CURVE, "ObjectToPath", N_("_Object to Path"),