From 691568ea39ce8efc4a6e6e5461d3f65705cf2d72 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Mon, 6 Jan 2003 14:02:24 +0000 Subject: [PATCH] =?utf8?q?Minor=20bits=20'n'=20bobs=20from=20Michael,=20J?= =?utf8?q?=EF=BF=BDrgen=20and=20Jean-Marc.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5906 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/ChangeLog | 12 ++++++++++++ src/LColor.C | 2 +- src/LaTeX.C | 4 ++-- src/LyXAction.C | 2 +- src/MenuBackend.C | 4 ++-- src/buffer.C | 12 +++++------- src/exporter.C | 2 +- src/frontends/qt2/ChangeLog | 9 +++++++++ src/frontends/qt2/FileDialog.C | 4 ++-- src/frontends/qt2/QIndexDialog.C | 4 ++-- src/frontends/qt2/QPrefsDialog.C | 2 +- src/frontends/qt2/QToc.C | 2 +- src/frontends/qt2/qfont_loader.C | 2 +- src/frontends/xforms/ChangeLog | 19 +++++++++++++++++++ src/frontends/xforms/FormGraphics.C | 2 +- src/frontends/xforms/FormTabular.C | 14 +++++++++----- src/frontends/xforms/forms/fdfixc.sed | 7 +++++++ src/frontends/xforms/forms/form_bibtex.fd | 2 +- src/frontends/xforms/forms/form_citation.fd | 6 +++--- src/frontends/xforms/forms/form_document.fd | 10 +++++----- src/frontends/xforms/forms/form_search.fd | 4 ++-- src/frontends/xforms/xformsImage.C | 4 ++-- src/insets/ChangeLog | 5 +++++ src/insets/insettext.C | 2 +- src/lyxfunc.C | 4 ++-- src/lyxrc.C | 10 +++++----- 26 files changed, 102 insertions(+), 48 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 96dc015bb8..63f874fa25 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,15 @@ +2003-01-06 Michael Schmitt + + * LColor.C: + * LaTeX.C: + * LyXAction.C: + * MenuBackend.C: + * buffer.C: + * exporter.C: + * lyxfunc.C: + * lyxrc.C: fix inconsistent usage of spaces, colons, capitalization, + and the like. + 2003-01-05 John Levon * BufferView.h: diff --git a/src/LColor.C b/src/LColor.C index c213c79fe8..6420afde2e 100644 --- a/src/LColor.C +++ b/src/LColor.C @@ -59,7 +59,7 @@ LColor::LColor() { background, N_("background"), "background", "linen", "background" }, { foreground, N_("text"), "foreground", "black", "foreground" }, { selection, N_("selection"), "selection", "LightBlue", "selection" }, - { latex, N_("latex text"), "latex", "DarkRed", "latex" }, + { latex, N_("LaTeX text"), "latex", "DarkRed", "latex" }, { preview, N_("previewed snippet"), "preview", "black", "preview" }, { note, N_("note"), "note", "yellow", "note" }, { notebg, N_("note background"), "notebg", "yellow", "notebg" }, diff --git a/src/LaTeX.C b/src/LaTeX.C index 45355f8fdb..797b316b56 100644 --- a/src/LaTeX.C +++ b/src/LaTeX.C @@ -472,7 +472,7 @@ void LaTeX::scanAuxFile(string const & file, Aux_Info & aux_info) string database; data = split(data, database, ','); database = ChangeExtension(database, "bib"); - lyxerr[Debug::LATEX] << "Bibtex database: `" + lyxerr[Debug::LATEX] << "BibTeX database: `" << database << '\'' << endl; aux_info.databases.insert(database); } @@ -481,7 +481,7 @@ void LaTeX::scanAuxFile(string const & file, Aux_Info & aux_info) // token is now the style file // pass it to the helper style = ChangeExtension(style, "bst"); - lyxerr[Debug::LATEX] << "Bibtex style: `" + lyxerr[Debug::LATEX] << "BibTeX style: `" << style << '\'' << endl; aux_info.styles.insert(style); } else if (regex_match(STRCONV(token), sub, reg4)) { diff --git a/src/LyXAction.C b/src/LyXAction.C index 0d7f42f14c..a2304e7018 100644 --- a/src/LyXAction.C +++ b/src/LyXAction.C @@ -106,7 +106,7 @@ void LyXAction::init() N_("Select previous char"), ReadOnly }, { LFUN_BIBDB_ADD, "bibtex-database-add", "", Noop }, { LFUN_BIBDB_DEL, "bibtex-database-del", "", Noop }, - { LFUN_INSERT_BIBTEX, "bibtex-insert", N_("Insert bibtex"), + { LFUN_INSERT_BIBTEX, "bibtex-insert", N_("Insert BibTeX"), Noop }, { LFUN_BIBTEX_STYLE, "bibtex-style", "", Noop }, { LFUN_BOOKMARK_GOTO, "bookmark-goto", "", ReadOnly }, diff --git a/src/MenuBackend.C b/src/MenuBackend.C index bd58b3ec21..5d5604dfd7 100644 --- a/src/MenuBackend.C +++ b/src/MenuBackend.C @@ -375,9 +375,9 @@ void expandFormats(MenuItem::Kind kind, Menu & tomenu, Buffer const * buf) if (kind == MenuItem::ImportFormats) if ((*fit)->name() == "text") - label = _("Ascii text as lines"); + label = _("ASCII text as lines"); else if ((*fit)->name() == "textparagraph") - label = _("Ascii text as paragraphs"); + label = _("ASCII text as paragraphs"); if (!(*fit)->shortcut().empty()) label += '|' + (*fit)->shortcut(); int const action2 = lyxaction. diff --git a/src/buffer.C b/src/buffer.C index 31dd511ea8..2197e6e9df 100644 --- a/src/buffer.C +++ b/src/buffer.C @@ -227,10 +227,10 @@ pair const Buffer::getLogName() const if (b_fi.exist() && (!f_fi.exist() || f_fi.getModificationTime() < b_fi.getModificationTime())) { - lyxerr[Debug::FILES] << "Log name calculated as : " << bname << endl; + lyxerr[Debug::FILES] << "Log name calculated as: " << bname << endl; return make_pair(Buffer::buildlog, bname); } - lyxerr[Debug::FILES] << "Log name calculated as : " << fname << endl; + lyxerr[Debug::FILES] << "Log name calculated as: " << fname << endl; return make_pair(Buffer::latexlog, fname); } @@ -2140,7 +2140,7 @@ void Buffer::makeLaTeXFile(ostream & os, // Just to be sure. (Asger) texrow.newline(); - lyxerr[Debug::INFO] << "Finished making latex file." << endl; + lyxerr[Debug::INFO] << "Finished making LaTeX file." << endl; lyxerr[Debug::INFO] << "Row count was " << texrow.rows() - 1 << '.' << endl; @@ -2328,8 +2328,7 @@ void Buffer::makeLinuxDocFile(string const & fname, bool nice, bool body_only) case LATEX_COMMAND: if (depth!= 0) sgmlError(par, 0, - _("Error : Wrong depth for" - " LatexType Command.\n")); + _("Error: Wrong depth for LatexType Command.\n")); if (!environment_stack[depth].empty()) { sgml::closeTag(ofs, depth, false, environment_stack[depth]); @@ -2802,8 +2801,7 @@ void Buffer::makeDocBookFile(string const & fname, bool nice, bool only_body) case LATEX_COMMAND: if (depth != 0) sgmlError(par, 0, - _("Error : Wrong depth for " - "LatexType Command.\n")); + _("Error: Wrong depth for LatexType Command.\n")); command_name = style->latexname(); diff --git a/src/exporter.C b/src/exporter.C index 49a66b2f71..08a857ff68 100644 --- a/src/exporter.C +++ b/src/exporter.C @@ -86,7 +86,7 @@ bool Exporter::Export(Buffer * buffer, string const & format, else if (backend_format == format) buffer->makeLaTeXFile(filename, string(), true); else if (contains(buffer->filePath(), ' ')) { - Alert::alert(_("Cannot run latex."), + Alert::alert(_("Cannot run LaTeX."), _("The path to the lyx file cannot contain spaces.")); return false; } else diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index 286fb180d5..0d2480c7f3 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,12 @@ +2003-01-06 Michael Schmitt + + * FileDialog.C: + * QIndexDialog.C: + * QPrefsDialog.C: + * QToc.C: + * qfont_loader.C: fix inconsistent usage of spaces, colons, + capitalization, and the like. + 2003-01-05 John Levon * QLyXKeySym.h: diff --git a/src/frontends/qt2/FileDialog.C b/src/frontends/qt2/FileDialog.C index fc53055d5c..28a5342392 100644 --- a/src/frontends/qt2/FileDialog.C +++ b/src/frontends/qt2/FileDialog.C @@ -71,7 +71,7 @@ FileDialog::Result const FileDialog::save(string const & path, dlg.setSelection(toqstr(suggested)); FileDialog::Result result; - lyxerr[Debug::GUI] << "Synchronous FileDialog : " << endl; + lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl; result.first = FileDialog::Chosen; int res = dlg.exec(); lyxerr[Debug::GUI] << "result " << res << endl; @@ -99,7 +99,7 @@ FileDialog::Result const FileDialog::open(string const & path, dlg.setSelection(toqstr(suggested)); FileDialog::Result result; - lyxerr[Debug::GUI] << "Synchronous FileDialog : " << endl; + lyxerr[Debug::GUI] << "Synchronous FileDialog: " << endl; result.first = FileDialog::Chosen; int res = dlg.exec(); lyxerr[Debug::GUI] << "result " << res << endl; diff --git a/src/frontends/qt2/QIndexDialog.C b/src/frontends/qt2/QIndexDialog.C index 308f58bf04..5527a2cd9e 100644 --- a/src/frontends/qt2/QIndexDialog.C +++ b/src/frontends/qt2/QIndexDialog.C @@ -37,11 +37,11 @@ QIndexDialog::QIndexDialog(QIndex * form) "The format of the entry in the index.\n" "\n" "An entry can be specified as a sub-entry of\n" -"another with \"!\" :\n" +"another with \"!\":\n" "\n" "cars!mileage\n" "\n" -"You can cross-refer to another entry like so :\n" +"You can cross-refer to another entry like so:\n" "\n" "cars!mileage|see{economy}\n" "\n" diff --git a/src/frontends/qt2/QPrefsDialog.C b/src/frontends/qt2/QPrefsDialog.C index 6c8412af76..25f1058c75 100644 --- a/src/frontends/qt2/QPrefsDialog.C +++ b/src/frontends/qt2/QPrefsDialog.C @@ -139,7 +139,7 @@ QPrefsDialog::QPrefsDialog(QPrefs * form) // output - i = new QListViewItem(out, qt_("Ascii")); + i = new QListViewItem(out, qt_("ASCII")); pane_map_[i] = asciiModule; i = new QListViewItem(out, i, qt_("Date format")); pane_map_[i] = dateModule; diff --git a/src/frontends/qt2/QToc.C b/src/frontends/qt2/QToc.C index 63b1960cb6..49b887efff 100644 --- a/src/frontends/qt2/QToc.C +++ b/src/frontends/qt2/QToc.C @@ -171,7 +171,7 @@ void QToc::select(string const & text) } if (iter == toclist.end()) { - lyxerr[Debug::GUI] << "Couldn't find highlighted TOC entry : " + lyxerr[Debug::GUI] << "Couldn't find highlighted TOC entry: " << text << endl; return; } diff --git a/src/frontends/qt2/qfont_loader.C b/src/frontends/qt2/qfont_loader.C index e0395b8f9d..eb2f28d310 100644 --- a/src/frontends/qt2/qfont_loader.C +++ b/src/frontends/qt2/qfont_loader.C @@ -168,7 +168,7 @@ QFont const getSymbolFont(string const & family) return font; } - lyxerr[Debug::FONT] << " FAILED :(" << endl; + lyxerr[Debug::FONT] << " FAILED :-(" << endl; return font; } diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 544987f714..ec08b08adb 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,22 @@ +2003-01-06 Michael Schmitt + + * FormGraphics.C: + * xformsImage.C: + * forms/form_bibtex.fd: + * forms/form_citation.fd: + * forms/form_document.fd: + * forms/form_search.fd: fix inconsistent usage of spaces, colons, + capitalization, and the like. + +2002-12-20 Jürgen Spitzmüller + + * FormTabular.C: fix bug 572, fix ReadOnly logic. + +2003-01-06 Angus Leeming + + * forms/fdfixc.sed: Turn off choice titles as they can contain + meta-chars that just look nasty. + 2003-01-05 John Levon * XLyXKeySym.h: diff --git a/src/frontends/xforms/FormGraphics.C b/src/frontends/xforms/FormGraphics.C index 80c03d7712..a52bb4d784 100644 --- a/src/frontends/xforms/FormGraphics.C +++ b/src/frontends/xforms/FormGraphics.C @@ -256,7 +256,7 @@ void FormGraphics::build() tooltips().init(extra_->check_subcaption, str); str = _("Insert the optional subfigure caption."); tooltips().init(extra_->input_subcaption, str); - str = _("Add any additional latex option, which is defined in the " + str = _("Add any additional LaTeX option, which is defined in the " "graphicx-package and not mentioned in the gui's tabfolders."); tooltips().init(extra_->input_special, str); diff --git a/src/frontends/xforms/FormTabular.C b/src/frontends/xforms/FormTabular.C index 483e9c2ee3..c60b7d2850 100644 --- a/src/frontends/xforms/FormTabular.C +++ b/src/frontends/xforms/FormTabular.C @@ -188,12 +188,16 @@ void FormTabular::update() } pwidth = tabular->GetMColumnPWidth(cell); align = tabular->GetAlignment(cell); - if (align == LYX_ALIGN_LEFT) - fl_set_button(cell_options_->radio_align_left, 1); - else if (align == LYX_ALIGN_RIGHT) + // set the horiz. alignment, default is left here + fl_set_button(column_options_->radio_align_left, 0); + fl_set_button(column_options_->radio_align_right, 0); + fl_set_button(column_options_->radio_align_center, 0); + if (align == LYX_ALIGN_RIGHT) fl_set_button(cell_options_->radio_align_right, 1); - else + else if (align == LYX_ALIGN_CENTER) fl_set_button(cell_options_->radio_align_center, 1); + else + fl_set_button(cell_options_->radio_align_left, 1); align = tabular->GetVAlignment(cell); fl_set_button(cell_options_->radio_valign_top, 0); @@ -214,7 +218,7 @@ void FormTabular::update() cell_options_->choice_value_mcolumn_width, pwidth, default_unit); - if (bc().bp().isReadOnly()) { + if (!bc().bp().isReadOnly()) { setEnabled(cell_options_->input_special_multialign, true); setEnabled(cell_options_->input_mcolumn_width, true); setEnabled(cell_options_->choice_value_mcolumn_width, true); diff --git a/src/frontends/xforms/forms/fdfixc.sed b/src/frontends/xforms/forms/fdfixc.sed index 49bc088025..93b7722862 100644 --- a/src/frontends/xforms/forms/fdfixc.sed +++ b/src/frontends/xforms/forms/fdfixc.sed @@ -74,6 +74,13 @@ s/\( fdui->form\)\(.*bgn_form.*\)/\1\2\ /bmtable/ s/fl_add_button/fl_add_bmtable/ +# For all lines containing fl_add_choice, +# add a line that turns off the title. (These titles can contain meta-chars +# that just look nasty ;-) +/fl_add_choice/a\ + fl_set_choice_notitle(obj, 1); + + # For all lines containing "fl_" and a string _not_ containing |, # replace the string with _(string) /fl_/ s/".[^|]*"/_(&)/ diff --git a/src/frontends/xforms/forms/form_bibtex.fd b/src/frontends/xforms/forms/form_bibtex.fd index 052d468736..44383a9855 100644 --- a/src/frontends/xforms/forms/form_bibtex.fd +++ b/src/frontends/xforms/forms/form_bibtex.fd @@ -167,7 +167,7 @@ alignment: FL_ALIGN_TOP_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Styles|#y +label: Styles:|#y shortcut: resize: FL_RESIZE_ALL gravity: FL_North FL_South diff --git a/src/frontends/xforms/forms/form_citation.fd b/src/frontends/xforms/forms/form_citation.fd index 34d0860ee6..6e3e6904f7 100644 --- a/src/frontends/xforms/forms/form_citation.fd +++ b/src/frontends/xforms/forms/form_citation.fd @@ -41,7 +41,7 @@ alignment: FL_ALIGN_TOP_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Inset keys|#I +label: Inset keys:|#I shortcut: resize: FL_RESIZE_ALL gravity: FL_NorthWest FL_South @@ -59,7 +59,7 @@ alignment: FL_ALIGN_TOP_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Bibliography keys|#k +label: Bibliography keys:|#k shortcut: resize: FL_RESIZE_ALL gravity: FL_North FL_SouthEast @@ -77,7 +77,7 @@ alignment: FL_ALIGN_TOP_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Info +label: Info: shortcut: resize: FL_RESIZE_NONE gravity: FL_SouthWest FL_SouthEast diff --git a/src/frontends/xforms/forms/form_document.fd b/src/frontends/xforms/forms/form_document.fd index 7802f4273b..2950b54e3b 100644 --- a/src/frontends/xforms/forms/form_document.fd +++ b/src/frontends/xforms/forms/form_document.fd @@ -863,7 +863,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Spacing|#g +label: Spacing:|#g shortcut: resize: FL_RESIZE_ALL gravity: FL_NoGravity FL_NoGravity @@ -1398,7 +1398,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Section number depth +label: Section number depth: shortcut: resize: FL_RESIZE_ALL gravity: FL_NoGravity FL_NoGravity @@ -1420,7 +1420,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Table of contents depth +label: Table of contents depth: shortcut: resize: FL_RESIZE_ALL gravity: FL_NoGravity FL_NoGravity @@ -1442,7 +1442,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: PS Driver|#S +label: PS Driver:|#S shortcut: resize: FL_RESIZE_ALL gravity: FL_NoGravity FL_NoGravity @@ -1496,7 +1496,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Citation style|#i +label: Citation style:|#i shortcut: resize: FL_RESIZE_ALL gravity: FL_NoGravity FL_NoGravity diff --git a/src/frontends/xforms/forms/form_search.fd b/src/frontends/xforms/forms/form_search.fd index 16b26d622c..cd81e07624 100644 --- a/src/frontends/xforms/forms/form_search.fd +++ b/src/frontends/xforms/forms/form_search.fd @@ -41,7 +41,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Find|#F +label: Find:|#F shortcut: resize: FL_RESIZE_X gravity: FL_West FL_East @@ -59,7 +59,7 @@ alignment: FL_ALIGN_LEFT style: FL_NORMAL_STYLE size: FL_NORMAL_SIZE lcol: FL_BLACK -label: Replace with|#w +label: Replace with:|#w shortcut: resize: FL_RESIZE_X gravity: FL_West FL_East diff --git a/src/frontends/xforms/xformsImage.C b/src/frontends/xforms/xformsImage.C index 959ff306f2..2917f5c9c4 100644 --- a/src/frontends/xforms/xformsImage.C +++ b/src/frontends/xforms/xformsImage.C @@ -382,7 +382,7 @@ int status_report(FL_IMAGE * ob, const char *s) return 0; lyxerr[Debug::GRAPHICS] - << "xforms image loader. Status : " << str << std::endl; + << "xforms image loader. Status: " << str << std::endl; grfx::xformsImage * ptr = static_cast(ob->u_vdata); @@ -401,7 +401,7 @@ static void error_report(FL_IMAGE * ob, const char *s) return; lyxerr[Debug::GRAPHICS] - << "xforms image loader. Error : " << str << std::endl; + << "xforms image loader. Error: " << str << std::endl; grfx::xformsImage * ptr = static_cast(ob->u_vdata); diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index bba54dfa72..188b55b163 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,8 @@ +2003-01-06 Michael Schmitt + + * insettext.C: fix inconsistent usage of spaces, colons, capitalization, + and the like. + 2002-12-18 Jean-Marc Lasgouttes * insetgraphics.C (prepareFile): do not remove the extension of diff --git a/src/insets/insettext.C b/src/insets/insettext.C index e24e992051..f42a017ae5 100644 --- a/src/insets/insettext.C +++ b/src/insets/insettext.C @@ -1666,7 +1666,7 @@ int InsetText::docbook(Buffer const * buf, ostream & os, bool mixcont) const break; case LATEX_COMMAND: - buf->sgmlError(p, 0, _("Error : LatexType Command not allowed here.\n")); + buf->sgmlError(p, 0, _("Error: LatexType Command not allowed here.\n")); return -1; break; diff --git a/src/lyxfunc.C b/src/lyxfunc.C index a1b316d092..1e55b9f504 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -1712,7 +1712,7 @@ void LyXFunc::open(string const & fname) if (!f.exist()) { if (!Alert::askQuestion(_("No such file"), disp_fn, _("Start a new document with this filename ?"))) { - owner->message(_("Canceled")); + owner->message(_("Canceled.")); return; } // the user specifically chose this name. Believe them. @@ -1837,7 +1837,7 @@ void LyXFunc::doImport(string const & argument) if (FileInfo(lyxfile, true).exist() && filename != lyxfile) { if (!Alert::askQuestion(_("A document by the name"), MakeDisplayPath(lyxfile), _("already exists. Overwrite?"))) { - owner->message(_("Canceled")); + owner->message(_("Canceled.")); return; } } diff --git a/src/lyxrc.C b/src/lyxrc.C index 7cc8beb200..cce5296d30 100644 --- a/src/lyxrc.C +++ b/src/lyxrc.C @@ -779,7 +779,7 @@ int LyXRC::read(string const & filename) if (lexrc.next()) { x11_name = lexrc.getString(); } else { - lexrc.printError("Missing color name for color : `$$Token'"); + lexrc.printError("Missing color name for color: `$$Token'"); break; } @@ -2083,7 +2083,7 @@ string const LyXRC::getDescription(LyXRCTags tag) break; case RC_LANGUAGE_PACKAGE: - str = _("The latex command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\"."); + str = _("The LaTeX command for loading the language package. E.g. \"\\usepackage{babel}\", \"\\usepackage{omega}\"."); break; case RC_LANGUAGE_GLOBAL_OPTIONS: @@ -2103,15 +2103,15 @@ string const LyXRC::getDescription(LyXRCTags tag) break; case RC_LANGUAGE_COMMAND_BEGIN: - str = _("The latex command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language."); + str = _("The LaTeX command for changing from the language of the document to another language. E.g. \\selectlanguage{$$lang} where $$lang is substituted by the name of the second language."); break; case RC_LANGUAGE_COMMAND_END: - str = _("The latex command for changing back to the language of the document."); + str = _("The LaTeX command for changing back to the language of the document."); break; case RC_LANGUAGE_COMMAND_LOCAL: - str = _("The latex command for local changing of the language."); + str = _("The LaTeX command for local changing of the language."); break; case RC_DATE_INSERT_FORMAT: -- 2.39.5