fix typo: LateX => LaTeX

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17596 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Michael Schmitt 2007-03-27 17:40:05 +00:00
parent 81f45add92
commit a0b749f146
3 changed files with 3 additions and 3 deletions

View File

@ -242,7 +242,7 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
dialog->setController(qvs);
GuiView & gui_view = static_cast<GuiView &>(lyxview_);
dialog->setView(new DockView<QViewSource, QViewSourceDialog>(
*dialog, qvs, &gui_view, _("LateX Source"), Qt::BottomDockWidgetArea));
*dialog, qvs, &gui_view, _("LaTeX Source"), Qt::BottomDockWidgetArea));
dialog->bc().bp(new OkCancelPolicy);
} else if (name == "mathpanel") {
dialog->setController(new ControlMath(*dialog));

View File

@ -24,7 +24,7 @@
namespace lyx {
namespace frontend {
/// LateX syntax highlighting.
/// LaTeX syntax highlighting.
/// \todo FIXME: extract the latexHighlighter class into its
/// own .[Ch] files.
class latexHighlighter : public QSyntaxHighlighter

View File

@ -144,7 +144,7 @@ QValidator::State PathValidator::validate(QString & qtext, int &) const
static int counter = 0;
if (counter == 0) {
lyx::frontend::Alert::error(_("Invalid filename"),
_("LyX does not provide LateX support for file names containing any of these characters:\n") +
_("LyX does not provide LaTeX support for file names containing any of these characters:\n") +
printable_list(invalid_chars));
}
++counter;