summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJarek Kobus <jaroslaw.kobus@qt.io>2016-12-02 08:31:49 +0100
committerJarek Kobus <jaroslaw.kobus@qt.io>2017-01-09 15:41:07 +0000
commit9643b177a9c63d97d3854b2ed0325f4b8f4e1df1 (patch)
tree343738e801a6aada07817637cf16dcde673d1450
parent0e2326e823fbdaf6b185457be46290be6fa20307 (diff)
downloadqtlocation-9643b177a9c63d97d3854b2ed0325f4b8f4e1df1.tar.gz
Fix strings
Change-Id: I3148a5379561eb9d741fadfc6e6f6976a117d1c5 Reviewed-by: Paolo Angelelli <paolo.angelelli@qt.io> Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
-rw-r--r--src/location/maps/qgeorouteparserosrmv5.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/location/maps/qgeorouteparserosrmv5.cpp b/src/location/maps/qgeorouteparserosrmv5.cpp
index cbbf7fc4..6c73b1f7 100644
--- a/src/location/maps/qgeorouteparserosrmv5.cpp
+++ b/src/location/maps/qgeorouteparserosrmv5.cpp
@@ -428,9 +428,9 @@ static QString instructionNewName(const QString &wayName, QGeoManeuver::Instruct
case QGeoManeuver::DirectionLightRight:
case QGeoManeuver::DirectionBearRight:
if (wayName.isEmpty())
- return QGeoRouteParserOsrmV5::tr("Contine slightly right");
+ return QGeoRouteParserOsrmV5::tr("Continue slightly right");
else
- return QGeoRouteParserOsrmV5::tr("Contine slightly right onto %1").arg(wayName);
+ return QGeoRouteParserOsrmV5::tr("Continue slightly right onto %1").arg(wayName);
case QGeoManeuver::DirectionUTurnLeft:
case QGeoManeuver::DirectionUTurnRight:
if (wayName.isEmpty())
@@ -468,9 +468,9 @@ static QString instructionNotification(const QString &wayName, QGeoManeuver::Ins
case QGeoManeuver::DirectionLightRight:
case QGeoManeuver::DirectionBearRight:
if (wayName.isEmpty())
- return QGeoRouteParserOsrmV5::tr("Contine on the right");
+ return QGeoRouteParserOsrmV5::tr("Continue on the right");
else
- return QGeoRouteParserOsrmV5::tr("Contine on the right on %1").arg(wayName);
+ return QGeoRouteParserOsrmV5::tr("Continue on the right on %1").arg(wayName);
case QGeoManeuver::DirectionForward:
default:
if (wayName.isEmpty())