mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
more text cleanups from Michael
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9958 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
85e12a8cb3
commit
bff9db34d9
@ -241,7 +241,7 @@ void BufferView::scroll(int lines)
|
||||
void BufferView::showErrorList(string const & action) const
|
||||
{
|
||||
if (getErrorList().size()) {
|
||||
string const title = bformat(_("LyX: %1$s errors (%2$s)"),
|
||||
string const title = bformat(_("%1$s Errors (%2$s)"),
|
||||
action, buffer()->fileName());
|
||||
owner()->getDialogs().show("errorlist", title);
|
||||
pimpl_->errorlist_.clear();
|
||||
|
@ -1,3 +1,7 @@
|
||||
2005-05-14 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* BufferView.C: fix dialog title
|
||||
|
||||
2005-05-18 Georg Baum <Georg.Baum@post.rwth-aachen.de>
|
||||
|
||||
* lyx_main.C (priv_exec): fix logic error with help from Angus
|
||||
|
@ -1,3 +1,7 @@
|
||||
2005-05-14 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* ControlLog.C: fix dialog title
|
||||
|
||||
2005-05-13 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* helper_funcs.C (browseFile, browseDir): remove the loop that tested
|
||||
|
@ -71,13 +71,13 @@ string const ControlLog::title() const
|
||||
string t;
|
||||
switch (type_) {
|
||||
case LatexLog:
|
||||
t = _("LyX: LaTeX Log");
|
||||
t = _("LaTeX Log");
|
||||
break;
|
||||
case LiterateLog:
|
||||
t = _("LyX: Literate Programming Build Log");
|
||||
t = _("Literate Programming Build Log");
|
||||
break;
|
||||
case Lyx2lyxLog:
|
||||
t = _("LyX: lyx2lyx error Log");
|
||||
t = _("lyx2lyx Error Log");
|
||||
break;
|
||||
case VCLog:
|
||||
t = _("Version Control Log");
|
||||
|
@ -1,3 +1,8 @@
|
||||
2005-05-14 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* Dialogs.C: dialog title "Index" => "Index Entry"
|
||||
* GTexinfo.C: dialog title "LaTeX Information" => "TeX Information"
|
||||
|
||||
2005-04-25 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* GChanges.C:
|
||||
|
@ -264,7 +264,7 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
|
||||
dialog->bc().view(new GBC(dialog->bc()));
|
||||
dialog->setController(new ControlCommand(*dialog, name));
|
||||
dialog->setView(new GText(*dialog,
|
||||
_("Index"), _("Keyword:|#K")));
|
||||
_("Index Entry"), _("Keyword:|#K")));
|
||||
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
|
||||
} else if (name == "label") {
|
||||
dialog->bc().view(new GBC(dialog->bc()));
|
||||
|
@ -34,7 +34,7 @@ namespace frontend {
|
||||
|
||||
|
||||
GTexinfo::GTexinfo(Dialog & parent)
|
||||
: GViewCB<ControlTexinfo, GViewGladeB>(parent, _("LaTeX Information"), false),
|
||||
: GViewCB<ControlTexinfo, GViewGladeB>(parent, _("TeX Information"), false),
|
||||
activeStyle(ControlTexinfo::cls)
|
||||
{}
|
||||
|
||||
|
@ -1,3 +1,11 @@
|
||||
2005-05-14 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* Dialogs.C: add missing ":" to text messages
|
||||
* QTexinfo.C: dialog title "LaTeX Information" => "TeX Information"
|
||||
* ui/QBibtexAddDialogBase.ui: fix label & tooltip
|
||||
* ui/QCitationFindDialogBase.ui: change text "citation key/entry" =>
|
||||
"bibliography key/entry"
|
||||
|
||||
2005-05-19 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* qscreen.[Ch]: cache and reuse pixmaps to show the flashing cursor.
|
||||
|
@ -230,13 +230,13 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
|
||||
dialog->setController(new ControlCommand(*dialog, name));
|
||||
dialog->setView(new QIndex(*dialog,
|
||||
_("Index Entry"),
|
||||
qt_("&Keyword")));
|
||||
qt_("&Keyword:")));
|
||||
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
|
||||
} else if (name == "label") {
|
||||
dialog->setController(new ControlCommand(*dialog, name));
|
||||
dialog->setView(new QIndex(*dialog,
|
||||
_("Label"),
|
||||
qt_("&Label")));
|
||||
qt_("&Label:")));
|
||||
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
|
||||
} else if (name == "log") {
|
||||
dialog->setController(new ControlLog(*dialog));
|
||||
|
@ -31,7 +31,7 @@ namespace frontend {
|
||||
typedef QController<ControlTexinfo, QView<QTexinfoDialog> > base_class;
|
||||
|
||||
QTexinfo::QTexinfo(Dialog & parent)
|
||||
: base_class(parent, _("LaTeX Information")),
|
||||
: base_class(parent, _("TeX Information")),
|
||||
warningPosted(false), activeStyle(ControlTexinfo::cls)
|
||||
{
|
||||
}
|
||||
|
@ -75,7 +75,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Search the available citations</string>
|
||||
<string>Enter BibTeX database name</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="0" column="0" rowspan="1" colspan="2" >
|
||||
@ -104,7 +104,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Available citation keys</string>
|
||||
<string>Available BibTeX databases</string>
|
||||
</property>
|
||||
</widget>
|
||||
<spacer row="2" column="1" >
|
||||
|
@ -82,7 +82,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Available citation keys</string>
|
||||
<string>Available bibliography keys</string>
|
||||
</property>
|
||||
</widget>
|
||||
</vbox>
|
||||
@ -114,7 +114,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Citation entry</string>
|
||||
<string>Bibliography entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
<spacer row="2" column="1" >
|
||||
@ -224,7 +224,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Search the available citations</string>
|
||||
<string>Browse the available bibliography entries</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="2" column="0" >
|
||||
|
@ -1,3 +1,8 @@
|
||||
2005-05-12 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* Dialogs.C: change dialog title "Index" => "Index Entry"
|
||||
* FormTexinfo.C: change dialog title "LaTeX Information" => "TeX Information"
|
||||
|
||||
2005-05-13 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* checkedwidgets.[Ch] (CheckedPath): new class that determines
|
||||
|
@ -243,7 +243,7 @@ Dialogs::DialogPtr Dialogs::build(string const & name)
|
||||
} else if (name == "index") {
|
||||
dialog->setController(new ControlCommand(*dialog, name));
|
||||
dialog->setView(new FormText(*dialog,
|
||||
_("Index"), _("Keyword:|#K")));
|
||||
_("Index Entry"), _("Keyword:|#K")));
|
||||
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
|
||||
} else if (name == "label") {
|
||||
dialog->setController(new ControlCommand(*dialog, name));
|
||||
|
@ -32,7 +32,7 @@ namespace frontend {
|
||||
typedef FormController<ControlTexinfo, FormView<FD_texinfo> > base_class;
|
||||
|
||||
FormTexinfo::FormTexinfo(Dialog & parent)
|
||||
: base_class(parent, _("LaTeX Information")),
|
||||
: base_class(parent, _("TeX Information")),
|
||||
activeStyle(ControlTexinfo::cls)
|
||||
{}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user