mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
Michael's text message changes (2nd ed.) + remerge
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9700 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fc7bbcded2
commit
8387efac77
@ -1,3 +1,8 @@
|
||||
2005-02-26 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* ui/default.ui: change "BibTeX Reference..." to "BibTeX Bibliography...";
|
||||
"Citation Reference" => "Citation"
|
||||
|
||||
2005-02-23 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* bind/aqua.bind:
|
||||
|
@ -194,7 +194,7 @@ Menuset
|
||||
Submenu "Math|h" "insert_math"
|
||||
Separator
|
||||
Submenu "Special Character|S" "insert_special"
|
||||
Item "Citation Reference...|C" "citation-insert"
|
||||
Item "Citation...|C" "citation-insert"
|
||||
Item "Cross Reference...|R" "reference-insert"
|
||||
Item "Label...|L" "label-insert"
|
||||
Item "Footnote|F" "footnote-insert"
|
||||
@ -283,7 +283,7 @@ Menuset
|
||||
Item "Table of Contents|C" "toc-insert"
|
||||
FloatListInsert
|
||||
Item "Index List|I" "index-print"
|
||||
Item "BibTeX Reference...|B" "bibtex-insert"
|
||||
Item "BibTeX Bibliography...|B" "bibtex-insert"
|
||||
End
|
||||
|
||||
Menu "insert_file"
|
||||
|
@ -1,6 +1,12 @@
|
||||
2005-03-07 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* *.po: remerge.
|
||||
|
||||
* de.po: update from Michael Schmitt.
|
||||
|
||||
2005-02-11 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* de.po: more updates
|
||||
* de.po: more updates.
|
||||
|
||||
2005-02-07 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
|
@ -1,3 +1,28 @@
|
||||
2005-02-26 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* QBibitem.C:
|
||||
* QBibtex.C:
|
||||
* QCharacter.C:
|
||||
* QLog.C:
|
||||
* QPrefs.C:
|
||||
* QRef.C:
|
||||
* QSearch.C:
|
||||
* QShowFile.C:
|
||||
* QToc.C:
|
||||
* QVCLog.C:
|
||||
* QRef.C:
|
||||
* ui/BiblioModuleBase.ui:
|
||||
* ui/QBibitemDialogBase.ui:
|
||||
* ui/QBibtexDialogBase.ui:
|
||||
* ui/QCitationDialogBase.ui:
|
||||
* ui/QPrintDialogBase.ui:
|
||||
* ui/QRefDialogBase.ui:
|
||||
* ui/QTexinfoDialogBase.ui:
|
||||
* ui/QTocDialogBase.ui:
|
||||
* ui/QURLDialogBase.ui: fix dialog title; add missing ":"; change
|
||||
"Reference" to "Cross reference"; fix tooltip messages;
|
||||
fix capitalization
|
||||
|
||||
2005-02-23 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* Dialogs2.C (showForks): removed.
|
||||
|
@ -27,7 +27,7 @@ typedef Qt2CB<ControlBibitem, Qt2DB<QBibitemDialog> > base_class;
|
||||
|
||||
|
||||
QBibitem::QBibitem()
|
||||
: base_class(qt_("Bibliography Item"))
|
||||
: base_class(qt_("Bibliography Entry"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ typedef Qt2CB<ControlBibtex, Qt2DB<QBibtexDialog> > base_class;
|
||||
|
||||
|
||||
QBibtex::QBibtex()
|
||||
: base_class(qt_("BibTeX"))
|
||||
: base_class(qt_("BibTeX Bibliography"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ typedef Qt2CB<ControlCharacter, Qt2DB<QCharacterDialog> > base_class;
|
||||
|
||||
|
||||
QCharacter::QCharacter()
|
||||
: base_class(qt_("Character"))
|
||||
: base_class(qt_("Character Layout"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,7 @@ using std::getline;
|
||||
typedef Qt2CB<ControlLog, Qt2DB<QLogDialog> > base_class;
|
||||
|
||||
QLog::QLog()
|
||||
: base_class(qt_("Log"))
|
||||
: base_class(qt_("LaTeX Log"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ typedef Qt2CB<ControlPrefs, Qt2DB<QPrefsDialog> > base_class;
|
||||
|
||||
|
||||
QPrefs::QPrefs()
|
||||
: base_class(qt_("LyX: Preferences"))
|
||||
: base_class(qt_("Preferences"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -124,7 +124,7 @@ void QRef::setGotoRef()
|
||||
{
|
||||
dialog_->gotoPB->setText(qt_("&Goto"));
|
||||
QToolTip::remove(dialog_->gotoPB);
|
||||
QToolTip::add(dialog_->gotoPB, qt_("Go to reference"));
|
||||
QToolTip::add(dialog_->gotoPB, qt_("Go to label"));
|
||||
}
|
||||
|
||||
|
||||
|
@ -27,7 +27,7 @@ typedef Qt2CB<ControlSearch, Qt2DB<QSearchDialog> > base_class;
|
||||
|
||||
|
||||
QSearch::QSearch()
|
||||
: base_class(qt_("Search"))
|
||||
: base_class(qt_("Find and Replace"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -24,7 +24,7 @@ typedef Qt2CB<ControlShowFile, Qt2DB<QShowFileDialog> > base_class;
|
||||
|
||||
|
||||
QShowFile::QShowFile()
|
||||
: base_class(qt_("ShowFile"))
|
||||
: base_class(qt_("Show File"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ using std::vector;
|
||||
typedef Qt2CB<ControlToc, Qt2DB<QTocDialog> > base_class;
|
||||
|
||||
QToc::QToc()
|
||||
: base_class(qt_("Table of contents")), depth_(1)
|
||||
: base_class(qt_("Table of Contents")), depth_(1)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -28,7 +28,7 @@ typedef Qt2CB<ControlVCLog, Qt2DB<QVCLogDialog> > base_class;
|
||||
|
||||
|
||||
QVCLog::QVCLog()
|
||||
: base_class(qt_("VCLog"))
|
||||
: base_class(qt_("Version Control Log"))
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -79,7 +79,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>Cite &Style:</string>
|
||||
<string>Citation &Style:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
|
@ -19,7 +19,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>caption</name>
|
||||
<string>Index</string>
|
||||
<string>Bibliography Entry</string>
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>sizeGripEnabled</name>
|
||||
@ -57,7 +57,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Key</string>
|
||||
<string>&Key:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
@ -65,7 +65,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>The citation key</string>
|
||||
<string>The bibliography key</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget>
|
||||
@ -83,7 +83,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>The citation key</string>
|
||||
<string>The bibliography key</string>
|
||||
</property>
|
||||
</widget>
|
||||
</hbox>
|
||||
@ -111,7 +111,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Label</string>
|
||||
<string>&Label:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
|
@ -19,7 +19,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>caption</name>
|
||||
<string>Bibtex</string>
|
||||
<string>BibTeX Bibliography</string>
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>sizeGripEnabled</name>
|
||||
|
@ -143,7 +143,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="3" rowspan="1" colspan="2" >
|
||||
@ -223,7 +223,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Available citation keys</string>
|
||||
<string>Available bibliography entries</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="1" column="1" rowspan="4" colspan="1" >
|
||||
@ -264,7 +264,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Add the selected citation</string>
|
||||
<string>Add citation of the selected bibliography entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget>
|
||||
@ -290,7 +290,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Remove the selected citation</string>
|
||||
<string>Remove citation of the selected bibiography entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget>
|
||||
@ -442,7 +442,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Citation entry</string>
|
||||
<string>Bibliography entry</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="10" column="3" rowspan="1" colspan="3" >
|
||||
|
@ -406,7 +406,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>P&rinter</string>
|
||||
<string>P&rinter:</string>
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>checked</name>
|
||||
@ -436,7 +436,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&File</string>
|
||||
<string>&File:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
|
@ -19,7 +19,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>caption</name>
|
||||
<string>Reference</string>
|
||||
<string>Cross Reference</string>
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>sizeGripEnabled</name>
|
||||
@ -162,7 +162,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Reference as it appears in output</string>
|
||||
<string>Cross reference as it appears in output</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget row="4" column="0" >
|
||||
|
@ -181,7 +181,7 @@
|
||||
</property>
|
||||
<property>
|
||||
<name>toolTip</name>
|
||||
<string>Built new file list</string>
|
||||
<string>Rebuild the file lists</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget>
|
||||
|
@ -57,7 +57,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Type</string>
|
||||
<string>&Type:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
|
@ -42,7 +42,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&URL</string>
|
||||
<string>&URL:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
@ -61,7 +61,7 @@
|
||||
</property>
|
||||
<property stdset="1">
|
||||
<name>text</name>
|
||||
<string>&Name</string>
|
||||
<string>&Name:</string>
|
||||
</property>
|
||||
<property>
|
||||
<name>buddy</name>
|
||||
|
@ -1,3 +1,14 @@
|
||||
2005-02-26 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* FormBibtex.C:
|
||||
* FormCitation.C:
|
||||
* FormERT.C:
|
||||
* FormPreamble.C:
|
||||
* FormRef.C:
|
||||
* FormUrl.C: change dialog titles - harmonize with Qt frontend; fix
|
||||
capitalization
|
||||
* FormTexinfo.C: fix tooltip message
|
||||
|
||||
2005-02-23 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* Dialogs.C (Dialogs_impl c-tor): remove forks dialog.
|
||||
|
@ -34,7 +34,7 @@ using std::sort;
|
||||
typedef FormCB<ControlBibtex, FormDB<FD_bibtex> > base_class;
|
||||
|
||||
FormBibtex::FormBibtex()
|
||||
: base_class(_("BibTeX Database"))
|
||||
: base_class(_("BibTeX Bibliography"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -159,10 +159,10 @@ void FormCitation::build()
|
||||
fl_set_input_return(dialog_->input_search, FL_RETURN_END);
|
||||
|
||||
//set up the tooltip mechanism
|
||||
string str = _("Add the selected entry to the current citation reference.");
|
||||
string str = _("Add citation of the selected bibliography entry.");
|
||||
tooltips().init(dialog_->button_add, str);
|
||||
|
||||
str = _("Delete the selected entry from the current citation reference.");
|
||||
str = _("Delete citation of the selected bibliography entry.");
|
||||
tooltips().init(dialog_->button_del, str);
|
||||
|
||||
str = _("Move the selected entry upwards (in the current list).");
|
||||
@ -178,14 +178,14 @@ void FormCitation::build()
|
||||
setPrehandler(dialog_->browser_cite);
|
||||
#endif
|
||||
|
||||
str = _("All entries in the database you have loaded (via \"Insert->Lists&TOC->BibTex Reference\"). Move the ones you want to cite with the arrow buttons into the left browser window.");
|
||||
str = _("All entries in the database you have loaded (via \"Insert->Lists&TOC->BibTeX Bibliography\"). Move the ones you want to cite with the arrow buttons into the left browser window.");
|
||||
tooltips().init(dialog_->browser_bib, str);
|
||||
#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
|
||||
// Work-around xforms' bug; enable tooltips for browser widgets.
|
||||
setPrehandler(dialog_->browser_bib);
|
||||
#endif
|
||||
|
||||
str = _("Information about the selected entry");
|
||||
str = _("Information about the selected bibliography entry");
|
||||
tooltips().init(dialog_->browser_info, str);
|
||||
#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL == 0)
|
||||
// Work-around xforms' bug; enable tooltips for browser widgets.
|
||||
@ -195,16 +195,16 @@ void FormCitation::build()
|
||||
str = _("Here you may select how the citation label should look inside the text (Natbib).");
|
||||
tooltips().init(dialog_->choice_style, str);
|
||||
|
||||
str = _("Activate if you want to print all authors in a reference with more than three authors, and not \"<First Author> et al.\" (Natbib).");
|
||||
str = _("Activate if you want to print all authors in a citation with more than three authors, and not \"<First Author> et al.\" (Natbib).");
|
||||
tooltips().init(dialog_->check_full_author_list, str);
|
||||
|
||||
str = _("Activate if you want to print the first character of the author name as uppercase (\"Van Gogh\", not \"van Gogh\"). Useful at the beginning of sentences (Natbib).");
|
||||
tooltips().init(dialog_->check_force_uppercase, str);
|
||||
|
||||
str = _("Optional text which appears before the citation reference, e.g. \"see <Ref>\"");
|
||||
str = _("Optional text which appears before the citation, e.g. \"see <Ref>\"");
|
||||
tooltips().init(dialog_->input_before, str);
|
||||
|
||||
str = _("Optional text which appears after the citation reference, e.g. \"pp. 12\"");
|
||||
str = _("Optional text which appears after the citation, e.g. \"pp. 12\"");
|
||||
tooltips().init(dialog_->input_after, str);
|
||||
|
||||
str = _("Search your database (all fields will be searched).");
|
||||
|
@ -22,7 +22,7 @@
|
||||
typedef FormCB<ControlERT, FormDB<FD_ert> > base_class;
|
||||
|
||||
FormERT::FormERT()
|
||||
: base_class(_("ERT Options"))
|
||||
: base_class(_("LaTeX ERT"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
typedef FormCB<ControlPreamble, FormDB<FD_preamble> > base_class;
|
||||
|
||||
FormPreamble::FormPreamble()
|
||||
: base_class(_("LaTeX preamble"))
|
||||
: base_class(_("LaTeX Preamble"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -30,7 +30,7 @@ using std::vector;
|
||||
typedef FormCB<ControlRef, FormDB<FD_ref> > base_class;
|
||||
|
||||
FormRef::FormRef()
|
||||
: base_class(_("Reference")),
|
||||
: base_class(_("Cross Reference")),
|
||||
at_ref_(false)
|
||||
{}
|
||||
|
||||
@ -71,7 +71,7 @@ void FormRef::build()
|
||||
tooltips().init(dialog_->button_go, str);
|
||||
str = _("Update the list of labels.");
|
||||
tooltips().init(dialog_->button_update, str);
|
||||
str = _("Select format style of the reference.");
|
||||
str = _("Select format style of the cross reference.");
|
||||
tooltips().init(dialog_->choice_format, str);
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ void FormTexinfo::build() {
|
||||
str = _("Show full path or only file name.");
|
||||
tooltips().init(dialog_->check_fullpath, str);
|
||||
|
||||
str = _("Runs the script \"TexFiles.sh\" to build new file lists.");
|
||||
str = _("Runs the script \"TexFiles.sh\" to rebuild the file lists.");
|
||||
tooltips().init(dialog_->button_rescan, str);
|
||||
|
||||
str = _("Double click to view contents of file.");
|
||||
|
@ -20,7 +20,7 @@
|
||||
typedef FormCB<ControlUrl, FormDB<FD_url> > base_class;
|
||||
|
||||
FormUrl::FormUrl()
|
||||
: base_class(_("Url"))
|
||||
: base_class(_("URL"))
|
||||
{}
|
||||
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2005-02-26 Michael Schmitt <michael.schmitt@teststep.org>
|
||||
|
||||
* insetbib.C: change screen label
|
||||
|
||||
2005-01-10 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* ExternalTemplate.C:
|
||||
|
@ -139,7 +139,7 @@ InsetBibtex::~InsetBibtex()
|
||||
|
||||
string const InsetBibtex::getScreenLabel(Buffer const *) const
|
||||
{
|
||||
return _("BibTeX Generated References");
|
||||
return _("BibTeX Generated Bibliography");
|
||||
}
|
||||
|
||||
namespace {
|
||||
|
Loading…
Reference in New Issue
Block a user