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:
Joseph W. Joshua 2015-01-05 16:53:02 +03:00 committed by Dirk Hohndel
parent c00a5614f3
commit a409c73195
3 changed files with 12 additions and 12 deletions

View file

@ -279,7 +279,7 @@ void SocialNetworkDialog::selectionChanged()
struct dive *d = current_dive;
QString fullText;
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()) {
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")));
}
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()) {
fullText += tr("Buddy: %1 \n").arg(d->buddy);