Mention style-dependency of of features in the tooltips, part 2

Some amendments to c7126dc4f9.
This commit is contained in:
Juergen Spitzmueller 2017-02-06 13:16:11 +01:00
parent 98ff69aafd
commit 450344a9b7
2 changed files with 28 additions and 10 deletions

View File

@ -276,24 +276,38 @@ void GuiCitation::updateFormatting(CitationStyle currentStyle)
selectedLV->horizontalHeader()->setVisible(qualified);
selectedLV->setColumnHidden(0, !qualified);
selectedLV->setColumnHidden(2, !qualified);
bool const haveSelection = rows > 0;
if (qualified) {
textBeforeLA->setText(qt_("General text befo&re:"));
textAfterLA->setText(qt_("General &text after:"));
textBeforeED->setToolTip(qt_("Text that precedes the whole reference list. "
"For text that precedes individual items, double-click on the respective entry above."));
"For text that precedes individual items, "
"double-click on the respective entry above."));
textAfterLA->setToolTip(qt_("General &text after:"));
textAfterED->setToolTip(qt_("Text that follows the whole reference list. "
"For text that follows individual items, double-click on the respective entry above."));
"For text that follows individual items, "
"double-click on the respective entry above."));
} else {
textBeforeLA->setText(qt_("Text befo&re:"));
textBeforeED->setToolTip(qt_("Text that precedes the reference (e.g., \"cf.\")"));
if (textbefore && haveSelection)
textBeforeED->setToolTip(qt_("Text that precedes the reference (e.g., \"cf.\")"));
else
textBeforeED->setToolTip(qt_("Text that precedes the reference (e.g., \"cf.\"), "
"if the current citation style supports this."));
textAfterLA->setText(qt_("&Text after:"));
textAfterED->setToolTip(qt_("Text that follows the reference (e.g., pages)"));
if (textafter && haveSelection)
textAfterED->setToolTip(qt_("Text that follows the reference (e.g., pages)"));
else
textAfterED->setToolTip(qt_("Text that follows the reference (e.g., pages), "
"if the current citation style supports this."));
}
bool const haveSelection = rows > 0;
forceuppercaseCB->setEnabled(force && haveSelection);
if (force && haveSelection)
forceuppercaseCB->setToolTip("Force upper case in names (\"Del Piero\", not \"del Piero\").");
else
forceuppercaseCB->setToolTip("Force upper case in names (\"Del Piero\", not \"del Piero\"), "
"if the current citation style supports this.");
starredCB->setEnabled(full && haveSelection);
textBeforeED->setEnabled(textbefore && haveSelection);
textBeforeLA->setEnabled(textbefore && haveSelection);
@ -324,7 +338,11 @@ void GuiCitation::updateFormatting(CitationStyle currentStyle)
} else {
// This is the default meaning of the starred commands
starredCB->setText(qt_("All aut&hors"));
starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\")"));
if (full && haveSelection)
starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\")"));
else
starredCB->setToolTip(qt_("Always list all authors (rather than using \"et al.\"), "
"if the current citation style supports this."));
}
}

View File

@ -332,7 +332,7 @@
<item>
<widget class="QLineEdit" name="textAfterED">
<property name="toolTip">
<string>Text that follows the reference (e.g., pages), if the current style supports this.</string>
<string>Text that follows the reference (e.g., pages), if the current citation style supports this.</string>
</property>
</widget>
</item>
@ -385,7 +385,7 @@
<item>
<widget class="QCheckBox" name="forceuppercaseCB">
<property name="toolTip">
<string>Force upper case in names (&quot;Del Piero&quot;, not &quot;del Piero&quot;), if the current style supports this.</string>
<string>Force upper case in names (&quot;Del Piero&quot;, not &quot;del Piero&quot;), if the current citation style supports this.</string>
</property>
<property name="text">
<string>Force upcas&amp;ing</string>
@ -395,7 +395,7 @@
<item>
<widget class="QCheckBox" name="starredCB">
<property name="toolTip">
<string>Always list all authors (rather than using &quot;et al.&quot;), if the current style supports this.</string>
<string>Always list all authors (rather than using &quot;et al.&quot;), if the current citation style supports this.</string>
</property>
<property name="text">
<string>All aut&amp;hors</string>