summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Phillips <jon@fabricatorz.com>2006-02-04 03:42:49 +0000
committerkidproto <kidproto@users.sourceforge.net>2006-02-04 03:42:49 +0000
commitf7532fcb0815ed8e158ea23f75915c0af89d1d29 (patch)
tree08408904f6111f5ba35b2411ce87567baec16d5c
parentI whipped up some colorized icons for the time being - these are temporary un... (diff)
downloadinkscape-f7532fcb0815ed8e158ea23f75915c0af89d1d29.tar.gz
inkscape-f7532fcb0815ed8e158ea23f75915c0af89d1d29.zip
Updated for build and fixed Trace Bitmap text to be Trace Bitmap...
(bzr r72)
-rw-r--r--ChangeLog5
-rw-r--r--po/ja.po1
-rw-r--r--po/pt_BR.po1
-rw-r--r--src/verbs.cpp2
4 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 438f94fde..5e8c4a837 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-02-03 Jon Phillips <jon@rejon.org>
+
+ * src/verbs.cpp: Added "..." to "Trace Bitmap" text. Yes, what a
+ simple and dumb thing to add for consistency.
+
2006-01-24 Michael Wybrow <mjwybrow@users.sourceforge.net>
* src/libavoid/connector.cpp, src/libavoid/connector.h,
diff --git a/po/ja.po b/po/ja.po
index 1dcf2859e..6629eefbc 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -20,6 +20,7 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
#: ../inkscape.desktop.in.h:1
msgid "Create and edit Scalable Vector Graphics images"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index b7e2e41b7..08fef1ed5 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -12,6 +12,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
#: ../inkscape.desktop.in.h:1
msgid "Create and edit Scalable Vector Graphics images"
diff --git a/src/verbs.cpp b/src/verbs.cpp
index a1a027c3f..5f7e2491d 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -1986,7 +1986,7 @@ Verb *Verb::_base_verbs[] = {
new SelectionVerb(SP_VERB_SELECTION_REVERSE, "SelectionReverse", N_("_Reverse"),
N_("Reverses the direction of selected paths; useful for flipping markers"), "selection_reverse"),
// TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize)
- new SelectionVerb(SP_VERB_SELECTION_TRACE, "SelectionTrace", N_("_Trace Bitmap"),
+ new SelectionVerb(SP_VERB_SELECTION_TRACE, "SelectionTrace", N_("_Trace Bitmap..."),
N_("Convert bitmap object to paths"), "selection_trace"),
new SelectionVerb(SP_VERB_SELECTION_CREATE_BITMAP, "SelectionCreateBitmap", N_("_Make a Bitmap Copy"),
N_("Export selection to a bitmap and insert it into document"), "selection_bitmap" ),