From: luca_bruno Date: Fri, 29 May 2009 17:54:57 +0000 (+0000) Subject: * Just a couple of string fixes X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=d80455bac91320e68b02f3a8c01181e6aab0e101;p=inkscape.git * Just a couple of string fixes --- diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index 9cb08c7f5..2313cf57f 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -219,7 +219,7 @@ void InkscapePreferences::initPageSnapping() _("After snapping, a symbol is drawn at the point that has snapped")); _snap_delay.init("/options/snapdelay/value", 0, 1000, 50, 100, 300, 0); - _page_snapping.add_line( false, _("Delay (in msec):"), _snap_delay, "", + _page_snapping.add_line( false, _("Delay (in ms):"), _snap_delay, "", _("Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate"), true); _snap_closest_only.init( _("Only snap the node closest to the pointer"), "/options/snapclosestonly/value", false); @@ -1113,7 +1113,7 @@ void InkscapePreferences::initPageAutosave() _autosave_autosave_interval.init("/options/autosave/interval", 1.0, 10800.0, 1.0, 10.0, 10.0, true, false); _page_autosave.add_line(true, _("Interval (in minutes):"), _autosave_autosave_interval, "", _("Interval (in minutes) at which document will be autosaved"), false); _autosave_autosave_path.init("/options/autosave/path", true); - _page_autosave.add_line(true, _("Path:"), _autosave_autosave_path, "", _("The directory where autosaves will be written"), false); + _page_autosave.add_line(true, Q_("filesystem|Path:"), _autosave_autosave_path, "", _("The directory where autosaves will be written"), false); _autosave_autosave_max.init("/options/autosave/max", 1.0, 100.0, 1.0, 10.0, 10.0, true, false); _page_autosave.add_line(true, _("Maximum number of autosaves:"), _autosave_autosave_max, "", _("Maximum number of autosaved files; use this to limit the storage space used"), false);