Nuove icone

This commit is contained in:
bastianonm 2012-10-30 14:03:16 +00:00
parent e447cd8fcb
commit d85c628c4b
16 changed files with 771 additions and 601 deletions

View File

@ -172,6 +172,8 @@ function _wpgpxmaps(params)
mapTypeIds.push("OSM2"); mapTypeIds.push("OSM2");
mapTypeIds.push("OSM3"); mapTypeIds.push("OSM3");
var ngImageMarkers = [];
switch (mapType) switch (mapType)
{ {
case 'TERRAIN': { mapType = google.maps.MapTypeId.TERRAIN; break;} case 'TERRAIN': { mapType = google.maps.MapTypeId.TERRAIN; break;}
@ -225,9 +227,9 @@ function _wpgpxmaps(params)
// Set CSS for the control border // Set CSS for the control border
var controlUI = document.createElement('img'); var controlUI = document.createElement('img');
controlUI.src = pluginUrl + "/wp-gpx-maps/img/expand.png"; controlUI.src = pluginUrl + "/wp-gpx-maps/img/goFullScreen.png";
controlUI.style.cursor = 'pointer'; controlUI.style.cursor = 'pointer';
controlUI.title = lng.gofullscreen; controlUI.title = lng.goFullScreen;
controlDiv.appendChild(controlUI); controlDiv.appendChild(controlUI);
// Setup the click event listeners // Setup the click event listeners
@ -247,7 +249,7 @@ function _wpgpxmaps(params)
css("z-index", ''); css("z-index", '');
google.maps.event.trigger(map, 'resize'); google.maps.event.trigger(map, 'resize');
map.setCenter(center); map.setCenter(center);
controlUI.src = pluginUrl + "/wp-gpx-maps/img/expand.png"; controlUI.src = pluginUrl + "/wp-gpx-maps/img/goFullScreen.png";
controlUI.title = lng.gofullscreen; controlUI.title = lng.gofullscreen;
} }
else else
@ -266,8 +268,8 @@ function _wpgpxmaps(params)
}); });
google.maps.event.trigger(map, 'resize'); google.maps.event.trigger(map, 'resize');
map.setCenter(center); map.setCenter(center);
controlUI.src = pluginUrl + "/wp-gpx-maps/img/redo.png"; controlUI.src = pluginUrl + "/wp-gpx-maps/img/exitFullFcreen.png";
controlUI.title = lng.exitfullscreen; controlUI.title = lng.exitFullFcreen;
} }
controlUI.isfullscreen = !isFullScreen; controlUI.isfullscreen = !isFullScreen;
return false; return false;
@ -329,6 +331,8 @@ function _wpgpxmaps(params)
var mc = new CustomMarker(map, p, imageUrl, img_w, img_h ); var mc = new CustomMarker(map, p, imageUrl, img_w, img_h );
ngImageMarkers.push(mc);
google.maps.event.addListener(mc, "click", function(div) { google.maps.event.addListener(mc, "click", function(div) {
var lat = div.getAttribute("lat"); var lat = div.getAttribute("lat");
var lon = div.getAttribute("lon"); var lon = div.getAttribute("lon");
@ -350,6 +354,47 @@ function _wpgpxmaps(params)
}); });
if ( jQuery("#ngimages_" + targetId + " span").length > 0 )
{
// Set CSS for the control border
var controlUIhi = document.createElement('img');
controlUIhi.src = pluginUrl + "/wp-gpx-maps/img/hideImages.png";
controlUIhi.style.cursor = 'pointer';
controlUIhi.title = lng.hideImages;
controlDiv.appendChild(controlUIhi);
// Setup the click event listeners
google.maps.event.addDomListener(controlUIhi, 'click', function(event) {
var isImagesHidden = (controlUIhi.isImagesHidden == true);
var fullScreenCss = "position: absolute;left:0;top:0;";
var mapDiv = map.getDiv();
var center = map.getCenter();
if (isImagesHidden)
{
for (var i=0; i<ngImageMarkers.length; i++) {
ngImageMarkers[i].setMap(map);
}
controlUIhi.src = pluginUrl + "/wp-gpx-maps/img/hideImages.png";
controlUIhi.title = lng.hideImages;
}
else
{
for (var i=0; i<ngImageMarkers.length; i++) {
ngImageMarkers[i].setMap(null);
}
controlUIhi.src = pluginUrl + "/wp-gpx-maps/img/showImages.png";
controlUIhi.title = lng.showImages;
}
controlUIhi.isImagesHidden = !isImagesHidden;
return false;
});
}
// Print Track // Print Track
if (mapData != '') if (mapData != '')
{ {
@ -496,6 +541,38 @@ function _wpgpxmaps(params)
map.setCenter(bounds.getCenter()); map.setCenter(bounds.getCenter());
map.fitBounds(bounds); map.fitBounds(bounds);
var controlUIcenter = null;
var idFirstCenterChanged = true;
google.maps.event.addListener(map, 'center_changed', function() {
if (idFirstCenterChanged == true)
{
idFirstCenterChanged = false;
return;
}
if (controlUIcenter == null)
{
// Set CSS for the control border
controlUIcenter = document.createElement('img');
controlUIcenter.src = pluginUrl + "/wp-gpx-maps/img/backToCenter.png";
controlUIcenter.style.cursor = 'pointer';
controlUIcenter.title = lng.backToCenter;
controlDiv.appendChild(controlUIcenter);
// Setup the click event listeners
google.maps.event.addDomListener(controlUIcenter, 'click', function(event) {
map.setCenter(bounds.getCenter());
map.fitBounds(bounds);
controlDiv.removeChild(controlUIcenter);
controlUIcenter = null;
return false;
});
}
});
var graphh = jQuery('#hchart_' + params.targetId).css("height"); var graphh = jQuery('#hchart_' + params.targetId).css("height");
if (graphDist != '' && (graphEle != '' || graphSpeed != '' || graphHr != '' || graphCad != '') && graphh != "0px") if (graphDist != '' && (graphEle != '' || graphSpeed != '' || graphHr != '' || graphCad != '') && graphh != "0px")

BIN
img/backToCenter.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
img/exitFullFcreen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
img/goFullScreen.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

BIN
img/hideImages.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

BIN
img/showImages.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,81 +1,93 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:38+0100\n" "POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-08-09 16:38+0100\n" "PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Höhe" msgstr "Höhe"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Aktuelle Position" msgstr "Aktuelle Position"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Geschwindigkeit" msgstr "Geschwindigkeit"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Herzfrequenz" msgstr "Herzfrequenz"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Trittfrequenz" msgstr "Trittfrequenz"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Vollbildansicht" msgstr "Vollbildansicht"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Vollbildansicht beenden" msgstr "Vollbildansicht beenden"
#: ../wp-gpx-maps.php:491 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "Distanz" msgstr ""
#: ../wp-gpx-maps.php:496 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "Maximale Höhe" msgstr ""
#: ../wp-gpx-maps.php:498 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "Minimale Höhe" msgstr ""
#: ../wp-gpx-maps.php:500 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "Gesamtanstieg" msgstr "Distanz"
#: ../wp-gpx-maps.php:502 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "Gesamtabstieg" msgstr "Maximale Höhe"
#: ../wp-gpx-maps.php:506 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "Durchschnittsgeschwindigkeit" msgstr "Minimale Höhe"
#: ../wp-gpx-maps.php:511 #: ../wp-gpx-maps.php:498
#, fuzzy msgid "Total climbing"
msgid "Total Time" msgstr "Gesamtanstieg"
msgstr "Distanz"
#: ../wp-gpx-maps.php:500
#: ../wp-gpx-maps.php:527 msgid "Total descent"
msgid "Download" msgstr "Gesamtabstieg"
msgstr "Download"
#: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgstr "Durchschnittsgeschwindigkeit"
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes" #: ../wp-gpx-maps.php:509
msgstr "Änderungen speichern" #, fuzzy
msgid "Total Time"
msgstr "Distanz"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Download"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Änderungen speichern"

View File

@ -1,81 +1,93 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:38+0100\n" "POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n" "PO-Revision-Date: 2012-10-30 14:42+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Altura" msgstr "Altura"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Posición actual" msgstr "Posición actual"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Velocidad" msgstr "Velocidad"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Ritmo cardíaco" msgstr "Ritmo cardíaco"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Cadencia" msgstr "Cadencia"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Ir a pantalla completa" msgstr "Ir a pantalla completa"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Salir de pantalla completa" msgstr "Salir de pantalla completa"
#: ../wp-gpx-maps.php:491 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "Distancia total" msgstr ""
#: ../wp-gpx-maps.php:496 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "Elevación máxima" msgstr ""
#: ../wp-gpx-maps.php:498 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "Elevación mínima" msgstr ""
#: ../wp-gpx-maps.php:500 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "Total ascendido" msgstr "Distancia total"
#: ../wp-gpx-maps.php:502 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "Total descendido" msgstr "Elevación máxima"
#: ../wp-gpx-maps.php:506 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "Velocidad media" msgstr "Elevación mínima"
#: ../wp-gpx-maps.php:511 #: ../wp-gpx-maps.php:498
#, fuzzy msgid "Total climbing"
msgid "Total Time" msgstr "Total ascendido"
msgstr "Distancia total"
#: ../wp-gpx-maps.php:500
#: ../wp-gpx-maps.php:527 msgid "Total descent"
msgid "Download" msgstr "Total descendido"
msgstr "Descargar"
#: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgstr "Velocidad media"
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes" #: ../wp-gpx-maps.php:509
msgstr "Salvar cambios" #, fuzzy
msgid "Total Time"
msgstr "Distancia total"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Descargar"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Salvar cambios"

View File

@ -1,83 +1,92 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-01 13:41+0100\n" "POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-09-17 15:02+0100\n" "PO-Revision-Date: 2012-10-30 14:43+0100\n"
"Last-Translator: Biró Tamás <tami@freemail.hu>\n" "Last-Translator: Biró Tamás <tami@freemail.hu>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Magasság" msgstr "Magasság"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Aktuális pozíció" msgstr "Aktuális pozíció"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Sebesség" msgstr "Sebesség"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Szívritmus" msgstr "Szívritmus"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Kadencia" msgstr "Kadencia"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Teljes képernyő BE" msgstr "Teljes képernyő BE"
#: ../wp-gpx-maps.php:479 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Teljes képernyő KI" msgstr "Teljes képernyő KI"
#: ../wp-gpx-maps.php:492 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "Teljes távolság" msgstr ""
#: ../wp-gpx-maps.php:497 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "Max magasság" msgstr ""
#: ../wp-gpx-maps.php:499 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "Min magasság" msgstr ""
#: ../wp-gpx-maps.php:501 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "Össz. emelkedés" msgstr "Teljes távolság"
#: ../wp-gpx-maps.php:503 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "Össz. ereszkedés" msgstr "Max magasság"
#: ../wp-gpx-maps.php:507 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "Átlagsebesség" msgstr "Min magasság"
#: ../wp-gpx-maps.php:512 #: ../wp-gpx-maps.php:498
msgid "Total Time" msgid "Total climbing"
msgstr "Teljes Idő" msgstr "Össz. emelkedés"
#: ../wp-gpx-maps.php:528 #: ../wp-gpx-maps.php:500
msgid "Download" msgid "Total descent"
msgstr "Letöltés" msgstr "Össz. ereszkedés"
#: ../wp-gpx-maps_admin_settings.php:83 #: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:151 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:229 msgstr "Átlagsebesség"
#: ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364 #: ../wp-gpx-maps.php:509
msgid "Save Changes" msgid "Total Time"
msgstr "Beállítások mentése" msgstr "Teljes Idő"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Letöltés"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Beállítások mentése"

Binary file not shown.

View File

@ -1,82 +1,94 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n" "POT-Creation-Date: 2012-10-30 14:48+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n" "PO-Revision-Date: 2012-10-30 14:53+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: it_IT\n" "Language: it_IT\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude" #: ../wp-gpx-maps.php:467
msgstr "Altitudine" msgid "Altitude"
msgstr "Altitudine"
#: ../wp-gpx-maps.php:473
msgid "Current Position" #: ../wp-gpx-maps.php:468
msgstr "Posizione Corrente" msgid "Current Position"
msgstr "Posizione Corrente"
#: ../wp-gpx-maps.php:474
msgid "Speed" #: ../wp-gpx-maps.php:469
msgstr "Velocità" msgid "Speed"
msgstr "Velocità"
#: ../wp-gpx-maps.php:475
msgid "Heart rate" #: ../wp-gpx-maps.php:470
msgstr "Battito Cardiaco" msgid "Heart rate"
msgstr "Battito Cardiaco"
#: ../wp-gpx-maps.php:476
msgid "Cadence" #: ../wp-gpx-maps.php:471
msgstr "Cadenza" msgid "Cadence"
msgstr "Cadenza"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen" #: ../wp-gpx-maps.php:472
msgstr "Schermo intero" msgid "Go Full Screen"
msgstr "Schermo intero"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen" #: ../wp-gpx-maps.php:473
msgstr "Torna a dimensioni originali" msgid "Exit Full Screen"
msgstr "Torna a dimensioni originali"
#: ../wp-gpx-maps.php:491
msgid "Total distance" #: ../wp-gpx-maps.php:474
msgstr "Distanza totale" msgid "Hide Images"
msgstr "Nascondi immagini"
#: ../wp-gpx-maps.php:496
msgid "Max elevation" #: ../wp-gpx-maps.php:475
msgstr "Altitudine massima" msgid "Show Images"
msgstr "Mostra immagini"
#: ../wp-gpx-maps.php:498
msgid "Min elevation" #: ../wp-gpx-maps.php:476
msgstr "Altitudine minima" msgid "Back to center"
msgstr "Ritorna al centro della mappa"
#: ../wp-gpx-maps.php:500
msgid "Total climbing" #: ../wp-gpx-maps.php:489
msgstr "Totale salita" msgid "Total distance"
msgstr "Distanza totale"
#: ../wp-gpx-maps.php:502
msgid "Total descent" #: ../wp-gpx-maps.php:494
msgstr "Totale discesa" msgid "Max elevation"
msgstr "Altitudine massima"
#: ../wp-gpx-maps.php:506
msgid "Average speed" #: ../wp-gpx-maps.php:496
msgstr "Velocità media" msgid "Min elevation"
msgstr "Altitudine minima"
#: ../wp-gpx-maps.php:511
#, fuzzy #: ../wp-gpx-maps.php:498
msgid "Total Time" msgid "Total climbing"
msgstr "Distanza totale" msgstr "Totale salita"
#: ../wp-gpx-maps.php:527 #: ../wp-gpx-maps.php:500
msgid "Download" msgid "Total descent"
msgstr "Scarica" msgstr "Totale discesa"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 #: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:364 msgstr "Velocità media"
msgid "Save Changes"
msgstr "Salva" #: ../wp-gpx-maps.php:509
msgid "Total Time"
msgstr "Distanza totale"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Scarica"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Salva"

View File

@ -1,81 +1,93 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n" "POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n" "PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: Simon Koelewijn\n" "Last-Translator: Simon Koelewijn\n"
"Language-Team: \n" "Language-Team: \n"
"Language: nl_NL\n" "Language: nl_NL\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Hoogte" msgstr "Hoogte"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Huidige Positie" msgstr "Huidige Positie"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Snelheid" msgstr "Snelheid"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Hartslag" msgstr "Hartslag"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Cadans" msgstr "Cadans"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Volledige Scherm" msgstr "Volledige Scherm"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Verlaat Volledige Scherm" msgstr "Verlaat Volledige Scherm"
#: ../wp-gpx-maps.php:491 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:496 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:498 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:500 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:502 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:506 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:511 #: ../wp-gpx-maps.php:498
msgid "Total Time" msgid "Total climbing"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:527 #: ../wp-gpx-maps.php:500
msgid "Download" msgid "Total descent"
msgstr "Download" msgstr ""
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 #: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:364 msgstr ""
msgid "Save Changes"
msgstr "Wijzigingen Opslaan" #: ../wp-gpx-maps.php:509
msgid "Total Time"
msgstr ""
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Download"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Wijzigingen Opslaan"

View File

@ -1,81 +1,93 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n" "POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n" "PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: Per Bjälevik <per.bjalevik@tauzero.se>\n" "Last-Translator: Per Bjälevik <per.bjalevik@tauzero.se>\n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Höjd" msgstr "Höjd"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Aktuell position" msgstr "Aktuell position"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Hastighet" msgstr "Hastighet"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Hjärtfrekvens" msgstr "Hjärtfrekvens"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Kadens" msgstr "Kadens"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Gå till fullskärm" msgstr "Gå till fullskärm"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Avsluta fullskärm" msgstr "Avsluta fullskärm"
#: ../wp-gpx-maps.php:491 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "Total distans" msgstr ""
#: ../wp-gpx-maps.php:496 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "Max höjd" msgstr ""
#: ../wp-gpx-maps.php:498 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "Min höjd" msgstr ""
#: ../wp-gpx-maps.php:500 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "Höjdstigning" msgstr "Total distans"
#: ../wp-gpx-maps.php:502 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "Höjdförlust" msgstr "Max höjd"
#: ../wp-gpx-maps.php:506 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "Medelhastighet" msgstr "Min höjd"
#: ../wp-gpx-maps.php:511 #: ../wp-gpx-maps.php:498
#, fuzzy msgid "Total climbing"
msgid "Total Time" msgstr "Höjdstigning"
msgstr "Total distans"
#: ../wp-gpx-maps.php:500
#: ../wp-gpx-maps.php:527 msgid "Total descent"
msgid "Download" msgstr "Höjdförlust"
msgstr "Ladda ner"
#: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgstr "Medelhastighet"
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes" #: ../wp-gpx-maps.php:509
msgstr "Spara ändringar" #, fuzzy
msgid "Total Time"
msgstr "Total distans"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "Ladda ner"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Spara ändringar"

View File

@ -1,82 +1,94 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n" "POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-10-17 23:41+0200\n" "PO-Revision-Date: 2012-10-30 14:42+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: tr_TR\n" "Language: tr_TR\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n" "X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.5.4\n" "X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "Rakım" msgstr "Rakım"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "Güncel Pozisyon" msgstr "Güncel Pozisyon"
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "Hız" msgstr "Hız"
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "Nabız" msgstr "Nabız"
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "Kadans" msgstr "Kadans"
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "Tam Ekran Gör" msgstr "Tam Ekran Gör"
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "Tam Ekrandan Çık" msgstr "Tam Ekrandan Çık"
#: ../wp-gpx-maps.php:491 #: ../wp-gpx-maps.php:474
msgid "Total distance" msgid "Hide Images"
msgstr "Toplam Mesafe" msgstr ""
#: ../wp-gpx-maps.php:496 #: ../wp-gpx-maps.php:475
msgid "Max elevation" msgid "Show Images"
msgstr "Maks. İrtifa" msgstr ""
#: ../wp-gpx-maps.php:498 #: ../wp-gpx-maps.php:476
msgid "Min elevation" msgid "Back to center"
msgstr "Min. İrtifa" msgstr ""
#: ../wp-gpx-maps.php:500 #: ../wp-gpx-maps.php:489
msgid "Total climbing" msgid "Total distance"
msgstr "Toplam Tırmanış" msgstr "Toplam Mesafe"
#: ../wp-gpx-maps.php:502 #: ../wp-gpx-maps.php:494
msgid "Total descent" msgid "Max elevation"
msgstr "Toplam İniş" msgstr "Maks. İrtifa"
#: ../wp-gpx-maps.php:506 #: ../wp-gpx-maps.php:496
msgid "Average speed" msgid "Min elevation"
msgstr "Ortalama Hız" msgstr "Min. İrtifa"
#: ../wp-gpx-maps.php:511 #: ../wp-gpx-maps.php:498
msgid "Total Time" msgid "Total climbing"
msgstr "Toplam Süre" msgstr "Toplam Tırmanış"
#: ../wp-gpx-maps.php:527 #: ../wp-gpx-maps.php:500
msgid "Download" msgid "Total descent"
msgstr "İndir" msgstr "Toplam İniş"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151 #: ../wp-gpx-maps.php:504
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333 msgid "Average speed"
#: ../wp-gpx-maps_admin_settings.php:364 msgstr "Ortalama Hız"
msgid "Save Changes"
msgstr "Değişiklikleri Kaydet" #: ../wp-gpx-maps.php:509
msgid "Total Time"
msgstr "Toplam Süre"
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr "İndir"
#: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes"
msgstr "Değişiklikleri Kaydet"

View File

@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: wp-gpx-maps\n" "Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-01 13:41+0100\n" "POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-08-01 13:41+0100\n" "PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -13,71 +13,80 @@ msgstr ""
"X-Poedit-Basepath: .\n" "X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n" "X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:473 #: ../wp-gpx-maps.php:467
msgid "Altitude" msgid "Altitude"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:474 #: ../wp-gpx-maps.php:468
msgid "Current Position" msgid "Current Position"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:475 #: ../wp-gpx-maps.php:469
msgid "Speed" msgid "Speed"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:476 #: ../wp-gpx-maps.php:470
msgid "Heart rate" msgid "Heart rate"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:477 #: ../wp-gpx-maps.php:471
msgid "Cadence" msgid "Cadence"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:478 #: ../wp-gpx-maps.php:472
msgid "Go Full Screen" msgid "Go Full Screen"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:479 #: ../wp-gpx-maps.php:473
msgid "Exit Full Screen" msgid "Exit Full Screen"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:492 #: ../wp-gpx-maps.php:474
msgid "Hide Images"
msgstr ""
#: ../wp-gpx-maps.php:475
msgid "Show Images"
msgstr ""
#: ../wp-gpx-maps.php:476
msgid "Back to center"
msgstr ""
#: ../wp-gpx-maps.php:489
msgid "Total distance" msgid "Total distance"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:497 #: ../wp-gpx-maps.php:494
msgid "Max elevation" msgid "Max elevation"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:499 #: ../wp-gpx-maps.php:496
msgid "Min elevation" msgid "Min elevation"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:501 #: ../wp-gpx-maps.php:498
msgid "Total climbing" msgid "Total climbing"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:503 #: ../wp-gpx-maps.php:500
msgid "Total descent" msgid "Total descent"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:507 #: ../wp-gpx-maps.php:504
msgid "Average speed" msgid "Average speed"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:512 #: ../wp-gpx-maps.php:509
msgid "Total Time" msgid "Total Time"
msgstr "" msgstr ""
#: ../wp-gpx-maps.php:528 #: ../wp-gpx-maps.php:525
msgid "Download" msgid "Download"
msgstr "" msgstr ""
#: ../wp-gpx-maps_admin_settings.php:83 #: ../wp-gpx-maps_admin_settings.php:83 ../wp-gpx-maps_admin_settings.php:151
#: ../wp-gpx-maps_admin_settings.php:151 #: ../wp-gpx-maps_admin_settings.php:229 ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:229
#: ../wp-gpx-maps_admin_settings.php:333
#: ../wp-gpx-maps_admin_settings.php:364 #: ../wp-gpx-maps_admin_settings.php:364
msgid "Save Changes" msgid "Save Changes"
msgstr "" msgstr ""

View File

@ -50,7 +50,7 @@ function enqueue_WP_GPX_Maps_scripts()
wp_enqueue_script( 'googlemaps' ); wp_enqueue_script( 'googlemaps' );
wp_deregister_script( 'highcharts' ); wp_deregister_script( 'highcharts' );
wp_register_script( 'highcharts', "http://code.highcharts.com/highcharts.js", array('jquery'), "2.3.2", true); wp_register_script( 'highcharts', "http://code.highcharts.com/highcharts.js", array('jquery'), "2.3.3", true);
wp_enqueue_script( 'highcharts' ); wp_enqueue_script( 'highcharts' );
wp_deregister_script( 'WP-GPX-Maps' ); wp_deregister_script( 'WP-GPX-Maps' );
@ -469,8 +469,11 @@ function handle_WP_GPX_Maps_Shortcodes($attr, $content='')
speed : "'.__("Speed", "wp-gpx-maps").'", speed : "'.__("Speed", "wp-gpx-maps").'",
heartRate : "'.__("Heart rate", "wp-gpx-maps").'", heartRate : "'.__("Heart rate", "wp-gpx-maps").'",
cadence : "'.__("Cadence", "wp-gpx-maps").'", cadence : "'.__("Cadence", "wp-gpx-maps").'",
gofullscreen : "'.__("Go Full Screen", "wp-gpx-maps").'", goFullScreen : "'.__("Go Full Screen", "wp-gpx-maps").'",
exitfullscreen : "'.__("Exit Full Screen", "wp-gpx-maps").'" exitFullFcreen : "'.__("Exit Full Screen", "wp-gpx-maps").'",
hideImages : "'.__("Hide Images", "wp-gpx-maps").'",
showImages : "'.__("Show Images", "wp-gpx-maps").'",
backToCenter : "'.__("Back to center", "wp-gpx-maps").'"
} }
}); });
}); });