├── .wordpress-org ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png ├── screenshot-5.png ├── screenshot-6-de.png └── screenshot-6.png ├── CHANGELOG.md ├── LICENSE ├── admin.php ├── admin ├── choropleth.php ├── deleting.php ├── elevation │ ├── elevation.php │ ├── main.php │ ├── multielevation.php │ ├── owncolors.php │ ├── owntheme.php │ ├── sgpx.php │ └── waypoints.php ├── filemgr │ ├── create_copy │ │ ├── createShortcode.css │ │ └── createShortcode.js │ ├── filemgr-settings.php │ ├── filemgr.php │ ├── leaflet-directory.php │ ├── main.php │ ├── managefiles-functions.php │ ├── thickbox.php │ └── uploader.php ├── fullscreen.php ├── gesture.php ├── grouping │ ├── featuregroup.php │ ├── main.php │ ├── parentgroup.php │ └── settings.php ├── help.php ├── hover │ ├── hover.php │ ├── hoverlap.php │ ├── main.php │ └── settings.php ├── leaflet-search.php ├── marker │ ├── clustergroup.php │ ├── extramarker.php │ ├── geojsonmarker.php │ ├── hidemarkers.php │ ├── listmarker.php │ ├── main.php │ ├── markercluster.php │ ├── placementstrategies.php │ └── targetmarker.php ├── overview-map.php ├── tiles │ ├── help.php │ ├── layerswitch.php │ ├── main.php │ └── providers.php └── zoomhome.php ├── changes.md ├── css ├── choropleth.css ├── choropleth.min.css ├── font-awesome.min.css ├── iphone.css ├── iphone.min.css ├── leafext-admin.css ├── leafext-admin.min.css ├── leafext.css ├── leafext.min.css ├── overview.css └── overview.min.css ├── extensions-leaflet-map.php ├── fonts └── fontawesome-free-6.7.2-web │ ├── LICENSE.txt │ ├── css │ ├── all.css │ ├── all.min.css │ ├── brands.css │ ├── brands.min.css │ ├── fontawesome.css │ ├── fontawesome.min.css │ ├── regular.css │ ├── regular.min.css │ ├── solid.css │ ├── solid.min.css │ ├── svg-with-js.css │ ├── svg-with-js.min.css │ ├── v4-font-face.css │ ├── v4-font-face.min.css │ ├── v4-shims.css │ ├── v4-shims.min.css │ ├── v5-font-face.css │ └── v5-font-face.min.css │ └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff2 │ ├── fa-v4compatibility.ttf │ └── fa-v4compatibility.woff2 ├── github-backend-extensions.php ├── github ├── github-check-update.php ├── github-functions.php ├── github-settings.php ├── lang │ ├── leafext-update-github-de_DE.l10n.php │ ├── leafext-update-github-de_DE.mo │ ├── leafext-update-github-de_DE.po │ └── leafext-update-github.pot └── plugin-update-checker │ ├── Puc │ ├── v5 │ │ └── PucFactory.php │ └── v5p5 │ │ ├── Autoloader.php │ │ ├── DebugBar │ │ ├── Extension.php │ │ ├── Panel.php │ │ ├── PluginExtension.php │ │ ├── PluginPanel.php │ │ └── ThemePanel.php │ │ ├── InstalledPackage.php │ │ ├── Metadata.php │ │ ├── OAuthSignature.php │ │ ├── Plugin │ │ ├── Package.php │ │ ├── PluginInfo.php │ │ ├── Ui.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── PucFactory.php │ │ ├── Scheduler.php │ │ ├── StateStore.php │ │ ├── Theme │ │ ├── Package.php │ │ ├── Update.php │ │ └── UpdateChecker.php │ │ ├── Update.php │ │ ├── UpdateChecker.php │ │ ├── UpgraderStatus.php │ │ ├── Utils.php │ │ ├── Vcs │ │ ├── Api.php │ │ ├── BaseChecker.php │ │ ├── BitBucketApi.php │ │ ├── GitHubApi.php │ │ ├── GitLabApi.php │ │ ├── PluginUpdateChecker.php │ │ ├── Reference.php │ │ ├── ReleaseAssetSupport.php │ │ ├── ReleaseFilteringFeature.php │ │ ├── ThemeUpdateChecker.php │ │ └── VcsCheckerMethods.php │ │ └── WpCliCheckTrigger.php │ ├── README.md │ ├── css │ └── puc-debug-bar.css │ ├── js │ └── debug-bar.js │ ├── languages │ ├── plugin-update-checker-ca.mo │ ├── plugin-update-checker-ca.po │ ├── plugin-update-checker-cs_CZ.mo │ ├── plugin-update-checker-cs_CZ.po │ ├── plugin-update-checker-da_DK.mo │ ├── plugin-update-checker-da_DK.po │ ├── plugin-update-checker-de_DE.mo │ ├── plugin-update-checker-de_DE.po │ ├── plugin-update-checker-el.mo │ ├── plugin-update-checker-el.po │ ├── plugin-update-checker-es_AR.mo │ ├── plugin-update-checker-es_AR.po │ ├── plugin-update-checker-es_CL.mo │ ├── plugin-update-checker-es_CL.po │ ├── plugin-update-checker-es_CO.mo │ ├── plugin-update-checker-es_CO.po │ ├── plugin-update-checker-es_CR.mo │ ├── plugin-update-checker-es_CR.po │ ├── plugin-update-checker-es_DO.mo │ ├── plugin-update-checker-es_DO.po │ ├── plugin-update-checker-es_ES.mo │ ├── plugin-update-checker-es_ES.po │ ├── plugin-update-checker-es_GT.mo │ ├── plugin-update-checker-es_GT.po │ ├── plugin-update-checker-es_HN.mo │ ├── plugin-update-checker-es_HN.po │ ├── plugin-update-checker-es_MX.mo │ ├── plugin-update-checker-es_MX.po │ ├── plugin-update-checker-es_PE.mo │ ├── plugin-update-checker-es_PE.po │ ├── plugin-update-checker-es_PR.mo │ ├── plugin-update-checker-es_PR.po │ ├── plugin-update-checker-es_UY.mo │ ├── plugin-update-checker-es_UY.po │ ├── plugin-update-checker-es_VE.mo │ ├── plugin-update-checker-es_VE.po │ ├── plugin-update-checker-fa_IR.mo │ ├── plugin-update-checker-fa_IR.po │ ├── plugin-update-checker-fr_CA.mo │ ├── plugin-update-checker-fr_CA.po │ ├── plugin-update-checker-fr_FR.mo │ ├── plugin-update-checker-fr_FR.po │ ├── plugin-update-checker-hu_HU.mo │ ├── plugin-update-checker-hu_HU.po │ ├── plugin-update-checker-it_IT.mo │ ├── plugin-update-checker-it_IT.po │ ├── plugin-update-checker-ja.mo │ ├── plugin-update-checker-ja.po │ ├── plugin-update-checker-nl_BE.mo │ ├── plugin-update-checker-nl_BE.po │ ├── plugin-update-checker-nl_NL.mo │ ├── plugin-update-checker-nl_NL.po │ ├── plugin-update-checker-pt_BR.mo │ ├── plugin-update-checker-pt_BR.po │ ├── plugin-update-checker-ru_RU.mo │ ├── plugin-update-checker-ru_RU.po │ ├── plugin-update-checker-sl_SI.mo │ ├── plugin-update-checker-sl_SI.po │ ├── plugin-update-checker-sr_RS.mo │ ├── plugin-update-checker-sr_RS.po │ ├── plugin-update-checker-sv_SE.mo │ ├── plugin-update-checker-sv_SE.po │ ├── plugin-update-checker-tr_TR.mo │ ├── plugin-update-checker-tr_TR.po │ ├── plugin-update-checker-uk_UA.mo │ ├── plugin-update-checker-uk_UA.po │ ├── plugin-update-checker-zh_CN.mo │ ├── plugin-update-checker-zh_CN.po │ └── plugin-update-checker.pot │ ├── license.txt │ ├── load-v5p5.php │ ├── plugin-update-checker.php │ └── vendor │ ├── Parsedown.php │ ├── ParsedownModern.php │ └── PucReadmeParser.php ├── js ├── choropleth.js ├── choropleth.min.js ├── colorpicker.js ├── colorpicker.min.js ├── elevation.js ├── elevation.min.js ├── featuregroup.js ├── featuregroup.min.js ├── geojsonmarker.js ├── geojsonmarker.min.js ├── hover.js ├── hover.min.js ├── hoverlap.js ├── hoverlap.min.js ├── leafext.js ├── leafext.min.js ├── listmarker.js ├── listmarker.min.js ├── markercluster.js ├── markercluster.min.js ├── parentgroup.js ├── parentgroup.min.js ├── placementstrategies.js ├── placementstrategies.min.js ├── targetmarker-fkt.js ├── targetmarker-fkt.min.js ├── targetmarker.js ├── targetmarker.min.js ├── zoomhome.js └── zoomhome.min.js ├── lang ├── extensions-leaflet-map-ca-elevation_js.json ├── extensions-leaflet-map-ca.l10n.php ├── extensions-leaflet-map-ca.mo ├── extensions-leaflet-map-de_DE-elevation_js.json ├── extensions-leaflet-map-de_DE.l10n.php ├── extensions-leaflet-map-de_DE.mo ├── extensions-leaflet-map-de_DE.po ├── extensions-leaflet-map-de_DE_formal-elevation_js.json ├── extensions-leaflet-map-de_DE_formal.l10n.php ├── extensions-leaflet-map-de_DE_formal.mo ├── extensions-leaflet-map-es_ES-elevation_js.json ├── extensions-leaflet-map-es_ES.l10n.php ├── extensions-leaflet-map-es_ES.mo ├── extensions-leaflet-map-it_IT-elevation_js.json ├── extensions-leaflet-map-it_IT.l10n.php ├── extensions-leaflet-map-it_IT.mo ├── extensions-leaflet-map-nl_NL-elevation_js.json ├── extensions-leaflet-map-nl_NL.l10n.php ├── extensions-leaflet-map-nl_NL.mo ├── extensions-leaflet-map-pl_PL-elevation_js.json ├── extensions-leaflet-map-pl_PL.l10n.php ├── extensions-leaflet-map-pl_PL.mo ├── extensions-leaflet-map-pt_PT-elevation_js.json ├── extensions-leaflet-map-pt_PT.l10n.php ├── extensions-leaflet-map-pt_PT.mo ├── extensions-leaflet-map-sv_SE-elevation_js.json ├── extensions-leaflet-map-sv_SE.l10n.php ├── extensions-leaflet-map-sv_SE.mo ├── extensions-leaflet-map.pot └── get-translations.php ├── leaflet-plugins ├── Control.Layers.Tree │ ├── L.Control.Layers.Tree.css │ └── L.Control.Layers.Tree.js ├── Leaflet.AlmostOver │ └── leaflet.almostover.js ├── Leaflet.Control.Opacity │ ├── L.Control.Opacity.css │ ├── L.Control.Opacity.js │ ├── LICENSE │ └── README.md ├── Leaflet.ExtraMarkers │ ├── LICENSE │ ├── README.md │ └── dist │ │ ├── css │ │ └── leaflet.extra-markers.min.css │ │ ├── img │ │ ├── markers_default.png │ │ ├── markers_default@2x.png │ │ ├── markers_shadow.png │ │ └── markers_shadow@2x.png │ │ └── js │ │ └── leaflet.extra-markers.min.js ├── Leaflet.FeatureGroup.SubGroup-1.0.2 │ ├── LICENSE │ ├── README.md │ └── leaflet.featuregroup.subgroup.js ├── Leaflet.GeometryUtil │ ├── LICENSE │ ├── README.md │ └── leaflet.geometryutil.js ├── Leaflet.MarkerCluster.PlacementStrategies │ ├── LICENSE │ ├── README.md │ └── leaflet-markercluster.placementstrategies.js ├── Leaflet.i18n │ ├── LICENCE │ ├── Leaflet.i18n.js │ └── README.md ├── d3 │ └── d3.min.js ├── leaflet-choropleth │ ├── LICENSE.md │ ├── README.md │ └── choropleth.js ├── leaflet-elevation-2.5.1 │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── leaflet-elevation.css │ │ ├── leaflet-elevation.js │ │ ├── leaflet-elevation.min.css │ │ └── leaflet-elevation.min.js │ ├── images │ │ ├── checkered.png │ │ ├── elevation-locate.png │ │ ├── elevation-poi.png │ │ ├── elevation-position.png │ │ ├── elevation-position.svg │ │ ├── elevation-pushpin.png │ │ ├── elevation-pushpin.svg │ │ └── elevation.svg │ ├── libs │ │ ├── fullpage.css │ │ ├── leaflet-distance-marker.css │ │ ├── leaflet-distance-marker.js │ │ ├── leaflet-distance-marker.min.css │ │ ├── leaflet-distance-marker.min.js │ │ ├── leaflet-edgescale.js │ │ ├── leaflet-edgescale.min.js │ │ ├── leaflet-gpxgroup.js │ │ ├── leaflet-gpxgroup.min.js │ │ ├── leaflet-hotline.js │ │ ├── leaflet-hotline.min.js │ │ ├── leaflet-ruler.css │ │ ├── leaflet-ruler.js │ │ ├── leaflet-ruler.min.css │ │ └── leaflet-ruler.min.js │ └── src │ │ ├── components │ │ ├── chart.js │ │ ├── d3.js │ │ ├── marker.js │ │ └── summary.js │ │ ├── control.js │ │ ├── handlers │ │ ├── acceleration.js │ │ ├── altitude.js │ │ ├── cadence.js │ │ ├── distance.js │ │ ├── heart.js │ │ ├── labels.js │ │ ├── lineargradient.js │ │ ├── pace.js │ │ ├── runner.js │ │ ├── slope.js │ │ ├── speed.js │ │ ├── temperature.js │ │ └── time.js │ │ ├── index.css │ │ ├── index.js │ │ ├── options.js │ │ ├── utils.js │ │ └── utils.spec.js ├── leaflet-gesture-handling-1.4.4 │ ├── LICENSE │ ├── README.md │ └── dist │ │ ├── leaflet-gesture-handling.css │ │ ├── leaflet-gesture-handling.js │ │ ├── leaflet-gesture-handling.min.css │ │ ├── leaflet-gesture-handling.min.js │ │ └── locales │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-AU.js │ │ ├── en-GB.js │ │ ├── en.js │ │ ├── es.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fil.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── it-IT.js │ │ ├── it.js │ │ ├── iw.js │ │ ├── ja.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── ml.js │ │ ├── mr.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt-PT.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── th.js │ │ ├── tl.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js ├── leaflet-list-markers │ ├── leaflet-list-markers.css │ ├── leaflet-list-markers.js │ ├── leaflet-list-markers.min.css │ └── leaflet-list-markers.min.js ├── leaflet-providers │ ├── README.md │ ├── leaflet-providers.js │ └── license.md ├── leaflet-rotate │ └── leaflet-rotate.js ├── leaflet-search │ ├── README.md │ ├── dist │ │ ├── leaflet-search.min.css │ │ └── leaflet-search.min.js │ ├── images │ │ ├── back.png │ │ ├── favicon.png │ │ ├── leaflet-search.jpg │ │ ├── loader.gif │ │ ├── search-icon-mobile.png │ │ └── search-icon.png │ └── license.txt ├── leaflet.fullscreen │ ├── Control.FullScreen.css │ ├── Control.FullScreen.js │ ├── LICENSE │ ├── README.md │ └── icon-fullscreen.svg ├── leaflet.markercluster-1.5.3 │ ├── MIT-LICENCE.txt │ ├── README.md │ ├── css │ │ ├── MarkerCluster.Default.css │ │ └── MarkerCluster.css │ └── js │ │ └── leaflet.markercluster.js ├── leaflet.zoomhome │ ├── LICENSE │ ├── README.md │ ├── leaflet.zoomhome.css │ └── leaflet.zoomhome.min.js ├── tmcw │ └── togeojson.umd.js └── turf │ ├── leafext-turf.js │ ├── leafext-turf.min.js │ ├── main.js │ └── readme.txt ├── php ├── choropleth.php ├── clustergroup.php ├── elevation.php ├── enqueue-leafletplugins.php ├── extramarker.php ├── featuregroup.php ├── fullscreen.php ├── functions.php ├── geojsonmarker.php ├── gesture.php ├── hidemarkers.php ├── hover.php ├── hoverlap.php ├── leaflet-directory.php ├── leaflet-search.php ├── listmarker.php ├── managefiles.php ├── markercluster.php ├── multielevation.php ├── overview-map.php ├── parentgroup.php ├── placementstrategies.php ├── sgpx.php ├── targetmarker.php ├── tileserver.php └── zoomhome.php ├── pict ├── cluster.png ├── clustergroup.png ├── colors.svg ├── elevation-lightblue.svg ├── elevation-lime.svg ├── elevation-magenta.svg ├── elevation-purple.svg ├── elevation-red.svg ├── elevation-steelblue.svg ├── elevation-yellow.svg ├── elevation.png ├── filled.svg ├── fullscreenoff.png ├── fullscreenon.png ├── gesture.png ├── grouping.png ├── home.png ├── hover.png ├── layerswitch.png ├── marker-icon-red.png ├── marker_0.png ├── marker_1.png ├── marker_values.png ├── multielevation.png ├── off.png ├── off_speed.png ├── on.png ├── on_speed.png ├── parent.png ├── parentall.png ├── ruler.png ├── switcher.png ├── tooltip_0.png ├── tooltip_1.png ├── tooltip_values.png ├── unfilled.svg ├── vert-line.svg └── yachse.png ├── pkg ├── JShrink │ └── Minifier.php ├── prism │ ├── prism.css │ └── prism.js └── readme.txt ├── readme.md ├── readme.txt └── uninstall.php /.wordpress-org/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-1.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-2.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-3.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-4.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-5.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-6-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-6-de.png -------------------------------------------------------------------------------- /.wordpress-org/screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/.wordpress-org/screenshot-6.png -------------------------------------------------------------------------------- /admin/deleting.php: -------------------------------------------------------------------------------- 1 | ' . esc_html__( 'yes', 'extensions-leaflet-map' ) . '    '; 32 | echo ' ' . esc_html__( 'no', 'extensions-leaflet-map' ); 35 | } 36 | 37 | // Sanitize and validate input. Accepts an array, return a sanitized array. 38 | function leafext_validate_deleting( $input ) { 39 | if ( ! empty( $_POST ) && check_admin_referer( 'leafext_deleting', 'leafext_deleting_nonce' ) ) { 40 | if ( isset( $_POST['submit'] ) ) { 41 | return $input; 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /admin/filemgr/create_copy/createShortcode.css: -------------------------------------------------------------------------------- 1 | /* alles nur geklaut: https://www.w3schools.com/howto/howto_js_copy_clipboard.asp */ 2 | .leafexttooltip { 3 | position: relative; 4 | display: inline-block; 5 | } 6 | .leafexttooltip .leafextcopy { 7 | visibility: hidden; 8 | width: 140px; 9 | background-color: #555; 10 | color: #fff; 11 | text-align: center; 12 | border-radius: 6px; 13 | padding: 5px; 14 | position: absolute; 15 | z-index: 1; 16 | bottom: 150%; 17 | left: 50%; 18 | margin-left: -75px; 19 | opacity: 0; 20 | transition: opacity 0.3s; 21 | } 22 | .leafexttooltip .leafextcopy::after { 23 | content: ""; 24 | position: absolute; 25 | top: 100%; 26 | left: 50%; 27 | margin-left: -5px; 28 | border-width: 5px; 29 | border-style: solid; 30 | border-color: #555 transparent transparent transparent; 31 | } 32 | .leafexttooltip:hover .leafextcopy { 33 | visibility: visible; 34 | opacity: 1; 35 | } 36 | -------------------------------------------------------------------------------- /admin/filemgr/create_copy/createShortcode.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copy Shortcode to clipboard 3 | * 4 | * @package Extensions for Leaflet Map 5 | */ 6 | 7 | // . 8 | 9 | function leafext_create_shortcode(shortcode,uploadurl,file,end) { 10 | // console.log(shortcode,uploadurl,file,end); 11 | evt = window.event; 12 | var target = evt.currentTarget.querySelector( ".leafextcopy" ); 13 | var leafext_short = document.createElement( "input" ); 14 | document.body.appendChild( leafext_short ); 15 | leafext_short.value = shortcode + "\"" + uploadurl + "" + file + "\"" + end; 16 | if (navigator.clipboard) { 17 | navigator.clipboard.writeText( leafext_short.value ) 18 | .then( 19 | () => 20 | { 21 | zwsp = target.textContent; 22 | target.textContent = "Copied: " + leafext_short.value; 23 | console.log( leafext_short.value ); 24 | setTimeout( 25 | () => 26 | { 27 | target.textContent = zwsp; 28 | }, 29 | 5000 30 | ); 31 | } 32 | ) 33 | } else { 34 | console.log( "No Clipboard" ); 35 | } 36 | leafext_short.remove(); 37 | } 38 | 39 | function leafext_outFunc() { 40 | leafextTooltip.innerHTML = "Copy to clipboard"; 41 | } 42 | -------------------------------------------------------------------------------- /admin/fullscreen.php: -------------------------------------------------------------------------------- 1 | ' . __( 'Fullscreen', 'extensions-leaflet-map' ) . ' 19 | fullscreen-on 20 | fullscreen-off 21 | [fullscreen] 22 | [fullscreen position=topleft|topright|bottomleft|bottomright]'; 23 | $text .= __( 'default position:', 'extensions-leaflet-map' ) . ' topleft'; 24 | 25 | return $text; 26 | } 27 | -------------------------------------------------------------------------------- /admin/grouping/main.php: -------------------------------------------------------------------------------- 1 | 'featuregroup', 19 | 'title' => 'featuregroup', 20 | ), 21 | array( 22 | 'tab' => 'parentgroup', 23 | 'title' => 'parentgroup', 24 | ), 25 | ); 26 | 27 | //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- no form 28 | $get = map_deep( wp_unslash( $_GET ), 'sanitize_text_field' ); 29 | $active_tab = isset( $get['tab'] ) ? $get['tab'] : ''; 30 | $textheader = ''; 40 | return $textheader; 41 | } 42 | 43 | function leafext_admin_grouping( $active_tab ) { 44 | if ( $active_tab === 'featuregroup' ) { 45 | echo '

