mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
fix dialog titles to match new menus
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6893 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7b255e3760
commit
a4dce50c4d
@ -1,3 +1,7 @@
|
||||
2003-04-30 John Levon <levon@movementarian.org>
|
||||
|
||||
* Form<Various>: fix dialog titles to match new menus
|
||||
|
||||
2003-04-27 John Levon <levon@movementarian.org>
|
||||
|
||||
* Alert_pimpl.C: ignore cancel_button (for now)
|
||||
|
@ -21,7 +21,7 @@
|
||||
typedef FormController<ControlChanges, FormView<FD_changes> > base_class;
|
||||
|
||||
FormChanges::FormChanges(Dialog & parent)
|
||||
: base_class(parent, _("Merge changes"))
|
||||
: base_class(parent, _("Merge Changes"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -37,7 +37,7 @@ using namespace frnt;
|
||||
typedef FormController<ControlCharacter, FormView<FD_character> > base_class;
|
||||
|
||||
FormCharacter::FormCharacter(Dialog & parent)
|
||||
: base_class(parent, _("Character Layout"), false)
|
||||
: base_class(parent, _("Text Style"), false)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@ bool const scalableTabfolders = true;
|
||||
typedef FormCB<ControlDocument, FormDB<FD_document> > base_class;
|
||||
|
||||
FormDocument::FormDocument()
|
||||
: base_class(_("Document Layout"), scalableTabfolders),
|
||||
: base_class(_("Document Settings"), scalableTabfolders),
|
||||
ActCell(0), Confirmed(0),
|
||||
current_bullet_panel(0), current_bullet_depth(0), fbullet(0)
|
||||
{}
|
||||
|
@ -23,7 +23,7 @@
|
||||
typedef FormController<ControlERT, FormView<FD_ert> > base_class;
|
||||
|
||||
FormERT::FormERT(Dialog & parent)
|
||||
: base_class(parent, _("ERT Options"))
|
||||
: base_class(parent, _("TeX Settings"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
typedef FormController<ControlExternal, FormView<FD_external> > base_class;
|
||||
|
||||
FormExternal::FormExternal(Dialog & parent)
|
||||
: base_class(parent, _("Edit external file"))
|
||||
: base_class(parent, _("External Material"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -37,7 +37,7 @@ enum {
|
||||
typedef FormController<ControlFloat, FormView<FD_float> > base_class;
|
||||
|
||||
FormFloat::FormFloat(Dialog & parent)
|
||||
: base_class(parent, _("Float Options"))
|
||||
: base_class(parent, _("Float Settings"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -31,7 +31,7 @@ using std::find_if;
|
||||
typedef FormCB<ControlForks, FormDB<FD_forks> > base_class;
|
||||
|
||||
FormForks::FormForks()
|
||||
: base_class(_("Child processes"))
|
||||
: base_class(_("Child Processes"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
typedef FormController<ControlInclude, FormView<FD_include> > base_class;
|
||||
|
||||
FormInclude::FormInclude(Dialog & parent)
|
||||
: base_class(parent, _("Include file"))
|
||||
: base_class(parent, _("Child Document"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -52,7 +52,7 @@ using std::endl;
|
||||
typedef FormCB<ControlMathSub, FormDB<FD_maths_delim> > base_class;
|
||||
|
||||
FormMathsDelim::FormMathsDelim()
|
||||
: base_class(_("Maths Delimiters"), false)
|
||||
: base_class(_("Math Delimiters"), false)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -57,7 +57,7 @@ extern "C" {
|
||||
typedef FormCB<ControlMathSub, FormDB<FD_maths_matrix> > base_class;
|
||||
|
||||
FormMathsMatrix::FormMathsMatrix()
|
||||
: base_class(_("Maths Matrix"), false)
|
||||
: base_class(_("Math Matrix"), false)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -62,7 +62,7 @@
|
||||
typedef FormCB<ControlMath, FormDB<FD_maths_panel> > base_class;
|
||||
|
||||
FormMathsPanel::FormMathsPanel()
|
||||
: base_class(_("Maths Panel"))
|
||||
: base_class(_("Math Panel"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@ extern char * latex_mathspace[];
|
||||
typedef FormCB<ControlMathSub, FormDB<FD_maths_space> > base_class;
|
||||
|
||||
FormMathsSpace::FormMathsSpace()
|
||||
: base_class(_("Maths Spacing"), false),
|
||||
: base_class(_("Math Spacing"), false),
|
||||
space_(-1)
|
||||
{}
|
||||
|
||||
|
@ -40,7 +40,7 @@ kb_action latex_mathfontcmds[] = {
|
||||
typedef FormCB<ControlMathSub, FormDB<FD_maths_style> > base_class;
|
||||
|
||||
FormMathsStyle::FormMathsStyle()
|
||||
: base_class(_("Maths Styles & Fonts"), false),
|
||||
: base_class(_("Math Styles & Fonts"), false),
|
||||
style_(-1)
|
||||
{}
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
typedef FormController<ControlMinipage, FormView<FD_minipage> > base_class;
|
||||
|
||||
FormMinipage::FormMinipage(Dialog & parent)
|
||||
: base_class(parent, _("Minipage Options"))
|
||||
: base_class(parent, _("Minipage Settings"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -64,7 +64,7 @@ void setWidgetsFromVSpace(VSpace const & space,
|
||||
typedef FormController<ControlParagraph, FormView<FD_paragraph> > base_class;
|
||||
|
||||
FormParagraph::FormParagraph(Dialog & parent)
|
||||
: base_class(parent, _("Paragraph Layout"))
|
||||
: base_class(parent, _("Paragraph Settings"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
|
||||
|
||||
FormPreamble::FormPreamble()
|
||||
: base_class(_("LaTeX preamble"))
|
||||
: base_class(_("LaTeX Preamble"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
typedef FormCB<ControlPrint, FormDB<FD_print> > base_class;
|
||||
|
||||
FormPrint::FormPrint()
|
||||
: base_class(_("Print"))
|
||||
: base_class(_("Print Document"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -31,7 +31,7 @@ using std::vector;
|
||||
typedef FormController<ControlRef, FormView<FD_ref> > base_class;
|
||||
|
||||
FormRef::FormRef(Dialog & parent)
|
||||
: base_class(parent, _("Reference")),
|
||||
: base_class(parent, _("Cross-reference")),
|
||||
at_ref_(false)
|
||||
{}
|
||||
|
||||
|
@ -28,7 +28,7 @@ using std::endl;
|
||||
typedef FormCB<ControlSpellchecker, FormDB<FD_spellchecker> > base_class;
|
||||
|
||||
FormSpellchecker::FormSpellchecker()
|
||||
: base_class(_("Spellchecker"))
|
||||
: base_class(_("Spell-check Document"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -49,7 +49,7 @@ bool const scalableTabfolders = true;
|
||||
typedef FormController<ControlTabular, FormView<FD_tabular> > base_class;
|
||||
|
||||
FormTabular::FormTabular(Dialog & parent)
|
||||
: base_class(parent, _("Edit table settings"), scalableTabfolders),
|
||||
: base_class(parent, _("Table Settings"), scalableTabfolders),
|
||||
closing_(false), actCell_(-1)
|
||||
{
|
||||
}
|
||||
@ -127,7 +127,7 @@ void FormTabular::build()
|
||||
fl_set_tabfolder_autofit(dialog_->tabfolder, FL_FIT);
|
||||
|
||||
// Stack tabs
|
||||
fl_addto_tabfolder(dialog_->tabfolder, _("Tabular"),
|
||||
fl_addto_tabfolder(dialog_->tabfolder, _("Table"),
|
||||
tabular_options_->form);
|
||||
fl_addto_tabfolder(dialog_->tabfolder, _("Column/Row"),
|
||||
column_options_->form);
|
||||
|
@ -27,7 +27,7 @@ using std::make_pair;
|
||||
typedef FormController<ControlTabularCreate, FormView<FD_tabular_create> > base_class;
|
||||
|
||||
FormTabularCreate::FormTabularCreate(Dialog & parent)
|
||||
: base_class(parent, _("Insert Tabular"))
|
||||
: base_class(parent, _("Insert Table"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
typedef FormController<ControlCommand, FormView<FD_url> > base_class;
|
||||
|
||||
FormUrl::FormUrl(Dialog & parent)
|
||||
: base_class(parent, _("Url"))
|
||||
: base_class(parent, _("URL"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -27,7 +27,7 @@
|
||||
typedef FormController<ControlWrap, FormView<FD_wrap> > base_class;
|
||||
|
||||
FormWrap::FormWrap(Dialog & parent)
|
||||
: base_class(parent, _("Wrap Options"))
|
||||
: base_class(parent, _("Text Wrap Settings"))
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user