summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorKees Cook <kees@outflux.net>2007-03-18 00:14:34 +0000
committerkeescook <keescook@users.sourceforge.net>2007-03-18 00:14:34 +0000
commitb391acf9c4ab40aa2003a3644273d31e0e559949 (patch)
treefdfc734781a6191f67a3a9f192e2f3437f72c64a /src/verbs.cpp
parentupdate po file list (diff)
downloadinkscape-b391acf9c4ab40aa2003a3644273d31e0e559949.tar.gz
inkscape-b391acf9c4ab40aa2003a3644273d31e0e559949.zip
use UTF-8 for degree symbol
(bzr r2682)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index fc5fa2499..6eb74214a 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2252,11 +2252,13 @@ Verb *Verb::_base_verbs[] = {
/* Object */
new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CW, "ObjectRotate90", N_("Rotate _90&#176; CW"),
- // Tooltips cannot have entities: must use UTF-8 for symbols
- N_("Rotate selection 90° clockwise"), "object_rotate_90_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"), "object_rotate_90_CW"),
new ObjectVerb(SP_VERB_OBJECT_ROTATE_90_CCW, "ObjectRotate90CCW", N_("Rotate 9_0&#176; CCW"),
- // Tooltips cannot have entities: must use UTF-8 for symbols
- N_("Rotate selection 90° counter-clockwise"), "object_rotate_90_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"), "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"),