mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Various capitalization fixes
Fix various discrepancies in the capitalization format, as we are using 'down format' for titles and actions. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
c00a5614f3
commit
a409c73195
3 changed files with 12 additions and 12 deletions
|
@ -1008,7 +1008,7 @@
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="btnDisconnectFacebook">
|
<widget class="QPushButton" name="btnDisconnectFacebook">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Disconnect from facebook</string>
|
<string>Disconnect from Facebook</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
@ -1382,12 +1382,12 @@
|
||||||
</connection>
|
</connection>
|
||||||
</connections>
|
</connections>
|
||||||
<buttongroups>
|
<buttongroups>
|
||||||
<buttongroup name="buttonGroup_3"/>
|
|
||||||
<buttongroup name="buttonGroup"/>
|
|
||||||
<buttongroup name="buttonGroup_6"/>
|
|
||||||
<buttongroup name="buttonGroup_5"/>
|
|
||||||
<buttongroup name="buttonGroup_2"/>
|
|
||||||
<buttongroup name="buttonGroup_4"/>
|
|
||||||
<buttongroup name="verticalSpeed"/>
|
<buttongroup name="verticalSpeed"/>
|
||||||
|
<buttongroup name="buttonGroup_2"/>
|
||||||
|
<buttongroup name="buttonGroup_3"/>
|
||||||
|
<buttongroup name="buttonGroup_4"/>
|
||||||
|
<buttongroup name="buttonGroup_5"/>
|
||||||
|
<buttongroup name="buttonGroup_6"/>
|
||||||
|
<buttongroup name="buttonGroup"/>
|
||||||
</buttongroups>
|
</buttongroups>
|
||||||
</ui>
|
</ui>
|
||||||
|
|
|
@ -130,11 +130,11 @@ QVariant DivePlotDataModel::headerData(int section, Qt::Orientation orientation,
|
||||||
case AMBPRESSURE:
|
case AMBPRESSURE:
|
||||||
return tr("Ambient pressure");
|
return tr("Ambient pressure");
|
||||||
case HEARTBEAT:
|
case HEARTBEAT:
|
||||||
return tr("Heart Beat");
|
return tr("Heart beat");
|
||||||
case GFLINE:
|
case GFLINE:
|
||||||
return tr("Gradient Factor");
|
return tr("Gradient factor");
|
||||||
case INSTANT_MEANDEPTH:
|
case INSTANT_MEANDEPTH:
|
||||||
return tr("Mean Depth/s");
|
return tr("Mean depth/s");
|
||||||
}
|
}
|
||||||
if (role == Qt::DisplayRole && section >= TISSUE_1 && section <= TISSUE_16) {
|
if (role == Qt::DisplayRole && section >= TISSUE_1 && section <= TISSUE_16) {
|
||||||
return QString("Ceiling: %1").arg(section - TISSUE_1);
|
return QString("Ceiling: %1").arg(section - TISSUE_1);
|
||||||
|
|
|
@ -279,7 +279,7 @@ void SocialNetworkDialog::selectionChanged()
|
||||||
struct dive *d = current_dive;
|
struct dive *d = current_dive;
|
||||||
QString fullText;
|
QString fullText;
|
||||||
if (ui->date->isChecked()) {
|
if (ui->date->isChecked()) {
|
||||||
fullText += tr("Dive Date: %1 \n").arg(get_short_dive_date_string(d->when));
|
fullText += tr("Dive date: %1 \n").arg(get_short_dive_date_string(d->when));
|
||||||
}
|
}
|
||||||
if (ui->duration->isChecked()) {
|
if (ui->duration->isChecked()) {
|
||||||
fullText += tr("Duration: %1 \n").arg(get_dive_duration_string(d->duration.seconds,
|
fullText += tr("Duration: %1 \n").arg(get_dive_duration_string(d->duration.seconds,
|
||||||
|
@ -287,7 +287,7 @@ void SocialNetworkDialog::selectionChanged()
|
||||||
tr("min", "abbreviation for minutes")));
|
tr("min", "abbreviation for minutes")));
|
||||||
}
|
}
|
||||||
if (ui->Location->isChecked()) {
|
if (ui->Location->isChecked()) {
|
||||||
fullText += tr("Dive Location: %1 \n").arg(d->location);
|
fullText += tr("Dive location: %1 \n").arg(d->location);
|
||||||
}
|
}
|
||||||
if (ui->Buddy->isChecked()) {
|
if (ui->Buddy->isChecked()) {
|
||||||
fullText += tr("Buddy: %1 \n").arg(d->buddy);
|
fullText += tr("Buddy: %1 \n").arg(d->buddy);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue