Changeset 1833277
- Timestamp:
- 03/04/2018 08:05:22 PM (8 years ago)
- Location:
- lf-hiker/trunk
- Files:
-
- 7 added
- 7 deleted
- 16 edited
-
Controller/Front.php (modified) (1 diff)
-
Model/Map.php (modified) (12 diffs)
-
Model/Option.php (modified) (8 diffs)
-
Tools/Editor.php (modified) (3 diffs)
-
css/lfh-style.css (modified) (3 diffs)
-
css/lfh-style.less (modified) (3 diffs)
-
dist/helper-min.1.5.0.js (deleted)
-
dist/helper-min.1.6.0.js (added)
-
dist/helper.1.5.0.css (deleted)
-
dist/helper.1.6.0.css (added)
-
dist/lfh-front-min.1.5.0.js (deleted)
-
dist/lfh-front-min.1.6.0.js (added)
-
dist/lfh-post-editor-min.1.5.0.js (deleted)
-
dist/lfh-post-editor-min.1.6.0.js (added)
-
dist/lfh-post-editor.1.5.0.css (deleted)
-
dist/lfh-post-editor.1.6.0.css (added)
-
dist/lfh-style-min.1.5.0.css (deleted)
-
dist/lfh-style-min.1.6.0.css (added)
-
dist/tinymce-lfh-plugin-min.1.5.0.js (deleted)
-
dist/tinymce-lfh-plugin-min.1.6.0.js (added)
-
gulpfile.js (modified) (1 diff)
-
js/lfh-plugin.js (modified) (14 diffs)
-
languages/lfh-default.mo (modified) (previous)
-
languages/lfh-default.po (modified) (9 diffs)
-
languages/lfh-fr_FR.mo (modified) (previous)
-
languages/lfh-fr_FR.po (modified) (12 diffs)
-
lf-hiker.php (modified) (2 diffs)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (4 diffs)
-
views/front/track.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lf-hiker/trunk/Controller/Front.php
r1830724 r1833277 70 70 } 71 71 $options = Lfh_Model_Map::filter_map_data($atts); 72 72 73 if(self::$_lfh_map_count == 0){ 73 74 //if the first map in the page/article add a div for the fade in bottom fullscreen -
lf-hiker/trunk/Model/Map.php
r1830724 r1833277 28 28 public static $tiles = array( 29 29 'osm' => array( 30 'label' => 'OpenStreetMap', 30 31 'url' => '//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', 31 32 'attribution' => ' © <a href="http://osm.org/copyright">OpenStreetMap</a> contributors', … … 34 35 'need_key' => false), 35 36 'osm_fr' => array( 37 'label' => 'OpenStreetMap FR', 36 38 'url' => '//{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png', 37 39 'attribution' => 'données © <a href="https://plugins.trac.wordpress.org//osm.org/copyright">OpenStreetMap</a>/ODbL - rendu <a href="https://plugins.trac.wordpress.org//openstreetmap.fr">OSM France</a>', … … 40 42 'need_key' => false), 41 43 'arcgis_topo' => array( 44 'label' => 'Arcgis topo', 42 45 'url' => '//server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}', 43 46 'attribution' => 'Tiles © <a href="https://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer">ArcGIS</a>', … … 45 48 'need_key' => false), 46 49 'stamen_water'=> array( 50 'label' => 'Stamen Water', 47 51 // 'url' => 'https://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.jpg', 48 52 'url' => '//stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.jpg', … … 164 168 'type' => 'select', 165 169 'label' => __('Tiles', 'lfh'), 166 'default' => 'osm',170 'default' => Lfh_Model_Option::get_option('lfh_default_tiles'), 167 171 'list' => self::get_valide_tiles(), 168 172 'filter' => FILTER_CALLBACK, … … 172 176 'type' => 'checkbox', 173 177 'label' => ucfirst(__('Open profile automaticaly' , 'lfh')), 174 'default' => Lfh_Model_Option::get_option('lfh_open_profile'),178 'default' => boolval( Lfh_Model_Option::get_option('lfh_open_profile')), 175 179 'filter' => FILTER_VALIDATE_BOOLEAN, 176 180 'flags' => FILTER_NULL_ON_FAILURE … … 214 218 return null; 215 219 } 220 216 221 $options = array( 217 222 'src' => $src, … … 221 226 'unit' => isset($unit) ? $unit: Lfh_Model_Map::is_distance_unit(), 222 227 'unit_h' => isset($unit_h) ? $unit_h: Lfh_Model_Map::is_height_unit(), 223 'button' => isset($button) ? $button: Lfh_Model_Option::get_option('lfh_download_gpx') 228 'step_min' => isset($step_min)? $step_min: Lfh_Model_Option::get_option('lfh_step_min'), 229 'button' => isset($button) ? self::to_bool($button): boolval(Lfh_Model_Option::get_option('lfh_download_gpx')) 224 230 ); 225 231 226 232 $args = array( 227 233 'src' => array( … … 253 259 'options' => 'Lfh_Model_Map::is_height_unit' 254 260 ), 261 'step_min' => array( 262 'filter' => FILTER_VALIDATE_INT, 263 'options' => array( 264 'default' => Lfh_Model_Option::get_option('lfh_step_min'), 265 'min_range' => 10, 266 'max_range' => 500 ) 267 ), 255 268 'button' => array( 256 269 'filter' => FILTER_VALIDATE_BOOLEAN … … 265 278 return $return; 266 279 280 281 } 282 public static function to_bool( $var ){ 283 if( strtolower( $var) === "true" || $var === '1' || $var === 1 || $var===true){ 284 return true; 285 }else{ 286 return false; 287 } 267 288 268 289 } … … 339 360 } 340 361 } 362 public static function valid_tile($var) 363 { 364 if(in_array(strtolower($var), self::get_valide_tiles())){ 365 return strtolower($var); 366 }else{ 367 return 'osm'; 368 } 369 } 370 private static function is_button_download( $var ){ 371 // if( ) 372 return true; 373 } 341 374 private static function is_url( $url ){ 342 375 if( (strpos( $url, '.gpx') === false && strpos($url, '.GPX') === false)){ … … 398 431 return $tiles; 399 432 } 400 private static function valid_tile($var) 401 { 402 if(in_array(strtolower($var), self::get_valide_tiles())){ 403 return strtolower($var); 404 }else{ 405 return 'osm'; 406 } 407 } 433 408 434 private static function is_visibility($var) 409 435 { -
lf-hiker/trunk/Model/Option.php
r1830724 r1833277 67 67 $distance_units = array_keys( Lfh_Model_Map::distance_units()); 68 68 $height_units = array_keys(Lfh_Model_Map::height_units()); 69 $map_tiles = Lfh_Model_Map::$tiles; 69 70 return array( 70 71 'lfh_download_gpx' => array( … … 85 86 'lfh_number_gpx_for_checkbox'=> array( 86 87 'type' => 'select', 87 'select_options' => Lfh_Model_Option::generate_range(0,20 ),88 'select_options' => Lfh_Model_Option::generate_range(0,20,1), 88 89 'label' => __('Number of gpx to display a checkbox show/hide', 'lfh'), 89 90 'default'=> '10', … … 99 100 'label' => __('Display button fullscreen', 'lfh'), 100 101 'filter' => FILTER_VALIDATE_BOOLEAN, 101 'helper' => esc_html__('You can change it for one map in shortcode by using property', 'lfh'). '<code>fullscreen</code>' 102 'helper' => esc_html__('You can change it for one map in shortcode by using property', 'lfh'). '<code>fullscreen</code>' 103 ), 104 'lfh_default_tiles' => array( 105 'type' => 'select', 106 'select_options' => $map_tiles, 107 'default'=> 'osm', 108 'label' => __('Default map tiles', 'lfh'), 109 'filter' => FILTER_CALLBACK, 110 'options' => 'Lfh_Model_Map::valid_tile', 111 'helper' => esc_html__('You can change it for one map in shortcode by using property', 'lfh'). '<code>tile</code>' 102 112 ), 103 113 'lfh_distance_unit'=> array( … … 117 127 'options'=> 'Lfh_Model_Map::is_height_unit' 118 128 ), 129 'lfh_step_min' => array( 130 'type' => 'select', 131 'select_options' => Lfh_Model_Option::generate_range(10,500,10), 132 'label' => __('Minimum step on elevation axis in meters ( four steps in general)', 'lfh'), 133 'default'=> 50, 134 'filter' => FILTER_VALIDATE_INT, 135 'options' => array( 136 'min_range' => 10, 137 'max_range' => 500), 138 'helper' => esc_html__('You can change it for one gpx in shortcode by using property', 'lfh'). ' <code>step_min</code>' 139 140 ) 119 141 /* 'lfh_mapquest_key' => array( 120 142 'type' => 'text', … … 156 178 157 179 } 158 private static function generate_range( $min=0, $max=20 ){180 private static function generate_range( $min=0, $max=20, $step=1){ 159 181 $result = array(); 160 for( $i=$min; $i<$max+1; $i ++){182 for( $i=$min; $i<$max+1; $i +=$step){ 161 183 $result[$i] = array('label' => strval($i)); 162 184 } … … 213 235 switch($tab){ 214 236 case 'config_tile': 215 Lfh_Tools_Cache::clear_cache_dir();237 // Lfh_Tools_Cache::clear_cache_dir(); 216 238 break; 217 239 case 'custom_css': … … 225 247 if($tab == 'config_lfh'){ 226 248 //delete old cache 227 Lfh_Tools_Cache::delete_cache_dir();249 // Lfh_Tools_Cache::delete_cache_dir(); 228 250 } 229 251 $data = self::get_defaults($tab); … … 233 255 } 234 256 if( $tab == 'config_tile'){ 235 Lfh_Tools_Cache::clear_cache_dir();257 // Lfh_Tools_Cache::clear_cache_dir(); 236 258 } 237 259 if($tab == 'config_lfh'){ 238 260 //create new cache 239 Lfh_Tools_Cache::create_cache_dir();261 //Lfh_Tools_Cache::create_cache_dir(); 240 262 } 241 263 -
lf-hiker/trunk/Tools/Editor.php
r1830724 r1833277 272 272 $width = empty($width)? Lfh_Model_Map::$default['stroke_width'] : $width; 273 273 $value = get_post_meta($id, 'lfh_download_gpx', true); 274 $button = $value =='' ? Lfh_Model_Option::get_option('lfh_download_gpx'):$value;274 $button = empty($value) ? 'false': 'true'; 275 275 $filter = ''; 276 276 $filter .= '[lfh-gpx src=' . $attachment['url'] .' title="' . $attachment['post_title'] .'"'; … … 344 344 update_post_meta($post['ID'], 'lfh_stroke_color', $attachment['lfh_stroke_color']); 345 345 if( isset($attachment['lfh_download_gpx']) ){ 346 update_post_meta($post['ID'], 'lfh_download_gpx', 1);346 update_post_meta($post['ID'], 'lfh_download_gpx', true); 347 347 }else{ 348 348 update_post_meta($post['ID'], 'lfh_download_gpx', 0); … … 364 364 update_post_meta($post_id , 'lfh_stroke_color', $meta); 365 365 if(isset( $_POST['attachments'][$post_id ]['lfh_download_gpx']) ){ 366 update_post_meta($post_id, 'lfh_download_gpx', 1);366 update_post_meta($post_id, 'lfh_download_gpx', true); 367 367 }else{ 368 368 update_post_meta($post_id, 'lfh_download_gpx', 0); -
lf-hiker/trunk/css/lfh-style.css
r1830724 r1833277 453 453 background: grey; 454 454 text-align: center; 455 z-index: 1000;455 z-index: 99999; 456 456 } 457 457 #lfh-fade.actived { … … 988 988 width: 280px; 989 989 float: left; 990 height: 167px;990 /* height:@height - @height_title - 2*@padding_title;*/ 991 991 max-height: 167px; 992 992 vertical-align: bottom; … … 1034 1034 div.lfh-min div.lfh-content > div { 1035 1035 width: 280px; 1036 height: 167px;1036 /* height: @height - @height_title - 2*@padding_title;*/ 1037 1037 max-width: 280px; 1038 1038 max-height: 167px; -
lf-hiker/trunk/css/lfh-style.less
r1830724 r1833277 204 204 background:grey; 205 205 text-align:center; 206 z-index: 1000;206 z-index:99999; 207 207 } 208 208 #lfh-fade.actived{ … … 646 646 width:@width; 647 647 float:left; 648 height:@height - @height_title - 2*@padding_title;648 /* height:@height - @height_title - 2*@padding_title;*/ 649 649 max-height:@height - @height_title - 2*@padding_title; 650 650 vertical-align: bottom; … … 698 698 div.lfh-min div.lfh-content > div{ 699 699 width: @width; 700 height: @height - @height_title - 2*@padding_title;700 /* height: @height - @height_title - 2*@padding_title;*/ 701 701 max-width: @width; 702 702 max-height: @height - @height_title - 2*@padding_title; -
lf-hiker/trunk/gulpfile.js
r1830724 r1833277 2 2 //there are in files readme others version numbers: for releases, tested browsers, and the most important wordpress 3 3 4 var old_version = '1. 4.3';5 var version = '1. 5.0';4 var old_version = '1.5.1'; 5 var version = '1.6.0'; 6 6 var gulp = require('gulp'); 7 7 var less = require('gulp-less'); -
lf-hiker/trunk/js/lfh-plugin.js
r1830724 r1833277 56 56 lfh.Util.step_round = function(delta) 57 57 { 58 // console.log( 'step = ' +delta); 58 59 /** */ 59 60 var precision = Math.round( Math.log(delta)/Math.log(10) ); 61 // console.log('precision = '+ precision); 60 62 var p = Math.pow (10, precision); 61 63 var max = Math.ceil(delta / p) * p; 62 return max/2> delta ? max/2:max; 64 // console.log( 'max =' +max); 65 return max/2>= delta ? max/2:max; 63 66 } 64 67 // var result = lfh.Util.step_round(); 68 //console.log( 'step_round =' +result); 69 // var result = lfh.Util.step_round(50); 70 //console.log( 'step_round =' +result); 65 71 /** 66 72 * @const lfh.ZOOM_LIMIT the zoom limit for which some markers are displayed … … 356 362 map.scrollWheelZoom.disable(); 357 363 } 364 365 358 366 }else{ 359 367 // go to fullscreen … … 364 372 map._container.h0 = map._container.style.height; 365 373 map._container.style.height = "100%"; 374 // map.dragging.enable(); 366 375 } 367 376 … … 377 386 container.appendChild(div2); 378 387 //append list window to the map 379 var link = new lfh.Link( map, div2, 'lfh-list-' + this._index , this._selected, null, null,null );388 var link = new lfh.Link( map, div2, 'lfh-list-' + this._index , this._selected, null, null,null, null); 380 389 381 390 return container; … … 556 565 _center = [d.lat, d.lng]; 557 566 _zoom = Math.min(d.zoom,lfh.tiles[d.tile].max_zoom); 558 map = L.map(_map_id); 567 map = L.map(_map_id, { dragging: !L.Browser.mobile, tap:!L.Browser.mobile }); 568 // map = L.map(_map_id, { dragging: false }); 559 569 if( !_auto_center ){ 560 570 map.setView( _center, _zoom); … … 566 576 map.scrollWheelZoom.disable(); 567 577 } 568 // map.touchZoom.disable();578 map.touchZoom.enable(); 569 579 // Add layers 570 580 _add_move_marker(_center); … … 841 851 _move_marker, 842 852 _data.gpx[j].unit, 843 _data.gpx[j].unit_h); 853 _data.gpx[j].unit_h, 854 _data.gpx[j].step_min); 844 855 }).on('failed', function(){ 845 856 e.target.options.isLoaded = true; … … 908 919 * @param {string} unit km or milles (important only for gpx) 909 920 * @param {string} unit_h m or ft (important only for gpx) 921 * @param {integer} step_min the difference between max and min elevation axis (important only for gpx) 910 922 * @return {object <dom, layer, id >} 911 923 */ 912 lfh.Link = function( map, layer, elem_id, selected, move, unit, unit_h ){924 lfh.Link = function( map, layer, elem_id, selected, move, unit, unit_h, step_min){ 913 925 914 926 var _id = elem_id; … … 920 932 var _unit = unit; 921 933 var _unit_h = unit_h; 934 var _step_min = step_min; 922 935 923 936 function _initialize(){ … … 959 972 _move_marker, 960 973 _unit, 961 _unit_h); 974 _unit_h, 975 _step_min); 962 976 } 963 977 } … … 1096 1110 * @param {L.Marker} move, the move_marker on polyline path 1097 1111 */ 1098 lfh.Profile = function( map, layer, dom, move, unit, unit_h ){1112 lfh.Profile = function( map, layer, dom, move, unit, unit_h, step_min){ 1099 1113 var _unit = unit; 1100 1114 var _unit_h = unit_h; 1115 var _step_min = step_min; 1101 1116 if( _unit == "km"){ 1102 1117 var _coeff = 1; … … 1129 1144 var _max_km = _data[ i0 ][0] / _coeff; 1130 1145 var _step_h = lfh.Util.step_round((_max - _min)/3.5); 1131 if( _step_h < 10 / _coeff_elevation ){ 1132 1133 _step_h = _coeff_elevation==1? 10 : 25 ; 1134 if(_min -5 < 0){ 1135 _max = _coeff_elevation==1? 40 : 100 ; 1136 }else{ 1137 _middle = lfh.Util.step_round((_max + _min)/2); 1138 _max = _middle + 30; 1139 } 1146 if( _step_h < _step_min / ( _coeff_elevation) ){ 1147 1148 _step_h = lfh.Util.step_round( _step_min/(_coeff_elevation)) ; 1149 _middle = Math.ceil((_max + _min)/2); 1150 _max = _middle + 2* _step_h; 1151 // _min = _middle - 2* _step_h; 1152 1140 1153 } 1141 1154 var _max_h = Math.ceil( _max/_step_h)*(_step_h); … … 1162 1175 } 1163 1176 1164 d += _x(_data[i0][0]) + ','+ _h(_data[i0][1]) + ' L ';1177 d += Math.round(_x(_data[i0][0])) + ','+ Math.round(_h(_data[i0][1])) + ' L '; 1165 1178 for(var i=i0; i < ln -add ; i = i + add){ 1166 1179 … … 1205 1218 node.querySelector('text').textContent = ""; 1206 1219 }else{ 1207 node.querySelector('text').textContent = i * _step_x; 1220 var tx = 1; 1221 if(_step_x < 1){ tx =100;} 1222 node.querySelector('text').textContent = Math.round( i * _step_x * tx)/tx; 1208 1223 } 1209 1224 } 1210 1225 1211 1226 //if() 1227 _track.querySelector('.lfh-gpx-min-elevation').textContent = Math.round(_gpx.get_elevation_min()/_coeff_elevation) + ' ' + lfh.HEIGHT_UNIT[_unit_h].code; 1228 _track.querySelector('.lfh-gpx-max-elevation').textContent = Math.round(_gpx.get_elevation_max()/_coeff_elevation) + ' ' + lfh.HEIGHT_UNIT[_unit_h].code; 1212 1229 _track.querySelector('.lfh-gpx-elevation-gain').textContent = Math.round(_gpx.get_elevation_gain()/_coeff_elevation) + ' ' + lfh.HEIGHT_UNIT[_unit_h].code; 1213 1230 _track.querySelector('.lfh-gpx-elevation-loss').textContent = Math.round(_gpx.get_elevation_loss()/_coeff_elevation) + ' ' + lfh.HEIGHT_UNIT[_unit_h].code; -
lf-hiker/trunk/languages/lfh-default.po
r1830724 r1833277 2 2 msgstr "" 3 3 "Project-Id-Version: lfh\n" 4 "POT-Creation-Date: 2018-0 2-27 16:35+0100\n"5 "PO-Revision-Date: 2018-0 2-27 16:36+0100\n"4 "POT-Creation-Date: 2018-03-04 14:51+0100\n" 5 "PO-Revision-Date: 2018-03-04 14:52+0100\n" 6 6 "Last-Translator: Elisabeth Pointal <elisabeth.pointal@free.fr>\n" 7 7 "Language-Team: elisabeth\n" … … 24 24 "hiker\\Controller\n" 25 25 26 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 5726 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:61 27 27 msgid "kilometer" 28 28 msgstr "kilometer" 29 29 30 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 5830 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:62 31 31 msgid "km" 32 32 msgstr "km" 33 33 34 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:6 134 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:65 35 35 msgid "milles" 36 36 msgstr "milles" 37 37 38 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:6 238 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:66 39 39 msgid "mi" 40 40 msgstr "mi" 41 41 42 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 6842 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:72 43 43 msgid "meter" 44 44 msgstr "meter" 45 45 46 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 6946 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:73 47 47 msgid "m" 48 48 msgstr "m" 49 49 50 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:7 250 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:76 51 51 msgid "foot" 52 52 msgstr "foot" 53 53 54 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:7 354 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:77 55 55 msgid "ft" 56 56 msgstr "ft" 57 57 58 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:8 258 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:86 59 59 msgid "Position auto" 60 60 msgstr "Position auto" 61 61 62 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:11 062 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:114 63 63 msgid "Width" 64 64 msgstr "Width" 65 65 66 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:12 066 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:124 67 67 msgid "Height" 68 68 msgstr "Height" 69 69 70 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 3870 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:142 71 71 msgid "Fullscreen" 72 72 msgstr "Fullscreen" 73 73 74 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:14 574 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:149 75 75 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/admin/settings.phtml:93 76 76 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/editor/map-form.phtml:113 … … 78 78 msgstr "reset" 79 79 80 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:15 280 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:156 81 81 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/map.phtml:20 82 82 msgid "list" 83 83 msgstr "list" 84 84 85 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 5985 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:163 86 86 msgid "Zoom on wheel" 87 87 msgstr "Zoom on wheel" 88 88 89 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:16 589 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:169 90 90 msgid "Tiles" 91 91 msgstr "Tiles" 92 92 93 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:17 393 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:177 94 94 msgid "Open profile automaticaly" 95 95 msgstr "Open profile automaticaly" 96 96 97 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:2 1897 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:222 98 98 msgid "no named gpx" 99 99 msgstr "no named gpx" 100 100 101 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 281101 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:301 102 102 msgid "no named marker" 103 103 msgstr "no named marker" … … 111 111 msgstr "Units, button, tiles" 112 112 113 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:16114 msgid ""115 "You can add tiles layers which need key here, or choose unit for distance"116 msgstr ""117 "You can add tiles layers which need key here, or choose unit for distance"118 119 113 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:18 120 114 msgid "General" … … 149 143 msgstr "Selected path color" 150 144 151 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:7 3145 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:74 152 146 msgid "Display button download gpx" 153 147 msgstr "Display button download gpx" 154 148 155 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:7 5149 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:76 156 150 msgid "" 157 151 "You can change it for one gpx in shortcode by using property <code>button</" … … 161 155 "code>" 162 156 163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:8 0157 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:81 164 158 msgid "Open profile window automatically" 165 159 msgstr "Open profile window automatically" 166 160 167 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:82 168 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:101 161 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:83 162 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:102 163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:111 169 164 msgid "You can change it for one map in shortcode by using property" 170 165 msgstr "You can change it for one map in shortcode by using property" 171 166 172 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:8 8167 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:89 173 168 msgid "Number of gpx to display a checkbox show/hide" 174 169 msgstr "Number of gpx to display a checkbox show/hide" 175 170 176 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php: 99171 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:100 177 172 msgid "Display button fullscreen" 178 173 msgstr "Display button fullscreen" 179 174 180 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:106 175 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:108 176 msgid "Default map tiles" 177 msgstr "Default map tiles" 178 179 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:116 181 180 msgid "Default distance unit" 182 181 msgstr "Default distance unit" 183 182 184 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:1 14183 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:124 185 184 msgid "Default height unit" 186 185 msgstr "Default height unit" 187 186 188 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:121 189 msgid "Mapquest key" 190 msgstr "Mapquest key" 191 192 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:126 193 msgid "This option is deactived (mapquest using deprecated method)." 194 msgstr "This option is deactived (mapquest using deprecated method)." 195 196 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:126 197 msgid "If you want MapQuest, you must provide an app key." 198 msgstr "If you want MapQuest, you must provide an app key." 199 200 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:128 201 msgid "Sign up" 202 msgstr "Sign up" 203 204 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:129 205 msgid "then" 206 msgstr "then" 207 208 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:130 209 msgid "Create a new app" 210 msgstr "Create a new app" 211 212 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:131 213 msgid "then supply the «Consumer Key» here." 214 msgstr "then supply the «Consumer Key» here." 215 216 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:142 217 msgid "Cache dir" 218 msgstr "Cache dir" 219 220 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:181 187 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:132 188 msgid "Minimum step on elevation axis in meters ( four steps in general)" 189 msgstr "Minimum step on elevation axis in meters ( four steps in general)" 190 191 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:138 192 msgid "You can change it for one gpx in shortcode by using property" 193 msgstr "You can change it for one gpx in shortcode by using property" 194 195 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:204 221 196 msgid "Failed to create a new cache" 222 197 msgstr "Failed to create a new cache" 223 198 224 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 21199 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:244 225 200 msgid "data updated" 226 201 msgstr "data updated" 227 202 228 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 41203 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:264 229 204 msgid "data reseted" 230 205 msgstr "data reseted" … … 392 367 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/editor/add-marker.phtml:80 393 368 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/marker.phtml:37 394 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:1 09369 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:117 395 370 msgid "description" 396 371 msgstr "description" … … 405 380 406 381 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/about-page.phtml:58 407 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml: 95382 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:103 408 383 msgid "elevation loss" 409 384 msgstr "elevation loss" 410 385 411 386 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/about-page.phtml:59 412 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:9 1387 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:99 413 388 msgid "elevation gain" 414 389 msgstr "elevation gain" … … 530 505 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:92 531 506 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:96 532 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:99 507 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:100 508 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:104 509 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:107 533 510 msgid "no data" 534 511 msgstr "no data" 535 512 536 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:98 513 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:91 514 msgid "minimum elevation" 515 msgstr "minimum elevation" 516 517 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:95 518 msgid "maximum elevation" 519 msgstr "maximum elevation" 520 521 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:106 537 522 msgid "duration" 538 523 msgstr "duration" 539 524 525 #~ msgid "" 526 #~ "You can add tiles layers which need key here, or choose unit for distance" 527 #~ msgstr "" 528 #~ "You can add tiles layers which need key here, or choose unit for distance" 529 530 #~ msgid "Mapquest key" 531 #~ msgstr "Mapquest key" 532 533 #~ msgid "This option is deactived (mapquest using deprecated method)." 534 #~ msgstr "This option is deactived (mapquest using deprecated method)." 535 536 #~ msgid "If you want MapQuest, you must provide an app key." 537 #~ msgstr "If you want MapQuest, you must provide an app key." 538 539 #~ msgid "Sign up" 540 #~ msgstr "Sign up" 541 542 #~ msgid "then" 543 #~ msgstr "then" 544 545 #~ msgid "Create a new app" 546 #~ msgstr "Create a new app" 547 548 #~ msgid "then supply the «Consumer Key» here." 549 #~ msgstr "then supply the «Consumer Key» here." 550 551 #~ msgid "Cache dir" 552 #~ msgstr "Cache dir" 553 540 554 #~ msgid "Config Map" 541 555 #~ msgstr "Config Map" -
lf-hiker/trunk/languages/lfh-fr_FR.po
r1830724 r1833277 2 2 msgstr "" 3 3 "Project-Id-Version: lfh\n" 4 "POT-Creation-Date: 2018-0 2-27 16:34+0100\n"5 "PO-Revision-Date: 2018-0 2-27 16:35+0100\n"4 "POT-Creation-Date: 2018-03-04 14:52+0100\n" 5 "PO-Revision-Date: 2018-03-04 14:52+0100\n" 6 6 "Last-Translator: Elisabeth Pointal <elisabeth.pointal@free.fr>\n" 7 7 "Language-Team: elisabeth\n" … … 121 121 msgstr "Votre configuration a été mise à jour" 122 122 123 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 57123 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:61 124 124 msgid "kilometer" 125 125 msgstr "kilomètre" 126 126 127 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 58127 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:62 128 128 msgid "km" 129 129 msgstr "km" 130 130 131 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:6 1131 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:65 132 132 msgid "milles" 133 133 msgstr "milles" 134 134 135 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:6 2135 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:66 136 136 msgid "mi" 137 137 msgstr "mi" 138 138 139 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 68139 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:72 140 140 msgid "meter" 141 141 msgstr "mètre" 142 142 143 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 69143 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:73 144 144 msgid "m" 145 145 msgstr "m" 146 146 147 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:7 2147 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:76 148 148 msgid "foot" 149 149 msgstr "pied" 150 150 151 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:7 3151 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:77 152 152 msgid "ft" 153 153 msgstr "ft" 154 154 155 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:8 2155 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:86 156 156 msgid "Position auto" 157 157 msgstr "Position auto" 158 158 159 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:11 0159 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:114 160 160 msgid "Width" 161 161 msgstr "Largeur" 162 162 163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:12 0163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:124 164 164 msgid "Height" 165 165 msgstr "Hauteur" 166 166 167 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 38167 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:142 168 168 msgid "Fullscreen" 169 169 msgstr "Plein écran" 170 170 171 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:14 5171 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:149 172 172 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/admin/settings.phtml:93 173 173 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/editor/map-form.phtml:113 … … 177 177 msgstr "initialiser" 178 178 179 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:15 2179 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:156 180 180 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/map.phtml:20 181 181 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/map.phtml:20 … … 183 183 msgstr "liste" 184 184 185 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 59185 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:163 186 186 msgid "Zoom on wheel" 187 187 msgstr "Zoom sur la mollette" 188 188 189 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:16 5189 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:169 190 190 msgid "Tiles" 191 191 msgstr "Tuiles" 192 192 193 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:17 3193 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:177 194 194 msgid "Open profile automaticaly" 195 195 msgstr "Ouvrir le profile automatiquemement" 196 196 197 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:2 18197 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:222 198 198 msgid "no named gpx" 199 199 msgstr "gpx sans nom" 200 200 201 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 281201 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:301 202 202 msgid "no named marker" 203 203 msgstr "marqueur sans nom" … … 211 211 msgstr "Unités, bouton, tuiles" 212 212 213 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:16214 msgid ""215 "You can add tiles layers which need key here, or choose unit for distance"216 msgstr ""217 "Vous pouvez ajouter les fonds de cartes qui demandent une clé ici, ou "218 "choisir une unité de distance."219 220 213 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:18 221 214 msgid "General" … … 250 243 msgstr "Couleur du chemin sélectionné" 251 244 252 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:7 3245 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:74 253 246 msgid "Display button download gpx" 254 247 msgstr "Afficher le bouton télécharger gpx" 255 248 256 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:7 5249 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:76 257 250 msgid "" 258 251 "You can change it for one gpx in shortcode by using property <code>button</" … … 262 255 "la propriété <code>button</code>" 263 256 264 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:8 0257 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:81 265 258 msgid "Open profile window automatically" 266 259 msgstr "Ouvrir le profile automatiquement" 267 260 268 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:82 269 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:101 261 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:83 262 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:102 263 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:111 270 264 msgid "You can change it for one map in shortcode by using property" 271 265 msgstr "" … … 273 267 "propriété " 274 268 275 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:8 8269 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:89 276 270 msgid "Number of gpx to display a checkbox show/hide" 277 271 msgstr "Nombre de gpx pour afficher une case à cocher montrer/cacher" 278 272 279 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php: 99273 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:100 280 274 msgid "Display button fullscreen" 281 275 msgstr "Afficher le bouton plein écran" 282 276 283 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:106 277 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:108 278 msgid "Default map tiles" 279 msgstr "Fond de carte par défaut" 280 281 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:116 284 282 msgid "Default distance unit" 285 283 msgstr "Unité de distance (défaut)" 286 284 287 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:1 14285 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:124 288 286 msgid "Default height unit" 289 287 msgstr "Unité de hauteur (défaut)" 290 288 291 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:121 292 msgid "Mapquest key" 293 msgstr "La clé MapQuest" 294 295 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:126 296 msgid "This option is deactived (mapquest using deprecated method)." 297 msgstr "Cette option est désactivée ( fatale issue )" 298 299 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:126 300 msgid "If you want MapQuest, you must provide an app key." 301 msgstr "" 302 "Si vous souhaitez utiliser MapQuest, vous devez fournie une clé." 303 304 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:128 305 msgid "Sign up" 306 msgstr "S’inscrire" 307 308 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:129 309 msgid "then" 310 msgstr "alors" 311 312 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:130 313 msgid "Create a new app" 314 msgstr "Créer une nouvelle application" 315 316 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:131 317 msgid "then supply the «Consumer Key» here." 318 msgstr "ensuite entrer votre cl´ " 319 320 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:142 321 msgid "Cache dir" 322 msgstr "Dossier du cache" 323 324 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:181 289 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:132 290 msgid "Minimum step on elevation axis in meters ( four steps in general)" 291 msgstr "" 292 "Pas minimum sur l′axe des altitudes en mètres ( 4 pas en " 293 "général)" 294 295 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:138 296 msgid "You can change it for one gpx in shortcode by using property" 297 msgstr "" 298 "Vous pouvez le modifier pour un gpx dans le shortcode en utilisant la " 299 "propriété " 300 301 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:204 325 302 msgid "Failed to create a new cache" 326 303 msgstr "Échec lors de la création du cache" 327 304 328 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 21305 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:244 329 306 msgid "data updated" 330 307 msgstr "données mises à jour" 331 308 332 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 41309 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:264 333 310 msgid "data reseted" 334 311 msgstr "Données initialisées" … … 440 417 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/editor/add-marker.phtml:80 441 418 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/marker.phtml:37 442 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:1 09419 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:117 443 420 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/marker.phtml:37 444 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:1 09421 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:117 445 422 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\back/about-page.phtml:55 446 423 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\back/editor/add-marker.phtml:80 … … 459 436 460 437 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/about-page.phtml:58 461 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml: 95462 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml: 95438 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:103 439 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:103 463 440 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\back/about-page.phtml:58 464 441 msgid "elevation loss" … … 466 443 467 444 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/back/about-page.phtml:59 468 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:9 1469 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:9 1445 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:99 446 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:99 470 447 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\back/about-page.phtml:59 471 448 msgid "elevation gain" … … 626 603 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:92 627 604 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:96 628 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:99 605 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:100 606 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:104 607 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:107 629 608 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:84 630 609 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:88 631 610 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:92 632 611 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:96 633 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:99 612 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:100 613 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:104 614 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:107 634 615 msgid "no data" 635 616 msgstr "aucune donnée" 636 617 637 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:98 638 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:98 618 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:91 619 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:91 620 msgid "minimum elevation" 621 msgstr "altitude minimum" 622 623 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:95 624 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:95 625 msgid "maximum elevation" 626 msgstr "altitude maximum" 627 628 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views/front/track.phtml:106 629 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\views\front/track.phtml:106 639 630 msgid "duration" 640 631 msgstr "durée" 641 632 633 #~ msgid "" 634 #~ "You can add tiles layers which need key here, or choose unit for distance" 635 #~ msgstr "" 636 #~ "Vous pouvez ajouter les fonds de cartes qui demandent une clé ici, " 637 #~ "ou choisir une unité de distance." 638 639 #~ msgid "Mapquest key" 640 #~ msgstr "La clé MapQuest" 641 642 #~ msgid "This option is deactived (mapquest using deprecated method)." 643 #~ msgstr "Cette option est désactivée ( fatale issue )" 644 645 #~ msgid "If you want MapQuest, you must provide an app key." 646 #~ msgstr "" 647 #~ "Si vous souhaitez utiliser MapQuest, vous devez fournie une clé." 648 649 #~ msgid "Sign up" 650 #~ msgstr "S’inscrire" 651 652 #~ msgid "then" 653 #~ msgstr "alors" 654 655 #~ msgid "Create a new app" 656 #~ msgstr "Créer une nouvelle application" 657 658 #~ msgid "then supply the «Consumer Key» here." 659 #~ msgstr "ensuite entrer votre cl´ " 660 661 #~ msgid "Cache dir" 662 #~ msgstr "Dossier du cache" 663 642 664 #~ msgid "Config Map" 643 665 #~ msgstr "Carte" -
lf-hiker/trunk/lf-hiker.php
r1830724 r1833277 6 6 Author: epointal 7 7 Author URI: http://elisabeth.pointal.org/ 8 Version: 1. 5.08 Version: 1.6.0 9 9 License: GPL2 10 10 Text domain: lfh … … 16 16 class Lf_Hiker_Plugin 17 17 { 18 const VERSION = '1. 5.0';18 const VERSION = '1.6.0'; 19 19 20 20 private static $_controller; -
lf-hiker/trunk/package.json
r1830724 r1833277 1 1 { 2 2 "name": "lf-hiker", 3 "version": "1. 4.3",3 "version": "1.6.0", 4 4 "description": "plugin for wordpress for display track with profil elevation", 5 5 "main": "index.js", -
lf-hiker/trunk/readme.txt
r1830724 r1833277 7 7 Tested up to: 4.9 8 8 Stable tag: 1.0 9 Version: 1. 5.09 Version: 1.6.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 * interactive **profile elevation** according to path 33 33 * distance of the track 34 * maximum elevation 35 * minimum elevation 34 36 * elevation loss 35 37 * elevation gain … … 51 53 * stroke color 52 54 * stroke width 53 * distance unit 54 * elevation unit 55 * display button download gpx file 55 * display button download gpx file 56 And only in shortcode: 57 * the elevation unit 58 * the distance unit 59 * the minimum step on elevation axis (in meter) 56 60 57 61 … … 130 134 131 135 == Changelog == 136 = 1.6.0 = 137 * Ability to choose the default map tiles 138 * Display minimum elevation under profile 139 * Display maximum elevation under profile 140 * Add parameter step_min for gpx profile elevation 141 * Ability to choose the default step_min for elevation step in settings 142 * Disable map pan with one finger 143 * Fixed: path and marker button too high in little view 144 132 145 = 1.5.0 = 133 146 * Ability to start with profile elevation displayed -
lf-hiker/trunk/views/front/track.phtml
r1830724 r1833277 88 88 <span class="lfh-gpx-distance"><em><?=ucfirst(__('no data', 'lfh'))?></em></span> 89 89 </div> 90 <div> 91 <span><?=ucfirst(__('minimum elevation', 'lfh'))?>: </span> 92 <span class="lfh-gpx-min-elevation" ><em><?=ucfirst(__('no data', 'lfh'))?></em></span> 93 </div> 94 <div> 95 <span><?=ucfirst(__('maximum elevation', 'lfh'))?>: </span> 96 <span class="lfh-gpx-max-elevation" ><em><?=ucfirst(__('no data', 'lfh'))?></em></span> 97 </div> 90 98 <div> 91 99 <span><?=ucfirst(__('elevation gain', 'lfh'))?>: </span>
Note: See TracChangeset
for help on using the changeset viewer.