Changeset 1886332
- Timestamp:
- 06/03/2018 03:48:17 PM (8 years ago)
- Location:
- lf-hiker/trunk
- Files:
-
- 20 added
- 7 deleted
- 13 edited
-
Controller/Front.php (modified) (2 diffs)
-
Model/Option.php (modified) (2 diffs)
-
Tools/Editor.php (modified) (2 diffs)
-
dist/helper-min.1.10.0.js (added)
-
dist/helper-min.1.9.0.js (deleted)
-
dist/helper.1.10.0.css (added)
-
dist/helper.1.9.0.css (deleted)
-
dist/lfh-front-min.1.10.0.js (added)
-
dist/lfh-front-min.1.9.0.js (deleted)
-
dist/lfh-post-editor-min.1.10.0.js (added)
-
dist/lfh-post-editor-min.1.9.0.js (deleted)
-
dist/lfh-post-editor.1.10.0.css (added)
-
dist/lfh-post-editor.1.9.0.css (deleted)
-
dist/lfh-style-min.1.10.0.css (added)
-
dist/lfh-style-min.1.9.0.css (deleted)
-
dist/tinymce-lfh-plugin-min.1.10.0.js (added)
-
dist/tinymce-lfh-plugin-min.1.9.0.js (deleted)
-
gulpfile.js (modified) (1 diff)
-
js/lfh-plugin.js (modified) (4 diffs)
-
languages/lfh-default.mo (modified) (previous)
-
languages/lfh-default.po (modified) (5 diffs)
-
languages/lfh-fr_FR.mo (modified) (previous)
-
languages/lfh-fr_FR.po (modified) (6 diffs)
-
lf-hiker.php (modified) (2 diffs)
-
lib/leaflet (added)
-
lib/leaflet/1.3.1 (added)
-
lib/leaflet/1.3.1/images (added)
-
lib/leaflet/1.3.1/images/layers-2x.png (added)
-
lib/leaflet/1.3.1/images/layers.png (added)
-
lib/leaflet/1.3.1/images/marker-icon-2x.png (added)
-
lib/leaflet/1.3.1/images/marker-icon.png (added)
-
lib/leaflet/1.3.1/images/marker-shadow.png (added)
-
lib/leaflet/1.3.1/leaflet-src.js (added)
-
lib/leaflet/1.3.1/leaflet-src.js.map (added)
-
lib/leaflet/1.3.1/leaflet.css (added)
-
lib/leaflet/1.3.1/leaflet.js (added)
-
lib/leaflet/1.3.1/leaflet.js.map (added)
-
package.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
views/admin/settings.phtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lf-hiker/trunk/Controller/Front.php
r1839607 r1886332 47 47 } 48 48 public function register_scripts () { 49 50 wp_register_style('leaflet_stylesheet', "https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.1.0/leaflet.css", Array(), null, false); 51 wp_register_script('leaflet',"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.1.0/leaflet.js",Array(),null, true); 49 $cdn = Lfh_Model_Option::get_option('lfh_use_cdn'); 50 if( $cdn ){ 51 wp_register_style('leaflet_stylesheet', "https://cdnjs.cloudflare.com/ajax/libs/leaflet/" . Lf_Hiker_Plugin::LEAFLET_VERSION . '/leaflet.css', Array(), null, false); 52 wp_register_script('leaflet',"https://cdnjs.cloudflare.com/ajax/libs/leaflet/" . Lf_Hiker_Plugin::LEAFLET_VERSION . "/leaflet.js",Array(),null, true); 52 53 // wp_register_style('font_awesome', "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css", Array(), null, false); 53 54 }else{ 55 wp_register_style('leaflet_stylesheet', Lf_Hiker_Plugin::$url.'lib/leaflet/'.Lf_Hiker_Plugin::LEAFLET_VERSION.'/leaflet.css', Array(), null, false); 56 wp_register_script('leaflet', Lf_Hiker_Plugin::$url.'lib/leaflet/'.Lf_Hiker_Plugin::LEAFLET_VERSION.'/leaflet.js',Array(),null, true); 57 58 } 54 59 55 60 if(WP_DEBUG){ … … 68 73 69 74 public function map_shortcode($atts, $html =null){ 75 if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ){ 76 return ""; 77 } 70 78 if( $this->is_divi_get_thumbnail()){ 71 79 return ""; -
lf-hiker/trunk/Model/Option.php
r1833277 r1886332 160 160 case 'config_lfh': 161 161 return array( 162 162 'lfh_use_cdn' => array( 163 'type' => 'checkbox', 164 'default'=> true, 165 'label' => __('Use cdn host for leaflet', 'lfh'), 166 'filter' => FILTER_VALIDATE_INT, 167 'helper' => esc_html__('If unchecked, use local leaflet version', 'lfh') 168 ) 163 169 /*'lfh_cache_parent' => array( 164 170 'type' => 'text', … … 226 232 } 227 233 } 234 if( $tab == 'config_lfh'){ 235 if( isset( $data["lfh_use_cdn"])){ 236 $data["lfh_use_cdn"] = true; 237 }else{ 238 $data["lfh_use_cdn"] = false; 239 } 240 } 228 241 229 242 $filter = self::get_defaults($tab); -
lf-hiker/trunk/Tools/Editor.php
r1833277 r1886332 147 147 // scripts for helper add-marker.phtml 148 148 public function load_scripts_helper(){ 149 wp_enqueue_style( 'leaflet_css', 'https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.1.0/leaflet.css', null, null ); 150 149 $cdn = Lfh_Model_Option::get_option("lfh_use_cdn"); 150 if( $cdn){ 151 wp_enqueue_style( 'leaflet_css', 'https://cdnjs.cloudflare.com/ajax/libs/leaflet/'. Lf_Hiker_Plugin::LEAFLET_VERSION .'/leaflet.css', null, null ); 152 wp_enqueue_script('leaflet','https://cdnjs.cloudflare.com/ajax/libs/leaflet/' .Lf_Hiker_Plugin::LEAFLET_VERSION. '/leaflet.js',Array(),null, true); 153 }else{ 154 wp_enqueue_style( 'leaflet_css', Lf_Hiker_Plugin::$url.'lib/leaflet/'. Lf_Hiker_Plugin::LEAFLET_VERSION .'/leaflet.css', null, null ); 155 wp_enqueue_script('leaflet', Lf_Hiker_Plugin::$url.'lib/leaflet/' .Lf_Hiker_Plugin::LEAFLET_VERSION. '/leaflet.js',Array(),null, true); 156 } 151 157 if(WP_DEBUG){ 152 158 wp_enqueue_style('helper_css', Lf_Hiker_Plugin::$url."css/helper.css",Array( 'leaflet_css'), null); … … 155 161 wp_enqueue_style('helper_css', Lf_Hiker_Plugin::$url."dist/helper.".Lf_Hiker_Plugin::VERSION.".css", Array('leaflet_css'), null, null); 156 162 } 157 wp_enqueue_script('leaflet',"https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.1.0/leaflet.js",Array(),null, true);158 163 wp_enqueue_script('awesome_marker_js',Lf_Hiker_Plugin::$url. "lib/awesome-marker/leaflet.awesome-markers.min.js", Array('leaflet'), null, true); 159 164 -
lf-hiker/trunk/gulpfile.js
r1880263 r1886332 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. 8.2';5 var version = '1. 9.0';4 var old_version = '1.9.0'; 5 var version = '1.10.0'; 6 6 var gulp = require('gulp'); 7 7 var less = require('gulp-less'); -
lf-hiker/trunk/js/lfh-plugin.js
r1880263 r1886332 462 462 [].forEach.call(lfh.all , function( mapi ) { 463 463 mapi.reset(); 464 465 464 }); 466 465 } … … 479 478 /** add event for tabs situation */ 480 479 lfh.handle_tab_event = function(){ 481 var nodes = document.querySelectorAll("[ role='tab'], [data-tab]");480 var nodes = document.querySelectorAll("[data-tab]"); 482 481 [].forEach.call( nodes, function( node ){ 483 482 L.DomEvent.addListener( node, 'click', function(e){ 484 setTimeout( lfh.reset_all_map, 100 0);483 setTimeout( lfh.reset_all_map, 100); 485 484 }) 486 487 488 485 }) 489 486 } 487 window.addEventListener("load", function(e) { 488 var nodes = document.querySelectorAll(".responsive-tabs__list__item"); 489 [].forEach.call( nodes, function( node ){ 490 L.DomEvent.addListener( node, 'click', function(e){ 491 lfh.reset_all_map(); 492 }) 493 }) 494 }, true); 490 495 lfh.toggle_next = function( node, delta, map_id){ 491 496 if( !node ){ … … 827 832 828 833 } 829 container.insertBefore( div, container.firstChild); 830 //appendChild(node); 834 container.appendChild( div); 831 835 832 836 L.DomEvent.addListener( node , 'click', function(e){ … … 919 923 div.className = "lfh-content";*/ 920 924 //begin by gpx 921 [].forEach.call(_gpx, function( one_gpx){925 _gpx.forEach(function( one_gpx, i){ 922 926 if( count%3 == 0){ 923 927 div = document.createElement("div"); -
lf-hiker/trunk/languages/lfh-default.po
r1833277 r1886332 2 2 msgstr "" 3 3 "Project-Id-Version: lfh\n" 4 "POT-Creation-Date: 2018-0 3-04 14:51+0100\n"5 "PO-Revision-Date: 2018-0 3-04 14:52+0100\n"4 "POT-Creation-Date: 2018-06-03 00:33+0100\n" 5 "PO-Revision-Date: 2018-06-03 00:34+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: 6126 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:75 27 27 msgid "kilometer" 28 28 msgstr "kilometer" 29 29 30 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 6230 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:76 31 31 msgid "km" 32 32 msgstr "km" 33 33 34 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 6534 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:79 35 35 msgid "milles" 36 36 msgstr "milles" 37 37 38 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 6638 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:80 39 39 msgid "mi" 40 40 msgstr "mi" 41 41 42 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 7242 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:86 43 43 msgid "meter" 44 44 msgstr "meter" 45 45 46 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 7346 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:87 47 47 msgid "m" 48 48 msgstr "m" 49 49 50 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 7650 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:90 51 51 msgid "foot" 52 52 msgstr "foot" 53 53 54 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 7754 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:91 55 55 msgid "ft" 56 56 msgstr "ft" 57 57 58 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 8658 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:100 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:1 1462 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:128 63 63 msgid "Width" 64 64 msgstr "Width" 65 65 66 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 2466 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:138 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 4270 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:156 71 71 msgid "Fullscreen" 72 72 msgstr "Fullscreen" 73 73 74 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 4974 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:163 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:1 5680 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:170 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 6385 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:177 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:1 6989 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:183 90 90 msgid "Tiles" 91 91 msgstr "Tiles" 92 92 93 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 7793 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:191 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 2297 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:237 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:3 01101 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:316 102 102 msgid "no named marker" 103 103 msgstr "no named marker" … … 193 193 msgstr "You can change it for one gpx in shortcode by using property" 194 194 195 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:204 195 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:165 196 msgid "Use cdn host for leaflet" 197 msgstr "Use cdn host for leaflet" 198 199 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:167 200 msgid "If unchecked, use local leaflet version" 201 msgstr "If unckecked, use local leaflet version" 202 203 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:210 196 204 msgid "Failed to create a new cache" 197 205 msgstr "Failed to create a new cache" 198 206 199 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 44207 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:257 200 208 msgid "data updated" 201 209 msgstr "data updated" 202 210 203 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 64211 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:277 204 212 msgid "data reseted" 205 213 msgstr "data reseted" … … 224 232 225 233 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:141 226 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:28 1234 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:286 227 235 msgid "Add here your formated description" 228 236 msgstr "Add here your formated description" 229 237 230 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:2 57238 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:262 231 239 msgid "Manage gpx" 232 240 msgstr "Manage gpx" 233 241 234 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:30 2242 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:307 235 243 msgid "Display download button" 236 244 msgstr "Display download button" 237 245 238 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:3 09246 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:314 239 247 msgid "Color path" 240 248 msgstr "Color path" 241 249 242 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:3 26250 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:331 243 251 msgid "Stroke width" 244 252 msgstr "Stroke width" -
lf-hiker/trunk/languages/lfh-fr_FR.po
r1833277 r1886332 2 2 msgstr "" 3 3 "Project-Id-Version: lfh\n" 4 "POT-Creation-Date: 2018-0 3-04 14:52+0100\n"5 "PO-Revision-Date: 2018-0 3-04 14:52+0100\n"4 "POT-Creation-Date: 2018-06-03 00:34+0100\n" 5 "PO-Revision-Date: 2018-06-03 00:35+0100\n" 6 6 "Last-Translator: Elisabeth Pointal <elisabeth.pointal@free.fr>\n" 7 7 "Language-Team: elisabeth\n" … … 52 52 53 53 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:141 54 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:28 154 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:286 55 55 msgid "Add here your formated description" 56 56 msgstr "Insérez votre description formatée ici" 57 57 58 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:2 5758 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:262 59 59 msgid "Manage gpx" 60 60 msgstr "Gèrer les GPX" 61 61 62 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:30 262 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:307 63 63 msgid "Display download button" 64 64 msgstr "Afficher le bouton télécharger" 65 65 66 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:3 0966 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:314 67 67 msgid "Color path" 68 68 msgstr "Couleur du chemin" 69 69 70 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:3 2670 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Tools/Editor.php:331 71 71 msgid "Stroke width" 72 72 msgstr "Epaisseur du trait" … … 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: 61123 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:75 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: 62127 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:76 128 128 msgid "km" 129 129 msgstr "km" 130 130 131 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 65131 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:79 132 132 msgid "milles" 133 133 msgstr "milles" 134 134 135 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 66135 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:80 136 136 msgid "mi" 137 137 msgstr "mi" 138 138 139 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 72139 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:86 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: 73143 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:87 144 144 msgid "m" 145 145 msgstr "m" 146 146 147 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 76147 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:90 148 148 msgid "foot" 149 149 msgstr "pied" 150 150 151 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 77151 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:91 152 152 msgid "ft" 153 153 msgstr "ft" 154 154 155 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php: 86155 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:100 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:1 14159 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:128 160 160 msgid "Width" 161 161 msgstr "Largeur" 162 162 163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 24163 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:138 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 42167 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:156 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:1 49171 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:163 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:1 56179 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:170 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 63185 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:177 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:1 69189 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:183 190 190 msgid "Tiles" 191 191 msgstr "Tuiles" 192 192 193 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:1 77193 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:191 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 22197 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:237 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:3 01201 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Map.php:316 202 202 msgid "no named marker" 203 203 msgstr "marqueur sans nom" … … 299 299 "propriété " 300 300 301 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:204 301 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:165 302 msgid "Use cdn host for leaflet" 303 msgstr "Utiliser l'hôte cdn pour Leaflet" 304 305 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:167 306 msgid "If unchecked, use local leaflet version" 307 msgstr "Si décoché, utilise la version locale de leaflet" 308 309 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:210 302 310 msgid "Failed to create a new cache" 303 311 msgstr "Échec lors de la création du cache" 304 312 305 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 44313 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:257 306 314 msgid "data updated" 307 315 msgstr "données mises à jour" 308 316 309 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:2 64317 #: C:\wamp\www\rancs\blog\wp-content\plugins\lf-hiker\Model/Option.php:277 310 318 msgid "data reseted" 311 319 msgstr "Données initialisées" -
lf-hiker/trunk/lf-hiker.php
r1880263 r1886332 6 6 Author: epointal 7 7 Author URI: http://elisabeth.pointal.org/ 8 Version: 1. 9.08 Version: 1.10.0 9 9 License: GPL2 10 10 Text domain: lfh … … 51 51 class Lf_Hiker_Plugin 52 52 { 53 const VERSION = '1.9.0'; 53 const VERSION = '1.10.0'; 54 const LEAFLET_VERSION = '1.3.1'; 54 55 55 56 private static $_controller; -
lf-hiker/trunk/package.json
r1880263 r1886332 1 1 { 2 2 "name": "lf-hiker", 3 "version": "1. 9.0",3 "version": "1.10.0", 4 4 "description": "plugin for wordpress for display track with profil elevation", 5 5 "main": "index.js", -
lf-hiker/trunk/readme.txt
r1880280 r1886332 7 7 Tested up to: 4.9 8 8 Stable tag: 1.0 9 Version: 1. 9.09 Version: 1.10.0 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 135 135 136 136 == Changelog == 137 = 1.10.0 = 138 * Fixed: lf hiker is destroying the AMP pages 139 * Fixed: bug with tabby-responsive-tabs plugin 140 * Evolution: gpx buttons are ordered in list as the gpx files in post/page 141 * Evolution: Ability to choose the leaflet host 142 137 143 = 1.9.0 = 138 144 * Fixed: trouble position of gpx dom block, marker block and list block -
lf-hiker/trunk/views/admin/settings.phtml
r1830724 r1886332 83 83 $disabled =''; 84 84 if($active_tab == 'config_lfh'){ 85 $disabled = 'disabled style="display:none;"';85 // $disabled = 'disabled style="display:none;"'; 86 86 } 87 87 ?>
Note: See TracChangeset
for help on using the changeset viewer.