dialog titles for qt

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6894 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-04-30 02:09:06 +00:00
parent a4dce50c4d
commit 3c5caa2ce8
14 changed files with 18 additions and 14 deletions

View File

@ -1,3 +1,7 @@
2003-04-30 John Levon <levon@movementarian.org>
* various: change dialog titles to match new menu layout
2003-04-29 John Levon <levon@movementarian.org> 2003-04-29 John Levon <levon@movementarian.org>
* ui/QGraphicsDialogBase.ui: re-organise visually * ui/QGraphicsDialogBase.ui: re-organise visually

View File

@ -173,13 +173,13 @@ Dialog * Dialogs::build(string const & name)
} else if (name == "index") { } else if (name == "index") {
dialog->setController(new ControlCommand(*dialog, name)); dialog->setController(new ControlCommand(*dialog, name));
dialog->setView(new QIndex(*dialog, dialog->setView(new QIndex(*dialog,
qt_("LyX: Insert Index Entry"), qt_("LyX: Index Entry"),
qt_("&Keyword"))); qt_("&Keyword")));
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy); dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
} else if (name == "label") { } else if (name == "label") {
dialog->setController(new ControlCommand(*dialog, name)); dialog->setController(new ControlCommand(*dialog, name));
dialog->setView(new QIndex(*dialog, dialog->setView(new QIndex(*dialog,
qt_("LyX: Insert Label"), qt_("LyX: Label"),
qt_("&Label"))); qt_("&Label")));
dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy); dialog->bc().bp(new NoRepeatedApplyReadOnlyPolicy);
} else if (name == "log") { } else if (name == "log") {

View File

@ -28,7 +28,7 @@ typedef QController<ControlCommand, QView<QBibitemDialog> > base_class;
QBibitem::QBibitem(Dialog & parent) QBibitem::QBibitem(Dialog & parent)
: base_class(parent, qt_("LyX: Insert Bibliography Item")) : base_class(parent, qt_("LyX: Bibliography Item Settings"))
{ {
} }

View File

@ -33,7 +33,7 @@ typedef QController<ControlCharacter, QView<QCharacterDialog> > base_class;
QCharacter::QCharacter(Dialog & parent) QCharacter::QCharacter(Dialog & parent)
: base_class(parent, qt_("LyX: Change Character Settings")) : base_class(parent, qt_("LyX: Change Text Style"))
{ {
} }

View File

@ -43,7 +43,7 @@ typedef QController<ControlCitation, QView<QCitationDialog> > base_class;
QCitation::QCitation(Dialog & parent) QCitation::QCitation(Dialog & parent)
: base_class(parent, qt_("LyX: Insert Citation")) : base_class(parent, qt_("LyX: Citation Reference"))
{} {}

View File

@ -25,7 +25,7 @@ typedef QController<ControlERT, QView<QERTDialog> > base_class;
QERT::QERT(Dialog & parent) QERT::QERT(Dialog & parent)
: base_class(parent, qt_("LyX: LaTeX Code Settings")) : base_class(parent, qt_("LyX: TeX Code Settings"))
{ {
} }

View File

@ -29,7 +29,7 @@ typedef QController<ControlExternal, QView<QExternalDialog> > base_class;
QExternal::QExternal(Dialog & parent) QExternal::QExternal(Dialog & parent)
: base_class(parent, qt_("LyX: Insert External Material")) : base_class(parent, qt_("LyX: External Material"))
{ {
} }

View File

@ -47,7 +47,7 @@ typedef QController<ControlGraphics, QView<QGraphicsDialog> > base_class;
QGraphics::QGraphics(Dialog & parent) QGraphics::QGraphics(Dialog & parent)
: base_class(parent, qt_("LyX: Insert Graphics")) : base_class(parent, qt_("LyX: Graphics"))
{ {
} }

View File

@ -29,7 +29,7 @@ typedef QController<ControlInclude, QView<QIncludeDialog> > base_class;
QInclude::QInclude(Dialog & parent) QInclude::QInclude(Dialog & parent)
: base_class(parent, qt_("LyX: Include File")) : base_class(parent, qt_("LyX: Child Document"))
{} {}

View File

@ -34,7 +34,7 @@ QMathMatrixDialog::QMathMatrixDialog(QMath * form)
: QMathMatrixDialogBase(0, 0, false, 0), : QMathMatrixDialogBase(0, 0, false, 0),
form_(form) form_(form)
{ {
setCaption(qt_("LyX: Insert matrix")); setCaption(qt_("LyX: Insert Matrix"));
table->setMinimumSize(100,100); table->setMinimumSize(100,100);
rowsSB->setValue(2); rowsSB->setValue(2);

View File

@ -39,7 +39,7 @@ typedef QController<ControlRef, QView<QRefDialog> > base_class;
QRef::QRef(Dialog & parent) QRef::QRef(Dialog & parent)
: base_class(parent, qt_("LyX: Insert Cross-reference")), : base_class(parent, qt_("LyX: Cross-reference")),
sort_(false), at_ref_(false) sort_(false), at_ref_(false)
{ {
} }

View File

@ -28,7 +28,7 @@ typedef Qt2CB<ControlSearch, Qt2DB<QSearchDialog> > base_class;
QSearch::QSearch() QSearch::QSearch()
: base_class(qt_("LyX: Search Document")) : base_class(qt_("LyX: Find and Replace"))
{ {
} }

View File

@ -26,7 +26,7 @@
typedef QController<ControlCommand, QView<QURLDialog> > base_class; typedef QController<ControlCommand, QView<QURLDialog> > base_class;
QURL::QURL(Dialog & parent) QURL::QURL(Dialog & parent)
: base_class(parent, qt_("LyX: Insert URL")) : base_class(parent, qt_("LyX: URL"))
{ {
} }

View File

@ -32,7 +32,7 @@ typedef QController<ControlWrap, QView<QWrapDialog> > base_class;
QWrap::QWrap(Dialog & parent) QWrap::QWrap(Dialog & parent)
: base_class(parent, qt_("LyX: Text-wrapping Settings")) : base_class(parent, qt_("LyX: Text Wrap Settings"))
{ {
} }