' . wp_kses_post( leafext_grouping_tab() ) . '

'; 46 | leafext_help_featuregroup(); 47 | } elseif ( $active_tab === 'parentgroup' ) { 48 | echo '

' . wp_kses_post( leafext_grouping_tab() ) . '

'; 49 | leafext_help_parentgroup(); 50 | leafext_parentgroup_admin_page(); 51 | } else { 52 | echo 'Error'; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /admin/grouping/parentgroup.php: -------------------------------------------------------------------------------- 1 | Leaflet.Control.Layers.Tree'; 20 | $text = $text . ' 21 | 22 | '; 23 | } 24 | 25 | $text = $text . '

leaflet-parentgroup

' . __( 26 | 'Display groups in a tree view.', 27 | 'extensions-leaflet-map' 28 | ); 29 | $text = $text . '

'; 30 | $text = $text . '

Shortcode

31 | [leaflet-parentgroup parent=... childs=... expandall=... collapseall=...]'; 32 | 33 | $text = $text . '

'; 34 | $text = $text . '

' . __( 'Options', 'extensions-leaflet-map' ) . '

'; 35 | 36 | if ( is_singular() || is_archive() ) { 37 | return $text; 38 | } else { 39 | echo wp_kses_post( $text ); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /admin/hover/main.php: -------------------------------------------------------------------------------- 1 | 'hover', 19 | 'title' => __( 'hover', 'extensions-leaflet-map' ), 20 | ), 21 | array( 22 | 'tab' => 'hoverlap', 23 | 'title' => __( 'hoverlap', 'extensions-leaflet-map' ), 24 | ), 25 | ); 26 | 27 | //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- no form 28 | $get = map_deep( wp_unslash( $_GET ), 'sanitize_text_field' ); 29 | $active_tab = isset( $get['tab'] ) ? $get['tab'] : ''; 30 | $textheader = ''; 40 | return $textheader; 41 | } 42 | 43 | function leafext_admin_hover( $active_tab ) { 44 | if ( $active_tab === 'hover' ) { 45 | echo '

' . wp_kses_post( leafext_hover_tab() ) . '

'; 46 | leafext_help_hover(); 47 | leafext_hover_admin_page(); 48 | } elseif ( $active_tab === 'hoverlap' ) { 49 | echo '

' . wp_kses_post( leafext_hover_tab() ) . '

'; 50 | leafext_help_hoverlap(); 51 | } else { 52 | echo 'Error'; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /admin/marker/hidemarkers.php: -------------------------------------------------------------------------------- 1 | ' . __( 'Hide Markers', 'extensions-leaflet-map' ) . ' 19 |

' . __( 'If a GPX track loaded with leaflet-gpx contains waypoints that you do not want to display', 'extensions-leaflet-map' ) . '.

