aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2015-01-25 17:03:21 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-25 07:16:41 -0800
commit66c9559aef62da8105a849b47c359cd5c5e05094 (patch)
treec486153eb7de34c45d326820fe6ed083f04d3223
parent9e5c6a6c49dc4021336233a8aae39320c4f1180c (diff)
downloadsubsurface-66c9559aef62da8105a849b47c359cd5c5e05094.tar.gz
Typos: mid-sentence capitalization in usersurvey.cpp
some common nouns, even if the S in OS is capitalized but that's when it's in acronym form. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/usersurvey.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/usersurvey.cpp b/qt-ui/usersurvey.cpp
index 1beb186ad..ed5d121e2 100644
--- a/qt-ui/usersurvey.cpp
+++ b/qt-ui/usersurvey.cpp
@@ -38,11 +38,11 @@ QString UserSurvey::getVersion()
QString arch;
// fill in the system data
QString sysInfo = QString("Subsurface %1").arg(VERSION_STRING);
- sysInfo.append(tr("\nOperating System: %1").arg(SubsurfaceSysInfo::prettyOsName()));
+ sysInfo.append(tr("\nOperating system: %1").arg(SubsurfaceSysInfo::prettyOsName()));
arch = SubsurfaceSysInfo::cpuArchitecture();
- sysInfo.append(tr("\nCPU Architecture: %1").arg(arch));
+ sysInfo.append(tr("\nCPU architecture: %1").arg(arch));
if (arch == "i386")
- sysInfo.append(tr("\nOS CPU Architecture: %1").arg(SubsurfaceSysInfo::osArch()));
+ sysInfo.append(tr("\nOS CPU architecture: %1").arg(SubsurfaceSysInfo::osArch()));
sysInfo.append(tr("\nLanguage: %1").arg(uiLanguage(NULL)));
return sysInfo;
}