mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
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:
parent
81f45add92
commit
a0b749f146
@ -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));
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user