20 | [leaflet-map ...] 21 | [leaflet-gpx src="//url/to/file.gpx" ... ] 22 | [hidemarkers]'; 23 | 24 | if ( is_singular() || is_archive() ) { 25 | return $text; 26 | } else { 27 | echo wp_kses_post( $text ); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- 1 | # Differences to the Plugins WordPress version 2 | 3 | * none 4 | 5 | Please note the [install instructions](https://leafext.de/en/doku/about/versions/). 6 | 7 | Releases are the same as the WordPress versions. If you want test the Github version, download the [main tree](https://github.com/hupe13/extensions-leaflet-map-github/archive/refs/heads/main.zip) or from the [tags](https://github.com/hupe13/extensions-leaflet-map-github/tags) or clone it. 8 | -------------------------------------------------------------------------------- /css/choropleth.css: -------------------------------------------------------------------------------- 1 | .legend { 2 | color: #555; 3 | padding: 6px 8px; 4 | font: 12px Arial, Helvetica, sans-serif; 5 | font-weight: bold; 6 | background: white; 7 | background: rgba(255,255,255,0.8); 8 | box-shadow: 0 0 15px rgba(0,0,0,0.2); 9 | border-radius: 5px; 10 | } 11 | .legend ul { 12 | list-style-type: none; 13 | padding: 0; 14 | margin: 0; 15 | clear: both; 16 | } 17 | .legend li { 18 | display: inline-block; 19 | width: 30px; 20 | height: 22px; 21 | } 22 | .legend .min { 23 | float: left; 24 | padding-bottom: 5px; 25 | } 26 | .legend .max { 27 | float: right; 28 | } 29 | -------------------------------------------------------------------------------- /css/choropleth.min.css: -------------------------------------------------------------------------------- 1 | .legend{background:#fff;background:hsla(0,0%,100%,.8);border-radius:5px;box-shadow:0 0 15px rgba(0,0,0,.2);color:#555;font:12px Arial,Helvetica,sans-serif;font-weight:700;padding:6px 8px}.legend ul{clear:both;list-style-type:none;margin:0;padding:0}.legend li{display:inline-block;height:22px;width:30px}.legend .min{float:left;padding-bottom:5px}.legend .max{float:right} -------------------------------------------------------------------------------- /css/iphone.css: -------------------------------------------------------------------------------- 1 | /* leaflet-search.mobile.css changed 2 | * for iPhone 3 | * hupe13, HR 4 | */ 5 | 6 | /* SEARCH */ 7 | .leaflet-control.leaflet-control-search { 8 | z-index:2000; 9 | } 10 | 11 | .leaflet-control-search .search-input { 12 | height:24px; 13 | /* font-size:1.25em; */ 14 | font-size: 16px !important; 15 | padding:0 .125em; 16 | margin:3px; 17 | padding-right:30px; 18 | max-width: 200px !important; 19 | } 20 | 21 | .leaflet-control-search .search-cancel { 22 | width:26px; 23 | } 24 | .leaflet-control-search .search-tooltip { 25 | max-height:142px;/*(.search-tip height * 5)*/ 26 | } 27 | .leaflet-control-search .search-tip { 28 | font-size:1em; 29 | margin:2px; 30 | padding:2px; 31 | display:block; 32 | color:black; 33 | background: rgba(255,255,255,0.8); 34 | border-radius:.25em; 35 | text-decoration:none; 36 | white-space:nowrap; 37 | vertical-align:center; 38 | } 39 | 40 | .leaflet-control-search .search-button:hover, 41 | .leaflet-control-search .search-tip-select, 42 | .leaflet-control-search .search-tip:hover { 43 | background-color: #fff; 44 | } 45 | .leaflet-control-search .search-alert { 46 | font-size: 1.2em; 47 | max-width: 200px !important; 48 | } 49 | -------------------------------------------------------------------------------- /css/iphone.min.css: -------------------------------------------------------------------------------- 1 | .leaflet-control.leaflet-control-search{z-index:2000}.leaflet-control-search .search-input{font-size:16px!important;height:24px;margin:3px;max-width:200px!important;padding:0 30px 0 .125em}.leaflet-control-search .search-cancel{width:26px}.leaflet-control-search .search-tooltip{max-height:142px}.leaflet-control-search .search-tip{background:hsla(0,0%,100%,.8);border-radius:.25em;color:#000;display:block;font-size:1em;margin:2px;padding:2px;text-decoration:none;vertical-align:center;white-space:nowrap}.leaflet-control-search .search-button:hover,.leaflet-control-search .search-tip-select,.leaflet-control-search .search-tip:hover{background-color:#fff}.leaflet-control-search .search-alert{font-size:1.2em;max-width:200px!important} -------------------------------------------------------------------------------- /css/leafext-admin.min.css: -------------------------------------------------------------------------------- 1 | .wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}li{list-style-type:disc;margin-left:1.5em}pre[class=leafext-prismatic]>code{box-shadow:-1px 0 0 0 #358ccb !important,0 0 0 1px #dfdfdf}.leafext-prismatic{background-attachment:local;background-color:#fdfdfd;background-image:linear-gradient(transparent 50%,rgba(69,142,209,.04) 0);background-origin:content-box;background-size:3em 3em;border-left:10px solid #358ccb;box-shadow:-1px 0 0 0 #358ccb,0 0 0 1px #dfdfdf;box-sizing:border-box;margin:.5em 0;overflow:auto;padding:1px;position:relative;z-index:1}.leafext-prismatic-bg{word-wrap:normal;color:#000;font-family:Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace;font-size:1em;line-height:1.5;text-align:left;word-break:normal;word-spacing:normal}pre[class=leafext-prismatic-bg]>code{background-attachment:local;background-color:#fdfdfd;background-image:linear-gradient(transparent 50%,rgba(69,142,209,.04) 0);background-origin:content-box;background-size:3em 3em;box-shadow:-1px 0 0 0 #358ccb,0 0 0 1px #dfdfdf;position:relative;z-index:1}code[class=leafext-prismatic-bg]{background:0 0;background-attachment:scroll;background-color:transparent;background-image:none;background-origin:padding-box;background-size:auto;display:block;height:inherit;margin:0 1px;max-height:inherit;overflow:auto;padding:0 1em} -------------------------------------------------------------------------------- /css/leafext.css: -------------------------------------------------------------------------------- 1 | /* No tooltip on mobiles */ 2 | @media (hover: none) { 3 | .leaflet-tooltip-pane { display: none; } 4 | } 5 | 6 | /* obiges klappt bei elevation (und Samsung Smartphone) nicht, deshalb 7 | https://github.com/Artuar/css-test-device-or-desktop */ 8 | @media not all and (pointer: fine) { 9 | .leaflet-tooltip-pane { display: none; } 10 | } 11 | 12 | /* multielevation tracks list top right */ 13 | /*.leaflet-right .leaflet-control-layers-list { 14 | max-width: 250px; 15 | max-height: 25vh; 16 | overflow: auto; 17 | } */ 18 | 19 | /*multielevation chart */ 20 | #elevation-div { 21 | height: auto; 22 | width: 100%; 23 | font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; 24 | } 25 | 26 | .chart-placeholder { 27 | height: auto; 28 | width: 100%; 29 | padding: 60px 0px 60px 0; 30 | margin: 0 0px; 31 | font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif; 32 | font-style: italic; 33 | opacity: 0.5; 34 | font-size: 0.9rem; 35 | text-align: center; 36 | } 37 | 38 | /* .elevation-control .background { 39 | height: min-content; 40 | } */ 41 | /* .elevation-expanded { 42 | width: 70%; 43 | } */ 44 | 45 | /* + and - should have not underline */ 46 | .leaflet-control-zoomhome-out { 47 | text-decoration: none !important; 48 | } 49 | .leaflet-control-zoomhome-in { 50 | text-decoration: none !important; 51 | } 52 | .leaflet-control-zoom-out { 53 | text-decoration: none !important; 54 | } 55 | .leaflet-control-zoom-in { 56 | text-decoration: none !important; 57 | } 58 | 59 | .targetlink { 60 | display:inline; 61 | } 62 | 63 | .legend-heart rect { 64 | fill: #ff0000; 65 | fill-opacity: 0.7; 66 | } 67 | 68 | .elevation-control .background { 69 | touch-action: pan-y !important; 70 | } 71 | -------------------------------------------------------------------------------- /css/leafext.min.css: -------------------------------------------------------------------------------- 1 | @media (hover:none){.leaflet-tooltip-pane{display:none}}@media not all and (pointer:fine){.leaflet-tooltip-pane{display:none}}#elevation-div{font:12px/1.5 Helvetica Neue,Arial,Helvetica,sans-serif;height:auto;width:100%}.chart-placeholder{font-family:Lucida Grande,Lucida Sans Unicode,Verdana,Arial,Helvetica,sans-serif;font-size:.9rem;font-style:italic;height:auto;margin:0;opacity:.5;padding:60px 0;text-align:center;width:100%}.leaflet-control-zoom-in,.leaflet-control-zoom-out,.leaflet-control-zoomhome-in,.leaflet-control-zoomhome-out{text-decoration:none!important}.targetlink{display:inline}.legend-heart rect{fill:red;fill-opacity:.7}.elevation-control .background{touch-action:pan-y!important} -------------------------------------------------------------------------------- /css/overview.min.css: -------------------------------------------------------------------------------- 1 | .leafext-overview-tooltip{background-color:#eee!important;min-width:120px;white-space:normal!important}.leafext-overview-popup{align-items:center;display:grid;gap:.5em;grid-template-columns:1fr 1fr;grid-template-rows:auto 1fr;justify-items:center;max-width:200px;text-align:center}.leafext-overview-popup .leafext-overview-popup-header{grid-column:1/3;grid-row:1/2;overflow-wrap:break-word;padding-bottom:10px}.leafext-overview-popup .leafext-overview-popup-img{grid-column:1/2;grid-row:2/3;height:75px;padding:1px;width:75px}.leafext-overview-popup .leafext-overview-popup-cat{grid-column:2/3;grid-row:2/3;overflow-wrap:break-word}.leafext-overview-popup-one{align-items:center;display:grid;gap:.5em;grid-template-columns:1fr;grid-template-rows:auto;justify-items:center;max-width:200px;text-align:center}.leafext-overview-popup-one .leafext-overview-popup-header{grid-column:1/2;grid-row:1/2;overflow-wrap:break-word;padding-bottom:10px}.leafext-overview-popup-one .leafext-overview-popup-img{grid-column:1/2;grid-row:2/3;height:75px;padding:1px;width:75px}.leafext-overview-popup-one .leafext-overview-popup-cat{grid-column:1/2;grid-row:2/3;overflow-wrap:break-word} -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 400; 14 | font-display: block; 15 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 16 | 17 | .far, 18 | .fa-regular { 19 | font-weight: 400; } 20 | -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400} -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :root, :host { 7 | --fa-style-family-classic: 'Font Awesome 6 Free'; 8 | --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; } 9 | 10 | @font-face { 11 | font-family: 'Font Awesome 6 Free'; 12 | font-style: normal; 13 | font-weight: 900; 14 | font-display: block; 15 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 16 | 17 | .fas, 18 | .fa-solid { 19 | font-weight: 900; } 20 | -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | :host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900} -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/v4-font-face.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | @font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(../webfonts/fa-v4compatibility.woff2) format("woff2"),url(../webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a} -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/v5-font-face.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | @font-face { 7 | font-family: 'Font Awesome 5 Brands'; 8 | font-display: block; 9 | font-weight: 400; 10 | src: url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.ttf") format("truetype"); } 11 | 12 | @font-face { 13 | font-family: 'Font Awesome 5 Free'; 14 | font-display: block; 15 | font-weight: 900; 16 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 17 | 18 | @font-face { 19 | font-family: 'Font Awesome 5 Free'; 20 | font-display: block; 21 | font-weight: 400; 22 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 23 | -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/css/v5-font-face.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | * Copyright 2024 Fonticons, Inc. 5 | */ 6 | @font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(../webfonts/fa-brands-400.woff2) format("woff2"),url(../webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")} -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-v4compatibility.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-v4compatibility.ttf -------------------------------------------------------------------------------- /fonts/fontawesome-free-6.7.2-web/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/fonts/fontawesome-free-6.7.2-web/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /github/lang/leafext-update-github-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/lang/leafext-update-github-de_DE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5/PucFactory.php: -------------------------------------------------------------------------------- 1 | updateChecker->getUniqueName('uid')) ) { 25 | return; 26 | } 27 | $this->preAjaxRequest(); 28 | $info = $this->updateChecker->requestInfo(); 29 | if ( $info !== null ) { 30 | echo 'Successfully retrieved plugin info from the metadata URL:'; 31 | //phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r -- For debugging output. 32 | echo '
', esc_html(print_r($info, true)), '
'; 33 | } else { 34 | echo 'Failed to retrieve plugin info from the metadata URL.'; 35 | } 36 | exit; 37 | } 38 | } 39 | 40 | endif; 41 | -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5p5/DebugBar/PluginPanel.php: -------------------------------------------------------------------------------- 1 | row('Plugin file', htmlentities($this->updateChecker->pluginFile)); 16 | parent::displayConfigHeader(); 17 | } 18 | 19 | protected function getMetadataButton() { 20 | $buttonId = $this->updateChecker->getUniqueName('request-info-button'); 21 | if ( function_exists('get_submit_button') ) { 22 | $requestInfoButton = get_submit_button( 23 | 'Request Info', 24 | 'secondary', 25 | 'puc-request-info-button', 26 | false, 27 | array('id' => $buttonId) 28 | ); 29 | } else { 30 | $requestInfoButton = sprintf( 31 | '', 32 | esc_attr($buttonId), 33 | esc_attr('Request Info') 34 | ); 35 | } 36 | return $requestInfoButton; 37 | } 38 | 39 | protected function getUpdateFields() { 40 | return array_merge( 41 | parent::getUpdateFields(), 42 | array('homepage', 'upgrade_notice', 'tested',) 43 | ); 44 | } 45 | } 46 | 47 | endif; 48 | -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5p5/DebugBar/ThemePanel.php: -------------------------------------------------------------------------------- 1 | row('Theme directory', htmlentities($this->updateChecker->directoryName)); 17 | parent::displayConfigHeader(); 18 | } 19 | 20 | protected function getUpdateFields() { 21 | return array_merge(parent::getUpdateFields(), array('details_url')); 22 | } 23 | } 24 | 25 | endif; 26 | -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5p5/Update.php: -------------------------------------------------------------------------------- 1 | slug = $this->slug; 31 | $update->new_version = $this->version; 32 | $update->package = $this->download_url; 33 | 34 | return $update; 35 | } 36 | } 37 | 38 | endif; 39 | -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5p5/Vcs/BaseChecker.php: -------------------------------------------------------------------------------- 1 | properties = $properties; 23 | } 24 | 25 | /** 26 | * @param string $name 27 | * @return mixed|null 28 | */ 29 | public function __get($name) { 30 | return array_key_exists($name, $this->properties) ? $this->properties[$name] : null; 31 | } 32 | 33 | /** 34 | * @param string $name 35 | * @param mixed $value 36 | */ 37 | public function __set($name, $value) { 38 | $this->properties[$name] = $value; 39 | } 40 | 41 | /** 42 | * @param string $name 43 | * @return bool 44 | */ 45 | public function __isset($name) { 46 | return isset($this->properties[$name]); 47 | } 48 | 49 | } 50 | 51 | endif; 52 | -------------------------------------------------------------------------------- /github/plugin-update-checker/Puc/v5p5/Vcs/VcsCheckerMethods.php: -------------------------------------------------------------------------------- 1 | branch = $branch; 20 | return $this; 21 | } 22 | 23 | /** 24 | * Set authentication credentials. 25 | * 26 | * @param array|string $credentials 27 | * @return $this 28 | */ 29 | public function setAuthentication($credentials) { 30 | $this->api->setAuthentication($credentials); 31 | return $this; 32 | } 33 | 34 | /** 35 | * @return Api 36 | */ 37 | public function getVcsApi() { 38 | return $this->api; 39 | } 40 | 41 | public function getUpdate() { 42 | $update = parent::getUpdate(); 43 | 44 | if ( isset($update) && !empty($update->download_url) ) { 45 | $update->download_url = $this->api->signDownloadUrl($update->download_url); 46 | } 47 | 48 | return $update; 49 | } 50 | 51 | public function onDisplayConfiguration($panel) { 52 | parent::onDisplayConfiguration($panel); 53 | $panel->row('Branch', $this->branch); 54 | $panel->row('Authentication enabled', $this->api->isAuthenticationEnabled() ? 'Yes' : 'No'); 55 | $panel->row('API client', get_class($this->api)); 56 | } 57 | } 58 | 59 | endif; -------------------------------------------------------------------------------- /github/plugin-update-checker/css/puc-debug-bar.css: -------------------------------------------------------------------------------- 1 | .puc-debug-bar-panel-v5 pre { 2 | margin-top: 0; 3 | } 4 | 5 | /* Style the debug data table to match "widefat" table style used by WordPress. */ 6 | table.puc-debug-data { 7 | width: 100%; 8 | clear: both; 9 | margin: 0; 10 | 11 | border-spacing: 0; 12 | background-color: #f9f9f9; 13 | 14 | border-radius: 3px; 15 | border: 1px solid #dfdfdf; 16 | border-collapse: separate; 17 | } 18 | 19 | table.puc-debug-data * { 20 | word-wrap: break-word; 21 | } 22 | 23 | table.puc-debug-data th { 24 | width: 11em; 25 | padding: 7px 7px 8px; 26 | text-align: left; 27 | 28 | font-family: "Georgia", "Times New Roman", "Bitstream Charter", "Times", serif; 29 | font-weight: 400; 30 | font-size: 14px; 31 | line-height: 1.3em; 32 | text-shadow: rgba(255, 255, 255, 0.804) 0 1px 0; 33 | } 34 | 35 | table.puc-debug-data td, table.puc-debug-data th { 36 | border-width: 1px 0; 37 | border-style: solid; 38 | 39 | border-top-color: #fff; 40 | border-bottom-color: #dfdfdf; 41 | 42 | text-transform: none; 43 | } 44 | 45 | table.puc-debug-data td { 46 | color: #555; 47 | font-size: 12px; 48 | padding: 4px 7px 2px; 49 | vertical-align: top; 50 | } 51 | 52 | .puc-ajax-response { 53 | border: 1px solid #dfdfdf; 54 | border-radius: 3px; 55 | padding: 0.5em; 56 | margin: 5px 0; 57 | background-color: white; 58 | } 59 | 60 | .puc-ajax-nonce { 61 | display: none; 62 | } 63 | 64 | .puc-ajax-response dt { 65 | margin: 0; 66 | } 67 | 68 | .puc-ajax-response dd { 69 | margin: 0 0 1em; 70 | } 71 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ca.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-ca.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ca.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2019-09-25 18:15+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: ca\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprova si hi ha actualitzacions" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "L’extensió %s està actualitzada." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nova versió de l’extensió %s està disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No s’ha pogut determinar si hi ha actualitzacions per a %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estat del comprovador d’actualitzacions desconegut \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hi ha cap registre de canvis disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-cs_CZ.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-cs_CZ.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2017-05-20 10:53+0300\n" 6 | "PO-Revision-Date: 2017-07-05 15:39+0000\n" 7 | "Last-Translator: Vojtěch Sajdl \n" 8 | "Language-Team: Czech (Czech Republic)\n" 9 | "Language: cs-CZ\n" 10 | "Plural-Forms: nplurals=2; plural=(n != 1)\n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "X-Loco-Source-Locale: cs_CZ\n" 15 | "X-Generator: Loco - https://localise.biz/\n" 16 | "X-Poedit-Basepath: ..\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 19 | "X-Poedit-SearchPath-0: .\n" 20 | "X-Loco-Parser: loco_parse_po" 21 | 22 | #: Puc/v4p1/Plugin/UpdateChecker.php:358 23 | msgid "Check for updates" 24 | msgstr "Zkontrolovat aktualizace" 25 | 26 | #: Puc/v4p1/Plugin/UpdateChecker.php:405 27 | #, php-format 28 | msgctxt "the plugin title" 29 | msgid "The %s plugin is up to date." 30 | msgstr "Plugin %s je aktuální." 31 | 32 | #: Puc/v4p1/Plugin/UpdateChecker.php:407 33 | #, php-format 34 | msgctxt "the plugin title" 35 | msgid "A new version of the %s plugin is available." 36 | msgstr "Nová verze pluginu %s je dostupná." 37 | 38 | #: Puc/v4p1/Plugin/UpdateChecker.php:409 39 | #, php-format 40 | msgid "Unknown update checker status \"%s\"" 41 | msgstr "Neznámý status kontroly aktualizací \"%s\"" 42 | 43 | #: Puc/v4p1/Vcs/PluginUpdateChecker.php:83 44 | msgid "There is no changelog available." 45 | msgstr "Changelog není dostupný." 46 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-da_DK.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-da_DK.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-05-20 10:53+0300\n" 5 | "PO-Revision-Date: 2017-10-17 11:07+0200\n" 6 | "Last-Translator: Mikk3lRo\n" 7 | "Language-Team: Mikk3lRo\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 2.0.4\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 16 | "Language: da_DK\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p1/Plugin/UpdateChecker.php:358 20 | msgid "Check for updates" 21 | msgstr "Undersøg for opdateringer" 22 | 23 | #: Puc/v4p1/Plugin/UpdateChecker.php:405 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Plugin'et %s er allerede opdateret." 28 | 29 | #: Puc/v4p1/Plugin/UpdateChecker.php:407 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "En ny version af plugin'et %s er tilgængelig." 34 | 35 | #: Puc/v4p1/Plugin/UpdateChecker.php:409 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Ukendt opdateringsstatus: \"%s\"" 39 | 40 | #: Puc/v4p1/Vcs/PluginUpdateChecker.php:83 41 | msgid "There is no changelog available." 42 | msgstr "Der er ingen ændringslog tilgængelig." 43 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-de_DE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-de_DE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2016-06-29 20:21+0100\n" 5 | "PO-Revision-Date: 2016-06-29 20:23+0100\n" 6 | "Last-Translator: Igor Lückel \n" 7 | "Language-Team: \n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 1.8.1\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e\n" 16 | "Language: de_DE\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: github-checker.php:137 20 | msgid "There is no changelog available." 21 | msgstr "Es ist keine Liste von Programmänderungen verfügbar." 22 | 23 | #: plugin-update-checker.php:852 24 | msgid "Check for updates" 25 | msgstr "Nach Update suchen" 26 | 27 | #: plugin-update-checker.php:896 28 | msgid "This plugin is up to date." 29 | msgstr "Das Plugin ist aktuell." 30 | 31 | #: plugin-update-checker.php:898 32 | msgid "A new version of this plugin is available." 33 | msgstr "Es ist eine neue Version für das Plugin verfügbar." 34 | 35 | #: plugin-update-checker.php:900 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Unbekannter Update Status \"%s\"" 39 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-el.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-el.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2022-07-29 15:34+0300\n" 5 | "PO-Revision-Date: 2024-05-09 22:22+0000\n" 6 | "Last-Translator: theogk\n" 7 | "Language-Team: Ελληνικά\n" 8 | "Language: el\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Generator: Loco https://localise.biz/\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | "Report-Msgid-Bugs-To: \n" 19 | "X-Loco-Version: 2.6.9; wp-6.5.3" 20 | 21 | #: Puc/v5p4/Plugin/Ui.php:128 22 | msgid "Check for updates" 23 | msgstr "Έλεγχος για ενημερώσεις" 24 | 25 | #: Puc/v5p4/Plugin/Ui.php:214 26 | #, php-format 27 | msgctxt "the plugin title" 28 | msgid "The %s plugin is up to date." 29 | msgstr "Το πρόσθετο %s είναι ενημερωμένο." 30 | 31 | #: Puc/v5p4/Plugin/Ui.php:216 32 | #, php-format 33 | msgctxt "the plugin title" 34 | msgid "A new version of the %s plugin is available." 35 | msgstr "Μία νέα έκδοση είναι διαθέσιμη για το πρόσθετο %s." 36 | 37 | #: Puc/v5p4/Plugin/Ui.php:218 38 | #, php-format 39 | msgctxt "the plugin title" 40 | msgid "Could not determine if updates are available for %s." 41 | msgstr "" 42 | "Δεν ήταν εφικτό να εκτελεστεί ο έλεγχος για νέες ενημερώσεις για το πρόσθετο " 43 | "%s." 44 | 45 | #: Puc/v5p4/Plugin/Ui.php:224 46 | #, php-format 47 | msgid "Unknown update checker status \"%s\"" 48 | msgstr "Άγνωστο πρόβλημα του ενημερωτή προσθέτων \"%s\"" 49 | 50 | #: Puc/v5p4/Vcs/PluginUpdateChecker.php:100 51 | msgid "There is no changelog available." 52 | msgstr "Δεν υπάρχει διαθέσιμο αρχείο αλλαγών." 53 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_AR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_AR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:13-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_CL.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_CO.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CO.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_CR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_CR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_DO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_DO.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_DO.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_ES.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_ES.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 14:56-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_GT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_GT.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_GT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_HN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_HN.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_HN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:14-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_MX.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_MX.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_MX.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 14:57-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_PE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_PE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_PE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:15-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_PR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_PR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_PR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:15-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_UY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_UY.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_UY.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 15:15-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_VE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-es_VE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-es_VE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2020-03-21 14:57-0400\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.3\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: es_ES\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Comprobar si hay actualizaciones" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "El plugin %s está actualizado." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nueva versión del %s plugin está disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "No se pudo determinar si hay actualizaciones disponibles para %s." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Estado del comprobador de actualización desconocido «%s»" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "No hay un registro de cambios disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-fa_IR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fa_IR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2016-02-17 14:21+0100\n" 5 | "PO-Revision-Date: 2016-10-28 14:30+0330\n" 6 | "Last-Translator: studio RVOLA \n" 7 | "Language-Team: Pro Style \n" 8 | "Language: fa_IR\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.8.8\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: github-checker.php:120 20 | msgid "There is no changelog available." 21 | msgstr "شرحی برای تغییرات یافت نشد" 22 | 23 | #: plugin-update-checker.php:637 24 | msgid "Check for updates" 25 | msgstr "بررسی برای بروزرسانی " 26 | 27 | #: plugin-update-checker.php:681 28 | msgid "This plugin is up to date." 29 | msgstr "شما از آخرین نسخه استفاده میکنید . به‌روز باشید" 30 | 31 | #: plugin-update-checker.php:683 32 | msgid "A new version of this plugin is available." 33 | msgstr "نسخه جدیدی برای افزونه ارائه شده است ." 34 | 35 | #: plugin-update-checker.php:685 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "وضعیت ناشناخته برای بروزرسانی \"%s\"" 39 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fr_CA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-fr_CA.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fr_CA.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2018-02-12 10:32-0500\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.0.4\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: Eric Gagnon \n" 16 | "Language: fr_CA\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Vérifier les mises à jour" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "L’extension %s est à jour." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Une nouvelle version de l’extension %s est disponible." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Impossible de déterminer si une mise à jour est disponible pour \"%s\"" 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Un problème inconnu est survenu \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "Il n’y a aucun journal de mise à jour disponible." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-fr_FR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-fr_FR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-07-07 14:53+0200\n" 5 | "PO-Revision-Date: 2017-07-07 14:54+0200\n" 6 | "Language-Team: studio RVOLA \n" 7 | "Language: fr_FR\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "X-Generator: Poedit 2.0.2\n" 12 | "X-Poedit-Basepath: ..\n" 13 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 14 | "X-Poedit-SourceCharset: UTF-8\n" 15 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 16 | "Last-Translator: Nicolas GEHIN\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p1/Plugin/UpdateChecker.php:358 20 | msgid "Check for updates" 21 | msgstr "Vérifier les mises à jour" 22 | 23 | #: Puc/v4p1/Plugin/UpdateChecker.php:405 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "L’extension %s est à jour." 28 | 29 | #: Puc/v4p1/Plugin/UpdateChecker.php:407 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Une nouvelle version de l’extension %s est disponible." 34 | 35 | #: Puc/v4p1/Plugin/UpdateChecker.php:409 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Un problème inconnu est survenu \"%s\"" 39 | 40 | #: Puc/v4p1/Vcs/PluginUpdateChecker.php:85 41 | msgid "There is no changelog available." 42 | msgstr "Il n’y a aucun journal de mise à jour disponible." 43 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-hu_HU.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-hu_HU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2016-01-11 21:23+0100\n" 5 | "PO-Revision-Date: 2016-01-11 21:25+0100\n" 6 | "Last-Translator: Tamás András Horváth \n" 7 | "Language-Team: \n" 8 | "Language: hu_HU\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.8.6\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: github-checker.php:137 20 | msgid "There is no changelog available." 21 | msgstr "Nem érhető el a changelog." 22 | 23 | #: plugin-update-checker.php:852 24 | msgid "Check for updates" 25 | msgstr "Frissítés ellenőrzése" 26 | 27 | #: plugin-update-checker.php:896 28 | msgid "This plugin is up to date." 29 | msgstr "Ez a plugin naprakész." 30 | 31 | #: plugin-update-checker.php:898 32 | msgid "A new version of this plugin is available." 33 | msgstr "Új verzió érhető el a kiegészítőhöz" 34 | 35 | #: plugin-update-checker.php:900 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Ismeretlen a frissítés ellenőrző státusza \"%s\"" 39 | 40 | #~ msgid "Every %d hours" 41 | #~ msgstr "Minden %d órában" 42 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-it_IT.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-it_IT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2020-08-08 14:36+0300\n" 5 | "PO-Revision-Date: 2022-05-20 00:17+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 3.0\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: d79\n" 16 | "Language: it_IT\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p11/Plugin/Ui.php:128 20 | msgid "Check for updates" 21 | msgstr "Verifica aggiornamenti" 22 | 23 | #: Puc/v4p11/Plugin/Ui.php:213 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Il plugin %s è aggiornato." 28 | 29 | #: Puc/v4p11/Plugin/Ui.php:215 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Una nuova versione del plugin %s è disponibile." 34 | 35 | #: Puc/v4p11/Plugin/Ui.php:217 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Non è possibile verificare se c'è un aggiornamento disponibile per %s." 40 | 41 | #: Puc/v4p11/Plugin/Ui.php:223 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Stato di controllo aggiornamenti sconosciuto \"%s\"" 45 | 46 | #: Puc/v4p11/Vcs/PluginUpdateChecker.php:98 47 | msgid "There is no changelog available." 48 | msgstr "Non c'è alcun registro delle modifiche disponibile." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-ja.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ja.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: \n" 4 | "POT-Creation-Date: 2019-07-15 17:07+0900\n" 5 | "PO-Revision-Date: 2019-07-15 17:12+0900\n" 6 | "Last-Translator: tak \n" 7 | "Language-Team: \n" 8 | "Language: ja_JP\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2.3\n" 13 | "X-Poedit-Basepath: ../../../../../../Applications/XAMPP/xamppfiles/htdocs/" 14 | "kisagai/wordpress/wp-content/plugins/simple-stripe-gateway/Puc\n" 15 | "Plural-Forms: nplurals=1; plural=0;\n" 16 | "X-Poedit-KeywordsList: __;_x:1,2c\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: v4p7/Plugin/Ui.php:54 20 | msgid "View details" 21 | msgstr "詳細を表示" 22 | 23 | #: v4p7/Plugin/Ui.php:77 24 | #, php-format 25 | msgid "More information about %s" 26 | msgstr "%sについての詳細" 27 | 28 | #: v4p7/Plugin/Ui.php:128 29 | msgid "Check for updates" 30 | msgstr "アップデートを確認" 31 | 32 | #: v4p7/Plugin/Ui.php:213 33 | #, php-format 34 | msgctxt "the plugin title" 35 | msgid "The %s plugin is up to date." 36 | msgstr "%s プラグインは、最新バージョンです。" 37 | 38 | #: v4p7/Plugin/Ui.php:215 39 | #, php-format 40 | msgctxt "the plugin title" 41 | msgid "A new version of the %s plugin is available." 42 | msgstr "%s プラグインの最新バージョンがあります。" 43 | 44 | #: v4p7/Plugin/Ui.php:217 45 | #, php-format 46 | msgctxt "the plugin title" 47 | msgid "Could not determine if updates are available for %s." 48 | msgstr "%s のアップデートがあるかどうかを判断できませんでした。" 49 | 50 | #: v4p7/Plugin/Ui.php:223 51 | #, php-format 52 | msgid "Unknown update checker status \"%s\"" 53 | msgstr "バージョンアップの確認で想定外の状態になりました。ステータス:”%s”" 54 | 55 | #: v4p7/Vcs/PluginUpdateChecker.php:98 56 | msgid "There is no changelog available." 57 | msgstr "更新履歴はありません。" 58 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-nl_BE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-nl_BE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-nl_BE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2018-03-25 18:15+0200\n" 5 | "PO-Revision-Date: 2018-03-25 18:32+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 1.8.7.1\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: Frank Goossens \n" 16 | "Language: nl_BE\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Controleer op nieuwe versies" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "De meest recente %s versie is geïnstalleerd." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Er is een nieuwe versie van %s beschikbaar." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Kon niet bepalen of er nieuwe versie van %s beschikbaar is." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Ongekende status bij controle op nieuwe versie: \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "Er is geen changelog beschikbaar." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-nl_NL.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-nl_NL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2018-03-25 18:15+0200\n" 5 | "PO-Revision-Date: 2018-03-25 18:32+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 1.8.7.1\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: Frank Goossens \n" 16 | "Language: nl_NL\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Controleer op nieuwe versies" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "De meest recente %s versie is geïnstalleerd." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Er is een nieuwe versie van %s beschikbaar." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Kon niet bepalen of er nieuwe versie van %s beschikbaar is." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Ongekende status bij controle op nieuwe versie: \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "Er is geen changelog beschikbaar." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-pt_BR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-05-19 15:41-0300\n" 5 | "PO-Revision-Date: 2017-05-19 15:42-0300\n" 6 | "Last-Translator: \n" 7 | "Language-Team: \n" 8 | "Language: pt_BR\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 1.8.8\n" 13 | "X-Poedit-Basepath: ..\n" 14 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e;_x;_x:1,2c\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p1/Plugin/UpdateChecker.php:358 20 | msgid "Check for updates" 21 | msgstr "Verificar Atualizações" 22 | 23 | #: Puc/v4p1/Plugin/UpdateChecker.php:401 Puc/v4p1/Plugin/UpdateChecker.php:406 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "O plugin %s já está na sua versão mais recente." 28 | 29 | #: Puc/v4p1/Plugin/UpdateChecker.php:408 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Há uma nova versão para o plugin %s disponível para download." 34 | 35 | #: Puc/v4p1/Plugin/UpdateChecker.php:410 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Status \"%s\" desconhecido." 39 | 40 | #: Puc/v4p1/Vcs/PluginUpdateChecker.php:83 41 | msgid "There is no changelog available." 42 | msgstr "Não há um changelog disponível." 43 | 44 | #~ msgid "The %s plugin is up to date." 45 | #~ msgstr "O plugin %s já está na sua versão mais recente." 46 | 47 | #~ msgid "A new version of the %s plugin is available." 48 | #~ msgstr "Há uma nova versão para o plugin %s disponível para download." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-ru_RU.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-ru_RU.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2020-08-08 14:36+0300\n" 5 | "PO-Revision-Date: 2021-12-20 17:59+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.2\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: ru_RU\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p11/Plugin/Ui.php:128 20 | msgid "Check for updates" 21 | msgstr "Проверить обновления" 22 | 23 | #: Puc/v4p11/Plugin/Ui.php:213 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Плагин %s обновлён." 28 | 29 | #: Puc/v4p11/Plugin/Ui.php:215 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Новая версия %s доступна." 34 | 35 | #: Puc/v4p11/Plugin/Ui.php:217 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Не удалось определить, доступны ли обновления для %s." 40 | 41 | #: Puc/v4p11/Plugin/Ui.php:223 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Неизвестный статус средства проверки обновлений \"%s\"" 45 | 46 | #: Puc/v4p11/Vcs/PluginUpdateChecker.php:98 47 | msgid "There is no changelog available." 48 | msgstr "Журнал изменений отсутствует." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-sl_SI.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-sl_SI.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2018-10-27 20:36+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.2\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n%100<=4 ? 2 : 3);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: Igor Funa\n" 16 | "Language: sl_SI\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Preveri posodobitve" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Vtičnik %s je že posodobljen." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Nova različica vtičnika %s je na razpolago." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Ne morem ugotoviti če se za vtičnik %s na razpolago posodobitve." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Neznan status preverjanja posodobitev za \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "Dnevnik sprememb ni na razpolago." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-sr_RS.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-sv_SE.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-sv_SE.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-05-20 10:53+0300\n" 5 | "PO-Revision-Date: 2017-10-16 15:02+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.0.4\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: sv_SE\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p1/Plugin/UpdateChecker.php:358 20 | msgid "Check for updates" 21 | msgstr "Sök efter uppdateringar" 22 | 23 | #: Puc/v4p1/Plugin/UpdateChecker.php:405 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Tillägget %s är uppdaterat." 28 | 29 | #: Puc/v4p1/Plugin/UpdateChecker.php:407 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Det finns en ny version av tillägget %s." 34 | 35 | #: Puc/v4p1/Plugin/UpdateChecker.php:409 36 | #, php-format 37 | msgid "Unknown update checker status \"%s\"" 38 | msgstr "Okänd status för kontroll av uppdatering “%s”" 39 | 40 | #: Puc/v4p1/Vcs/PluginUpdateChecker.php:83 41 | msgid "There is no changelog available." 42 | msgstr "Det finns ingen ändringslogg tillgänglig." 43 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-tr_TR.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-tr_TR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2017-11-24 17:02+0200\n" 5 | "PO-Revision-Date: 2021-11-15 19:07+0300\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 3.0\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: Emre Erkan \n" 16 | "Language: tr\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p3/Plugin/UpdateChecker.php:395 20 | msgid "Check for updates" 21 | msgstr "Güncellemeleri kontrol et" 22 | 23 | #: Puc/v4p3/Plugin/UpdateChecker.php:548 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "%s eklentisi güncel." 28 | 29 | #: Puc/v4p3/Plugin/UpdateChecker.php:550 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "%s eklentisinin yeni bir sürümü mevcut." 34 | 35 | #: Puc/v4p3/Plugin/UpdateChecker.php:552 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "%s için güncelleme olup olmadığı belirlenemedi." 40 | 41 | #: Puc/v4p3/Plugin/UpdateChecker.php:558 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Bilinmeyen güncelleme denetleyicisi durumu \"%s\"" 45 | 46 | #: Puc/v4p3/Vcs/PluginUpdateChecker.php:95 47 | msgid "There is no changelog available." 48 | msgstr "Kullanılabilir bir değişiklik yok." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-uk_UA.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-uk_UA.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2020-08-08 14:36+0300\n" 5 | "PO-Revision-Date: 2021-12-20 17:55+0200\n" 6 | "Language-Team: \n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "X-Generator: Poedit 2.2\n" 11 | "X-Poedit-Basepath: ..\n" 12 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" 13 | "X-Poedit-SourceCharset: UTF-8\n" 14 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 15 | "Last-Translator: \n" 16 | "Language: uk_UA\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v4p11/Plugin/Ui.php:128 20 | msgid "Check for updates" 21 | msgstr "Перевірити оновлення" 22 | 23 | #: Puc/v4p11/Plugin/Ui.php:213 24 | #, php-format 25 | msgctxt "the plugin title" 26 | msgid "The %s plugin is up to date." 27 | msgstr "Плагін %s оновлено." 28 | 29 | #: Puc/v4p11/Plugin/Ui.php:215 30 | #, php-format 31 | msgctxt "the plugin title" 32 | msgid "A new version of the %s plugin is available." 33 | msgstr "Нова версія %s доступна." 34 | 35 | #: Puc/v4p11/Plugin/Ui.php:217 36 | #, php-format 37 | msgctxt "the plugin title" 38 | msgid "Could not determine if updates are available for %s." 39 | msgstr "Не вдалося визначити, чи доступні оновлення для %s." 40 | 41 | #: Puc/v4p11/Plugin/Ui.php:223 42 | #, php-format 43 | msgid "Unknown update checker status \"%s\"" 44 | msgstr "Невідомий статус перевірки оновлень \"%s\"" 45 | 46 | #: Puc/v4p11/Vcs/PluginUpdateChecker.php:98 47 | msgid "There is no changelog available." 48 | msgstr "Немає доступного журналу змін." 49 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/github/plugin-update-checker/languages/plugin-update-checker-zh_CN.mo -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker-zh_CN.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: plugin-update-checker\n" 4 | "POT-Creation-Date: 2024-05-18 00:08+0800\n" 5 | "PO-Revision-Date: 2024-05-18 00:08+0800\n" 6 | "Last-Translator: Seaton Jiang \n" 7 | "Language-Team: \n" 8 | "Language: zh_CN\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=1; plural=0;\n" 13 | "X-Generator: Poedit 3.4.4\n" 14 | "X-Poedit-Basepath: ..\n" 15 | "X-Poedit-SourceCharset: UTF-8\n" 16 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #: Puc/v5p4/Plugin/Ui.php:56 20 | msgid "View details" 21 | msgstr "查看详情" 22 | 23 | #: Puc/v5p4/Plugin/Ui.php:79 24 | #, php-format 25 | msgid "More information about %s" 26 | msgstr "%s 的更多信息" 27 | 28 | #: Puc/v5p4/Plugin/Ui.php:130 29 | msgid "Check for updates" 30 | msgstr "检查更新" 31 | 32 | #: Puc/v5p4/Plugin/Ui.php:217 33 | #, php-format 34 | msgctxt "the plugin title" 35 | msgid "The %s plugin is up to date." 36 | msgstr "%s 目前是最新版本。" 37 | 38 | #: Puc/v5p4/Plugin/Ui.php:219 39 | #, php-format 40 | msgctxt "the plugin title" 41 | msgid "A new version of the %s plugin is available." 42 | msgstr "%s 当前有可用的更新。" 43 | 44 | #: Puc/v5p4/Plugin/Ui.php:221 45 | #, php-format 46 | msgctxt "the plugin title" 47 | msgid "Could not determine if updates are available for %s." 48 | msgstr "%s 无法确定是否有可用的更新。" 49 | 50 | #: Puc/v5p4/Plugin/Ui.php:227 51 | #, php-format 52 | msgid "Unknown update checker status \"%s\"" 53 | msgstr "未知的更新检查状态:%s" 54 | 55 | #: Puc/v5p4/Vcs/PluginUpdateChecker.php:113 56 | msgid "There is no changelog available." 57 | msgstr "没有可用的更新日志。" 58 | -------------------------------------------------------------------------------- /github/plugin-update-checker/languages/plugin-update-checker.pot: -------------------------------------------------------------------------------- 1 | #, fuzzy 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: plugin-update-checker\n" 5 | "POT-Creation-Date: 2024-10-16 17:23+0300\n" 6 | "PO-Revision-Date: 2016-01-10 20:59+0100\n" 7 | "Last-Translator: \n" 8 | "Language-Team: \n" 9 | "Language: en_US\n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 14 | "X-Generator: Poedit 3.5\n" 15 | "X-Poedit-Basepath: ..\n" 16 | "X-Poedit-SourceCharset: UTF-8\n" 17 | "X-Poedit-KeywordsList: __;_e;_x:1,2c;_x\n" 18 | "X-Poedit-SearchPath-0: .\n" 19 | 20 | #: Puc/v5p5/Plugin/Ui.php:130 21 | msgid "Check for updates" 22 | msgstr "" 23 | 24 | #: Puc/v5p5/Plugin/Ui.php:217 25 | #, php-format 26 | msgctxt "the plugin title" 27 | msgid "The %s plugin is up to date." 28 | msgstr "" 29 | 30 | #: Puc/v5p5/Plugin/Ui.php:219 31 | #, php-format 32 | msgctxt "the plugin title" 33 | msgid "A new version of the %s plugin is available." 34 | msgstr "" 35 | 36 | #: Puc/v5p5/Plugin/Ui.php:221 37 | #, php-format 38 | msgctxt "the plugin title" 39 | msgid "Could not determine if updates are available for %s." 40 | msgstr "" 41 | 42 | #: Puc/v5p5/Plugin/Ui.php:227 43 | #, php-format 44 | msgid "Unknown update checker status \"%s\"" 45 | msgstr "" 46 | 47 | #: Puc/v5p5/Vcs/PluginUpdateChecker.php:113 48 | msgid "There is no changelog available." 49 | msgstr "" 50 | -------------------------------------------------------------------------------- /github/plugin-update-checker/license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2023 Jānis Elsts 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /github/plugin-update-checker/load-v5p5.php: -------------------------------------------------------------------------------- 1 | Plugin\UpdateChecker::class, 18 | 'Theme\\UpdateChecker' => Theme\UpdateChecker::class, 19 | 20 | 'Vcs\\PluginUpdateChecker' => Vcs\PluginUpdateChecker::class, 21 | 'Vcs\\ThemeUpdateChecker' => Vcs\ThemeUpdateChecker::class, 22 | 23 | 'GitHubApi' => Vcs\GitHubApi::class, 24 | 'BitBucketApi' => Vcs\BitBucketApi::class, 25 | 'GitLabApi' => Vcs\GitLabApi::class, 26 | ) 27 | as $pucGeneralClass => $pucVersionedClass 28 | ) { 29 | MajorFactory::addVersion($pucGeneralClass, $pucVersionedClass, '5.5'); 30 | //Also add it to the minor-version factory in case the major-version factory 31 | //was already defined by another, older version of the update checker. 32 | MinorFactory::addVersion($pucGeneralClass, $pucVersionedClass, '5.5'); 33 | } 34 | 35 | -------------------------------------------------------------------------------- /github/plugin-update-checker/plugin-update-checker.php: -------------------------------------------------------------------------------- 1 | map.options.maxZoom){clmarkers.options.disableClusteringAtZoom=map.options.maxZoom+1}if(WPLeafletMapPlugin.markers.length>0){var length=WPLeafletMapPlugin.markers.length;for(var i=0;i0){var geocount=geojsons.length;for(var j=0,len=geocount;j'})}parents[map_id].push({label:"  "+parent+"",selectAllCheckbox:true,children:children[map_id][parent]});layerControl[map_id].setOverlayTree(parents[map_id]).collapseTree(true).expandSelected(true)} 2 | -------------------------------------------------------------------------------- /js/placementstrategies.min.js: -------------------------------------------------------------------------------- 1 | function leafext_placementstrategies_js(all_params){var map=window.WPLeafletMapPlugin.getCurrentMap();var map_id=map._leaflet_id;function getRandomColor(){var letters="0123456789ABCDEF";var color="#";for(var i=0;i<6;i++){color+=letters[Math.floor(Math.random()*16)]}return color}if(WPLeafletMapPlugin.markers.length>0){var clmarkers=L.markerClusterGroup({spiderLegPolylineOptions:{weight:0},elementsPlacementStrategy:all_params["elementsPlacementStrategy"],helpingCircles:all_params["helpingCircles"],spiderfyDistanceSurplus:all_params["spiderfyDistanceSurplus"],spiderfyDistanceMultiplier:1,elementsMultiplier:all_params["elementsMultiplier"],firstCircleElements:all_params["firstCircleElements"],maxClusterRadius:all_params["maxClusterRadius"],spiderfyOnMaxZoom:all_params["spiderfyOnMaxZoom"]});var length=WPLeafletMapPlugin.markers.length;for(var i=0;i 2 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/images/elevation-pushpin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-elevation-2.5.1/images/elevation-pushpin.png -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/images/elevation.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/libs/fullpage.css: -------------------------------------------------------------------------------- 1 | html, 2 | body, 3 | .leaflet-map { 4 | height: 100%; 5 | width: 100%; 6 | padding: 0px; 7 | margin: 0px; 8 | } 9 | 10 | body { 11 | display: flex; 12 | flex-direction: column; 13 | } 14 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/libs/leaflet-distance-marker.css: -------------------------------------------------------------------------------- 1 | .dist-marker { 2 | font-size: 9px; 3 | border: 1px solid #777; 4 | border-radius: 10px; 5 | text-align: center; 6 | color: #000; 7 | background: #fff; 8 | } 9 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/libs/leaflet-distance-marker.min.css: -------------------------------------------------------------------------------- 1 | .dist-marker{font-size:9px;border:1px solid #777;border-radius:10px;text-align:center;color:#000;background:#fff} -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/src/components/summary.js: -------------------------------------------------------------------------------- 1 | const _ = L.Control.Elevation.Utils; 2 | 3 | export var Summary = L.Class.extend({ 4 | initialize(opts, control) { 5 | this.options = opts; 6 | this.control = control; 7 | this.labels = {}; 8 | 9 | let summary = this._container = _.create("div", "elevation-summary " + (opts.summary ? opts.summary + "-summary" : '')); 10 | _.style(summary, 'max-width', opts.width ? opts.width + 'px' : ''); 11 | }, 12 | 13 | render() { 14 | return container => container.append(() => this._container); 15 | }, 16 | 17 | reset() { 18 | this._container.innerHTML = ''; 19 | }, 20 | 21 | append(className, label, value) { 22 | this._container.innerHTML += `${label}${value}`; 23 | return this; 24 | }, 25 | 26 | update() { 27 | Object 28 | .keys(this.labels) 29 | .sort((a, b) => this.labels[a].order - this.labels[b].order) // TODO: any performance issues? 30 | .forEach((i)=> { 31 | let value = typeof this.labels[i].value !== "function" ? this.labels[i].value : this.labels[i].value(this.control.track_info, this.labels[i].unit || ''); 32 | this.append(i /*+ " order-" + this.labels[i].order*/, L._(this.labels[i].label), value, this.labels[i].order); 33 | }); 34 | }, 35 | 36 | _registerSummary(data) { 37 | for (let i in data) { 38 | data[i].order = data[i].order ?? 1000; 39 | this.labels[i] = data[i]; 40 | } 41 | } 42 | 43 | }); 44 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/src/handlers/distance.js: -------------------------------------------------------------------------------- 1 | export function Distance() { 2 | 3 | const _ = L.Control.Elevation.Utils; 4 | 5 | let opts = this.options; 6 | let distance = {}; 7 | 8 | opts.distanceFactor = opts.imperial ? this.__mileFactor : (opts.distanceFactor || 1); // 1 km = (1000 m) 9 | distance.label = opts.imperial ? "mi" : opts.xLabel; 10 | 11 | return { 12 | name: 'distance', 13 | required: true, 14 | attr: 'dist', 15 | unit: distance.label, 16 | decimals: 5, 17 | pointToAttr: (_, i) => (i > 0 ? this._data[i - 1].dist : 0) + (this._data[i].latlng.distanceTo(this._data[i > 0 ? i - 1 : i].latlng) * opts.distanceFactor) / 1000, // convert back km to meters 18 | // stats: { total: _.iSum }, 19 | onPointAdded: (distance, i) => this.track_info.distance = distance, 20 | scale: opts.distance && { 21 | axis : "x", 22 | position: "bottom", 23 | scale : "x", // this._chart._x, 24 | labelY : 25, 25 | labelX : () => this._width() + 6, 26 | ticks : () => _.clamp(this._chart._xTicks() / 2, [4, +Infinity]), 27 | }, 28 | grid: opts.distance && { 29 | axis : "x", 30 | position : "bottom", 31 | scale : "x" // this._chart._x, 32 | }, 33 | tooltip: opts.distance && { 34 | name: 'x', 35 | chart: (item) => L._("x: ") + _.round(item[opts.xAttr], opts.decimalsX) + " " + distance.label, 36 | order: 20 37 | }, 38 | summary: opts.distance && { 39 | "totlen" : { 40 | label: "Total Length: ", 41 | value: (track) => (track.distance || 0).toFixed(2) + ' ' + distance.label, 42 | order: 10 43 | } 44 | } 45 | }; 46 | } 47 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-elevation-2.5.1/src/handlers/labels.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @see https://github.com/Raruto/leaflet-elevation/issues/211 3 | * 4 | * @example 5 | * ```js 6 | * L.control.Elevation({ handlers: [ 'Labels' ], labelsRotation: 25, labelsAlign: 'start' }) 7 | * ``` 8 | */ 9 | export function Labels() { 10 | 11 | this.on('elechart_updated', function(e) { 12 | 13 | const pointG = this._chart._chart.pane('point'); 14 | 15 | const textRotation = this.options.labelsRotation ?? -90; 16 | const textAnchor = this.options.labelsAlign; 17 | 18 | if (90 == Math.abs(textRotation)) { 19 | 20 | pointG.selectAll('text') 21 | .attr('dy', '4px') 22 | .attr("dx", (d, i, el) => Math.sign(textRotation) * (this._height() - d3.select(el[i].parentElement).datum().y - 8) + 'px') 23 | .attr('text-anchor', textRotation > 0 ? 'end' : 'start') 24 | .attr('transform', 'rotate(' + textRotation + ')') 25 | 26 | pointG.selectAll('circle') 27 | .attr('r', '2.5') 28 | .attr('fill', '#fff') 29 | .attr("stroke", '#000') 30 | .attr("stroke-width", '1.1'); 31 | 32 | } else if (!isNaN(textRotation)) { 33 | 34 | pointG.selectAll('text') 35 | .attr("dx", "4px") 36 | .attr("dy", "-9px") 37 | .attr('text-anchor', textAnchor ?? (0 == textRotation ? 'start' : 'middle')) 38 | .attr('transform', 'rotate('+ -textRotation +')') 39 | 40 | } 41 | 42 | }); 43 | 44 | return { }; 45 | } 46 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/leaflet-gesture-handling.css: -------------------------------------------------------------------------------- 1 | .leaflet-gesture-handling:after { 2 | color: #fff; 3 | font-family: Roboto, Arial, sans-serif; 4 | font-size: 22px; 5 | justify-content: center; 6 | display: flex; 7 | align-items: center; 8 | padding: 15px; 9 | position: absolute; 10 | top: 0; 11 | left: 0; 12 | right: 0; 13 | bottom: 0; 14 | background: rgba(0, 0, 0, .5); 15 | z-index: 1001; 16 | pointer-events: none; 17 | text-align: center; 18 | transition: opacity .8s ease-in-out; 19 | opacity: 0; 20 | content: "" 21 | } 22 | 23 | .leaflet-gesture-handling-warning:after { 24 | transition-duration: .3s; 25 | opacity: 1 26 | } 27 | 28 | .leaflet-gesture-handling-touch:after { 29 | content: attr(data-gesture-handling-touch-content) 30 | } 31 | 32 | .leaflet-gesture-handling-scroll:after { 33 | content: attr(data-gesture-handling-scroll-content) 34 | } 35 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/leaflet-gesture-handling.min.css: -------------------------------------------------------------------------------- 1 | .leaflet-gesture-handling:after{align-items:center;background:rgba(0,0,0,.5);bottom:0;color:#fff;content:"";display:flex;font-family:Roboto,Arial,sans-serif;font-size:22px;justify-content:center;left:0;opacity:0;padding:15px;pointer-events:none;position:absolute;right:0;text-align:center;top:0;transition:opacity .8s ease-in-out;z-index:1001}.leaflet-gesture-handling-warning:after{opacity:1;transition-duration:.3s}.leaflet-gesture-handling-touch:after{content:attr(data-gesture-handling-touch-content)}.leaflet-gesture-handling-scroll:after{content:attr(data-gesture-handling-scroll-content)} -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ar.js: -------------------------------------------------------------------------------- 1 | //Arabic 2 | export default { 3 | touch: "\u0627\u0633\u062a\u062e\u062f\u0645 \u0625\u0635\u0628\u0639\u064a\u0646 \u0644\u062a\u062d\u0631\u064a\u0643 \u0627\u0644\u062e\u0631\u064a\u0637\u0629", 4 | scroll: "\u200f\u0627\u0633\u062a\u062e\u062f\u0645 ctrl + scroll \u0644\u062a\u0635\u063a\u064a\u0631/\u062a\u0643\u0628\u064a\u0631 \u0627\u0644\u062e\u0631\u064a\u0637\u0629", 5 | scrollMac: "\u064a\u0645\u0643\u0646\u0643 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u2318 + \u0627\u0644\u062a\u0645\u0631\u064a\u0631 \u0644\u062a\u0643\u0628\u064a\u0631/\u062a\u0635\u063a\u064a\u0631 \u0627\u0644\u062e\u0631\u064a\u0637\u0629" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/bg.js: -------------------------------------------------------------------------------- 1 | //Bulgarian 2 | export default { 3 | touch: "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0434\u0432\u0430 \u043f\u0440\u044a\u0441\u0442\u0430, \u0437\u0430 \u0434\u0430 \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u0435 \u043a\u0430\u0440\u0442\u0430\u0442\u0430", 4 | scroll: "\u0417\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0431\u0443\u0442\u043e\u043d\u0430 Ctrl \u043d\u0430\u0442\u0438\u0441\u043d\u0430\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u043f\u0440\u0435\u0432\u044a\u0440\u0442\u0430\u0442\u0435, \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043c\u0430\u0449\u0430\u0431\u0430 \u043d\u0430 \u043a\u0430\u0440\u0442\u0430\u0442\u0430", 5 | scrollMac: "\u0417\u0430\u0434\u0440\u044a\u0436\u0442\u0435 \u0431\u0443\u0442\u043e\u043d\u0430 \u2318 \u043d\u0430\u0442\u0438\u0441\u043d\u0430\u0442, \u0434\u043e\u043a\u0430\u0442\u043e \u043f\u0440\u0435\u0432\u044a\u0440\u0442\u0430\u0442\u0435, \u0437\u0430 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043c\u0430\u0449\u0430\u0431\u0430 \u043d\u0430 \u043a\u0430\u0440\u0442\u0430\u0442\u0430" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/bn.js: -------------------------------------------------------------------------------- 1 | //Bengali 2 | export default { 3 | touch: "\u09ae\u09be\u09a8\u099a\u09bf\u09a4\u09cd\u09b0\u099f\u09bf\u0995\u09c7 \u09b8\u09b0\u09be\u09a4\u09c7 \u09a6\u09c1\u099f\u09bf \u0986\u0999\u09cd\u0997\u09c1\u09b2 \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09c1\u09a8", 4 | scroll: "\u09ae\u09cd\u09af\u09be\u09aa \u099c\u09c1\u09ae \u0995\u09b0\u09a4\u09c7 ctrl + scroll \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09c1\u09a8", 5 | scrollMac: "\u09ae\u09cd\u09af\u09be\u09aa\u09c7 \u099c\u09c1\u09ae \u0995\u09b0\u09a4\u09c7 \u2318 \u09ac\u09cb\u09a4\u09be\u09ae \u099f\u09bf\u09aa\u09c7 \u09b8\u09cd\u0995\u09cd\u09b0\u09b2 \u0995\u09b0\u09c1\u09a8" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ca.js: -------------------------------------------------------------------------------- 1 | //Catalan 2 | export default { 3 | touch: "Fes servir dos dits per moure el mapa", 4 | scroll: "Prem la tecla Control mentre et desplaces per apropar i allunyar el mapa", 5 | scrollMac: "Prem la tecla \u2318 mentre et desplaces per apropar i allunyar el mapa" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/cs.js: -------------------------------------------------------------------------------- 1 | //Czech 2 | export default { 3 | touch: "K\u00a0posunut\u00ed mapy pou\u017eijte dva prsty", 4 | scroll: "Velikost zobrazen\u00ed mapy zm\u011b\u0148te podr\u017een\u00edm kl\u00e1vesy Ctrl a\u00a0posouv\u00e1n\u00edm kole\u010dka my\u0161i", 5 | scrollMac: "Velikost zobrazen\u00ed mapy zm\u011bn\u00edte podr\u017een\u00edm kl\u00e1vesy \u2318 a\u00a0posunut\u00edm kole\u010dka my\u0161i / touchpadu" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/da.js: -------------------------------------------------------------------------------- 1 | //Danish 2 | export default { 3 | touch: "Brug to fingre til at flytte kortet", 4 | scroll: "Brug ctrl + rullefunktionen til at zoome ind og ud p\u00e5 kortet", 5 | scrollMac: "Brug \u2318 + rullefunktionen til at zoome ind og ud p\u00e5 kortet" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/de.js: -------------------------------------------------------------------------------- 1 | //German 2 | export default { 3 | touch: "Verschieben der Karte mit zwei Fingern", 4 | scroll: "Verwende Strg + Scroll zum Zoomen der Karte", 5 | scrollMac: "Verwende \u2318 + Scroll zum Zoomen der Karte" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/el.js: -------------------------------------------------------------------------------- 1 | //Greek 2 | export default { 3 | touch: "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03b4\u03cd\u03bf \u03b4\u03ac\u03c7\u03c4\u03c5\u03bb\u03b1 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03c7\u03ac\u03c1\u03c4\u03b7", 4 | scroll: "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf Ctrl \u03ba\u03b1\u03b9 \u03ba\u03cd\u03bb\u03b9\u03c3\u03b7, \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b5\u03b3\u03b5\u03b8\u03cd\u03bd\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c7\u03ac\u03c1\u03c4\u03b7", 5 | scrollMac: "\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c0\u03bb\u03ae\u03ba\u03c4\u03c1\u03bf \u2318 + \u03ba\u03cd\u03bb\u03b9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03c4\u03af\u03b1\u03c3\u03b7 \u03c3\u03c4\u03bf\u03bd \u03c7\u03ac\u03c1\u03c4\u03b7" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/en-AU.js: -------------------------------------------------------------------------------- 1 | //English (Australian) 2 | export default { 3 | touch: "Use two fingers to move the map", 4 | scroll: "Use ctrl + scroll to zoom the map", 5 | scrollMac: "Use \u2318 + scroll to zoom the map" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/en-GB.js: -------------------------------------------------------------------------------- 1 | //English (Great Britain) 2 | export default { 3 | touch: "Use two fingers to move the map", 4 | scroll: "Use ctrl + scroll to zoom the map", 5 | scrollMac: "Use \u2318 + scroll to zoom the map" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/en.js: -------------------------------------------------------------------------------- 1 | //English 2 | export default { 3 | touch: "Use two fingers to move the map", 4 | scroll: "Use ctrl + scroll to zoom the map", 5 | scrollMac: "Use \u2318 + scroll to zoom the map" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/es.js: -------------------------------------------------------------------------------- 1 | //Spanish 2 | export default { 3 | touch: "Para mover el mapa, utiliza dos dedos", 4 | scroll: "Mant\u00e9n pulsada la tecla Ctrl mientras te desplazas para acercar o alejar el mapa", 5 | scrollMac: "Mant\u00e9n pulsada la tecla \u2318 mientras te desplazas para acercar o alejar el mapa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/eu.js: -------------------------------------------------------------------------------- 1 | //Basque 2 | export default { 3 | touch: "Erabili bi hatz mapa mugitzeko", 4 | scroll: "Mapan zooma aplikatzeko, sakatu Ktrl eta egin gora edo behera", 5 | scrollMac: "Eduki sakatuta \u2318 eta egin gora eta behera mapa handitu eta txikitzeko" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/fa.js: -------------------------------------------------------------------------------- 1 | //Farsi 2 | export default { 3 | touch: "\u0628\u0631\u0627\u06cc \u062d\u0631\u06a9\u062a \u062f\u0627\u062f\u0646 \u0646\u0642\u0634\u0647 \u0627\u0632 \u062f\u0648 \u0627\u0646\u06af\u0634\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f.", 4 | scroll: "\u200f\u0628\u0631\u0627\u06cc \u0628\u0632\u0631\u06af\u200c\u0646\u0645\u0627\u06cc\u06cc \u0646\u0642\u0634\u0647 \u0627\u0632 ctrl + scroll \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f", 5 | scrollMac: "\u0628\u0631\u0627\u06cc \u0628\u0632\u0631\u06af\u200c\u0646\u0645\u0627\u06cc\u06cc \u0646\u0642\u0634\u0647\u060c \u0627\u0632 \u2318 + \u067e\u06cc\u0645\u0627\u06cc\u0634 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f." 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/fi.js: -------------------------------------------------------------------------------- 1 | //Finnish 2 | export default { 3 | touch: "Siirr\u00e4 karttaa kahdella sormella.", 4 | scroll: "Zoomaa karttaa painamalla Ctrl-painiketta ja vieritt\u00e4m\u00e4ll\u00e4.", 5 | scrollMac: "Zoomaa karttaa pit\u00e4m\u00e4ll\u00e4 painike \u2318 painettuna ja vieritt\u00e4m\u00e4ll\u00e4." 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/fil.js: -------------------------------------------------------------------------------- 1 | //Filipino 2 | export default { 3 | touch: "Gumamit ng dalawang daliri upang iusog ang mapa", 4 | scroll: "Gamitin ang ctrl + scroll upang i-zoom ang mapa", 5 | scrollMac: "Gamitin ang \u2318 + scroll upang i-zoom ang mapa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/fr.js: -------------------------------------------------------------------------------- 1 | //French 2 | export default { 3 | touch: "Utilisez deux\u00a0doigts pour d\u00e9placer la carte", 4 | scroll: "Vous pouvez zoomer sur la carte \u00e0 l'aide de CTRL + Molette de d\u00e9filement", 5 | scrollMac: "Vous pouvez zoomer sur la carte \u00e0 l'aide de \u2318 + Molette de d\u00e9filement" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/gl.js: -------------------------------------------------------------------------------- 1 | //Galician 2 | export default { 3 | touch: "Utiliza dous dedos para mover o mapa", 4 | scroll: "Preme Ctrl mentres te desprazas para ampliar o mapa", 5 | scrollMac: "Preme \u2318 e despr\u00e1zate para ampliar o mapa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/gu.js: -------------------------------------------------------------------------------- 1 | 2 | //Gujarati 3 | export default { 4 | touch: "\u0aa8\u0a95\u0ab6\u0acb \u0a96\u0ab8\u0ac7\u0aa1\u0ab5\u0abe \u0aac\u0ac7 \u0a86\u0a82\u0a97\u0ab3\u0ac0\u0a93\u0aa8\u0acb \u0a89\u0aaa\u0aaf\u0acb\u0a97 \u0a95\u0ab0\u0acb", 5 | scroll: "\u0aa8\u0a95\u0ab6\u0abe\u0aa8\u0ac7 \u0a9d\u0ac2\u0aae \u0a95\u0ab0\u0ab5\u0abe \u0aae\u0abe\u0a9f\u0ac7 ctrl + \u0ab8\u0acd\u0a95\u0acd\u0ab0\u0acb\u0ab2\u0aa8\u0acb \u0a89\u0aaa\u0aaf\u0acb\u0a97 \u0a95\u0ab0\u0acb", 6 | scrollMac: "\u0aa8\u0a95\u0ab6\u0abe\u0aa8\u0ac7 \u0a9d\u0ac2\u0aae \u0a95\u0ab0\u0ab5\u0abe \u2318 + \u0ab8\u0acd\u0a95\u0acd\u0ab0\u0acb\u0ab2\u0aa8\u0acb \u0a89\u0aaa\u0aaf\u0acb\u0a97 \u0a95\u0ab0\u0acb" 7 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/hi.js: -------------------------------------------------------------------------------- 1 | //Hindi 2 | export default { 3 | touch: "\u092e\u0948\u092a \u090f\u0915 \u091c\u0917\u0939 \u0938\u0947 \u0926\u0942\u0938\u0930\u0940 \u091c\u0917\u0939 \u0932\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0926\u094b \u0909\u0902\u0917\u0932\u093f\u092f\u094b\u0902 \u0915\u093e \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930\u0947\u0902", 4 | scroll: "\u092e\u0948\u092a \u0915\u094b \u091c\u093c\u0942\u092e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f ctrl + \u0938\u094d\u0915\u094d\u0930\u094b\u0932 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902", 5 | scrollMac: "\u092e\u0948\u092a \u0915\u094b \u091c\u093c\u0942\u092e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u2318 + \u0938\u094d\u0915\u094d\u0930\u094b\u0932 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/hr.js: -------------------------------------------------------------------------------- 1 | //Croatian 2 | export default { 3 | touch: "Pomi\u010dite kartu pomo\u0107u dva prsta", 4 | scroll: "Upotrijebite Ctrl i kliza\u010d mi\u0161a da biste zumirali kartu", 5 | scrollMac: "Upotrijebite gumb \u2318 dok se pomi\u010dete za zumiranje karte" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/hu.js: -------------------------------------------------------------------------------- 1 | //Hungarian 2 | export default { 3 | touch: "K\u00e9t ujjal mozgassa a t\u00e9rk\u00e9pet", 4 | scroll: "A t\u00e9rk\u00e9p a ctrl + g\u00f6rget\u00e9s haszn\u00e1lat\u00e1val nagy\u00edthat\u00f3", 5 | scrollMac: "A t\u00e9rk\u00e9p a \u2318 + g\u00f6rget\u00e9s haszn\u00e1lat\u00e1val nagy\u00edthat\u00f3" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/id.js: -------------------------------------------------------------------------------- 1 | //Indonesian 2 | export default { 3 | touch: "Gunakan dua jari untuk menggerakkan peta", 4 | scroll: "Gunakan ctrl + scroll untuk memperbesar atau memperkecil peta", 5 | scrollMac: "Gunakan \u2318 + scroll untuk memperbesar atau memperkecil peta" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/it-IT.js: -------------------------------------------------------------------------------- 1 | //Italian 2 | export default { 3 | touch: "Utilizza due dita per spostare la mappa", 4 | scroll: "Utilizza CTRL + scorrimento per eseguire lo zoom della mappa", 5 | scrollMac: "Utilizza \u2318 + scorrimento per eseguire lo zoom della mappa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/it.js: -------------------------------------------------------------------------------- 1 | //Italian 2 | export default { 3 | touch: "Utilizza due dita per spostare la mappa", 4 | scroll: "Utilizza CTRL + scorrimento per eseguire lo zoom della mappa", 5 | scrollMac: "Utilizza \u2318 + scorrimento per eseguire lo zoom della mappa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/iw.js: -------------------------------------------------------------------------------- 1 | //Hebrew 2 | export default { 3 | touch: "\u05d4\u05d6\u05d6 \u05d0\u05ea \u05d4\u05de\u05e4\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e9\u05ea\u05d9 \u05d0\u05e6\u05d1\u05e2\u05d5\u05ea", 4 | scroll: "\u200f\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05de\u05e8\u05d7\u05e7 \u05d4\u05ea\u05e6\u05d5\u05d2\u05d4 \u05d1\u05de\u05e4\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05de\u05e7\u05e9 ctrl \u05d5\u05d2\u05dc\u05d9\u05dc\u05d4", 5 | scrollMac: "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e0\u05d5\u05ea \u05d0\u05ea \u05de\u05e8\u05d7\u05e7 \u05d4\u05ea\u05e6\u05d5\u05d2\u05d4 \u05d1\u05de\u05e4\u05d4 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05de\u05e7\u05e9 \u2318 \u05d5\u05d2\u05dc\u05d9\u05dc\u05d4" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ja.js: -------------------------------------------------------------------------------- 1 | //Japanese 2 | export default { 3 | touch: "\u5730\u56f3\u3092\u79fb\u52d5\u3055\u305b\u308b\u306b\u306f\u6307 2 \u672c\u3067\u64cd\u4f5c\u3057\u307e\u3059", 4 | scroll: "\u5730\u56f3\u3092\u30ba\u30fc\u30e0\u3059\u308b\u306b\u306f\u3001Ctrl \u30ad\u30fc\u3092\u62bc\u3057\u306a\u304c\u3089\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044", 5 | scrollMac: "\u5730\u56f3\u3092\u30ba\u30fc\u30e0\u3059\u308b\u306b\u306f\u3001\u2318 \u30ad\u30fc\u3092\u62bc\u3057\u306a\u304c\u3089\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/kn.js: -------------------------------------------------------------------------------- 1 | //Kannada 2 | export default { 3 | touch: "Use two fingers to move the map", 4 | scroll: "Use Ctrl + scroll to zoom the map", 5 | scrollMac: "Use ⌘ + scroll to zoom the map" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ko.js: -------------------------------------------------------------------------------- 1 | //Korean 2 | export default { 3 | touch: "\uc9c0\ub3c4\ub97c \uc6c0\uc9c1\uc774\ub824\uba74 \ub450 \uc190\uac00\ub77d\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.", 4 | scroll: "\uc9c0\ub3c4\ub97c \ud655\ub300/\ucd95\uc18c\ud558\ub824\uba74 Ctrl\uc744 \ub204\ub978 \ucc44 \uc2a4\ud06c\ub864\ud558\uc138\uc694.", 5 | scrollMac: "\uc9c0\ub3c4\ub97c \ud655\ub300\ud558\ub824\uba74 \u2318 + \uc2a4\ud06c\ub864 \uc0ac\uc6a9" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/lt.js: -------------------------------------------------------------------------------- 1 | //Lithuanian 2 | export default { 3 | touch: "Perkelkite \u017eem\u0117lap\u012f dviem pir\u0161tais", 4 | scroll: "Slinkite nuspaud\u0119 klavi\u0161\u0105 \u201eCtrl\u201c, kad pakeistum\u0117te \u017eem\u0117lapio mastel\u012f", 5 | scrollMac: "Paspauskite klavi\u0161\u0105 \u2318 ir slinkite, kad priartintum\u0117te \u017eem\u0117lap\u012f" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/lv.js: -------------------------------------------------------------------------------- 1 | //Latvian 2 | export default { 3 | touch: "Lai p\u0101rvietotu karti, b\u012bdiet to ar diviem pirkstiem", 4 | scroll: "Kartes t\u0101lummai\u0146ai izmantojiet ctrl + ritin\u0101\u0161anu", 5 | scrollMac: "Lai veiktu kartes t\u0101lummai\u0146u, izmantojiet \u2318 + ritin\u0101\u0161anu" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ml.js: -------------------------------------------------------------------------------- 1 | //Malayalam 2 | export default { 3 | touch: "\u0d2e\u0d3e\u0d2a\u0d4d\u0d2a\u0d4d \u0d28\u0d40\u0d15\u0d4d\u0d15\u0d3e\u0d7b \u0d30\u0d23\u0d4d\u0d1f\u0d4d \u0d35\u0d3f\u0d30\u0d32\u0d41\u0d15\u0d7e \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d15\u0d4d\u0d15\u0d41\u0d15", 4 | scroll: "\u0d15\u0d7a\u0d1f\u0d4d\u0d30\u0d4b\u0d7e + \u0d38\u0d4d\u200c\u0d15\u0d4d\u0d30\u0d4b\u0d7e \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u200c\u0d2e\u0d3e\u0d2a\u0d4d\u0d2a\u0d4d \u200c\u0d38\u0d42\u0d02 \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15", 5 | scrollMac: "\u2318 + \u0d38\u0d4d\u200c\u0d15\u0d4d\u0d30\u0d4b\u0d7e \u0d09\u0d2a\u0d2f\u0d4b\u0d17\u0d3f\u0d1a\u0d4d\u0d1a\u0d4d \u200c\u0d2e\u0d3e\u0d2a\u0d4d\u0d2a\u0d4d \u200c\u0d38\u0d42\u0d02 \u0d1a\u0d46\u0d2f\u0d4d\u0d2f\u0d41\u0d15" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/mr.js: -------------------------------------------------------------------------------- 1 | //Marathi 2 | export default { 3 | touch: "\u0928\u0915\u093e\u0936\u093e \u0939\u0932\u0935\u093f\u0923\u094d\u092f\u093e\u0938\u093e\u0920\u0940 \u0926\u094b\u0928 \u092c\u094b\u091f\u0947 \u0935\u093e\u092a\u0930\u093e", 4 | scroll: "\u0928\u0915\u093e\u0936\u093e \u091d\u0942\u092e \u0915\u0930\u0923\u094d\u092f\u093e\u0938\u093e\u0920\u0940 ctrl + scroll \u0935\u093e\u092a\u0930\u093e", 5 | scrollMac: "\u0928\u0915\u093e\u0936\u093e\u0935\u0930 \u091d\u0942\u092e \u0915\u0930\u0923\u094d\u092f\u093e\u0938\u093e\u0920\u0940 \u2318 + \u0938\u094d\u0915\u094d\u0930\u094b\u0932 \u0935\u093e\u092a\u0930\u093e" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/nl.js: -------------------------------------------------------------------------------- 1 | //Dutch 2 | export default { 3 | touch: "Gebruik twee vingers om de kaart te verplaatsen", 4 | scroll: "Gebruik Ctrl + scrollen om in- en uit te zoomen op de kaart", 5 | scrollMac: "Gebruik \u2318 + scrollen om in en uit te zoomen op de kaart" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/no.js: -------------------------------------------------------------------------------- 1 | //Norwegian 2 | export default { 3 | touch: "Bruk to fingre for \u00e5 flytte kartet", 4 | scroll: "Hold ctrl-tasten inne og rull for \u00e5 zoome p\u00e5 kartet", 5 | scrollMac: "Hold inne \u2318-tasten og rull for \u00e5 zoome p\u00e5 kartet" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/pl.js: -------------------------------------------------------------------------------- 1 | //Polish 2 | export default { 3 | touch: "Przesu\u0144 map\u0119 dwoma palcami", 4 | scroll: "Naci\u015bnij CTRL i przewi\u0144, by przybli\u017cy\u0107 map\u0119", 5 | scrollMac: "Naci\u015bnij\u00a0\u2318 i przewi\u0144, by przybli\u017cy\u0107 map\u0119" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/pt-BR.js: -------------------------------------------------------------------------------- 1 | //Portuguese (Brazil) 2 | export default { 3 | touch: "Use dois dedos para mover o mapa", 4 | scroll: "Pressione Ctrl e role a tela simultaneamente para aplicar zoom no mapa", 5 | scrollMac: "Use \u2318 e role a tela simultaneamente para aplicar zoom no mapa" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/pt-PT.js: -------------------------------------------------------------------------------- 1 | //Portuguese (Portugal) 2 | export default { 3 | touch: "Utilize dois dedos para mover o mapa", 4 | scroll: "Utilizar ctrl + deslocar para aumentar/diminuir zoom do mapa", 5 | scrollMac: "Utilize \u2318 + deslocar para aumentar/diminuir o zoom do mapa" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/pt.js: -------------------------------------------------------------------------------- 1 | //Portuguese 2 | export default { 3 | touch: "Use dois dedos para mover o mapa", 4 | scroll: "Pressione Ctrl e role a tela simultaneamente para aplicar zoom no mapa", 5 | scrollMac: "Use \u2318 e role a tela simultaneamente para aplicar zoom no mapa" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ro.js: -------------------------------------------------------------------------------- 1 | //Romanian 2 | export default { 3 | touch: "Folosi\u021bi dou\u0103 degete pentru a deplasa harta", 4 | scroll: "Ap\u0103sa\u021bi tasta ctrl \u0219i derula\u021bi simultan pentru a m\u0103ri harta", 5 | scrollMac: "Folosi\u021bi \u2318 \u0219i derula\u021bi pentru a m\u0103ri/mic\u0219ora harta" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ru.js: -------------------------------------------------------------------------------- 1 | //Russian 2 | export default { 3 | touch: "\u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u043a\u0430\u0440\u0442\u0443, \u043f\u0440\u043e\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u043e \u043d\u0435\u0439 \u0434\u0432\u0443\u043c\u044f \u043f\u0430\u043b\u044c\u0446\u0430\u043c\u0438", 4 | scroll: "\u0427\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043c\u0430\u0441\u0448\u0442\u0430\u0431, \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0438\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u0440\u0442\u0443, \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044f \u043a\u043b\u0430\u0432\u0438\u0448\u0443 Ctrl.", 5 | scrollMac: "\u0427\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043c\u0430\u0441\u0448\u0442\u0430\u0431, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u2318\u00a0+ \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/sk.js: -------------------------------------------------------------------------------- 1 | //Slovak 2 | export default { 3 | touch: "Mapu m\u00f4\u017eete posun\u00fa\u0165 dvoma prstami", 4 | scroll: "Ak chcete pribl\u00ed\u017ei\u0165 mapu, stla\u010dte kl\u00e1ves ctrl a\u00a0pos\u00favajte", 5 | scrollMac: "Ak chcete pribl\u00ed\u017ei\u0165 mapu, stla\u010dte kl\u00e1ves \u2318 a\u00a0pos\u00favajte kolieskom my\u0161i" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/sl.js: -------------------------------------------------------------------------------- 1 | //Slovenian 2 | export default { 3 | touch: "Premaknite zemljevid z dvema prstoma", 4 | scroll: "Zemljevid pove\u010date tako, da dr\u017eite tipko Ctrl in vrtite kolesce na mi\u0161ki", 5 | scrollMac: "Uporabite \u2318 + funkcijo pomika, da pove\u010date ali pomanj\u0161ate zemljevid" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/sr.js: -------------------------------------------------------------------------------- 1 | //Serbian 2 | export default { 3 | touch: "\u041c\u0430\u043f\u0443 \u043f\u043e\u043c\u0435\u0440\u0430\u0458\u0442\u0435 \u043f\u043e\u043c\u043e\u045b\u0443 \u0434\u0432\u0430 \u043f\u0440\u0441\u0442\u0430", 4 | scroll: "\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 ctrl \u0442\u0430\u0441\u0442\u0435\u0440 \u0434\u043e\u043a \u043f\u043e\u043c\u0435\u0440\u0430\u0442\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0437\u0443\u043c\u0438\u0440\u0430\u043b\u0438 \u043c\u0430\u043f\u0443", 5 | scrollMac: "\u041f\u0440\u0438\u0442\u0438\u0441\u043d\u0438\u0442\u0435 \u0442\u0430\u0441\u0442\u0435\u0440 \u2318 \u0434\u043e\u043a \u043f\u043e\u043c\u0435\u0440\u0430\u0442\u0435 \u0434\u0430 \u0431\u0438\u0441\u0442\u0435 \u0437\u0443\u043c\u0438\u0440\u0430\u043b\u0438 \u043c\u0430\u043f\u0443" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/sv.js: -------------------------------------------------------------------------------- 1 | //Swedish 2 | export default { 3 | touch: "Anv\u00e4nd tv\u00e5 fingrar f\u00f6r att flytta kartan", 4 | scroll: "Anv\u00e4nd ctrl + rulla f\u00f6r att zooma kartan", 5 | scrollMac: "Anv\u00e4nd \u2318 + rulla f\u00f6r att zooma p\u00e5 kartan" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/ta.js: -------------------------------------------------------------------------------- 1 | //Tamil 2 | export default { 3 | touch: "\u0bae\u0bc7\u0baa\u0bcd\u0baa\u0bc8 \u0ba8\u0b95\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4 \u0b87\u0bb0\u0ba3\u0bcd\u0b9f\u0bc1 \u0bb5\u0bbf\u0bb0\u0bb2\u0bcd\u0b95\u0bb3\u0bc8\u0baa\u0bcd \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd", 4 | scroll: "\u0bae\u0bc7\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bbf/\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bbf\u0baa\u0bcd \u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95, ctrl \u0baa\u0b9f\u0bcd\u0b9f\u0ba9\u0bc8\u0baa\u0bcd \u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0baa\u0b9f\u0bbf, \u0bae\u0bc7\u0bb2\u0bc7/\u0b95\u0bc0\u0bb4\u0bc7 \u0bb8\u0bcd\u0b95\u0bcd\u0bb0\u0bbe\u0bb2\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd", 5 | scrollMac: "\u0bae\u0bc7\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0bc6\u0bb0\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bbf/\u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bbe\u0b95\u0bcd\u0b95\u0bbf\u0baa\u0bcd \u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95, \u2318 \u0baa\u0b9f\u0bcd\u0b9f\u0ba9\u0bc8\u0baa\u0bcd \u0baa\u0bbf\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0baa\u0b9f\u0bbf, \u0bae\u0bc7\u0bb2\u0bc7/\u0b95\u0bc0\u0bb4\u0bc7 \u0bb8\u0bcd\u0b95\u0bcd\u0bb0\u0bbe\u0bb2\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/te.js: -------------------------------------------------------------------------------- 1 | //Telugu 2 | export default { 3 | touch: "\u0c2e\u0c4d\u0c2f\u0c3e\u0c2a\u0c4d\u200c\u0c28\u0c3f \u0c24\u0c30\u0c32\u0c3f\u0c02\u0c1a\u0c21\u0c02 \u0c15\u0c4b\u0c38\u0c02 \u0c30\u0c46\u0c02\u0c21\u0c41 \u0c35\u0c47\u0c33\u0c4d\u0c32\u0c28\u0c41 \u0c09\u0c2a\u0c2f\u0c4b\u0c17\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f", 4 | scroll: "\u0c2e\u0c4d\u0c2f\u0c3e\u0c2a\u0c4d\u200c\u0c28\u0c3f \u0c1c\u0c42\u0c2e\u0c4d \u0c1a\u0c47\u0c2f\u0c21\u0c3e\u0c28\u0c3f\u0c15\u0c3f ctrl \u0c2c\u0c1f\u0c28\u0c4d\u200c\u0c28\u0c41 \u0c28\u0c4a\u0c15\u0c4d\u0c15\u0c3f \u0c09\u0c02\u0c1a\u0c3f, \u0c38\u0c4d\u0c15\u0c4d\u0c30\u0c4b\u0c32\u0c4d \u0c1a\u0c47\u0c2f\u0c02\u0c21\u0c3f", 5 | scrollMac: "\u0c2e\u0c4d\u0c2f\u0c3e\u0c2a\u0c4d \u0c1c\u0c42\u0c2e\u0c4d \u0c1a\u0c47\u0c2f\u0c3e\u0c32\u0c02\u0c1f\u0c47 \u2318 + \u0c38\u0c4d\u0c15\u0c4d\u0c30\u0c4b\u0c32\u0c4d \u0c09\u0c2a\u0c2f\u0c4b\u0c17\u0c3f\u0c02\u0c1a\u0c02\u0c21\u0c3f" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/th.js: -------------------------------------------------------------------------------- 1 | //Thai 2 | export default { 3 | touch: "\u0e43\u0e0a\u0e49 2 \u0e19\u0e34\u0e49\u0e27\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e41\u0e1c\u0e19\u0e17\u0e35\u0e48", 4 | scroll: "\u0e01\u0e14 Ctrl \u0e04\u0e49\u0e32\u0e07\u0e44\u0e27\u0e49 \u0e41\u0e25\u0e49\u0e27\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e0b\u0e39\u0e21\u0e41\u0e1c\u0e19\u0e17\u0e35\u0e48", 5 | scrollMac: "\u0e01\u0e14 \u2318 \u0e41\u0e25\u0e49\u0e27\u0e40\u0e25\u0e37\u0e48\u0e2d\u0e19\u0e2b\u0e19\u0e49\u0e32\u0e08\u0e2d\u0e40\u0e1e\u0e37\u0e48\u0e2d\u0e0b\u0e39\u0e21\u0e41\u0e1c\u0e19\u0e17\u0e35\u0e48" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/tl.js: -------------------------------------------------------------------------------- 1 | //Tagalog 2 | export default { 3 | touch: "Gumamit ng dalawang daliri upang iusog ang mapa", 4 | scroll: "Gamitin ang ctrl + scroll upang i-zoom ang mapa", 5 | scrollMac: "Gamitin ang \u2318 + scroll upang i-zoom ang mapa" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/tr.js: -------------------------------------------------------------------------------- 1 | //Turkish 2 | export default { 3 | touch: "Haritada gezinmek i\u00e7in iki parma\u011f\u0131n\u0131z\u0131 kullan\u0131n", 4 | scroll: "Haritay\u0131 yak\u0131nla\u015ft\u0131rmak i\u00e7in ctrl + kayd\u0131rma kombinasyonunu kullan\u0131n", 5 | scrollMac: "Haritay\u0131 yak\u0131nla\u015ft\u0131rmak i\u00e7in \u2318 tu\u015funa bas\u0131p ekran\u0131 kayd\u0131r\u0131n" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/uk.js: -------------------------------------------------------------------------------- 1 | //Ukrainian 2 | export default { 3 | touch: "\u041f\u0435\u0440\u0435\u043c\u0456\u0449\u0443\u0439\u0442\u0435 \u043a\u0430\u0440\u0442\u0443 \u0434\u0432\u043e\u043c\u0430 \u043f\u0430\u043b\u044c\u0446\u044f\u043c\u0438", 4 | scroll: "\u0429\u043e\u0431 \u0437\u043c\u0456\u043d\u044e\u0432\u0430\u0442\u0438 \u043c\u0430\u0441\u0448\u0442\u0430\u0431 \u043a\u0430\u0440\u0442\u0438, \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0443\u0439\u0442\u0435 \u043a\u043e\u043b\u0456\u0449\u0430\u0442\u043a\u043e \u043c\u0438\u0448\u0456, \u0443\u0442\u0440\u0438\u043c\u0443\u044e\u0447\u0438 \u043a\u043b\u0430\u0432\u0456\u0448\u0443 Ctrl", 5 | scrollMac: "\u0429\u043e\u0431 \u0437\u043c\u0456\u043d\u0438\u0442\u0438 \u043c\u0430\u0441\u0448\u0442\u0430\u0431 \u043a\u0430\u0440\u0442\u0438, \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 \u2318 + \u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0443\u0432\u0430\u043d\u043d\u044f" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/vi.js: -------------------------------------------------------------------------------- 1 | //Vietnamese 2 | export default { 3 | touch: "S\u1eed d\u1ee5ng hai ng\u00f3n tay \u0111\u1ec3 di chuy\u1ec3n b\u1ea3n \u0111\u1ed3", 4 | scroll: "S\u1eed d\u1ee5ng ctrl + cu\u1ed9n \u0111\u1ec3 thu ph\u00f3ng b\u1ea3n \u0111\u1ed3", 5 | scrollMac: "S\u1eed d\u1ee5ng \u2318 + cu\u1ed9n \u0111\u1ec3 thu ph\u00f3ng b\u1ea3n \u0111\u1ed3" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/zh-CN.js: -------------------------------------------------------------------------------- 1 | //Chinese (Simplified) 2 | export default { 3 | touch: "\u4f7f\u7528\u53cc\u6307\u79fb\u52a8\u5730\u56fe", 4 | scroll: "\u6309\u4f4f Ctrl \u5e76\u6eda\u52a8\u9f20\u6807\u6eda\u8f6e\u624d\u53ef\u7f29\u653e\u5730\u56fe", 5 | scrollMac: "\u6309\u4f4f \u2318 \u5e76\u6eda\u52a8\u9f20\u6807\u6eda\u8f6e\u624d\u53ef\u7f29\u653e\u5730\u56fe" 6 | }; -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-gesture-handling-1.4.4/dist/locales/zh-TW.js: -------------------------------------------------------------------------------- 1 | //Chinese (Traditional) 2 | export default { 3 | touch: "\u540c\u6642\u4ee5\u5169\u6307\u79fb\u52d5\u5730\u5716", 4 | scroll: "\u6309\u4f4f ctrl \u9375\u52a0\u4e0a\u6372\u52d5\u6ed1\u9f20\u53ef\u4ee5\u7e2e\u653e\u5730\u5716", 5 | scrollMac: "\u6309 \u2318 \u52a0\u4e0a\u6efe\u52d5\u6372\u8ef8\u53ef\u4ee5\u7e2e\u653e\u5730\u5716" 6 | }; 7 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-list-markers/leaflet-list-markers.min.css: -------------------------------------------------------------------------------- 1 | .leaflet-container .list-markers{background-color:hsla(0,0%,100%,.4);-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;box-shadow:0 1px 7px rgba(0,0,0,.65);color:#1978cf;float:left;margin-left:10px;margin-top:10px;min-height:26px;min-width:26px;position:relative;z-index:1000}.list-markers-x-y{overflow-y:scroll}.leaflet-control.list-markers .list-markers-toggle{display:none}.leaflet-container .list-markers-collapsed{overflow:hidden}.leaflet-control.list-markers.list-markers-collapsed .list-markers-toggle{display:block}.leaflet-control.list-markers .leaflet-control-layers-toggle{display:none}.leaflet-control.list-markers.list-markers-collapsed .leaflet-control-layers-toggle{display:block}.list-markers-ul{list-style:none;margin:0;padding:0}.list-markers-li{border-bottom:1px solid #666;clear:both;display:flex;justify-content:space-between;margin:0;padding:0}.list-markers-li img{float:left;height:20px;margin-right:4px;width:12px}.list-markers-li b{float:right}.list-markers-li span{float:left}.list-markers-li a{border-radius:4px;color:#666;display:block;float:left;font-size:14px;line-height:20px;margin:1px;overflow:hidden;padding:2px 4px;text-decoration:none}.list-markers-li a:hover{background-color:hsla(0,0%,100%,.8);color:#0078a8;text-decoration:none}.leaflet-control.list-markers .list-markers-ul{display:block}.leaflet-control.list-markers.list-markers-collapsed .list-markers-ul{display:none}.list-markers .list-markers-toggle{border-radius:4px;display:block;float:left;height:26px;width:26px} -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-providers/license.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2013 Leaflet Providers contributors 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 7 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 8 | 9 | _THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE._ -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/back.png -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/favicon.png -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/leaflet-search.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/leaflet-search.jpg -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/loader.gif -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/search-icon-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/search-icon-mobile.png -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/leaflet-plugins/leaflet-search/images/search-icon.png -------------------------------------------------------------------------------- /leaflet-plugins/leaflet-search/license.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2023 Stefano Cudini 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.fullscreen/Control.FullScreen.css: -------------------------------------------------------------------------------- 1 | .leaflet-fullscreen-icon { 2 | background-image: url('icon-fullscreen.svg'); 3 | background-size: 26px 52px; 4 | } 5 | 6 | .leaflet-fullscreen-icon.leaflet-fullscreen-on { 7 | background-position: 0 -26px; 8 | } 9 | 10 | .leaflet-touch .leaflet-fullscreen-icon { 11 | background-position: 2px 2px; 12 | } 13 | 14 | .leaflet-touch .leaflet-fullscreen-icon.leaflet-fullscreen-on { 15 | background-position: 2px -24px; 16 | } 17 | 18 | /* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */ 19 | /* stylelint-disable-next-line selector-no-vendor-prefix */ 20 | .leaflet-container:-webkit-full-screen, 21 | .leaflet-container:fullscreen { 22 | width: 100% !important; 23 | height: 100% !important; 24 | z-index: 99999; 25 | } 26 | 27 | .leaflet-pseudo-fullscreen { 28 | position: fixed !important; 29 | width: 100% !important; 30 | height: 100% !important; 31 | top: 0 !important; 32 | left: 0 !important; 33 | z-index: 99999; 34 | } 35 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.fullscreen/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2013, Bruno Bergot 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.fullscreen/icon-fullscreen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.markercluster-1.5.3/MIT-LICENCE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2012 David Leaver 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.markercluster-1.5.3/css/MarkerCluster.Default.css: -------------------------------------------------------------------------------- 1 | .marker-cluster-small { 2 | background-color: rgba(181, 226, 140, 0.6); 3 | } 4 | .marker-cluster-small div { 5 | background-color: rgba(110, 204, 57, 0.6); 6 | } 7 | 8 | .marker-cluster-medium { 9 | background-color: rgba(241, 211, 87, 0.6); 10 | } 11 | .marker-cluster-medium div { 12 | background-color: rgba(240, 194, 12, 0.6); 13 | } 14 | 15 | .marker-cluster-large { 16 | background-color: rgba(253, 156, 115, 0.6); 17 | } 18 | .marker-cluster-large div { 19 | background-color: rgba(241, 128, 23, 0.6); 20 | } 21 | 22 | /* IE 6-8 fallback colors */ 23 | .leaflet-oldie .marker-cluster-small { 24 | background-color: rgb(181, 226, 140); 25 | } 26 | .leaflet-oldie .marker-cluster-small div { 27 | background-color: rgb(110, 204, 57); 28 | } 29 | 30 | .leaflet-oldie .marker-cluster-medium { 31 | background-color: rgb(241, 211, 87); 32 | } 33 | .leaflet-oldie .marker-cluster-medium div { 34 | background-color: rgb(240, 194, 12); 35 | } 36 | 37 | .leaflet-oldie .marker-cluster-large { 38 | background-color: rgb(253, 156, 115); 39 | } 40 | .leaflet-oldie .marker-cluster-large div { 41 | background-color: rgb(241, 128, 23); 42 | } 43 | 44 | .marker-cluster { 45 | background-clip: padding-box; 46 | border-radius: 20px; 47 | } 48 | .marker-cluster div { 49 | width: 30px; 50 | height: 30px; 51 | margin-left: 5px; 52 | margin-top: 5px; 53 | 54 | text-align: center; 55 | border-radius: 15px; 56 | font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; 57 | } 58 | .marker-cluster span { 59 | line-height: 30px; 60 | } -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.markercluster-1.5.3/css/MarkerCluster.css: -------------------------------------------------------------------------------- 1 | .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { 2 | -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; 3 | -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; 4 | -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; 5 | transition: transform 0.3s ease-out, opacity 0.3s ease-in; 6 | } 7 | 8 | .leaflet-cluster-spider-leg { 9 | /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */ 10 | -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in; 11 | -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in; 12 | -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in; 13 | transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in; 14 | } 15 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.zoomhome/leaflet.zoomhome.css: -------------------------------------------------------------------------------- 1 | .leaflet-control-zoomhome a { 2 | font: bold 18px "Lucida Console",Monaco,monospace; 3 | } 4 | 5 | a.leaflet-control-zoomhome-in, 6 | a.leaflet-control-zoomhome-out { 7 | font-size: 1.5em; 8 | line-height: 26px; 9 | } 10 | -------------------------------------------------------------------------------- /leaflet-plugins/leaflet.zoomhome/leaflet.zoomhome.min.js: -------------------------------------------------------------------------------- 1 | /* leaflet.zoomhome 0.2.0 CC-BY-SA-3.0 2 | http://www.github.com/torfuspolymorphus/leaflet.zoomhome 3 | Torf (http://www.torf.cc) 4 | toms (https://gis.stackexchange.com/users/9847/toms) */ 5 | !function(){"use strict";L.Control.ZoomHome=L.Control.Zoom.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"-",zoomOutTitle:"Zoom out",zoomHomeIcon:"home",zoomHomeTitle:"Home",homeCoordinates:null,homeZoom:null},onAdd:function(a){var b="leaflet-control-zoomhome",c=L.DomUtil.create("div",b+" leaflet-bar"),d=this.options;null===d.homeCoordinates&&(d.homeCoordinates=a.getCenter()),null===d.homeZoom&&(d.homeZoom=a.getZoom()),this._zoomInButton=this._createButton(d.zoomInText,d.zoomInTitle,b+"-in",c,this._zoomIn.bind(this));var e='';return this._zoomHomeButton=this._createButton(e,d.zoomHomeTitle,b+"-home",c,this._zoomHome.bind(this)),this._zoomOutButton=this._createButton(d.zoomOutText,d.zoomOutTitle,b+"-out",c,this._zoomOut.bind(this)),this._updateDisabled(),a.on("zoomend zoomlevelschange",this._updateDisabled,this),c},setHomeBounds:function(a){void 0===a?a=this._map.getBounds():"function"!=typeof a.getCenter&&(a=L.latLngBounds(a)),this.options.homeZoom=this._map.getBoundsZoom(a),this.options.homeCoordinates=a.getCenter()},setHomeCoordinates:function(a){void 0===a&&(a=this._map.getCenter()),this.options.homeCoordinates=a},setHomeZoom:function(a){void 0===a&&(a=this._map.getZoom()),this.options.homeZoom=a},getHomeZoom:function(){return this.options.homeZoom},getHomeCoordinates:function(){return this.options.homeCoordinates},_zoomHome:function(a){this._map.setView(this.options.homeCoordinates,this.options.homeZoom)}}),L.Control.zoomHome=function(a){return new L.Control.ZoomHome(a)}}(); -------------------------------------------------------------------------------- /leaflet-plugins/turf/main.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | helpers: require('@turf/helpers'), 3 | booleanPointInPolygon: require('@turf/boolean-point-in-polygon').default, 4 | meta: require('@turf/meta') 5 | }; 6 | -------------------------------------------------------------------------------- /leaflet-plugins/turf/readme.txt: -------------------------------------------------------------------------------- 1 | npm install @turf/helpers 2 | npm install @turf/boolean-point-in-polygon 3 | npm install @turf/meta 4 | 5 | cat main.js 6 | module.exports = { 7 | helpers: require('@turf/helpers'), 8 | booleanPointInPolygon: require('@turf/boolean-point-in-polygon').default, 9 | meta: require('@turf/meta') 10 | }; 11 | 12 | ~/node_modules/.bin/browserify main.js -s turf > leafext-turf.js 13 | ~/node_modules/.bin/uglifyjs leafext-turf.js > leafext-turf.min.js 14 | -------------------------------------------------------------------------------- /php/fullscreen.php: -------------------------------------------------------------------------------- 1 | ' . "\n" . ''; 29 | $text = \JShrink\Minifier::minify( $text ); 30 | return "\n" . $text . "\n"; 31 | } 32 | 33 | function leafext_fullscreen_function( $atts, $content, $shortcode ) { 34 | $text = leafext_should_interpret_shortcode( $shortcode, $atts ); 35 | if ( $text !== '' ) { 36 | return $text; 37 | } else { 38 | leafext_enqueue_fullscreen(); 39 | $options = shortcode_atts( array( 'position' => 'topleft' ), $atts ); 40 | if ( ! leafext_check_position_control( $options['position'] ) ) { 41 | $options['position'] = 'topleft'; 42 | } 43 | return leafext_fullscreen_script( $options['position'] ); 44 | } 45 | } 46 | add_shortcode( 'fullscreen', 'leafext_fullscreen_function' ); 47 | -------------------------------------------------------------------------------- /php/hidemarkers.php: -------------------------------------------------------------------------------- 1 | ' . "\n" . ''; 41 | $text = \JShrink\Minifier::minify( $text ); 42 | return $text; 43 | } 44 | } 45 | add_shortcode( 'hidemarkers', 'leafext_hidemarkers_function' ); 46 | -------------------------------------------------------------------------------- /pict/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/cluster.png -------------------------------------------------------------------------------- /pict/clustergroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/clustergroup.png -------------------------------------------------------------------------------- /pict/colors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 30 | -------------------------------------------------------------------------------- /pict/elevation-lightblue.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-lime.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-magenta.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-purple.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-red.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-steelblue.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pict/elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/elevation.png -------------------------------------------------------------------------------- /pict/filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pict/fullscreenoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/fullscreenoff.png -------------------------------------------------------------------------------- /pict/fullscreenon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/fullscreenon.png -------------------------------------------------------------------------------- /pict/gesture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/gesture.png -------------------------------------------------------------------------------- /pict/grouping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/grouping.png -------------------------------------------------------------------------------- /pict/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/home.png -------------------------------------------------------------------------------- /pict/hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/hover.png -------------------------------------------------------------------------------- /pict/layerswitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/layerswitch.png -------------------------------------------------------------------------------- /pict/marker-icon-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/marker-icon-red.png -------------------------------------------------------------------------------- /pict/marker_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/marker_0.png -------------------------------------------------------------------------------- /pict/marker_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/marker_1.png -------------------------------------------------------------------------------- /pict/marker_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/marker_values.png -------------------------------------------------------------------------------- /pict/multielevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/multielevation.png -------------------------------------------------------------------------------- /pict/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/off.png -------------------------------------------------------------------------------- /pict/off_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/off_speed.png -------------------------------------------------------------------------------- /pict/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/on.png -------------------------------------------------------------------------------- /pict/on_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/on_speed.png -------------------------------------------------------------------------------- /pict/parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/parent.png -------------------------------------------------------------------------------- /pict/parentall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/parentall.png -------------------------------------------------------------------------------- /pict/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/ruler.png -------------------------------------------------------------------------------- /pict/switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/switcher.png -------------------------------------------------------------------------------- /pict/tooltip_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/tooltip_0.png -------------------------------------------------------------------------------- /pict/tooltip_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/tooltip_1.png -------------------------------------------------------------------------------- /pict/tooltip_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/tooltip_values.png -------------------------------------------------------------------------------- /pict/unfilled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pict/vert-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /pict/yachse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hupe13/extensions-leaflet-map-github/0300d0b08766368e7a4867681a16c1c71db1a9c8/pict/yachse.png -------------------------------------------------------------------------------- /pkg/readme.txt: -------------------------------------------------------------------------------- 1 | https://github.com/tedious/JShrink 2 | https://prismjs.com/index.html 3 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | === Extensions for Leaflet Map Github Version === 2 | 3 | Contributors: hupe13 4 | Tags: leaflet, gpx, geojson, hover, marker 5 | Tested up to: 6.8 6 | Stable tag: 4.5-250604 7 | Requires at least: 5.5.3 8 | Requires PHP: 7.4 9 | License: GPLv2 or later 10 | 11 | Extends the WordPress Plugin Leaflet Map with Leaflet Plugins and other functions. 12 | 13 | == Description == 14 | 15 | Extends the WordPress Plugin Leaflet Map with Leaflet Plugins and other functions. 16 | 17 | This is the Plugins Github Version. 18 | 19 | == Installation == 20 | 21 | Releases are the same as the WordPress versions. If you want test the Github version, download from [tags](https://github.com/hupe13/extensions-leaflet-map-github/tags). 22 | 23 | - Download the ZIP file. 24 | - Sign in to your WordPress installation. 25 | - In the left-hand menu, select Plugins > Add New. 26 | - Select Upload Plugin. 27 | - Select Choose File. 28 | - Locate and select the plugin .zip file on your local computer and then select Open. 29 | - Select Install Now. 30 | - Deactivate the WordPress version Extensions for Leaflet Map. 31 | - Activate the Github version Extensions for Leaflet Map Github. 32 | 33 | You will get updates with the [Plugin Update Checker](https://github.com/YahnisElsts/plugin-update-checker). 34 | Maybe you need a Github token. 35 | 36 | == Changelog == 37 | 38 | Many thanks to everyone who found errors and provided ideas for new functions. 39 | 40 | * new togeojson.js library fixes heart rate profile of track segments (elevation). 41 | -------------------------------------------------------------------------------- /uninstall.php: -------------------------------------------------------------------------------- 1 | get_results( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE 'leafext_%' " ); 19 | foreach ( $option_names as $key => $value ) { 20 | delete_option( $value->option_name ); 21 | // for site options in Multisite 22 | delete_site_option( $value->option_name ); 23 | } 24 | } 25 | --------------------------------------------------------------------------------