summaryrefslogtreecommitdiffstats
path: root/src/event-log.cpp
diff options
context:
space:
mode:
authorbulia byak <buliabyak@gmail.com>2006-07-15 18:03:53 +0000
committerbuliabyak <buliabyak@users.sourceforge.net>2006-07-15 18:03:53 +0000
commitb86d223917c75595bb6387bb3ff1193534e62f41 (patch)
treee4489e3d6db6bbb9a12ab53a767dc43abfacdb91 /src/event-log.cpp
parentadd HAVE_GETOPT_H (diff)
downloadinkscape-b86d223917c75595bb6387bb3ff1193534e62f41.tar.gz
inkscape-b86d223917c75595bb6387bb3ff1193534e62f41.zip
add colon
(bzr r1418)
Diffstat (limited to 'src/event-log.cpp')
-rw-r--r--src/event-log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event-log.cpp b/src/event-log.cpp
index 64a9b19ec..496094318 100644
--- a/src/event-log.cpp
+++ b/src/event-log.cpp
@@ -266,7 +266,7 @@ EventLog::updateUndoVerbs()
if(_getUndoEvent()) {
Inkscape::Verb::get(SP_VERB_EDIT_UNDO)->sensitive(_document, true);
- Inkscape::Verb::get(SP_VERB_EDIT_UNDO)->name(_document, String::ucompose("%1 %2",
+ Inkscape::Verb::get(SP_VERB_EDIT_UNDO)->name(_document, String::ucompose("%1: %2",
Glib::ustring(_("_Undo")),
Glib::ustring((*_getUndoEvent())[_columns.description])));
} else {
@@ -276,7 +276,7 @@ EventLog::updateUndoVerbs()
if(_getRedoEvent()) {
Inkscape::Verb::get(SP_VERB_EDIT_REDO)->sensitive(_document, true);
- Inkscape::Verb::get(SP_VERB_EDIT_REDO)->name(_document, String::ucompose("%1 %2",
+ Inkscape::Verb::get(SP_VERB_EDIT_REDO)->name(_document, String::ucompose("%1: %2",
Glib::ustring(_("_Redo")),
Glib::ustring((*_getRedoEvent())[_columns.description])));