]> git.lyx.org Git - features.git/commitdiff
fix typo: LateX => LaTeX
authorMichael Schmitt <michael.schmitt@teststep.org>
Tue, 27 Mar 2007 17:40:05 +0000 (17:40 +0000)
committerMichael Schmitt <michael.schmitt@teststep.org>
Tue, 27 Mar 2007 17:40:05 +0000 (17:40 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17596 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/Dialogs.C
src/frontends/qt4/QViewSource.h
src/frontends/qt4/validators.C

index da819f61950360117772a3f55127336b93c2e5e8..051b587b13533dbed8f5ba67325272e7a4e075d8 100644 (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));
index d0c14740ad785b25b18c8b3582d8c8e31e249d65..3c2d9e421dcba41ca48dcacfdf77f5829f72eb9d 100644 (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
index 349298960c8d4efb3b24ad774fbc7460addd58c2..bde62fe00050a5e7a9b86ff634147a95c1fb6c80 100644 (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;