From ea6ec5b5f029966653b2866f626a9f7d400f30cd Mon Sep 17 00:00:00 2001 From: Nicolas Riendeau Date: Sun, 1 Jul 2012 21:58:08 -0400 Subject: [PATCH] Remove the concateration from two help texts. --- mythtv/libs/libmythtv/diseqcsettings.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mythtv/libs/libmythtv/diseqcsettings.cpp b/mythtv/libs/libmythtv/diseqcsettings.cpp index 8aad18fbd32..bab47242ed2 100644 --- a/mythtv/libs/libmythtv/diseqcsettings.cpp +++ b/mythtv/libs/libmythtv/diseqcsettings.cpp @@ -19,9 +19,9 @@ static GlobalLineEdit *DiSEqCLatitude(void) GlobalLineEdit *gc = new GlobalLineEdit("latitude"); gc->setLabel("Latitude"); gc->setHelpText( - DeviceTree::tr("The Cartesian latitude for your location.") + " " + - DeviceTree::tr("Use negative numbers for southern " - "and western coordinates.")); + DeviceTree::tr("The Cartesian latitude for your location. " + "Use negative numbers for southern " + "and western coordinates.")); return gc; } @@ -30,9 +30,9 @@ static GlobalLineEdit *DiSEqCLongitude(void) GlobalLineEdit *gc = new GlobalLineEdit("longitude"); gc->setLabel("Longitude"); gc->setHelpText( - DeviceTree::tr("The Cartesian longitude for your location.") + " " + - DeviceTree::tr("Use negative numbers for southern " - "and western coordinates.")); + DeviceTree::tr("The Cartesian longitude for your location. " + "Use negative numbers for southern " + "and western coordinates.")); return gc; }