summaryrefslogtreecommitdiffstats
path: root/qt-ui/socialnetworks.cpp
diff options
context:
space:
mode:
authorGravatar Joseph W. Joshua <joejoshw@gmail.com>2015-01-05 16:53:02 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-05 09:06:35 -0800
commita409c73195fb9d79637e560394d8c6b07c8513ca (patch)
treeff4bacdac435323d19f9f287a52170bbc2c8e3a9 /qt-ui/socialnetworks.cpp
parentc00a5614f3d8d34d1c6f5f200bfc2e37029803fc (diff)
downloadsubsurface-a409c73195fb9d79637e560394d8c6b07c8513ca.tar.gz
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>
Diffstat (limited to 'qt-ui/socialnetworks.cpp')
-rw-r--r--qt-ui/socialnetworks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/socialnetworks.cpp b/qt-ui/socialnetworks.cpp
index 232a26505..c09da104b 100644
--- a/qt-ui/socialnetworks.cpp
+++ b/qt-ui/socialnetworks.cpp
@@ -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);