diff --git a/wp-gpx-maps.php b/wp-gpx-maps.php
index 70d619a..e657e31 100644
--- a/wp-gpx-maps.php
+++ b/wp-gpx-maps.php
@@ -488,27 +488,27 @@ function handle_WP_GPX_Maps_Shortcodes($attr, $content='')
$output .= "
";
if ($points_graph_dist != '' && $p_tot_len == 'true')
{
- $output .= "".__("Total distance", "wp-gpx-maps").": $tot_len
";
+ $output .= "".__("Total distance", "wp-gpx-maps").": $tot_len
";
}
if ($points_graph_ele != '')
{
if ($p_max_ele == 'true')
- $output .= "".__("Max elevation", "wp-gpx-maps").": $max_ele
";
+ $output .= "".__("Max elevation", "wp-gpx-maps").": $max_ele
";
if ($p_min_ele == 'true')
- $output .= "".__("Min elevation", "wp-gpx-maps").": $min_ele
";
+ $output .= "".__("Min elevation", "wp-gpx-maps").": $min_ele
";
if ($p_total_ele_up == 'true')
- $output .= "".__("Total climbing", "wp-gpx-maps").": $total_ele_up
";
+ $output .= "".__("Total climbing", "wp-gpx-maps").": $total_ele_up
";
if ($p_total_ele_down == 'true')
- $output .= "".__("Total descent", "wp-gpx-maps").": $total_ele_down
";
+ $output .= "".__("Total descent", "wp-gpx-maps").": $total_ele_down
";
}
if ($points_graph_speed != '' && $p_avg_speed == 'true')
{
- $output .= "".__("Average speed", "wp-gpx-maps").": $avg_speed
";
+ $output .= "".__("Average speed", "wp-gpx-maps").": $avg_speed
";
}
if ($p_total_time == 'true' && $max_time > 0)
{
$time_diff = date("H:i:s", ($max_time - $min_time));
- $output .= "".__("Total Time", "wp-gpx-maps").": $time_diff
";
+ $output .= "".__("Total Time", "wp-gpx-maps").": $time_diff
";
}
$output .= "
";
}