diff options
author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2016-08-22 10:10:42 +0200 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2016-08-22 20:42:46 +0000 |
commit | 6a68408fd36eebf32e1131e9e7b6559c4ef9cec4 (patch) | |
tree | 098d18459607211bc1f334152c19b11477b7766e | |
parent | 7de4002c5bcf89ee9be5df32ae7b05bb671605e6 (diff) | |
download | qtlocation-6a68408fd36eebf32e1131e9e7b6559c4ef9cec4.tar.gz |
MapBox: Add Linguist comments
Add some comments helping translators to find the right wording.
Change-Id: Ie77f1020897b196668c03f472905bb47c6929d45
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
-rw-r--r-- | src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp index 78c76b40..2f1a29c1 100644 --- a/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp +++ b/src/plugins/geoservices/mapbox/qgeotiledmappingmanagerenginemapbox.cpp @@ -62,19 +62,33 @@ QGeoTiledMappingManagerEngineMapbox::QGeoTiledMappingManagerEngineMapbox(const Q } // As of 2016.06.15, valid mapbox map_ids are documented at https://www.mapbox.com/api-documentation/#maps + //: Noun describing map type 'Street map' mapTypes << QGeoMapType(QGeoMapType::StreetMap, QStringLiteral("mapbox.streets"), tr("Street"), false, false, mapTypes.size()); + //: Noun describing type of a map using light colors (weak contrast) mapTypes << QGeoMapType(QGeoMapType::StreetMap, QStringLiteral("mapbox.light"), tr("Light"), false, false, mapTypes.size()); + //: Noun describing type of a map using dark colors mapTypes << QGeoMapType(QGeoMapType::StreetMap, QStringLiteral("mapbox.dark"), tr("Dark"), false, true, mapTypes.size()); + //: Noun describing type of a map created by satellite mapTypes << QGeoMapType(QGeoMapType::SatelliteMapDay, QStringLiteral("mapbox.satellite"), tr("Satellite"), false, false, mapTypes.size()); + //: Noun describing type of a street map created by satellite mapTypes << QGeoMapType(QGeoMapType::HybridMap, QStringLiteral("mapbox.streets-satellite"), tr("Streets Satellite"), false, false, mapTypes.size()); + //: Noun describing type of a map using wheat paste colors mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.wheatpaste"), tr("Wheatpaste"), false, false, mapTypes.size()); + //: Noun describing type of a basic street map mapTypes << QGeoMapType(QGeoMapType::StreetMap, QStringLiteral("mapbox.streets-basic"), tr("Streets Basic"), false, false, mapTypes.size()); + //: Noun describing type of a map using cartoon-style fonts mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.comic"), tr("Comic"), false, false, mapTypes.size()); + //: Noun describing type of a map for outdoor activities mapTypes << QGeoMapType(QGeoMapType::PedestrianMap, QStringLiteral("mapbox.outdoors"), tr("Outdoors"), false, false, mapTypes.size()); + //: Noun describing type of a map for sports mapTypes << QGeoMapType(QGeoMapType::CycleMap, QStringLiteral("mapbox.run-bike-hike"), tr("Run Bike Hike"), false, false, mapTypes.size()); + //: Noun describing type of a map drawn by pencil mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.pencil"), tr("Pencil"), false, false, mapTypes.size()); + //: Noun describing type of a treasure map with pirate boat watermark mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.pirates"), tr("Pirates"), false, false, mapTypes.size()); + //: Noun describing type of a map using emerald colors mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.emerald"), tr("Emerald"), false, false, mapTypes.size()); + //: Noun describing type of a map with high contrast mapTypes << QGeoMapType(QGeoMapType::CustomMap, QStringLiteral("mapbox.high-contrast"), tr("High Contrast"), false, false, mapTypes.size()); // New way to specify multiple customized map_ids via additional_map_ids |