From 737c9af407d639f940b098fbf93cf9654ac14b96 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Fri, 27 Dec 2002 11:08:10 +0000 Subject: [PATCH] remove bogus spaces git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5896 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ChangeLog | 5 +++++ src/frontends/qt2/ChangeLog | 5 +++++ src/frontends/qt2/QPrefsDialog.C | 2 +- src/frontends/qt2/ui/QMathDialog.ui | 2 +- src/frontends/xforms/ChangeLog | 2 ++ src/frontends/xforms/input_validators.C | 4 ++-- src/lyxrc.C | 4 ++-- src/text.C | 4 ++-- 8 files changed, 20 insertions(+), 8 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index b4626dc8e5..ae468c28a0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-12-26 Jean-Marc Lasgouttes + + * text.C (insertChar): + * lyxrc.C (getDescription): remove extra spaces + 2002-12-23 Jean-Marc Lasgouttes * lyxrc.C (getDescription): remove extra spaces diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index af09d02c84..7f92914664 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,8 @@ +2002-12-26 Jean-Marc Lasgouttes + + * ui/QMathDialog.ui: + * QPrefsDialog.C (select_workingdir): fix typo + 2002-12-21 Dekel Tsur * qfont_loader.C (isAvailable): Call to addFontPath(). diff --git a/src/frontends/qt2/QPrefsDialog.C b/src/frontends/qt2/QPrefsDialog.C index c9c835ba79..6c8412af76 100644 --- a/src/frontends/qt2/QPrefsDialog.C +++ b/src/frontends/qt2/QPrefsDialog.C @@ -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)); } diff --git a/src/frontends/qt2/ui/QMathDialog.ui b/src/frontends/qt2/ui/QMathDialog.ui index 917e8a0660..f516138823 100644 --- a/src/frontends/qt2/ui/QMathDialog.ui +++ b/src/frontends/qt2/ui/QMathDialog.ui @@ -407,7 +407,7 @@ toolTip - Selection a function or operator to insert + Select a function or operator to insert diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index baadda6e41..5f8b11f80c 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,5 +1,7 @@ 2002-12-26 Jean-Marc Lasgouttes + * input_validators.C (fl_print_range_filter): remove extra space + * Menubar_pimpl.C (create_submenu): do not query the status of a submenu either. diff --git a/src/frontends/xforms/input_validators.C b/src/frontends/xforms/input_validators.C index 3cb159ba21..b39ef56bd3 100644 --- a/src/frontends/xforms/input_validators.C +++ b/src/frontends/xforms/input_validators.C @@ -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 diff --git a/src/lyxrc.C b/src/lyxrc.C index eee995868c..7cc8beb200 100644 --- a/src/lyxrc.C +++ b/src/lyxrc.C @@ -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: diff --git a/src/text.C b/src/text.C index 46259d4d8b..b7a327d61c 100644 --- a/src/text.C +++ b/src/text.C @@ -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(); -- 2.39.2