diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2012-05-14 20:39:48 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2012-05-14 20:39:48 +0000 |
| commit | 0a69f37ffc18750d8657af78513d3491ca66b4f2 (patch) | |
| tree | e8f2564ea39978e41a53c8ce0ec0ed0482d03347 /src | |
| parent | XAML. Fix for Bug #999059 (radial gradients don't get properly exported to XA... (diff) | |
| download | inkscape-0a69f37ffc18750d8657af78513d3491ca66b4f2.tar.gz inkscape-0a69f37ffc18750d8657af78513d3491ca66b4f2.zip | |
a few UI message fixes
(bzr r11363)
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/dialog/find.cpp | 2 | ||||
| -rw-r--r-- | src/ui/dialog/inkscape-preferences.cpp | 2 | ||||
| -rw-r--r-- | src/verbs.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/find.cpp b/src/ui/dialog/find.cpp index ce2dbeea1..773b49de6 100644 --- a/src/ui/dialog/find.cpp +++ b/src/ui/dialog/find.cpp @@ -827,7 +827,7 @@ Find::onAction() count, all, exact? _("exact") : _("partial")); if (_action_replace){ // TRANSLATORS: "%1" is replaced with the number of matches - status.set_text(Glib::ustring::compose(ngettext("%1 object replaced","%1 objects replaced",count), count)); + status.set_text(Glib::ustring::compose(ngettext("%1 match replaced","%1 matches replaced",count), count)); } else { // TRANSLATORS: "%1" is replaced with the number of matches diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 685ea70e1..5280d8bbd 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -771,7 +771,7 @@ void InkscapePreferences::initPageIO() _mouse_grabsize.init("/options/grabsize/value", 1, 7, 1, 2, 3, 0); _page_mouse.add_line(false, _("Handle size"), _mouse_grabsize, "", - _("Set the relative size of node handles."), true); + _("Set the relative size of node handles"), true); _mouse_use_ext_input.init( _("Use pressure-sensitive tablet (requires restart)"), "/options/useextinput/value", true); _page_mouse.add_line(false, "",_mouse_use_ext_input, "", diff --git a/src/verbs.cpp b/src/verbs.cpp index 2c1d178cb..f2ff61293 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2311,7 +2311,7 @@ Verb *Verb::_base_verbs[] = { new EditVerb(SP_VERB_EDIT_SELECT_SAME_STROKE_COLOR, "EditSelectSameStrokeColor", N_("_Stroke Color"), N_("Select all objects with the same stroke as the selected objects"), GTK_STOCK_SELECT_ALL), new EditVerb(SP_VERB_EDIT_SELECT_SAME_STROKE_STYLE, "EditSelectSameStrokeStyle", N_("Stroke St_yle"), - N_("Select all objects with the same stroke style (width, dsh, markers) as the selected objects"), GTK_STOCK_SELECT_ALL), + N_("Select all objects with the same stroke style (width, dash, markers) as the selected objects"), GTK_STOCK_SELECT_ALL), new EditVerb(SP_VERB_EDIT_INVERT, "EditInvert", N_("In_vert Selection"), N_("Invert selection (unselect what is selected and select everything else)"), INKSCAPE_ICON("edit-select-invert")), new EditVerb(SP_VERB_EDIT_INVERT_IN_ALL_LAYERS, "EditInvertInAllLayers", N_("Invert in All Layers"), |
