Skip to content

Commit

Permalink
Remove the concateration from two help texts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Riendeau committed Jul 2, 2012
1 parent fe00ebc commit ea6ec5b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions mythtv/libs/libmythtv/diseqcsettings.cpp
Expand Up @@ -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;
}

Expand All @@ -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;
}

Expand Down

0 comments on commit ea6ec5b

Please sign in to comment.