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("OSM3");
var ngImageMarkers = [];
switch (mapType)
{
case 'TERRAIN': { mapType = google.maps.MapTypeId.TERRAIN; break;}
@ -225,9 +227,9 @@ function _wpgpxmaps(params)
// Set CSS for the control border
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.title = lng.gofullscreen;
controlUI.title = lng.goFullScreen;
controlDiv.appendChild(controlUI);
// Setup the click event listeners
@ -247,7 +249,7 @@ function _wpgpxmaps(params)
css("z-index", '');
google.maps.event.trigger(map, 'resize');
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;
}
else
@ -266,8 +268,8 @@ function _wpgpxmaps(params)
});
google.maps.event.trigger(map, 'resize');
map.setCenter(center);
controlUI.src = pluginUrl + "/wp-gpx-maps/img/redo.png";
controlUI.title = lng.exitfullscreen;
controlUI.src = pluginUrl + "/wp-gpx-maps/img/exitFullFcreen.png";
controlUI.title = lng.exitFullFcreen;
}
controlUI.isfullscreen = !isFullScreen;
return false;
@ -329,6 +331,8 @@ function _wpgpxmaps(params)
var mc = new CustomMarker(map, p, imageUrl, img_w, img_h );
ngImageMarkers.push(mc);
google.maps.event.addListener(mc, "click", function(div) {
var lat = div.getAttribute("lat");
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
if (mapData != '')
{
@ -496,6 +541,38 @@ function _wpgpxmaps(params)
map.setCenter(bounds.getCenter());
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");
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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:38+0100\n"
"PO-Revision-Date: 2012-08-09 16:38+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Höhe"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Aktuelle Position"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Geschwindigkeit"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Herzfrequenz"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Trittfrequenz"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Vollbildansicht"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Vollbildansicht beenden"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr "Distanz"
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr "Maximale Höhe"
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr "Minimale Höhe"
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr "Gesamtanstieg"
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr "Gesamtabstieg"
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr "Durchschnittsgeschwindigkeit"
#: ../wp-gpx-maps.php:511
#, fuzzy
msgid "Total Time"
msgstr "Distanz"
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Höhe"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Aktuelle Position"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Geschwindigkeit"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Herzfrequenz"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Trittfrequenz"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Vollbildansicht"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Vollbildansicht beenden"
#: ../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"
msgstr "Distanz"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Maximale Höhe"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Minimale Höhe"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Gesamtanstieg"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Gesamtabstieg"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Durchschnittsgeschwindigkeit"
#: ../wp-gpx-maps.php:509
#, 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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:38+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Altura"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Posición actual"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Velocidad"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Ritmo cardíaco"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Cadencia"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Ir a pantalla completa"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Salir de pantalla completa"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr "Distancia total"
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr "Elevación máxima"
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr "Elevación mínima"
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr "Total ascendido"
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr "Total descendido"
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr "Velocidad media"
#: ../wp-gpx-maps.php:511
#, fuzzy
msgid "Total Time"
msgstr "Distancia total"
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-10-30 14:42+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Altura"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Posición actual"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Velocidad"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Ritmo cardíaco"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Cadencia"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Ir a pantalla completa"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Salir de pantalla completa"
#: ../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"
msgstr "Distancia total"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Elevación máxima"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Elevación mínima"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Total ascendido"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Total descendido"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Velocidad media"
#: ../wp-gpx-maps.php:509
#, 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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-01 13:41+0100\n"
"PO-Revision-Date: 2012-09-17 15:02+0100\n"
"Last-Translator: Biró Tamás <tami@freemail.hu>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:473
msgid "Altitude"
msgstr "Magasság"
#: ../wp-gpx-maps.php:474
msgid "Current Position"
msgstr "Aktuális pozíció"
#: ../wp-gpx-maps.php:475
msgid "Speed"
msgstr "Sebesség"
#: ../wp-gpx-maps.php:476
msgid "Heart rate"
msgstr "Szívritmus"
#: ../wp-gpx-maps.php:477
msgid "Cadence"
msgstr "Kadencia"
#: ../wp-gpx-maps.php:478
msgid "Go Full Screen"
msgstr "Teljes képernyő BE"
#: ../wp-gpx-maps.php:479
msgid "Exit Full Screen"
msgstr "Teljes képernyő KI"
#: ../wp-gpx-maps.php:492
msgid "Total distance"
msgstr "Teljes távolság"
#: ../wp-gpx-maps.php:497
msgid "Max elevation"
msgstr "Max magasság"
#: ../wp-gpx-maps.php:499
msgid "Min elevation"
msgstr "Min magasság"
#: ../wp-gpx-maps.php:501
msgid "Total climbing"
msgstr "Össz. emelkedés"
#: ../wp-gpx-maps.php:503
msgid "Total descent"
msgstr "Össz. ereszkedés"
#: ../wp-gpx-maps.php:507
msgid "Average speed"
msgstr "Átlagsebesség"
#: ../wp-gpx-maps.php:512
msgid "Total Time"
msgstr "Teljes Idő"
#: ../wp-gpx-maps.php:528
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-10-30 14:43+0100\n"
"Last-Translator: Biró Tamás <tami@freemail.hu>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Magasság"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Aktuális pozíció"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Sebesség"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Szívritmus"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Kadencia"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Teljes képernyő BE"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Teljes képernyő KI"
#: ../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"
msgstr "Teljes távolság"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Max magasság"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Min magasság"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Össz. emelkedés"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Össz. ereszkedés"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Átlagsebesség"
#: ../wp-gpx-maps.php:509
msgid "Total Time"
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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Altitudine"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Posizione Corrente"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Velocità"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Battito Cardiaco"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Cadenza"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Schermo intero"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Torna a dimensioni originali"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr "Distanza totale"
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr "Altitudine massima"
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr "Altitudine minima"
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr "Totale salita"
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr "Totale discesa"
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr "Velocità media"
#: ../wp-gpx-maps.php:511
#, fuzzy
msgid "Total Time"
msgstr "Distanza totale"
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:48+0100\n"
"PO-Revision-Date: 2012-10-30 14:53+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: it_IT\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Altitudine"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Posizione Corrente"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Velocità"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Battito Cardiaco"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Cadenza"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Schermo intero"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Torna a dimensioni originali"
#: ../wp-gpx-maps.php:474
msgid "Hide Images"
msgstr "Nascondi immagini"
#: ../wp-gpx-maps.php:475
msgid "Show Images"
msgstr "Mostra immagini"
#: ../wp-gpx-maps.php:476
msgid "Back to center"
msgstr "Ritorna al centro della mappa"
#: ../wp-gpx-maps.php:489
msgid "Total distance"
msgstr "Distanza totale"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Altitudine massima"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Altitudine minima"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Totale salita"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Totale discesa"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Velocità media"
#: ../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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n"
"Last-Translator: Simon Koelewijn\n"
"Language-Team: \n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Hoogte"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Huidige Positie"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Snelheid"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Hartslag"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Cadans"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Volledige Scherm"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Verlaat Volledige Scherm"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr ""
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr ""
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr ""
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr ""
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr ""
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr ""
#: ../wp-gpx-maps.php:511
msgid "Total Time"
msgstr ""
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: Simon Koelewijn\n"
"Language-Team: \n"
"Language: nl_NL\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Hoogte"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Huidige Positie"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Snelheid"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Hartslag"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Cadans"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Volledige Scherm"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Verlaat Volledige Scherm"
#: ../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"
msgstr ""
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr ""
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr ""
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr ""
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr ""
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr ""
#: ../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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n"
"PO-Revision-Date: 2012-08-09 16:39+0100\n"
"Last-Translator: Per Bjälevik <per.bjalevik@tauzero.se>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Höjd"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Aktuell position"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Hastighet"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Hjärtfrekvens"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Kadens"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Gå till fullskärm"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Avsluta fullskärm"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr "Total distans"
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr "Max höjd"
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr "Min höjd"
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr "Höjdstigning"
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr "Höjdförlust"
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr "Medelhastighet"
#: ../wp-gpx-maps.php:511
#, fuzzy
msgid "Total Time"
msgstr "Total distans"
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: Per Bjälevik <per.bjalevik@tauzero.se>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Höjd"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Aktuell position"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Hastighet"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Hjärtfrekvens"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Kadens"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Gå till fullskärm"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Avsluta fullskärm"
#: ../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"
msgstr "Total distans"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Max höjd"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Min höjd"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Höjdstigning"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Höjdförlust"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Medelhastighet"
#: ../wp-gpx-maps.php:509
#, 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 ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-09 16:39+0100\n"
"PO-Revision-Date: 2012-10-17 23:41+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:472
msgid "Altitude"
msgstr "Rakım"
#: ../wp-gpx-maps.php:473
msgid "Current Position"
msgstr "Güncel Pozisyon"
#: ../wp-gpx-maps.php:474
msgid "Speed"
msgstr "Hız"
#: ../wp-gpx-maps.php:475
msgid "Heart rate"
msgstr "Nabız"
#: ../wp-gpx-maps.php:476
msgid "Cadence"
msgstr "Kadans"
#: ../wp-gpx-maps.php:477
msgid "Go Full Screen"
msgstr "Tam Ekran Gör"
#: ../wp-gpx-maps.php:478
msgid "Exit Full Screen"
msgstr "Tam Ekrandan Çık"
#: ../wp-gpx-maps.php:491
msgid "Total distance"
msgstr "Toplam Mesafe"
#: ../wp-gpx-maps.php:496
msgid "Max elevation"
msgstr "Maks. İrtifa"
#: ../wp-gpx-maps.php:498
msgid "Min elevation"
msgstr "Min. İrtifa"
#: ../wp-gpx-maps.php:500
msgid "Total climbing"
msgstr "Toplam Tırmanış"
#: ../wp-gpx-maps.php:502
msgid "Total descent"
msgstr "Toplam İniş"
#: ../wp-gpx-maps.php:506
msgid "Average speed"
msgstr "Ortalama Hız"
#: ../wp-gpx-maps.php:511
msgid "Total Time"
msgstr "Toplam Süre"
#: ../wp-gpx-maps.php:527
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"
msgid ""
msgstr ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-10-30 14:42+0100\n"
"PO-Revision-Date: 2012-10-30 14:42+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: tr_TR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-KeywordsList: __;_e\n"
"X-Poedit-Basepath: .\n"
"X-Generator: Poedit 1.5.4\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr "Rakım"
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr "Güncel Pozisyon"
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr "Hız"
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr "Nabız"
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr "Kadans"
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr "Tam Ekran Gör"
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
msgstr "Tam Ekrandan Çık"
#: ../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"
msgstr "Toplam Mesafe"
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr "Maks. İrtifa"
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr "Min. İrtifa"
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr "Toplam Tırmanış"
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr "Toplam İniş"
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr "Ortalama Hız"
#: ../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 ""
"Project-Id-Version: wp-gpx-maps\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-08-01 13:41+0100\n"
"PO-Revision-Date: 2012-08-01 13:41+0100\n"
"POT-Creation-Date: 2012-10-30 14:41+0100\n"
"PO-Revision-Date: 2012-10-30 14:41+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -13,71 +13,80 @@ msgstr ""
"X-Poedit-Basepath: .\n"
"X-Poedit-SearchPath-0: ..\n"
#: ../wp-gpx-maps.php:473
#: ../wp-gpx-maps.php:467
msgid "Altitude"
msgstr ""
#: ../wp-gpx-maps.php:474
#: ../wp-gpx-maps.php:468
msgid "Current Position"
msgstr ""
#: ../wp-gpx-maps.php:475
#: ../wp-gpx-maps.php:469
msgid "Speed"
msgstr ""
#: ../wp-gpx-maps.php:476
#: ../wp-gpx-maps.php:470
msgid "Heart rate"
msgstr ""
#: ../wp-gpx-maps.php:477
#: ../wp-gpx-maps.php:471
msgid "Cadence"
msgstr ""
#: ../wp-gpx-maps.php:478
#: ../wp-gpx-maps.php:472
msgid "Go Full Screen"
msgstr ""
#: ../wp-gpx-maps.php:479
#: ../wp-gpx-maps.php:473
msgid "Exit Full Screen"
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"
msgstr ""
#: ../wp-gpx-maps.php:497
#: ../wp-gpx-maps.php:494
msgid "Max elevation"
msgstr ""
#: ../wp-gpx-maps.php:499
#: ../wp-gpx-maps.php:496
msgid "Min elevation"
msgstr ""
#: ../wp-gpx-maps.php:501
#: ../wp-gpx-maps.php:498
msgid "Total climbing"
msgstr ""
#: ../wp-gpx-maps.php:503
#: ../wp-gpx-maps.php:500
msgid "Total descent"
msgstr ""
#: ../wp-gpx-maps.php:507
#: ../wp-gpx-maps.php:504
msgid "Average speed"
msgstr ""
#: ../wp-gpx-maps.php:512
#: ../wp-gpx-maps.php:509
msgid "Total Time"
msgstr ""
#: ../wp-gpx-maps.php:528
#: ../wp-gpx-maps.php:525
msgid "Download"
msgstr ""
#: ../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: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 ""

View File

@ -50,7 +50,7 @@ function enqueue_WP_GPX_Maps_scripts()
wp_enqueue_script( 'googlemaps' );
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_deregister_script( 'WP-GPX-Maps' );
@ -469,8 +469,11 @@ function handle_WP_GPX_Maps_Shortcodes($attr, $content='')
speed : "'.__("Speed", "wp-gpx-maps").'",
heartRate : "'.__("Heart rate", "wp-gpx-maps").'",
cadence : "'.__("Cadence", "wp-gpx-maps").'",
gofullscreen : "'.__("Go Full Screen", "wp-gpx-maps").'",
exitfullscreen : "'.__("Exit Full Screen", "wp-gpx-maps").'"
goFullScreen : "'.__("Go 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").'"
}
});
});