]> git.lyx.org Git - features.git/commitdiff
remove bogus spaces
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 27 Dec 2002 11:08:10 +0000 (11:08 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 27 Dec 2002 11:08:10 +0000 (11:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5896 a592a061-630c-0410-9148-cb99ea01b6c8

src/ChangeLog
src/frontends/qt2/ChangeLog
src/frontends/qt2/QPrefsDialog.C
src/frontends/qt2/ui/QMathDialog.ui
src/frontends/xforms/ChangeLog
src/frontends/xforms/input_validators.C
src/lyxrc.C
src/text.C

index b4626dc8e5b93d1826130ecae3dc1eada1d3b1cc..ae468c28a02924d2cccbf383c2f6f2a803d1b71c 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * text.C (insertChar): 
+       * lyxrc.C (getDescription): remove extra spaces
+
 2002-12-23  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
 
        * lyxrc.C (getDescription): remove extra spaces
index af09d02c84a3775294d6ae562921d1fa27a1fda8..7f92914664eb95917d4c2b9bf7d19f59adc0e2d5 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
+
+       * ui/QMathDialog.ui: 
+       * QPrefsDialog.C (select_workingdir): fix typo
+
 2002-12-21  Dekel Tsur  <dekelts@tau.ac.il>
 
        * qfont_loader.C (isAvailable): Call to addFontPath().
index c9c835ba79ba4b9d8be69afe8a2259401225dc53..6c8412af765a970da1e9820b83feff4eb6a2fe30 100644 (file)
@@ -569,7 +569,7 @@ void QPrefsDialog::select_backupdir()
 
 void QPrefsDialog::select_workingdir()
 {
-       string file(form_->controller().browse(fromqstr(pathsModule->workingDirED->text()), _("Selection a documents directory")));
+       string file(form_->controller().browse(fromqstr(pathsModule->workingDirED->text()), _("Select a document directory")));
        if (!file.empty())
                pathsModule->workingDirED->setText(toqstr(file));
 }
index 917e8a066002855241fe99e3d89c1f012b1bff5a..f51613882382f7a7261c95d0a4d05bf34f449d3a 100644 (file)
                                             </property>
                                             <property>
                                                 <name>toolTip</name>
-                                                <string>Selection a function or operator to insert</string>
+                                                <string>Select a function or operator to insert</string>
                                             </property>
                                         </widget>
                                     </vbox>
index baadda6e41275a0ee86fc3b0ed0001c92770999f..5f8b11f80c914768505dab6d0c8c2fbc09e61493 100644 (file)
@@ -1,5 +1,7 @@
 2002-12-26  Jean-Marc Lasgouttes  <Jean-Marc.Lasgouttes@inria.fr>
 
+       * input_validators.C (fl_print_range_filter): remove extra space
+
        * Menubar_pimpl.C (create_submenu): do not query the status of a
        submenu either.
 
index 3cb159ba213457fd7caefa6b2ba382b44d08187e..b39ef56bd3179a4e5abfc22c7172ee7075d530f8 100644 (file)
@@ -123,8 +123,8 @@ void fl_print_range_filter(FL_OBJECT * ob,
                pages = split (pages, piece, ',') ;
                piece = trim(piece);
                if (!stringOnlyContains (piece, "0123456789-")) {
-                       Alert::alert(_("ERROR!  Unable to print!"),
-                                  _("Check 'range of pages'!"));
+                       Alert::alert(_("ERROR! Unable to print!"),
+                                  _("Check `range of pages'!"));
                        return;
                }
                if (piece.find('-') == string::npos) { // not found
index eee995868cf18c331b00c09b3c806d6f3a06821f..7cc8beb20058f4334ac5a703eafba76a194e3553 100644 (file)
@@ -1947,11 +1947,11 @@ string const LyXRC::getDescription(LyXRCTags tag)
                break;
 
        case RC_DOCUMENTPATH:
-               str = _("The default path for your documents.  An empty value selects the directory LyX was started from.");
+               str = _("The default path for your documents. An empty value selects the directory LyX was started from.");
                break;
 
        case RC_TEMPLATEPATH:
-               str = _("The path that LyX will set when offering to choose a template.  An empty value selects the directory LyX was started from.");
+               str = _("The path that LyX will set when offering to choose a template. An empty value selects the directory LyX was started from.");
                break;
 
        case RC_TEMPDIRPATH:
index 46259d4d8b7b5f20dc52bf6fc9ba559670616bea..b7a327d61ce7e36f77ceac4e936b914f883dd884 100644 (file)
@@ -1921,9 +1921,9 @@ void LyXText::insertChar(BufferView * bview, char c)
                        static bool sent_space_message = false;
                        if (!sent_space_message) {
                                if (cursor.pos() == 0)
-                                       bview->owner()->message(_("You cannot insert a space at the beginning of a paragraph.  Please read the Tutorial."));
+                                       bview->owner()->message(_("You cannot insert a space at the beginning of a paragraph. Please read the Tutorial."));
                                else
-                                       bview->owner()->message(_("You cannot type two spaces this way.  Please read the Tutorial."));
+                                       bview->owner()->message(_("You cannot type two spaces this way. Please read the Tutorial."));
                                sent_space_message = true;
                        }
                        charInserted();