Version Description
- 2022-03-03 =
- Fixed issue where XML source would not be updated when deleting a marker
- Improved cloud based autocomplete system
- Updated de_DE translation file due to missing translations
- Updated es_ES translation file (Thanks to Alejandro Cataln)
- Updated most language file sources
Download this release
Release Info
Developer | DylanAuty |
Plugin | WP Google Maps |
Version | 8.1.21 |
Comparing to | |
See all releases |
Code changes from version 8.1.20 to 8.1.21
- css/wp-google-maps-admin.css +1 -1
- includes/class.rest-api.php +9 -6
- js/v8/map-edit-page/map-edit-page.js +20 -2
- js/v8/wp-google-maps.combined.js +1 -1
- js/v8/wp-google-maps.min.js +1 -1
- languages/wp-google-maps-bg_BG.mo +0 -0
- languages/wp-google-maps-bg_BG.po +4818 -4116
- languages/wp-google-maps-ca.po +122 -384
- languages/wp-google-maps-da_DK.mo +0 -0
- languages/wp-google-maps-da_DK.po +221 -357
css/wp-google-maps-admin.css
CHANGED
@@ -2996,7 +2996,7 @@ button.wpgmza-retina {
|
|
2996 |
|
2997 |
div#wpgmza_autoc_disabled {
|
2998 |
position: absolute;
|
2999 |
-
bottom:
|
3000 |
font-size: 0.8em;
|
3001 |
right: 0;
|
3002 |
width: 100%;
|
2996 |
|
2997 |
div#wpgmza_autoc_disabled {
|
2998 |
position: absolute;
|
2999 |
+
bottom: 15px;
|
3000 |
font-size: 0.8em;
|
3001 |
right: 0;
|
3002 |
width: 100%;
|
includes/class.rest-api.php
CHANGED
@@ -864,15 +864,18 @@ class RestAPI extends Factory
|
|
864 |
else if(preg_match('/markers\/(\d+)/', $route, $m))
|
865 |
$id = $m[1];
|
866 |
|
867 |
-
if($id)
|
868 |
-
{
|
869 |
$marker = Marker::createInstance($id);
|
|
|
|
|
|
|
870 |
$marker->trash();
|
871 |
-
|
872 |
-
|
|
|
|
|
873 |
Marker::bulk_trash($request['ids']);
|
874 |
-
else
|
875 |
-
{
|
876 |
http_response_code(400);
|
877 |
return (object)array(
|
878 |
'message' => "No ID(s) specified",
|
864 |
else if(preg_match('/markers\/(\d+)/', $route, $m))
|
865 |
$id = $m[1];
|
866 |
|
867 |
+
if($id){
|
|
|
868 |
$marker = Marker::createInstance($id);
|
869 |
+
|
870 |
+
$mapId = $marker->map_id;
|
871 |
+
|
872 |
$marker->trash();
|
873 |
+
|
874 |
+
$map = Map::createInstance($mapId);
|
875 |
+
$map->updateXMLFile();
|
876 |
+
} else if(isset($request['ids'])) {
|
877 |
Marker::bulk_trash($request['ids']);
|
878 |
+
} else{
|
|
|
879 |
http_response_code(400);
|
880 |
return (object)array(
|
881 |
'message' => "No ID(s) specified",
|
js/v8/map-edit-page/map-edit-page.js
CHANGED
@@ -179,11 +179,29 @@ jQuery(function($) {
|
|
179 |
if(ajaxRequest !== false){
|
180 |
ajaxRequest.abort();
|
181 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
var wpgmza_api_url = '';
|
183 |
if (!wpgmza_apikey) {
|
184 |
-
wpgmza_api_url = "https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+
|
185 |
} else {
|
186 |
-
wpgmza_api_url = "https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+
|
|
|
|
|
|
|
|
|
187 |
}
|
188 |
|
189 |
// set a timer of how fast the person types in seconds to only continue with this if it runs out
|
179 |
if(ajaxRequest !== false){
|
180 |
ajaxRequest.abort();
|
181 |
}
|
182 |
+
|
183 |
+
var domain = window.location.hostname;
|
184 |
+
if(domain === 'localhost'){
|
185 |
+
try{
|
186 |
+
var paths = window.location.pathname.match(/\/(.*?)\//);
|
187 |
+
if(paths && paths.length >= 2 && paths[1]){
|
188 |
+
var path = paths[1];
|
189 |
+
domain += "-" + path
|
190 |
+
}
|
191 |
+
} catch (ex){
|
192 |
+
/* Leave it alone */
|
193 |
+
}
|
194 |
+
}
|
195 |
+
|
196 |
var wpgmza_api_url = '';
|
197 |
if (!wpgmza_apikey) {
|
198 |
+
wpgmza_api_url = "https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+domain+"&hash="+WPGMZA_localized_data.siteHash
|
199 |
} else {
|
200 |
+
wpgmza_api_url = "https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+domain+"&hash="+WPGMZA_localized_data.siteHash+"&k="+wpgmza_apikey
|
201 |
+
}
|
202 |
+
|
203 |
+
if(WPGMZA && WPGMZA.settings && WPGMZA.settings.engine){
|
204 |
+
wpgmza_api_url += "&engine=" + WPGMZA.settings.engine;
|
205 |
}
|
206 |
|
207 |
// set a timer of how fast the person types in seconds to only continue with this if it runs out
|
js/v8/wp-google-maps.combined.js
CHANGED
@@ -4519,7 +4519,7 @@ jQuery(function($) {
|
|
4519 |
filter.offset = offset;
|
4520 |
filter.limit = limit;
|
4521 |
|
4522 |
-
data =
|
4523 |
filter: JSON.stringify(filter)
|
4524 |
});
|
4525 |
|
4519 |
filter.offset = offset;
|
4520 |
filter.limit = limit;
|
4521 |
|
4522 |
+
data = self.getRESTParameters({
|
4523 |
filter: JSON.stringify(filter)
|
4524 |
});
|
4525 |
|
js/v8/wp-google-maps.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery(function($){var core={MARKER_PULL_DATABASE:"0",MARKER_PULL_XML:"1",PAGE_MAP_LIST:"map-list",PAGE_MAP_EDIT:"map-edit",PAGE_SETTINGS:"map-settings",PAGE_SUPPORT:"map-support",PAGE_CATEGORIES:"categories",PAGE_ADVANCED:"advanced",PAGE_CUSTOM_FIELDS:"custom-fields",maps:[],events:null,settings:null,restAPI:null,localized_strings:null,loadingHTML:'<div class="wpgmza-preloader"><div class="wpgmza-loader">...</div></div>',preloaderHTML:"<div class='wpgmza-preloader'><div></div><div></div><div></div><div></div></div>",getCurrentPage:function(){switch(WPGMZA.getQueryParamValue("page")){case"wp-google-maps-menu":return window.location.href.match(/action=edit/)&&window.location.href.match(/map_id=\d+/)?WPGMZA.PAGE_MAP_EDIT:WPGMZA.PAGE_MAP_LIST;case"wp-google-maps-menu-settings":return WPGMZA.PAGE_SETTINGS;case"wp-google-maps-menu-support":return WPGMZA.PAGE_SUPPORT;case"wp-google-maps-menu-categories":return WPGMZA.PAGE_CATEGORIES;case"wp-google-maps-menu-advanced":return WPGMZA.PAGE_ADVANCED;case"wp-google-maps-menu-custom-fields":return WPGMZA.PAGE_CUSTOM_FIELDS;default:return null}},getScrollAnimationOffset:function(){return(WPGMZA.settings.scroll_animation_offset||0)+($("#wpadminbar").height()||0)},getScrollAnimationDuration:function(){return WPGMZA.settings.scroll_animation_milliseconds?WPGMZA.settings.scroll_animation_milliseconds:500},animateScroll:function(element,milliseconds){var offset=WPGMZA.getScrollAnimationOffset();milliseconds=milliseconds||WPGMZA.getScrollAnimationDuration(),$("html, body").animate({scrollTop:$(element).offset().top-offset},milliseconds)},extend:function(child,parent){var constructor=child;child.prototype=Object.create(parent.prototype),child.prototype.constructor=constructor},guid:function(){var d=(new Date).getTime();return"undefined"!=typeof performance&&"function"==typeof performance.now&&(d+=performance.now()),"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(c){var r=(d+16*Math.random())%16|0;return d=Math.floor(d/16),("x"===c?r:3&r|8).toString(16)})},hexOpacityToRGBA:function(colour,opacity){var hex=parseInt(colour.replace(/^#/,""),16);return[(16711680&hex)>>16,(65280&hex)>>8,255&hex,parseFloat(opacity)]},hexOpacityToString:function(colour,opacity){var arr=WPGMZA.hexOpacityToRGBA(colour,opacity);return"rgba("+arr[0]+", "+arr[1]+", "+arr[2]+", "+arr[3]+")"},hexToRgba:function(hex){var c;return/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)?(3==(c=hex.substring(1).split("")).length&&(c=[c[0],c[0],c[1],c[1],c[2],c[2]]),{r:(c="0x"+c.join(""))>>16&255,g:c>>8&255,b:255&c,a:1}):0},rgbaToString:function(rgba){return"rgba("+rgba.r+", "+rgba.g+", "+rgba.b+", "+rgba.a+")"},latLngRegexp:/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,isLatLngString:function(str){if("string"!=typeof str)return null;str.match(/^\(.+\)$/)&&(str=str.replace(/^\(|\)$/,""));var m=str.match(WPGMZA.latLngRegexp);return m?new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])}):null},stringToLatLng:function(str){var result=WPGMZA.isLatLngString(str);if(!result)throw new Error("Not a valid latLng");return result},isHexColorString:function(str){return"string"==typeof str&&!!str.match(/#[0-9A-F]{6}/i)},imageDimensionsCache:{},getImageDimensions:function(src,callback){if(WPGMZA.imageDimensionsCache[src])callback(WPGMZA.imageDimensionsCache[src]);else{var img=document.createElement("img");img.onload=function(event){var result={width:img.width,height:img.height};WPGMZA.imageDimensionsCache[src]=result,callback(result)},img.src=src}},decodeEntities:function(input){return input.replace(/&(nbsp|amp|quot|lt|gt);/g,function(m,e){return m[e]}).replace(/&#(\d+);/gi,function(m,e){return String.fromCharCode(parseInt(e,10))})},isDeveloperMode:function(){return this.settings.developer_mode||window.Cookies&&window.Cookies.get("wpgmza-developer-mode")},isProVersion:function(){return"1"==this._isProVersion},openMediaDialog:function(callback){var file_frame;if(file_frame)return file_frame.uploader.uploader.param("post_id",set_to_post_id),void file_frame.open();(file_frame=wp.media.frames.file_frame=wp.media({title:"Select a image to upload",button:{text:"Use this image"},multiple:!1})).on("select",function(){attachment=file_frame.state().get("selection").first().toJSON(),callback(attachment.id,attachment.url)}),file_frame.open()},getCurrentPosition:function(callback,error,watch){var nativeFunction="getCurrentPosition";if(WPGMZA.userLocationDenied)error&&error({code:1,message:"Location unavailable"});else if(watch&&(nativeFunction="watchPosition"),navigator.geolocation){var options={enableHighAccuracy:!0};navigator.geolocation[nativeFunction]?navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){options.enableHighAccuracy=!1,navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){console.warn(err.code,err.message),1==err.code&&(WPGMZA.userLocationDenied=!0),error&&error(err)},options)},options):console.warn(nativeFunction+" is not available")}else console.warn("No geolocation available on this device")},watchPosition:function(callback,error){return WPGMZA.getCurrentPosition(callback,error,!0)},runCatchableTask:function(callback,friendlyErrorContainer){if(WPGMZA.isDeveloperMode())callback();else try{callback()}catch(e){var friendlyError=new WPGMZA.FriendlyError(e);$(friendlyErrorContainer).html(""),$(friendlyErrorContainer).append(friendlyError.element),$(friendlyErrorContainer).show()}},capitalizeWords:function(string){return(string+"").replace(/^(.)|\s+(.)/g,function(m){return m.toUpperCase()})},pluralize:function(string){return WPGMZA.singularize(string)+"s"},singularize:function(string){return string.replace(/s$/,"")},assertInstanceOf:function(instance,instanceName){var engine,fullInstanceName,pro=WPGMZA.isProVersion()?"Pro":"";switch(WPGMZA.settings.engine){case"open-layers":engine="OL";break;default:engine="Google"}if("OLFeature"!=(fullInstanceName=WPGMZA[engine+pro+instanceName]&&engine+instanceName!="OLFeature"?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]&&WPGMZA[engine+instanceName].prototype?engine+instanceName:instanceName)&&!(instance instanceof WPGMZA[fullInstanceName]))throw new Error("Object must be an instance of "+fullInstanceName+" (did you call a constructor directly, rather than createInstance?)")},getMapByID:function(id){for(var i=0;i<WPGMZA.maps.length;i++)if(WPGMZA.maps[i].id==id)return WPGMZA.maps[i];return null},isGoogleAutocompleteSupported:function(){return!!window.google&&(!!google.maps&&(!!google.maps.places&&(!!google.maps.places.Autocomplete&&(!WPGMZA.CloudAPI||!WPGMZA.CloudAPI.isBeingUsed))))},googleAPIStatus:window.wpgmza_google_api_status,isSafari:function(){var ua=navigator.userAgent.toLowerCase();return ua.match(/safari/i)&&!ua.match(/chrome/i)},isTouchDevice:function(){return"ontouchstart"in window},isDeviceiOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform)},isModernComponentStyleAllowed:function(){return!WPGMZA.settings.user_interface_style||"legacy"==WPGMZA.settings.user_interface_style||"modern"==WPGMZA.settings.user_interface_style},isElementInView:function(element){var pageTop=$(window).scrollTop(),pageBottom=pageTop+$(window).height(),elementTop=$(element).offset().top,elementBottom=elementTop+$(element).height();return elementTop<pageTop&&pageBottom<elementBottom||(pageTop<=elementTop&&elementTop<=pageBottom||pageTop<=elementBottom&&elementBottom<=pageBottom)},isFullScreen:function(){return wpgmzaisFullScreen},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?decodeURIComponent(m[1]):null},notification:function(text,time){switch(arguments.length){case 0:text="",time=4e3;break;case 1:time=4e3}var html='<div class="wpgmza-popup-notification">'+text+"</div>";jQuery("body").append(html),setTimeout(function(){jQuery("body").find(".wpgmza-popup-notification").remove()},time)},initMaps:function(){$(document.body).find(".wpgmza_map:not(.wpgmza-initialized)").each(function(index,el){if(el.wpgmzaMap)console.warn("Element missing class wpgmza-initialized but does have wpgmzaMap property. No new instance will be created");else try{el.wpgmzaMap=WPGMZA.Map.createInstance(el)}catch(ex){console.warn("Map initalization: "+ex)}}),WPGMZA.Map.nextInitTimeoutID=setTimeout(WPGMZA.initMaps,3e3)},onScroll:function(){$(".wpgmza_map").each(function(index,el){var isInView=WPGMZA.isElementInView(el);el.wpgmzaScrollIntoViewTriggerFlag?isInView||(el.wpgmzaScrollIntoViewTriggerFlag=!1):isInView&&($(el).trigger("mapscrolledintoview.wpgmza"),el.wpgmzaScrollIntoViewTriggerFlag=!0)})}},wpgmzaisFullScreen=!1;for(var key in[]){console.warn("It appears that the built in JavaScript Array has been extended, this can create issues with for ... in loops, which may cause failure.");break}for(var key in window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core,window.uc&&window.uc.reloadOnOptIn&&(window.uc.reloadOnOptIn("S1pcEj_jZX"),window.uc.reloadOnOptOut("S1pcEj_jZX")),WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,$(document).on("fullscreenchange",function(){wpgmzaisFullScreen=!!document.fullscreenElement}),$("body").on("click","#wpgmzaCloseChat",function(e){e.preventDefault(),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_hide_chat",nonce:WPGMZA_localized_data.ajaxnonce}}),$(".wpgmza-chat-help").remove()}),$(window).on("scroll",WPGMZA.onScroll),$(document.body).on("click","button.wpgmza-api-consent",function(event){Cookies.set("wpgmza-api-consent-given",!0),window.location.reload()}),$(document.body).on("keydown",function(event){event.altKey&&(WPGMZA.altKeyDown=!0)}),$(document.body).on("keyup",function(event){event.altKey||(WPGMZA.altKeyDown=!1)}),$(document.body).on("preinit.wpgmza",function(){$(window).trigger("ready.wpgmza"),$("script[src*='wp-google-maps.combined.js'], script[src*='wp-google-maps-pro.combined.js']").length&&console.warn("Minified script is out of date, using combined script instead.");var elements=$("script[src]").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});1<elements.length&&console.warn("Multiple jQuery versions detected: ",elements);for(var key in[]){console.warn("The Array object has been extended incorrectly by your theme or another plugin. This can cause issues with functionality.");break}if("https:"!=window.location.protocol){var warning='<div class="notice notice-warning"><p>'+WPGMZA.localized_strings.unsecure_geolocation+"</p></div>";$(".wpgmza-geolocation-setting").first().after($(warning))}WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code&&jQuery(".wpgmza-gdpr-compliance").length<=0&&$("button.wpgmza-api-consent").on("click",function(event){Cookies.set("wpgmza-api-consent-given",!0),window.location.reload()})}),function($){$(function(){WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),WPGMZA.CloudAPI&&(WPGMZA.cloudAPI=WPGMZA.CloudAPI.createInstance()),$(document.body).trigger("preinit.wpgmza"),WPGMZA.initMaps(),WPGMZA.onScroll()})}($)}),jQuery(function($){WPGMZA.Compatibility=function(){this.preventDocumentWriteGoogleMapsAPI()},WPGMZA.Compatibility.prototype.preventDocumentWriteGoogleMapsAPI=function(){var old=document.write;document.write=function(content){content.match&&content.match(/maps\.google/)||old.call(document,content)}},WPGMZA.compatiblityModule=new WPGMZA.Compatibility}),function(root,factory){"object"==typeof exports?module.exports=factory(root):"function"==typeof define&&define.amd?define([],factory.bind(root,root)):factory(root)}("undefined"!=typeof global?global:this,function(root){if(root.CSS&&root.CSS.escape)return root.CSS.escape;function cssEscape(value){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var codeUnit,string=String(value),length=string.length,index=-1,result="",firstCodeUnit=string.charCodeAt(0);++index<length;)0!=(codeUnit=string.charCodeAt(index))?result+=1<=codeUnit&&codeUnit<=31||127==codeUnit||0==index&&48<=codeUnit&&codeUnit<=57||1==index&&48<=codeUnit&&codeUnit<=57&&45==firstCodeUnit?"\\"+codeUnit.toString(16)+" ":(0!=index||1!=length||45!=codeUnit)&&(128<=codeUnit||45==codeUnit||95==codeUnit||48<=codeUnit&&codeUnit<=57||65<=codeUnit&&codeUnit<=90||97<=codeUnit&&codeUnit<=122)?string.charAt(index):"\\"+string.charAt(index):result+="�";return result}return root.CSS||(root.CSS={}),root.CSS.escape=cssEscape}),jQuery(function($){Math.PI;function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Distance={MILES:!0,KILOMETERS:!1,MILES_PER_KILOMETER:.621371,KILOMETERS_PER_MILE:1.60934,uiToMeters:function(uiDistance){return parseFloat(uiDistance)/(WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?WPGMZA.Distance.MILES_PER_KILOMETER:1)*1e3},uiToKilometers:function(uiDistance){return.001*WPGMZA.Distance.uiToMeters(uiDistance)},uiToMiles:function(uiDistance){return WPGMZA.Distance.uiToKilometers(uiDistance)*WPGMZA.Distance.MILES_PER_KILOMETER},kilometersToUI:function(km){return WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?km*WPGMZA.Distance.MILES_PER_KILOMETER:km},between:function(a,b){if(!(a instanceof WPGMZA.LatLng||"lat"in a&&"lng"in a))throw new Error("First argument must be an instance of WPGMZA.LatLng or a literal");if(!(b instanceof WPGMZA.LatLng||"lat"in b&&"lng"in b))throw new Error("Second argument must be an instance of WPGMZA.LatLng or a literal");if(a===b)return 0;var lat1=a.lat,lon1=a.lng,lat2=b.lat,lon2=b.lng,dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1);a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}}),jQuery(function($){WPGMZA.EliasFano=function(){if(!WPGMZA.EliasFano.isSupported)throw new Error("Elias Fano encoding is not supported on browsers without Uint8Array");WPGMZA.EliasFano.decodingTablesInitialised||WPGMZA.EliasFano.createDecodingTable()},WPGMZA.EliasFano.isSupported="Uint8Array"in window,WPGMZA.EliasFano.decodingTableHighBits=[],WPGMZA.EliasFano.decodingTableDocIDNumber=null,WPGMZA.EliasFano.decodingTableHighBitsCarryover=null,WPGMZA.EliasFano.createDecodingTable=function(){WPGMZA.EliasFano.decodingTableDocIDNumber=new Uint8Array(256),WPGMZA.EliasFano.decodingTableHighBitsCarryover=new Uint8Array(256);for(var decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,i=0;i<256;i++){var zeroCount=0;decodingTableHighBits[i]=[];for(var j=7;0<=j;j--)zeroCount=0<(i&1<<j)?(decodingTableHighBits[i][decodingTableDocIDNumber[i]]=zeroCount,decodingTableDocIDNumber[i]++,0):(zeroCount+1)%255;decodingTableHighBitsCarryover[i]=zeroCount}WPGMZA.EliasFano.decodingTablesInitialised=!0},WPGMZA.EliasFano.prototype.encode=function(list){var lastDocID=0,buffer1=0,bufferLength1=0,buffer2=0,bufferLength2=0;if(0==list.length)return result;function toByte(n){return 255&n}var compressedBufferPointer1=0,compressedBufferPointer2=0,averageDelta=list[list.length-1]/list.length,averageDeltaLog=Math.log2(averageDelta),lowBitsLength=Math.floor(averageDeltaLog),lowBitsMask=(1<<lowBitsLength)-1,prev=null,maxCompressedSize=Math.floor((2+Math.ceil(Math.log2(averageDelta)))*list.length/8)+6,compressedBuffer=new Uint8Array(maxCompressedSize);lowBitsLength<0&&(lowBitsLength=0),compressedBufferPointer2=Math.floor(lowBitsLength*list.length/8+6),compressedBuffer[compressedBufferPointer1++]=toByte(list.length),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>8),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>16),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>24),compressedBuffer[compressedBufferPointer1++]=toByte(lowBitsLength),list.forEach(function(docID){var docIDDelta=docID-lastDocID-1;if(!$.isNumeric(docID))throw new Error("Value is not numeric");if(docID=parseInt(docID),null!==prev&&docID<=prev)throw new Error("Elias Fano encoding can only be used on a sorted, ascending list of unique integers.");for(prev=docID,buffer1<<=lowBitsLength,buffer1|=docIDDelta&lowBitsMask,bufferLength1+=lowBitsLength;7<bufferLength1;)bufferLength1-=8,compressedBuffer[compressedBufferPointer1++]=toByte(buffer1>>bufferLength1);var unaryCodeLength=1+(docIDDelta>>lowBitsLength);for(buffer2<<=unaryCodeLength,buffer2|=1,bufferLength2+=unaryCodeLength;7<bufferLength2;)bufferLength2-=8,compressedBuffer[compressedBufferPointer2++]=toByte(buffer2>>bufferLength2);lastDocID=docID}),0<bufferLength1&&(compressedBuffer[compressedBufferPointer1++]=toByte(buffer1<<8-bufferLength1)),0<bufferLength2&&(compressedBuffer[compressedBufferPointer2++]=toByte(buffer2<<8-bufferLength2));var result=new Uint8Array(compressedBuffer);return result.pointer=compressedBufferPointer2,result},WPGMZA.EliasFano.prototype.decode=function(compressedBuffer){var resultPointer=0,list=[],decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,lowBitsPointer=0,lastDocID=0,docID=0,docIDNumber=0,listCount=compressedBuffer[lowBitsPointer++];listCount|=compressedBuffer[lowBitsPointer++]<<8,listCount|=compressedBuffer[lowBitsPointer++]<<16,listCount|=compressedBuffer[lowBitsPointer++]<<24;var highBitsPointer,lowBitsLength=compressedBuffer[lowBitsPointer++],lowBitsCount=0,lowBits=0,cb=1;for(highBitsPointer=Math.floor(lowBitsLength*listCount/8+6);highBitsPointer<compressedBuffer.pointer;highBitsPointer++){docID+=decodingTableHighBitsCarryover[cb],docIDNumber=decodingTableDocIDNumber[cb=compressedBuffer[highBitsPointer]];for(var i=0;i<docIDNumber;i++){for(docID<<=lowBitsCount,docID|=lowBits&(1<<lowBitsCount)-1;lowBitsCount<lowBitsLength;)docID<<=8,docID|=lowBits=compressedBuffer[lowBitsPointer++],lowBitsCount+=8;docID>>=lowBitsCount-=lowBitsLength,docID+=(decodingTableHighBits[cb][i]<<lowBitsLength)+lastDocID+1,lastDocID=list[resultPointer++]=docID,docID=0}}return list}}),jQuery(function($){WPGMZA.EventDispatcher=function(){WPGMZA.assertInstanceOf(this,"EventDispatcher"),this._listenersByType={}},WPGMZA.EventDispatcher.prototype.addEventListener=function(type,listener,thisObject,useCapture){var types=type.split(/\s+/);if(1<types.length)for(var i=0;i<types.length;i++)this.addEventListener(types[i],listener,thisObject,useCapture);else{if(!(listener instanceof Function))throw new Error("Listener must be a function");var target;target=this._listenersByType.hasOwnProperty(type)?this._listenersByType[type]:this._listenersByType[type]=[];var obj={listener:listener,thisObject:thisObject||this,useCapture:!!useCapture};target.push(obj)}},WPGMZA.EventDispatcher.prototype.on=WPGMZA.EventDispatcher.prototype.addEventListener,WPGMZA.EventDispatcher.prototype.removeEventListener=function(type,listener,thisObject,useCapture){var arr,obj;if(arr=this._listenersByType[type]){thisObject=thisObject||this,useCapture=!!useCapture;for(var i=0;i<arr.length;i++)if(obj=arr[i],(1==arguments.length||obj.listener==listener)&&obj.thisObject==thisObject&&obj.useCapture==useCapture)return void arr.splice(i,1)}},WPGMZA.EventDispatcher.prototype.off=WPGMZA.EventDispatcher.prototype.removeEventListener,WPGMZA.EventDispatcher.prototype.hasEventListener=function(type){return!!_listenersByType[type]},WPGMZA.EventDispatcher.prototype.dispatchEvent=function(event){if(!(event instanceof WPGMZA.Event))if("string"==typeof event)event=new WPGMZA.Event(event);else{var src=event;for(var name in event=new WPGMZA.Event,src)event[name]=src[name]}for(var path=[],obj=(event.target=this).parent;null!=obj;obj=obj.parent)path.unshift(obj);event.phase=WPGMZA.Event.CAPTURING_PHASE;for(var i=0;i<path.length&&!event._cancelled;i++)path[i]._triggerListeners(event);if(!event._cancelled){for(event.phase=WPGMZA.Event.AT_TARGET,this._triggerListeners(event),event.phase=WPGMZA.Event.BUBBLING_PHASE,i=path.length-1;0<=i&&!event._cancelled;i--)path[i]._triggerListeners(event);var topMostElement=this.element;for(obj=this.parent;null!=obj;obj=obj.parent)obj.element&&(topMostElement=obj.element);if(topMostElement){var customEvent={};for(var key in event){var value=event[key];"type"==key&&(value+=".wpgmza"),customEvent[key]=value}$(topMostElement).trigger(customEvent)}}},WPGMZA.EventDispatcher.prototype.trigger=WPGMZA.EventDispatcher.prototype.dispatchEvent,WPGMZA.EventDispatcher.prototype._triggerListeners=function(event){var arr,obj;if(arr=this._listenersByType[event.type])for(var i=0;i<arr.length;i++)obj=arr[i],event.phase==WPGMZA.Event.CAPTURING_PHASE&&!obj.useCapture||obj.listener.call(arr[i].thisObject,event)},WPGMZA.events=new WPGMZA.EventDispatcher}),jQuery(function($){WPGMZA.AddressInput=function(element,map){if(!(element instanceof HTMLInputElement))throw new Error("Element is not an instance of HTMLInputElement");var json;this.element=element;var options={fields:["name","formatted_address"],types:["geocode","establishment"]};(json=$(element).attr("data-autocomplete-options"))&&(options=$.extend(options,JSON.parse(json))),map&&map.settings.wpgmza_store_locator_restrict&&(options.country=map.settings.wpgmza_store_locator_restrict),WPGMZA.isGoogleAutocompleteSupported()?"wpgmza_add_address_map_editor"!=this.id&&WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey&&(element.googleAutoComplete=new google.maps.places.Autocomplete(element,options),options.country&&element.googleAutoComplete.setComponentRestrictions({country:options.country})):WPGMZA.CloudAPI&&WPGMZA.CloudAPI.isBeingUsed&&(element.cloudAutoComplete=new WPGMZA.CloudAutocomplete(element,options))},WPGMZA.extend(WPGMZA.AddressInput,WPGMZA.EventDispatcher),WPGMZA.AddressInput.createInstance=function(element,map){return new WPGMZA.AddressInput(element,map)}}),jQuery(function($){WPGMZA.DrawingManager=function(map){WPGMZA.assertInstanceOf(this,"DrawingManager"),WPGMZA.EventDispatcher.call(this),this.map=map,this.mode=WPGMZA.DrawingManager.MODE_NONE},WPGMZA.DrawingManager.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.DrawingManager.prototype.constructor=WPGMZA.DrawingManager,WPGMZA.DrawingManager.MODE_NONE=null,WPGMZA.DrawingManager.MODE_MARKER="marker",WPGMZA.DrawingManager.MODE_POLYGON="polygon",WPGMZA.DrawingManager.MODE_POLYLINE="polyline",WPGMZA.DrawingManager.MODE_CIRCLE="circle",WPGMZA.DrawingManager.MODE_RECTANGLE="rectangle",WPGMZA.DrawingManager.MODE_HEATMAP="heatmap",WPGMZA.DrawingManager.getConstructor=function(){switch(WPGMZA.settings.engine){case"google-maps":return WPGMZA.GoogleDrawingManager;default:return WPGMZA.OLDrawingManager}},WPGMZA.DrawingManager.createInstance=function(map){return new(WPGMZA.DrawingManager.getConstructor())(map)},WPGMZA.DrawingManager.prototype.setDrawingMode=function(mode){this.mode=mode,this.trigger("drawingmodechanged")}}),jQuery(function($){WPGMZA.Event=function(options){if("string"==typeof options&&(this.type=options),this.bubbles=!0,this.cancelable=!0,this.phase=WPGMZA.Event.PHASE_CAPTURE,this.target=null,this._cancelled=!1,"object"==typeof options)for(var name in options)this[name]=options[name]},WPGMZA.Event.CAPTURING_PHASE=0,WPGMZA.Event.AT_TARGET=1,WPGMZA.Event.BUBBLING_PHASE=2,WPGMZA.Event.prototype.stopPropagation=function(){this._cancelled=!0}}),jQuery(function($){WPGMZA.FancyControls={formatToggleSwitch:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-round-flat"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)},formatToggleButton:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-yes-no"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(label).attr("data-on",WPGMZA.localized_strings.yes),$(label).attr("data-off",WPGMZA.localized_strings.no),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)}},$(".wpgmza-fancy-toggle-switch").each(function(index,el){WPGMZA.FancyControls.formatToggleSwitch(el)}),$(".wpgmza-fancy-toggle-button").each(function(index,el){WPGMZA.FancyControls.formatToggleButton(el)})}),jQuery(function($){WPGMZA.Feature=function(options){for(var key in WPGMZA.assertInstanceOf(this,"Feature"),WPGMZA.EventDispatcher.call(this),this.id=-1,options)this[key]=options[key]},WPGMZA.extend(WPGMZA.Feature,WPGMZA.EventDispatcher),WPGMZA.MapObject=WPGMZA.Feature,WPGMZA.Feature.prototype.parseGeometry=function(subject){if("string"==typeof subject&&subject.match(/^\[/))try{subject=JSON.parse(subject)}catch(e){}if("object"==typeof subject){for(var arr=subject,i=0;i<arr.length;i++)arr[i].lat=parseFloat(arr[i].lat),arr[i].lng=parseFloat(arr[i].lng);return arr}if("string"!=typeof subject)throw new Error("Invalid geometry");var pairs,coords,results=[];pairs=subject.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.Feature.prototype.setOptions=function(options){for(var key in options)this[key]=options[key];this.updateNativeFeature()},WPGMZA.Feature.prototype.setEditable=function(editable){this.setOptions({editable:editable})},WPGMZA.Feature.prototype.setDraggable=function(draggable){this.setOptions({draggable:draggable})},WPGMZA.Feature.prototype.getScalarProperties=function(){var options={};for(var key in this)switch(typeof this[key]){case"number":options[key]=parseFloat(this[key]);break;case"boolean":case"string":options[key]=this[key]}return options},WPGMZA.Feature.prototype.updateNativeFeature=function(){var props=this.getScalarProperties();switch(WPGMZA.settings.engine){case"open-layers":this.layer&&this.layer.setStyle(WPGMZA.OLFeature.getOLStyle(props));break;default:this.googleFeature.setOptions(props)}}}),jQuery(function($){var Parent=WPGMZA.Feature;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.extend(WPGMZA.Circle,WPGMZA.Feature),Object.defineProperty(WPGMZA.Circle.prototype,"fillColor",{enumerable:!0,get:function(){return this.color&&this.color.length?this.color:"#ff0000"},set:function(a){this.color=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity||0==this.opacity?parseFloat(this.opacity):.5},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"strokeColor",{enumerable:!0,get:function(){return this.lineColor?this.lineColor:"#000000"},set:function(a){this.lineColor=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.lineOpacity||0==this.lineOpacity?parseFloat(this.lineOpacity):0},set:function(a){this.lineOpacity=a}}),WPGMZA.Circle.createInstance=function(options,engineCircle){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options,engineCircle)},WPGMZA.Circle.prototype.getCenter=function(){return this.center.clone()},WPGMZA.Circle.prototype.setCenter=function(latLng){this.center.lat=latLng.lat,this.center.lng=latLng.lng},WPGMZA.Circle.prototype.getRadius=function(){return this.radius},WPGMZA.Circle.prototype.setRadius=function(radius){this.radius=radius},WPGMZA.Circle.prototype.getMap=function(){return this.map},WPGMZA.Circle.prototype.setMap=function(map){this.map&&this.map.removeCircle(this),map&&map.addCircle(this)}}),jQuery(function($){WPGMZA.FriendlyError=function(){}}),jQuery(function($){WPGMZA.Geocoder=function(){WPGMZA.assertInstanceOf(this,"Geocoder")},WPGMZA.Geocoder.SUCCESS="success",WPGMZA.Geocoder.ZERO_RESULTS="zero-results",WPGMZA.Geocoder.FAIL="fail",WPGMZA.Geocoder.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLGeocoder;default:return WPGMZA.GoogleGeocoder}},WPGMZA.Geocoder.createInstance=function(){return new(WPGMZA.Geocoder.getConstructor())},WPGMZA.Geocoder.prototype.getLatLngFromAddress=function(options,callback){if(WPGMZA.isLatLngString(options.address)){var parts=options.address.split(/,\s*/),latLng=new WPGMZA.LatLng({lat:parseFloat(parts[0]),lng:parseFloat(parts[1])});callback([latLng.latLng=latLng],WPGMZA.Geocoder.SUCCESS)}},WPGMZA.Geocoder.prototype.getAddressFromLatLng=function(options,callback){callback([new WPGMZA.LatLng(options.latLng).toString()],WPGMZA.Geocoder.SUCCESS)},WPGMZA.Geocoder.prototype.geocode=function(options,callback){if("address"in options)return this.getLatLngFromAddress(options,callback);if("latLng"in options)return this.getAddressFromLatLng(options,callback);throw new Error("You must supply either a latLng or address")}}),jQuery(function($){WPGMZA.GoogleAPIErrorHandler=function(){var self=this;if("google-maps"==WPGMZA.settings.engine&&("map-edit"==WPGMZA.currentPage||0==WPGMZA.is_admin&&1==WPGMZA.userCanAdministrator)){this.element=$(WPGMZA.html.googleMapsAPIErrorDialog),1==WPGMZA.is_admin&&this.element.find(".wpgmza-front-end-only").remove(),this.errorMessageList=this.element.find(".wpgmza-google-api-error-list"),this.templateListItem=this.element.find("li.template").remove(),this.messagesAlreadyDisplayed={};var _error=console.error;console.error=function(message){self.onErrorMessage(message),_error.apply(this,arguments)},"google-maps"!=WPGMZA.settings.engine||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT||this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key,["https://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/"])}},WPGMZA.GoogleAPIErrorHandler.prototype.onErrorMessage=function(message){var m;if(message)if((m=message.match(/You have exceeded your (daily )?request quota for this API/))||(m=message.match(/This API project is not authorized to use this API/))||(m=message.match(/^Geocoding Service: .+/))){var urls=message.match(/http(s)?:\/\/[^\s]+/gm);this.addErrorMessage(m[0],urls)}else(m=message.match(/^Google Maps.+error: (.+)\s+(http(s?):\/\/.+)/m))&&this.addErrorMessage(m[1].replace(/([A-Z])/g," $1"),[m[2]])},WPGMZA.GoogleAPIErrorHandler.prototype.addErrorMessage=function(message,urls){var self=this;if(!this.messagesAlreadyDisplayed[message]){var li=this.templateListItem.clone();$(li).find(".wpgmza-message").html(message);var buttonContainer=$(li).find(".wpgmza-documentation-buttons"),buttonTemplate=$(li).find(".wpgmza-documentation-buttons>a");if(buttonTemplate.remove(),urls&&urls.length){for(var i=0;i<urls.length;i++){urls[i];var button=buttonTemplate.clone(),text=WPGMZA.localized_strings.documentation;button.attr("href",urls[i]),$(button).find("i").addClass("fa-external-link"),$(button).append(text)}buttonContainer.append(button)}$(this.errorMessageList).append(li),$("#wpgmza_map, .wpgmza_map").each(function(index,el){var container=$(el).find(".wpgmza-google-maps-api-error-overlay");0==container.length&&(container=$("<div class='wpgmza-google-maps-api-error-overlay'></div>")).html(self.element.html()),setTimeout(function(){$(el).append(container)},1e3)}),$(".gm-err-container").parent().css({"z-index":1}),this.messagesAlreadyDisplayed[message]=!0}},WPGMZA.googleAPIErrorHandler=new WPGMZA.GoogleAPIErrorHandler}),jQuery(function($){WPGMZA.InfoWindow=function(feature){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),feature&&(this.feature=feature,this.state=WPGMZA.InfoWindow.STATE_CLOSED,feature.map?setTimeout(function(){self.onFeatureAdded(event)},100):feature.addEventListener("added",function(event){self.onFeatureAdded(event)}))},WPGMZA.InfoWindow.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.InfoWindow.prototype.constructor=WPGMZA.InfoWindow,WPGMZA.InfoWindow.OPEN_BY_CLICK=1,WPGMZA.InfoWindow.OPEN_BY_HOVER=2,WPGMZA.InfoWindow.STATE_OPEN="open",WPGMZA.InfoWindow.STATE_CLOSED="closed",WPGMZA.InfoWindow.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProInfoWindow:WPGMZA.OLInfoWindow;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProInfoWindow:WPGMZA.GoogleInfoWindow}},WPGMZA.InfoWindow.createInstance=function(feature){return new(this.getConstructor())(feature)},Object.defineProperty(WPGMZA.InfoWindow.prototype,"content",{get:function(){return this.getContent()},set:function(value){this.contentHtml=value}}),WPGMZA.InfoWindow.prototype.addEditButton=function(){return"map-edit"==WPGMZA.currentPage&&this.feature instanceof WPGMZA.Marker?' <a title="Edit this marker" style="width:15px;" class="wpgmza_edit_btn" data-edit-marker-id="'+this.feature.id+'"><i class="fa fa-edit"></i></a>':""},WPGMZA.InfoWindow.prototype.workOutDistanceBetweenTwoMarkers=function(location1,location2){if(location1&&location2){var distanceToDisplay=WPGMZA.Distance.between(location1,location2);return this.distanceUnits==WPGMZA.Distance.MILES&&(distanceToDisplay/=WPGMZA.Distance.KILOMETERS_PER_MILE),Math.round(distanceToDisplay,2)}},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="",extra_html="";if(this.feature instanceof WPGMZA.Marker){if(this.feature.map.settings.store_locator_show_distance&&this.feature.map.storeLocator&&this.feature.map.storeLocator.state==WPGMZA.StoreLocator.STATE_APPLIED){var currentLatLng=this.feature.getPosition(),distance=this.workOutDistanceBetweenTwoMarkers(this.feature.map.storeLocator.center,currentLatLng);extra_html+="<p>"+(this.feature.map.settings.store_locator_distance==WPGMZA.Distance.KILOMETERS?distance+WPGMZA.localized_strings.kilometers_away:distance+" "+WPGMZA.localized_strings.miles_away)+"</p>"}html=this.feature.address+extra_html}return this.contentHtml&&(html=this.contentHtml),callback&&callback(html),html},WPGMZA.InfoWindow.prototype.open=function(map,feature){return this.feature=feature,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.feature.disableInfoWindow&&(this.state=WPGMZA.InfoWindow.STATE_OPEN,!0))},WPGMZA.InfoWindow.prototype.close=function(){this.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(this.state=WPGMZA.InfoWindow.STATE_CLOSED,this.trigger("infowindowclose"))},WPGMZA.InfoWindow.prototype.setContent=function(options){},WPGMZA.InfoWindow.prototype.setOptions=function(options){},WPGMZA.InfoWindow.prototype.onFeatureAdded=function(){1==this.feature.settings.infoopen&&this.open()},WPGMZA.InfoWindow.prototype.onOpen=function(){}}),jQuery(function($){WPGMZA.LatLng=function(arg,lng){if(this._lat=0,(this._lng=0)!=arguments.length)if(1==arguments.length){if("string"==typeof arg){var m;if(!(m=arg.match(WPGMZA.LatLng.REGEXP)))throw new Error("Invalid LatLng string");arg={lat:m[1],lng:m[3]}}if("object"!=typeof arg||!("lat"in arg&&"lng"in arg))throw new Error("Argument must be a LatLng literal");this.lat=arg.lat,this.lng=arg.lng}else this.lat=arg,this.lng=lng},WPGMZA.LatLng.REGEXP=/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,WPGMZA.LatLng.isValid=function(obj){return"object"==typeof obj&&("lat"in obj&&"lng"in obj)},WPGMZA.LatLng.isLatLngString=function(str){return"string"==typeof str&&!!str.match(WPGMZA.LatLng.REGEXP)},Object.defineProperty(WPGMZA.LatLng.prototype,"lat",{get:function(){return this._lat},set:function(val){if(!$.isNumeric(val))throw new Error("Latitude must be numeric");this._lat=parseFloat(val)}}),Object.defineProperty(WPGMZA.LatLng.prototype,"lng",{get:function(){return this._lng},set:function(val){if(!$.isNumeric(val))throw new Error("Longitude must be numeric");this._lng=parseFloat(val)}}),WPGMZA.LatLng.fromString=function(string){if(!WPGMZA.LatLng.isLatLngString(string))throw new Error("Not a valid latlng string");var m=string.match(WPGMZA.LatLng.REGEXP);return new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])})},WPGMZA.LatLng.prototype.toString=function(){return this._lat+", "+this._lng},WPGMZA.LatLng.fromCurrentPosition=function(callback,options){options=options||{},callback&&WPGMZA.getCurrentPosition(function(position){var latLng=new WPGMZA.LatLng({lat:position.coords.latitude,lng:position.coords.longitude});options.geocodeAddress?WPGMZA.Geocoder.createInstance().getAddressFromLatLng({latLng:latLng},function(results){results.length&&(latLng.address=results[0]),callback(latLng)}):callback(latLng)})},WPGMZA.LatLng.fromGoogleLatLng=function(googleLatLng){return new WPGMZA.LatLng(googleLatLng.lat(),googleLatLng.lng())},WPGMZA.LatLng.toGoogleLatLngArray=function(arr){var result=[];return arr.forEach(function(nativeLatLng){if(!(nativeLatLng instanceof WPGMZA.LatLng||"lat"in nativeLatLng&&"lng"in nativeLatLng))throw new Error("Unexpected input");result.push(new google.maps.LatLng({lat:parseFloat(nativeLatLng.lat),lng:parseFloat(nativeLatLng.lng)}))}),result},WPGMZA.LatLng.prototype.toGoogleLatLng=function(){return new google.maps.LatLng({lat:this.lat,lng:this.lng})},WPGMZA.LatLng.prototype.toLatLngLiteral=function(){return{lat:this.lat,lng:this.lng}},WPGMZA.LatLng.prototype.moveByDistance=function(kilometers,heading){var delta=parseFloat(kilometers)/6371,theta=parseFloat(heading)/180*Math.PI,phi1=this.lat/180*Math.PI,lambda1=this.lng/180*Math.PI,sinPhi1=Math.sin(phi1),cosPhi1=Math.cos(phi1),sinDelta=Math.sin(delta),cosDelta=Math.cos(delta),sinTheta=Math.sin(theta),sinPhi2=sinPhi1*cosDelta+cosPhi1*sinDelta*Math.cos(theta),phi2=Math.asin(sinPhi2),y=sinTheta*sinDelta*cosPhi1,x=cosDelta-sinPhi1*sinPhi2,lambda2=lambda1+Math.atan2(y,x);this.lat=180*phi2/Math.PI,this.lng=180*lambda2/Math.PI},WPGMZA.LatLng.prototype.getGreatCircleDistance=function(arg1,arg2){var other,lat1=this.lat,lon1=this.lng;if(1==arguments.length)other=new WPGMZA.LatLng(arg1);else{if(2!=arguments.length)throw new Error("Invalid number of arguments");other=new WPGMZA.LatLng(arg1,arg2)}var lat2=other.lat,lon2=other.lng,phi1=lat1.toRadians(),phi2=lat2.toRadians(),deltaPhi=(lat2-lat1).toRadians(),deltaLambda=(lon2-lon1).toRadians(),a=Math.sin(deltaPhi/2)*Math.sin(deltaPhi/2)+Math.cos(phi1)*Math.cos(phi2)*Math.sin(deltaLambda/2)*Math.sin(deltaLambda/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}),jQuery(function($){WPGMZA.LatLngBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLngBounds){var other=southWest;this.south=other.south,this.north=other.north,this.west=other.west,this.east=other.east}else southWest&&northEast&&(this.south=southWest.lat,this.north=northEast.lat,this.west=southWest.lng,this.east=northEast.lng)},WPGMZA.LatLngBounds.fromGoogleLatLngBounds=function(googleLatLngBounds){if(!(googleLatLngBounds instanceof google.maps.LatLngBounds))throw new Error("Argument must be an instance of google.maps.LatLngBounds");var result=new WPGMZA.LatLngBounds,southWest=googleLatLngBounds.getSouthWest(),northEast=googleLatLngBounds.getNorthEast();return result.north=northEast.lat(),result.south=southWest.lat(),result.west=southWest.lng(),result.east=northEast.lng(),result},WPGMZA.LatLngBounds.fromGoogleLatLngBoundsLiteral=function(obj){var result=new WPGMZA.LatLngBounds,southWest=obj.southwest,northEast=obj.northeast;return result.north=northEast.lat,result.south=southWest.lat,result.west=southWest.lng,result.east=northEast.lng,result},WPGMZA.LatLngBounds.prototype.isInInitialState=function(){return null==this.north&&null==this.south&&null==this.west&&null==this.east},WPGMZA.LatLngBounds.prototype.extend=function(latLng){if(latLng instanceof WPGMZA.LatLng||(latLng=new WPGMZA.LatLng(latLng)),this.isInInitialState())return this.north=this.south=latLng.lat,void(this.west=this.east=latLng.lng);latLng.lat<this.north&&(this.north=latLng.lat),latLng.lat>this.south&&(this.south=latLng.lat),latLng.lng<this.west&&(this.west=latLng.lng),latLng.lng>this.east&&(this.east=latLng.lng)},WPGMZA.LatLngBounds.prototype.extendByPixelMargin=function(map,x,arg){var y=x;if(!(map instanceof WPGMZA.Map))throw new Error("First argument must be an instance of WPGMZA.Map");if(this.isInInitialState())throw new Error("Cannot extend by pixels in initial state");3<=arguments.length&&(y=arg);var southWest=new WPGMZA.LatLng(this.south,this.west),northEast=new WPGMZA.LatLng(this.north,this.east);southWest=map.latLngToPixels(southWest),northEast=map.latLngToPixels(northEast),southWest.x-=x,southWest.y+=y,northEast.x+=x,northEast.y-=y,southWest=map.pixelsToLatLng(southWest.x,southWest.y),northEast=map.pixelsToLatLng(northEast.x,northEast.y);this.toString();this.north=northEast.lat,this.south=southWest.lat,this.west=southWest.lng,this.east=northEast.lng},WPGMZA.LatLngBounds.prototype.contains=function(latLng){if(!(latLng instanceof WPGMZA.LatLng))throw new Error("Argument must be an instance of WPGMZA.LatLng");return!(latLng.lat<Math.min(this.north,this.south))&&(!(latLng.lat>Math.max(this.north,this.south))&&(this.west<this.east?latLng.lng>=this.west&&latLng.lng<=this.east:latLng.lng<=this.west||latLng.lng>=this.east))},WPGMZA.LatLngBounds.prototype.toString=function(){return this.north+"N "+this.south+"S "+this.west+"W "+this.east+"E"},WPGMZA.LatLngBounds.prototype.toLiteral=function(){return{north:this.north,south:this.south,west:this.west,east:this.east}}}),jQuery(function($){var legacyGlobals={marker_pull:"0",marker_array:[],MYMAP:[],infoWindow_poly:[],markerClusterer:[],heatmap:[],WPGM_Path:[],WPGM_Path_Polygon:[],WPGM_PathLine:[],WPGM_PathLineData:[],WPGM_PathData:[],original_iw:null,wpgmza_user_marker:null,wpgmaps_localize_marker_data:[],wpgmaps_localize_polygon_settings:[],wpgmaps_localize_heatmap_settings:[],wpgmaps_localize_polyline_settings:[],wpgmza_cirtcle_data_array:[],wpgmza_rectangle_data_array:[],wpgmzaForceLegacyMarkerClusterer:!1};function bindLegacyGlobalProperty(key){key in window?console.warn("Cannot redefine legacy global "+key):Object.defineProperty(window,key,{get:function(){return console.warn("This property is deprecated and should no longer be used"),legacyGlobals[key]},set:function(value){console.warn("This property is deprecated and should no longer be used"),legacyGlobals[key]=value}})}for(var key in legacyGlobals)bindLegacyGlobalProperty(key);WPGMZA.legacyGlobals=legacyGlobals,window.InitMap=window.resetLocations=window.searchLocations=window.fillInAddress=window.searchLocationsNear=function(){console.warn("This function is deprecated and should no longer be used")}}),jQuery(function($){WPGMZA.MapListPage=function(){$("body").on("click",".wpgmza_copy_shortcode",function(){var $temp=jQuery("<input>");jQuery('<span id="wpgmza_tmp" style="display:none; width:100%; text-align:center;">');jQuery("body").append($temp),$temp.val(jQuery(this).val()).select(),document.execCommand("copy"),$temp.remove(),WPGMZA.notification("Shortcode Copied")})},WPGMZA.MapListPage.createInstance=function(){return new WPGMZA.MapListPage},$(document).ready(function(event){WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_LIST&&(WPGMZA.mapListPage=WPGMZA.MapListPage.createInstance())})}),jQuery(function($){WPGMZA.MapSettings=function(element){var json,self=this,str=element.getAttribute("data-settings");try{json=JSON.parse(str)}catch(e){str=(str=str.replace(/\\%/g,"%")).replace(/\\\\"/g,'\\"');try{json=JSON.parse(str)}catch(e){json={},console.warn("Failed to parse map settings JSON")}}function addSettings(input){if(input)for(var key in input)if("other_settings"!=key){var value=input[key];String(value).match(/^-?\d+$/)&&(value=parseInt(value)),self[key]=value}}WPGMZA.assertInstanceOf(this,"MapSettings"),addSettings(WPGMZA.settings),addSettings(json),json&&json.other_settings&&addSettings(json.other_settings)},WPGMZA.MapSettings.prototype.toOLViewOptions=function(){var self=this,options={center:ol.proj.fromLonLat([-119.4179,36.7783]),zoom:4};function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}if("string"==typeof this.start_location){var coords=this.start_location.replace(/^\(|\)$/g,"").split(",");WPGMZA.isLatLngString(this.start_location)?options.center=ol.proj.fromLonLat([parseFloat(coords[1]),parseFloat(coords[0])]):console.warn("Invalid start location")}return this.center&&(options.center=ol.proj.fromLonLat([parseFloat(this.center.lng),parseFloat(this.center.lat)])),empty("map_start_lat")||empty("map_start_lng")||(options.center=ol.proj.fromLonLat([parseFloat(this.map_start_lng),parseFloat(this.map_start_lat)])),this.zoom&&(options.zoom=parseInt(this.zoom)),this.start_zoom&&(options.zoom=parseInt(this.start_zoom)),this.map_start_zoom&&(options.zoom=parseInt(this.map_start_zoom)),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options},WPGMZA.MapSettings.prototype.toGoogleMapsOptions=function(){var self=this,latLngCoords=this.start_location&&this.start_location.length?this.start_location.split(","):[36.7783,-119.4179];function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}function formatCoord(coord){return $.isNumeric(coord)?coord:parseFloat(String(coord).replace(/[\(\)\s]/,""))}var latLng=new google.maps.LatLng(formatCoord(latLngCoords[0]),formatCoord(latLngCoords[1])),zoom=this.start_zoom?parseInt(this.start_zoom):4;!this.start_zoom&&this.zoom&&(zoom=parseInt(this.zoom)),this.map_start_zoom&&(zoom=parseInt(this.map_start_zoom));var options={zoom:zoom,center:latLng};function isSettingDisabled(value){return"yes"===value||!!value}switch(empty("center")||(options.center=new google.maps.LatLng({lat:parseFloat(this.center.lat),lng:parseFloat(this.center.lng)})),empty("map_start_lat")||empty("map_start_lng")||(options.center=new google.maps.LatLng({lat:parseFloat(this.map_start_lat),lng:parseFloat(this.map_start_lng)})),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options.zoomControl=!isSettingDisabled(this.wpgmza_settings_map_zoom),options.panControl=!isSettingDisabled(this.wpgmza_settings_map_pan),options.mapTypeControl=!isSettingDisabled(this.wpgmza_settings_map_type),options.streetViewControl=!isSettingDisabled(this.wpgmza_settings_map_streetview),options.fullscreenControl=!isSettingDisabled(this.wpgmza_settings_map_full_screen_control),options.draggable=!isSettingDisabled(this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom=isSettingDisabled(this.wpgmza_settings_map_clickzoom),isSettingDisabled(this.wpgmza_settings_map_tilt_controls)&&(options.rotateControl=!1,options.tilt=0),this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures||1==this.wpgmza_force_greedy_gestures?(options.gestureHandling="greedy",!this.wpgmza_settings_map_scroll&&"scrollwheel"in options&&delete options.scrollwheel):options.gestureHandling="cooperative",parseInt(this.type)){case 2:options.mapTypeId=google.maps.MapTypeId.SATELLITE;break;case 3:options.mapTypeId=google.maps.MapTypeId.HYBRID;break;case 4:options.mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:options.mapTypeId=google.maps.MapTypeId.ROADMAP}return this.wpgmza_theme_data&&this.wpgmza_theme_data.length&&(options.styles=WPGMZA.GoogleMap.parseThemeData(this.wpgmza_theme_data)),options}}),jQuery(function($){WPGMZA.Map=function(element,options){var self=this;if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement||window.elementor))throw new Error("Argument must be a HTMLElement");if(element.hasAttribute("data-map-id")?this.id=element.getAttribute("data-map-id"):this.id=1,!/\d+/.test(this.id))throw new Error("Map ID must be an integer");if(WPGMZA.maps.push(this),this.element=element,this.element.wpgmzaMap=this,$(this.element).addClass("wpgmza-initialized"),this.engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code)return $(element).append($(WPGMZA.api_consent_html)),void $(element).css({height:"auto"});if(this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes")),this.shortcodeAttributes.zoom&&(this.settings.map_start_zoom=parseInt(this.shortcodeAttributes.zoom))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.setDimensions(),this.setAlignment(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this),this.on("init",function(event){self.onInit(event)}),this.on("click",function(event){self.onClick(event)}),WPGMZA.useLegacyGlobals&&(wpgmzaLegacyGlobals.MYMAP[this.id]={map:null,bounds:null,mc:null},wpgmzaLegacyGlobals.MYMAP.init=wpgmzaLegacyGlobals.MYMAP[this.id].init=wpgmzaLegacyGlobals.MYMAP.placeMarkers=wpgmzaLegacyGlobals.MYMAP[this.id].placeMarkers=function(){console.warn("This function is deprecated and should no longer be used")})},WPGMZA.Map.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.Map.prototype.constructor=WPGMZA.Map,WPGMZA.Map.nightTimeThemeData=[{elementType:"geometry",stylers:[{color:"#242f3e"}]},{elementType:"labels.text.fill",stylers:[{color:"#746855"}]},{elementType:"labels.text.stroke",stylers:[{color:"#242f3e"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"landscape",elementType:"geometry.fill",stylers:[{color:"#575663"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#263c3f"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#6b9a76"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#38414e"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{color:"#212a37"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#9ca5b3"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#746855"}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#80823e"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#1f2835"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#f3d19c"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#2f3948"}]},{featureType:"transit.station",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#17263c"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#1b737a"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#515c6d"}]},{featureType:"water",elementType:"labels.text.stroke",stylers:[{color:"#17263c"}]}],WPGMZA.Map.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMap:WPGMZA.OLMap;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMap:WPGMZA.GoogleMap}},WPGMZA.Map.createInstance=function(element,options){return new(WPGMZA.Map.getConstructor())(element,options)},Object.defineProperty(WPGMZA.Map.prototype,"markersPlaced",{get:function(){return this._markersPlaced},set:function(value){throw new Error("Value is read only")}}),Object.defineProperty(WPGMZA.Map.prototype,"lat",{get:function(){return this.getCenter().lat},set:function(value){var center=this.getCenter();center.lat=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"lng",{get:function(){return this.getCenter().lng},set:function(value){var center=this.getCenter();center.lng=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"zoom",{get:function(){return this.getZoom()},set:function(value){this.setZoom(value)}}),WPGMZA.Map.prototype.onInit=function(event){this.initPreloader(),"autoFetchFeatures"in this.settings&&!1===this.settings.autoFetchFeatures||this.fetchFeatures()},WPGMZA.Map.prototype.initPreloader=function(){this.preloader=$(WPGMZA.preloaderHTML),$(this.preloader).hide(),$(this.element).append(this.preloader)},WPGMZA.Map.prototype.showPreloader=function(show){show?$(this.preloader).show():$(this.preloader).hide()},WPGMZA.Map.prototype.loadSettings=function(options){var settings=new WPGMZA.MapSettings(this.element);settings.other_settings;if(delete settings.other_settings,options)for(var key in options)settings[key]=options[key];this.settings=settings},WPGMZA.Map.prototype.initStoreLocator=function(){var storeLocatorElement=$(".wpgmza_sl_main_div");storeLocatorElement.length&&(this.storeLocator=WPGMZA.StoreLocator.createInstance(this,storeLocatorElement[0]))},WPGMZA.Map.prototype.getFeatureArrays=function(){var arrays=WPGMZA.Map.prototype.getFeatureArrays.call(this);return arrays.heatmaps=this.heatmaps,arrays},WPGMZA.Map.prototype.setOptions=function(options){for(var name in options)this.settings[name]=options[name]},WPGMZA.Map.prototype.getRESTParameters=function(options){var defaults={};return options&&options.filter||(defaults.filter=JSON.stringify(this.markerFilter.getFilteringParameters())),$.extend(!0,defaults,options)},WPGMZA.Map.prototype.fetchFeaturesViaREST=function(){var data,self=this,filter=this.markerFilter.getFilteringParameters();if("1"==WPGMZA.is_admin&&(filter.includeUnapproved=!0,filter.excludeIntegrated=!0),this.shortcodeAttributes.acf_post_id&&(filter.acfPostID=this.shortcodeAttributes.acf_post_id),this.showPreloader(!0),this.fetchFeaturesXhr&&this.fetchFeaturesXhr.abort(),WPGMZA.settings.fetchMarkersBatchSize){var offset=0,limit=WPGMZA.settings.fetchMarkersBatchSize;!function fetchNextBatch(){filter.offset=offset,filter.limit=limit,data=this.getRESTParameters({filter:JSON.stringify(filter)}),self.fetchFeaturesXhr=WPGMZA.restAPI.call("/markers/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){result.length?(self.onMarkersFetched(result,!0),offset+=limit,fetchNextBatch()):(self.onMarkersFetched(result),data.exclude="markers",WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}}))}})}()}else data=this.getRESTParameters({filter:JSON.stringify(filter)}),this.fetchFeaturesXhr=WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})},WPGMZA.Map.prototype.fetchFeaturesViaXML=function(){var self=this,urls=[WPGMZA.markerXMLPathURL+this.id+"markers.xml"];function fetchFeaturesExcludingMarkersViaREST(){var filter={map_id:this.id,mashup_ids:this.mashupIDs},data={filter:JSON.stringify(filter),exclude:"markers"};WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})}if(this.mashupIDs&&this.mashupIDs.forEach(function(id){urls.push(WPGMZA.markerXMLPathURL+id+"markers.xml")}),urls=urls.filter(function(item,index){return urls.indexOf(item)==index}),window.Worker&&window.Blob&&window.URL&&WPGMZA.settings.enable_asynchronous_xml_parsing){var source=WPGMZA.loadXMLAsWebWorker.toString().replace(/function\(\)\s*{([\s\S]+)}/,"$1"),blob=new Blob([source],{type:"text/javascript"}),worker=new Worker(URL.createObjectURL(blob));worker.onmessage=function(event){self.onMarkersFetched(event.data),fetchFeaturesExcludingMarkersViaREST()},worker.postMessage({command:"load",protocol:window.location.protocol,urls:urls})}else for(var filesLoaded=0,converter=new WPGMZA.XMLCacheConverter,converted=[],i=0;i<urls.length;i++)$.ajax(urls[i],{success:function(response,status,xhr){converted=converted.concat(converter.convert(response)),++filesLoaded==urls.length&&(self.onMarkersFetched(converted),fetchFeaturesExcludingMarkersViaREST())}})},WPGMZA.Map.prototype.fetchFeatures=function(){WPGMZA.settings.wpgmza_settings_marker_pull!=WPGMZA.MARKER_PULL_XML||"1"==WPGMZA.is_admin?this.fetchFeaturesViaREST():this.fetchFeaturesViaXML()},WPGMZA.Map.prototype.onFeaturesFetched=function(data){for(var type in data.markers&&this.onMarkersFetched(data.markers),data)if("markers"!=type)for(var module=type.substr(0,1).toUpperCase()+type.substr(1).replace(/s$/,""),i=0;i<data[type].length;i++){var instance=WPGMZA[module].createInstance(data[type][i]);this["add"+module](instance)}},WPGMZA.Map.prototype.onMarkersFetched=function(data,expectMoreBatches){for(var self=this,startFiltered=this.shortcodeAttributes.cat&&this.shortcodeAttributes.cat.length,i=0;i<data.length;i++){var obj=data[i],marker=WPGMZA.Marker.createInstance(obj);startFiltered&&(marker.isFiltered=!0,marker.setVisible(!1)),this.addMarker(marker)}if(!expectMoreBatches){this.showPreloader(!1);var triggerEvent=function(){self._markersPlaced=!0,self.trigger("markersplaced"),self.off("filteringcomplete",triggerEvent)};if(this.shortcodeAttributes.cat){var categories=this.shortcodeAttributes.cat.split(","),select=$("select[mid='"+this.id+"'][name='wpgmza_filter_select']");for(i=0;i<categories.length;i++)$("input[type='checkbox'][mid='"+this.id+"'][value='"+categories[i]+"']").prop("checked",!0),select.val(categories[i]);this.on("filteringcomplete",triggerEvent),this.markerFilter.update({categories:categories})}else triggerEvent();if(this.shortcodeAttributes.markers){var arr=this.shortcodeAttributes.markers.split(","),markers=[];for(i=0;i<arr.length;i++){var id=arr[i];id=id.replace(" ","");marker=this.getMarkerByID(id);markers.push(marker)}this.fitMapBoundsToMarkers(markers)}}},WPGMZA.Map.prototype.fetchFeaturesViaXML=function(){var self=this,urls=[WPGMZA.markerXMLPathURL+this.id+"markers.xml"];function fetchFeaturesExcludingMarkersViaREST(){var filter={map_id:this.id,mashup_ids:this.mashupIDs},data={filter:JSON.stringify(filter),exclude:"markers"};WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})}if(this.mashupIDs&&this.mashupIDs.forEach(function(id){urls.push(WPGMZA.markerXMLPathURL+id+"markers.xml")}),urls=urls.filter(function(item,index){return urls.indexOf(item)==index}),window.Worker&&window.Blob&&window.URL&&WPGMZA.settings.enable_asynchronous_xml_parsing){var source=WPGMZA.loadXMLAsWebWorker.toString().replace(/function\(\)\s*{([\s\S]+)}/,"$1"),blob=new Blob([source],{type:"text/javascript"}),worker=new Worker(URL.createObjectURL(blob));worker.onmessage=function(event){self.onMarkersFetched(event.data),fetchFeaturesExcludingMarkersViaREST()},worker.postMessage({command:"load",protocol:window.location.protocol,urls:urls})}else for(var filesLoaded=0,converter=new WPGMZA.XMLCacheConverter,converted=[],i=0;i<urls.length;i++)$.ajax(urls[i],{success:function(response,status,xhr){converted=converted.concat(converter.convert(response)),++filesLoaded==urls.length&&(self.onMarkersFetched(converted),fetchFeaturesExcludingMarkersViaREST())}})},WPGMZA.Map.prototype.fetchFeatures=function(){WPGMZA.settings.wpgmza_settings_marker_pull!=WPGMZA.MARKER_PULL_XML||"1"==WPGMZA.is_admin?this.fetchFeaturesViaREST():this.fetchFeaturesViaXML()},WPGMZA.Map.prototype.onFeaturesFetched=function(data){for(var type in data.markers&&this.onMarkersFetched(data.markers),data)if("markers"!=type)for(var module=type.substr(0,1).toUpperCase()+type.substr(1).replace(/s$/,""),i=0;i<data[type].length;i++){var instance=WPGMZA[module].createInstance(data[type][i]);this["add"+module](instance)}},WPGMZA.Map.prototype.onMarkersFetched=function(data,expectMoreBatches){for(var self=this,startFiltered=this.shortcodeAttributes.cat&&this.shortcodeAttributes.cat.length,i=0;i<data.length;i++){var obj=data[i],marker=WPGMZA.Marker.createInstance(obj);startFiltered&&(marker.isFiltered=!0,marker.setVisible(!1)),this.addMarker(marker)}if(!expectMoreBatches){this.showPreloader(!1);var triggerEvent=function(){self._markersPlaced=!0,self.trigger("markersplaced"),self.off("filteringcomplete",triggerEvent)};if(this.shortcodeAttributes.cat){var categories=this.shortcodeAttributes.cat.split(","),select=$("select[mid='"+this.id+"'][name='wpgmza_filter_select']");for(i=0;i<categories.length;i++)$("input[type='checkbox'][mid='"+this.id+"'][value='"+categories[i]+"']").prop("checked",!0),select.val(categories[i]);this.on("filteringcomplete",triggerEvent),this.markerFilter.update({categories:categories})}else triggerEvent();if(this.shortcodeAttributes.markers){var arr=this.shortcodeAttributes.markers.split(","),markers=[];for(i=0;i<arr.length;i++){var id=arr[i];id=id.replace(" ","");marker=this.getMarkerByID(id);markers.push(marker)}this.fitMapBoundsToMarkers(markers)}}};Math.PI;function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Map.getGeographicDistance=function(lat1,lon1,lat2,lon2){var dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))},WPGMZA.Map.prototype.setCenter=function(latLng){if(!("lat"in latLng&&"lng"in latLng))throw new Error("Argument is not an object with lat and lng")},WPGMZA.Map.prototype.setDimensions=function(width,height){0==arguments.length&&(width=this.settings.map_width?this.settings.map_width:"100",this.settings.map_width_type?width+=this.settings.map_width_type.replace("\\",""):width+="%",height=this.settings.map_height?this.settings.map_height:"400",this.settings.map_height_type?height+=this.settings.map_height_type.replace("\\",""):height+="px"),$(this.engineElement).css({width:width,height:height})},WPGMZA.Map.prototype.setAlignment=function(){switch(parseInt(this.settings.wpgmza_map_align)){case 1:$(this.element).css({float:"left"});break;case 2:$(this.element).css({"margin-left":"auto","margin-right":"auto"});break;case 3:$(this.element).css({float:"right"})}},WPGMZA.Map.prototype.addMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");marker.map=this,(marker.parent=this).markers.push(marker),this.dispatchEvent({type:"markeradded",marker:marker}),marker.dispatchEvent({type:"added"})},WPGMZA.Map.prototype.removeMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");if(marker.map!==this)throw new Error("Wrong map error");marker.infoWindow&&marker.infoWindow.close(),marker.map=null,marker.parent=null;var index=this.markers.indexOf(marker);if(-1==index)throw new Error("Marker not found in marker array");this.markers.splice(index,1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},WPGMZA.Map.prototype.removeAllMarkers=function(options){for(var i=this.markers.length-1;0<=i;i--)this.removeMarker(this.markers[i])},WPGMZA.Map.prototype.getMarkerByID=function(id){for(var i=0;i<this.markers.length;i++)if(this.markers[i].id==id)return this.markers[i];return null},WPGMZA.Map.prototype.getMarkerByTitle=function(title){if("string"==typeof title){for(var i=0;i<this.markers.length;i++)if(this.markers[i].title==title)return this.markers[i]}else{if(!(title instanceof RegExp))throw new Error("Invalid argument");for(i=0;i<this.markers.length;i++)if(title.test(this.markers[i].title))return this.markers[i]}return null},WPGMZA.Map.prototype.removeMarkerByID=function(id){var marker=this.getMarkerByID(id);marker&&this.removeMarker(marker)},WPGMZA.Map.prototype.addPolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");(polygon.map=this).polygons.push(polygon),this.dispatchEvent({type:"polygonadded",polygon:polygon})},WPGMZA.Map.prototype.removePolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");if(polygon.map!==this)throw new Error("Wrong map error");polygon.map=null,this.polygons.splice(this.polygons.indexOf(polygon),1),this.dispatchEvent({type:"polygonremoved",polygon:polygon})},WPGMZA.Map.prototype.getPolygonByID=function(id){for(var i=0;i<this.polygons.length;i++)if(this.polygons[i].id==id)return this.polygons[i];return null},WPGMZA.Map.prototype.removePolygonByID=function(id){var polygon=this.getPolygonByID(id);polygon&&this.removePolygon(polygon)},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.addPolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");(polyline.map=this).polylines.push(polyline),this.dispatchEvent({type:"polylineadded",polyline:polyline})},WPGMZA.Map.prototype.removePolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");if(polyline.map!==this)throw new Error("Wrong map error");polyline.map=null,this.polylines.splice(this.polylines.indexOf(polyline),1),this.dispatchEvent({type:"polylineremoved",polyline:polyline})},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.removePolylineByID=function(id){var polyline=this.getPolylineByID(id);polyline&&this.removePolyline(polyline)},WPGMZA.Map.prototype.addCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");(circle.map=this).circles.push(circle),this.dispatchEvent({type:"circleadded",circle:circle})},WPGMZA.Map.prototype.removeCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");if(circle.map!==this)throw new Error("Wrong map error");circle.map=null,this.circles.splice(this.circles.indexOf(circle),1),this.dispatchEvent({type:"circleremoved",circle:circle})},WPGMZA.Map.prototype.getCircleByID=function(id){for(var i=0;i<this.circles.length;i++)if(this.circles[i].id==id)return this.circles[i];return null},WPGMZA.Map.prototype.removeCircleByID=function(id){var circle=this.getCircleByID(id);circle&&this.removeCircle(circle)},WPGMZA.Map.prototype.addRectangle=function(rectangle){if(!(rectangle instanceof WPGMZA.Rectangle))throw new Error("Argument must be an instance of WPGMZA.Rectangle");(rectangle.map=this).rectangles.push(rectangle),this.dispatchEvent({type:"rectangleadded",rectangle:rectangle})},WPGMZA.Map.prototype.removeRectangle=function(rectangle){if(!(rectangle instanceof WPGMZA.Rectangle))throw new Error("Argument must be an instance of WPGMZA.Rectangle");if(rectangle.map!==this)throw new Error("Wrong map error");rectangle.map=null,this.rectangles.splice(this.rectangles.indexOf(rectangle),1),this.dispatchEvent({type:"rectangleremoved",rectangle:rectangle})},WPGMZA.Map.prototype.getRectangleByID=function(id){for(var i=0;i<this.rectangles.length;i++)if(this.rectangles[i].id==id)return this.rectangles[i];return null},WPGMZA.Map.prototype.removeRectangleByID=function(id){var rectangle=this.getRectangleByID(id);rectangle&&this.removeRectangle(rectangle)},WPGMZA.Map.prototype.resetBounds=function(){var latlng=new WPGMZA.LatLng(this.settings.map_start_lat,this.settings.map_start_lng);this.panTo(latlng),this.setZoom(this.settings.map_start_zoom)},WPGMZA.Map.prototype.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},WPGMZA.Map.prototype.nudgeLatLng=function(latLng,x,y){var pixels=this.latLngToPixels(latLng);if(pixels.x+=parseFloat(x),pixels.y+=parseFloat(y),isNaN(pixels.x)||isNaN(pixels.y))throw new Error("Invalid coordinates supplied");return this.pixelsToLatLng(pixels)},WPGMZA.Map.prototype.animateNudge=function(x,y,origin,milliseconds){var nudged;if(origin){if(!(origin instanceof WPGMZA.LatLng))throw new Error("Origin must be an instance of WPGMZA.LatLng")}else origin=this.getCenter();nudged=this.nudgeLatLng(origin,x,y),milliseconds=milliseconds||WPGMZA.getScrollAnimationDuration(),$(this).animate({lat:nudged.lat,lng:nudged.lng},milliseconds)},WPGMZA.Map.prototype.onWindowResize=function(event){},WPGMZA.Map.prototype.onElementResized=function(event){},WPGMZA.Map.prototype.onBoundsChanged=function(event){this.trigger("boundschanged"),this.trigger("bounds_changed")},WPGMZA.Map.prototype.onIdle=function(event){this.trigger("idle")},WPGMZA.Map.prototype.onClick=function(event){},WPGMZA.Map.prototype.hasVisibleMarkers=function(){for(var marker,length=this.markers.length,i=0;i<length;i++)if((marker=this.markers[i]).isFilterable&&marker.getVisible())return!0;return!1},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})},$(document).ready(function(event){if(!WPGMZA.visibilityWorkaroundIntervalID){var invisibleMaps=jQuery(".wpgmza_map:hidden");WPGMZA.visibilityWorkaroundIntervalID=setInterval(function(){jQuery(invisibleMaps).each(function(index,el){if(jQuery(el).is(":visible")){var id=jQuery(el).attr("data-map-id");WPGMZA.getMapByID(id).onElementResized(),invisibleMaps.splice(invisibleMaps.toArray().indexOf(el),1)}})},1e3)}})}),jQuery(function($){WPGMZA.MapsEngineDialog=function(element){var self=this;this.element=element,window.wpgmzaUnbindSaveReminder&&window.wpgmzaUnbindSaveReminder(),$(element).show(),$(element).remodal().open(),$(element).find("input:radio").on("change",function(event){$("#wpgmza-confirm-engine").prop("disabled",!1),$("#wpgmza-confirm-engine").click()}),$("#wpgmza-confirm-engine").on("click",function(event){self.onButtonClicked(event)})},WPGMZA.MapsEngineDialog.prototype.onButtonClicked=function(event){$(event.target).prop("disabled",!0),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_engine_dialog_set_engine",engine:$("[name='wpgmza_maps_engine']:checked").val(),nonce:$("#wpgmza-maps-engine-dialog").attr("data-ajax-nonce")},success:function(response,status,xhr){window.location.reload()}})},$(document).ready(function(event){var element=$("#wpgmza-maps-engine-dialog");element.length&&(WPGMZA.settings.wpgmza_maps_engine_dialog_done||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||(WPGMZA.mapsEngineDialog=new WPGMZA.MapsEngineDialog(element)))})}),jQuery(function($){WPGMZA.MarkerFilter=function(map){WPGMZA.EventDispatcher.call(this),this.map=map},WPGMZA.MarkerFilter.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MarkerFilter.prototype.constructor=WPGMZA.MarkerFilter,WPGMZA.MarkerFilter.createInstance=function(map){return new WPGMZA.MarkerFilter(map)},WPGMZA.MarkerFilter.prototype.getFilteringParameters=function(){var params={map_id:this.map.id};return this.map.storeLocator&&(params=$.extend(params,this.map.storeLocator.getFilteringParameters())),params},WPGMZA.MarkerFilter.prototype.update=function(params,source){var self=this;function dispatchEvent(result){var event=new WPGMZA.Event("filteringcomplete");event.map=self.map,event.source=source,event.filteredMarkers=result,event.filteringParams=params,self.onFilteringComplete(event),self.trigger(event),self.map.trigger(event)}this.updateTimeoutID||(params=params||{},this.xhr&&(this.xhr.abort(),delete this.xhr),this.updateTimeoutID=setTimeout(function(){if((params=$.extend(self.getFilteringParameters(),params)).center instanceof WPGMZA.LatLng&&(params.center=params.center.toLatLngLiteral()),params.hideAll)return dispatchEvent([]),void delete self.updateTimeoutID;self.map.showPreloader(!0),self.xhr=WPGMZA.restAPI.call("/markers",{data:{fields:["id"],filter:JSON.stringify(params)},success:function(result,status,xhr){self.map.showPreloader(!1),dispatchEvent(result)},useCompressedPathVariable:!0}),delete self.updateTimeoutID},0))},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(event){var map=[];event.filteredMarkers.forEach(function(data){map[data.id]=!0}),this.map.markers.forEach(function(marker){if(marker.isFilterable){var allowByFilter=!!map[marker.id];marker.isFiltered=!allowByFilter,marker.setVisible(allowByFilter)}})}}),jQuery(function($){WPGMZA.Marker=function(row){var self=this;this._offset={x:0,y:0},WPGMZA.assertInstanceOf(this,"Marker"),this.lat="36.778261",this.lng="-119.4179323999",this.address="California",this.title=null,this.description="",this.link="",this.icon="",this.approved=1,this.pic=null,this.isFilterable=!0,this.disableInfoWindow=!1,WPGMZA.Feature.apply(this,arguments),row&&row.heatmap||(row&&this.on("init",function(event){row.position&&this.setPosition(row.position),row.map&&row.map.addMarker(this)}),this.addEventListener("added",function(event){self.onAdded(event)}),this.handleLegacyGlobals(row))},WPGMZA.Marker.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Marker.prototype.constructor=WPGMZA.Marker,WPGMZA.Marker.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMarker:WPGMZA.OLMarker;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMarker:WPGMZA.GoogleMarker}},WPGMZA.Marker.createInstance=function(row){return new(WPGMZA.Marker.getConstructor())(row)},WPGMZA.Marker.ANIMATION_NONE="0",WPGMZA.Marker.ANIMATION_BOUNCE="1",WPGMZA.Marker.ANIMATION_DROP="2",Object.defineProperty(WPGMZA.Marker.prototype,"offsetX",{get:function(){return this._offset.x},set:function(value){this._offset.x=value,this.updateOffset()}}),Object.defineProperty(WPGMZA.Marker.prototype,"offsetY",{get:function(){return this._offset.y},set:function(value){this._offset.y=value,this.updateOffset()}}),WPGMZA.Marker.prototype.onAdded=function(event){var self=this;this.addEventListener("click",function(event){self.onClick(event)}),this.addEventListener("mouseover",function(event){self.onMouseOver(event)}),this.addEventListener("select",function(event){self.onSelect(event)}),this.map.settings.marker==this.id&&self.trigger("select"),"1"==this.infoopen&&this.openInfoWindow(!0)},WPGMZA.Marker.prototype.handleLegacyGlobals=function(row){var m;if(WPGMZA.settings.useLegacyGlobals&&this.map_id&&this.id&&!(WPGMZA.pro_version&&(m=WPGMZA.pro_version.match(/\d+/))&&m[0]<=7)){WPGMZA.legacyGlobals.marker_array[this.map_id]||(WPGMZA.legacyGlobals.marker_array[this.map_id]=[]),WPGMZA.legacyGlobals.marker_array[this.map_id][this.id]=this,WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id]||(WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id][this.id]=cloned}},WPGMZA.Marker.prototype.initInfoWindow=function(){this.infoWindow||(this.infoWindow=WPGMZA.InfoWindow.createInstance())},WPGMZA.Marker.prototype.openInfoWindow=function(autoOpen){this.map?(autoOpen||(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),this.map.lastInteractedMarker=this),this.initInfoWindow(),this.infoWindow.open(this.map,this)):console.warn("Cannot open infowindow for marker with no map")},WPGMZA.Marker.prototype.onClick=function(event){},WPGMZA.Marker.prototype.onSelect=function(event){this.openInfoWindow()},WPGMZA.Marker.prototype.onMouseOver=function(event){WPGMZA.settings.wpgmza_settings_map_open_marker_by==WPGMZA.InfoWindow.OPEN_BY_HOVER&&this.openInfoWindow()},WPGMZA.Marker.prototype.getIcon=function(){function stripProtocol(url){return"string"!=typeof url?url:url.replace(/^http(s?):/,"")}return WPGMZA.defaultMarkerIcon?stripProtocol(WPGMZA.defaultMarkerIcon):stripProtocol(WPGMZA.settings.default_marker_icon)},WPGMZA.Marker.prototype.getPosition=function(){return new WPGMZA.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})},WPGMZA.Marker.prototype.setPosition=function(latLng){latLng instanceof WPGMZA.LatLng?(this.lat=latLng.lat,this.lng=latLng.lng):(this.lat=parseFloat(latLng.lat),this.lng=parseFloat(latLng.lng))},WPGMZA.Marker.prototype.setOffset=function(x,y){this._offset.x=x,this._offset.y=y,this.updateOffset()},WPGMZA.Marker.prototype.updateOffset=function(){},WPGMZA.Marker.prototype.getAnimation=function(){return this.anim},WPGMZA.Marker.prototype.setAnimation=function(animation){},WPGMZA.Marker.prototype.getVisible=function(){},WPGMZA.Marker.prototype.setVisible=function(visible){!visible&&this.infoWindow&&this.infoWindow.close()},WPGMZA.Marker.prototype.getMap=function(){return this.map},WPGMZA.Marker.prototype.setMap=function(map){map?map.addMarker(this):this.map&&this.map.removeMarker(this),this.map=map},WPGMZA.Marker.prototype.getDraggable=function(){},WPGMZA.Marker.prototype.setDraggable=function(draggable){},WPGMZA.Marker.prototype.setOptions=function(options){},WPGMZA.Marker.prototype.setOpacity=function(opacity){},WPGMZA.Marker.prototype.panIntoView=function(){if(!this.map)throw new Error("Marker hasn't been added to a map");this.map.setCenter(this.getPosition())},WPGMZA.Marker.prototype.toJSON=function(){var result=WPGMZA.Feature.prototype.toJSON.call(this),position=this.getPosition();return $.extend(result,{lat:position.lat,lng:position.lng,address:this.address,title:this.title,description:this.description,link:this.link,icon:this.icon,pic:this.pic,approved:this.approved}),result}}),jQuery(function($){WPGMZA.ModernStoreLocatorCircle=function(map_id,settings){var map;map=WPGMZA.isProVersion()?this.map=WPGMZA.getMapByID(map_id):this.map=WPGMZA.maps[0],this.map_id=map_id,this.mapElement=map.element,this.mapSize={width:$(this.mapElement).width(),height:$(this.mapElement).height()},this.initCanvasLayer(),this.settings={center:new WPGMZA.LatLng(0,0),radius:1,color:"#ff0000",shadowColor:"white",shadowBlur:4,centerRingRadius:10,centerRingLineWidth:3,numInnerRings:9,innerRingLineWidth:1,innerRingFade:!0,numOuterRings:7,ringLineWidth:1,mainRingLineWidth:2,numSpokes:6,spokesStartAngle:Math.PI/2,numRadiusLabels:6,radiusLabelsStartAngle:Math.PI/2,radiusLabelFont:"13px sans-serif",visible:!1},settings&&this.setOptions(settings)},WPGMZA.ModernStoreLocatorCircle.createInstance=function(map,settings){return"google-maps"==WPGMZA.settings.engine?new WPGMZA.GoogleModernStoreLocatorCircle(map,settings):new WPGMZA.OLModernStoreLocatorCircle(map,settings)},WPGMZA.ModernStoreLocatorCircle.prototype.initCanvasLayer=function(){},WPGMZA.ModernStoreLocatorCircle.prototype.onResize=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.onUpdate=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.setOptions=function(options){for(var name in options){var functionName="set"+name.substr(0,1).toUpperCase()+name.substr(1);"function"==typeof this[functionName]?this[functionName](options[name]):this.settings[name]=options[name]}},WPGMZA.ModernStoreLocatorCircle.prototype.getResolutionScale=function(){return window.devicePixelRatio||1},WPGMZA.ModernStoreLocatorCircle.prototype.getCenter=function(){return this.getPosition()},WPGMZA.ModernStoreLocatorCircle.prototype.setCenter=function(value){this.setPosition(value)},WPGMZA.ModernStoreLocatorCircle.prototype.getPosition=function(){return this.settings.center},WPGMZA.ModernStoreLocatorCircle.prototype.setPosition=function(position){this.settings.center=position},WPGMZA.ModernStoreLocatorCircle.prototype.getRadius=function(){return this.settings.radius},WPGMZA.ModernStoreLocatorCircle.prototype.setRadius=function(radius){if(isNaN(radius))throw new Error("Invalid radius");this.settings.radius=radius},WPGMZA.ModernStoreLocatorCircle.prototype.getVisible=function(){return this.settings.visible},WPGMZA.ModernStoreLocatorCircle.prototype.setVisible=function(visible){this.settings.visible=visible},WPGMZA.ModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getContext=function(type){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.validateSettings=function(){WPGMZA.isHexColorString(this.settings.color)||(this.settings.color="#ff0000")},WPGMZA.ModernStoreLocatorCircle.prototype.draw=function(){this.validateSettings();var settings=this.settings,canvasDimensions=this.getCanvasDimensions(),canvasWidth=canvasDimensions.width,canvasHeight=canvasDimensions.height;this.map,this.getResolutionScale();if(context=this.getContext("2d"),context.clearRect(0,0,canvasWidth,canvasHeight),settings.visible){context.shadowColor=settings.shadowColor,context.shadowBlur=settings.shadowBlur,context.setTransform(1,0,0,1,0,0);var scale=this.getScale();context.scale(scale,scale);var offset=this.getWorldOriginOffset();context.translate(offset.x,offset.y);new WPGMZA.LatLng(this.settings.center);var worldPoint=this.getCenterPixels(),rgba=WPGMZA.hexToRgba(settings.color),ringSpacing=this.getTransformedRadius(settings.radius)/(settings.numInnerRings+1);context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.centerRingRadius)/scale,0,2*Math.PI),context.stroke(),context.closePath();var end,radius=this.getTransformedRadius(settings.radius)+ringSpacing*settings.numOuterRings+1,grad=context.createRadialGradient(0,0,0,0,0,radius),start=(rgba=WPGMZA.hexToRgba(settings.color),WPGMZA.rgbaToString(rgba));rgba.a=0,end=WPGMZA.rgbaToString(rgba),grad.addColorStop(0,start),grad.addColorStop(1,end),context.save(),context.translate(worldPoint.x,worldPoint.y),context.strokeStyle=grad,context.lineWidth=2/scale;for(var i=0;i<settings.numSpokes;i++)spokeAngle=settings.spokesStartAngle+2*Math.PI*(i/settings.numSpokes),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.setLineDash([2/scale,15/scale]),context.beginPath(),context.moveTo(0,0),context.lineTo(x,y),context.stroke();context.setLineDash([]),context.restore(),context.lineWidth=1/scale*settings.innerRingLineWidth;for(i=1;i<=settings.numInnerRings;i++){radius=i*ringSpacing;settings.innerRingFade&&(rgba.a=1-(i-1)/settings.numInnerRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath()}context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.radius),0,2*Math.PI),context.stroke(),context.closePath();for(radius=radius+ringSpacing,i=0;i<settings.numOuterRings;i++)settings.innerRingFade&&(rgba.a=1-i/settings.numOuterRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath(),radius+=ringSpacing;if(0<settings.numRadiusLabels){var m,x,y;radius=this.getTransformedRadius(settings.radius);(m=settings.radiusLabelFont.match(/(\d+)px/))&&parseInt(m[1]),context.font=settings.radiusLabelFont,context.textAlign="center",context.textBaseline="middle",context.fillStyle=settings.color,context.save(),context.translate(worldPoint.x,worldPoint.y);for(i=0;i<settings.numRadiusLabels;i++){var spokeAngle,width,textAngle=(spokeAngle=settings.radiusLabelsStartAngle+2*Math.PI*(i/settings.numRadiusLabels))+Math.PI/2,text=settings.radiusString;0<Math.sin(spokeAngle)&&(textAngle-=Math.PI),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.save(),context.translate(x,y),context.rotate(textAngle),context.scale(1/scale,1/scale),width=context.measureText(text).width,height=width/2,context.clearRect(-width,-height,2*width,2*height),context.fillText(settings.radiusString,0,0),context.restore()}context.restore()}}}}),jQuery(function($){WPGMZA.ModernStoreLocator=function(map_id){var original,self=this,map=WPGMZA.getMapByID(map_id);if(WPGMZA.assertInstanceOf(this,"ModernStoreLocator"),(original=WPGMZA.isProVersion()?$(".wpgmza_sl_search_button[mid='"+map_id+"'], .wpgmza_sl_search_button_"+map_id).closest(".wpgmza_sl_main_div"):$(".wpgmza_sl_search_button").closest(".wpgmza_sl_main_div")).length){this.element=$("<div class='wpgmza-modern-store-locator'><div class='wpgmza-inner wpgmza-modern-hover-opaque'/></div>")[0];var addressInput,inner=$(this.element).find(".wpgmza-inner");addressInput=WPGMZA.isProVersion()?$(original).find(".addressInput"):$(original).find("#addressInput"),map.settings.store_locator_query_string&&map.settings.store_locator_query_string.length&&addressInput.attr("placeholder",map.settings.store_locator_query_string),inner.append(addressInput);var button,titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=map.settings.store_locator_name_string;placeholder&&placeholder.length&&titleSearch.attr("placeholder",placeholder),inner.append(titleSearch)}(button=$(original).find("button.wpgmza-use-my-location"))&&inner.append(button),$(addressInput).on("keydown keypress",function(event){13==event.keyCode&&self.searchButton.is(":visible")&&self.searchButton.trigger("click")}),$(addressInput).on("input",function(event){self.searchButton.show(),self.resetButton.hide()}),inner.append($(original).find("select.wpgmza_sl_radius_select")),this.searchButton=$(original).find(".wpgmza_sl_search_button, .wpgmza_sl_search_button_div"),inner.append(this.searchButton),this.resetButton=$(original).find(".wpgmza_sl_reset_button_div"),inner.append(this.resetButton),this.resetButton.on("click",function(event){resetLocations(map_id)}),this.resetButton.hide(),WPGMZA.isProVersion()&&(this.searchButton.on("click",function(event){0!=$("addressInput_"+map_id).val()&&(self.searchButton.hide(),self.resetButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_APPLIED)}),this.resetButton.on("click",function(event){self.resetButton.hide(),self.searchButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_INITIAL})),inner.append($("#wpgmza_distance_type_"+map_id));var container=$(original).find(".wpgmza_cat_checkbox_holder"),items=($(container).children("ul"),$(container).find("li")),numCategories=0,icons=[];items.each(function(index,el){var id=$(el).attr("class").match(/\d+/);for(var category_id in wpgmza_category_data)if(id==category_id){var src=wpgmza_category_data[category_id].image,icon=$('<div class="wpgmza-chip-icon"/>');icon.css({"background-image":"url('"+src+"')",width:$("#wpgmza_cat_checkbox_"+category_id+" + label").height()+"px"}),icons.push(icon),null!=src&&""!=src&&$("#wpgmza_cat_checkbox_"+category_id+" + label").prepend(icon),numCategories++;break}}),$(this.element).append(container),numCategories&&(this.optionsButton=$('<span class="wpgmza_store_locator_options_button"><i class="fa fa-list"></i></span>'),$(this.searchButton).before(this.optionsButton)),setInterval(function(){icons.forEach(function(icon){var height=$(icon).height();$(icon).css({width:height+"px"}),$(icon).closest("label").css({"padding-left":height+8+"px"})}),$(container).css("width",$(self.element).find(".wpgmza-inner").outerWidth()+"px")},1e3),$(this.element).find(".wpgmza_store_locator_options_button").on("click",function(event){container.hasClass("wpgmza-open")?container.removeClass("wpgmza-open"):container.addClass("wpgmza-open")}),$(original).remove(),$(this.element).find("input, select").on("focus",function(){$(inner).addClass("active")}),$(this.element).find("input, select").on("blur",function(){$(inner).removeClass("active")}),$(this.element).on("mouseover","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseOverCategory(event)}),$(this.element).on("mouseleave","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseLeaveCategory(event)}),$("body").on("click",".wpgmza_store_locator_options_button",function(event){setTimeout(function(){if($(".wpgmza_cat_checkbox_holder").hasClass("wpgmza-open")){var p_cat=$(".wpgmza_cat_checkbox_holder"),position_cat=p_cat.position().top+p_cat.outerHeight(!0)+$(".wpgmza-modern-store-locator").height(),$p_map=$(".wpgmza_map");$p_map.position().top+$p_map.outerHeight(!0)<=position_cat&&($(".wpgmza_cat_ul").css("overflow","scroll "),$(".wpgmza_cat_ul").css("height","100%"),$(".wpgmza-modern-store-locator").css("height","100%"),$(".wpgmza_cat_checkbox_holder.wpgmza-open").css({"padding-bottom":"50px",height:"100%"}))}},500)})}},WPGMZA.ModernStoreLocator.createInstance=function(map_id){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLModernStoreLocator(map_id);default:return new WPGMZA.GoogleModernStoreLocator(map_id)}},WPGMZA.ModernStoreLocator.prototype.onMouseOverCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeIn()},WPGMZA.ModernStoreLocator.prototype.onMouseLeaveCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeOut()}}),jQuery(function($){WPGMZA.NativeMapsAppIcon=function(){navigator.userAgent.match(/^Apple|iPhone|iPad|iPod/)?(this.type="apple",this.element=$('<span><i class="fab fa fa-apple" aria-hidden="true"></i></span>')):(this.type="google",this.element=$('<span><i class="fab fa fa-google" aria-hidden="true"></i></span>'))}}),jQuery(function($){Uint8Array.prototype.slice||Object.defineProperty(Uint8Array.prototype,"slice",{value:function(begin,end){return new Uint8Array(Array.prototype.slice.call(this,begin,end))}}),WPGMZA.isSafari()&&!window.external&&(window.external={})}),jQuery(function($){WPGMZA.Polygon=function(row,enginePolygon){WPGMZA.assertInstanceOf(this,"Polygon"),this.paths=null,WPGMZA.Feature.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,Object.defineProperty(WPGMZA.Polygon.prototype,"fillColor",{enumerable:!0,get:function(){return this.fillcolor&&this.fillcolor.length?"#"+this.fillcolor.replace(/^#/,""):"#ff0000"},set:function(a){this.fillcolor=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity&&this.opacity.length?this.opacity:.6},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"strokeColor",{enumerable:!0,get:function(){return this.linecolor&&this.linecolor.length?"#"+this.linecolor.replace(/^#/,""):"#ff0000"},set:function(a){this.linecolor=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.lineopacity&&this.lineopacity.length?this.lineopacity:.6},set:function(a){this.lineopacity=a}}),WPGMZA.Polygon.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProPolygon:WPGMZA.OLPolygon;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProPolygon:WPGMZA.GooglePolygon}},WPGMZA.Polygon.createInstance=function(row,engineObject){return new(WPGMZA.Polygon.getConstructor())(row,engineObject)}}),jQuery(function($){WPGMZA.Polyline=function(options,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),WPGMZA.Feature.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,Object.defineProperty(WPGMZA.Polyline.prototype,"strokeColor",{enumerable:!0,get:function(){return this.linecolor&&this.linecolor.length?"#"+this.linecolor.replace(/^#/,""):"#ff0000"},set:function(a){this.linecolor=a}}),Object.defineProperty(WPGMZA.Polyline.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.opacity&&this.opacity.length?this.opacity:.6},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Polyline.prototype,"strokeWeight",{enumerable:!0,get:function(){return this.linethickness&&this.linethickness.length?parseInt(this.linethickness):1},set:function(a){this.linethickness=a}}),WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(options,engineObject){return new(WPGMZA.Polyline.getConstructor())(options,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.Feature.prototype.toJSON.call(this);return result.title=this.title,result}}),jQuery(function($){WPGMZA.PopoutPanel=function(element){this.element=element},WPGMZA.PopoutPanel.prototype.open=function(){$(this.element).addClass("wpgmza-open")},WPGMZA.PopoutPanel.prototype.close=function(){$(this.element).removeClass("wpgmza-open")}}),jQuery(function($){var Parent=WPGMZA.Feature;WPGMZA.Rectangle=function(options,engineRectangle){WPGMZA.assertInstanceOf(this,"Rectangle"),this.name="",this.cornerA=new WPGMZA.LatLng,this.cornerB=new WPGMZA.LatLng,this.color="#ff0000",this.opacity=.5,Parent.apply(this,arguments)},WPGMZA.extend(WPGMZA.Rectangle,WPGMZA.Feature),Object.defineProperty(WPGMZA.Rectangle.prototype,"fillColor",{enumerable:!0,get:function(){return this.color&&this.color.length?this.color:"#ff0000"},set:function(a){this.color=a}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity||0==this.opacity?parseFloat(this.opacity):.5},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"strokeColor",{enumerable:!0,get:function(){return"#000000"}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"strokeOpacity",{enumerable:!0,get:function(){return 0}}),WPGMZA.Rectangle.createInstance=function(options,engineRectangle){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLRectangle;break;default:constructor=WPGMZA.GoogleRectangle}return new constructor(options,engineRectangle)}}),jQuery(function($){function sendAJAXFallbackRequest(route,params){if((params=$.extend({},params)).data||(params.data={}),"route"in params.data)throw new Error("Cannot send route through this method");if("action"in params.data)throw new Error("Cannot send action through this method");return params.data.route=route,params.data.action="wpgmza_rest_api_request",WPGMZA.restAPI.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_AJAX),$.ajax(WPGMZA.ajaxurl,params)}WPGMZA.RestAPI=function(){WPGMZA.RestAPI.URL=WPGMZA.resturl,this.useAJAXFallback=!1},WPGMZA.RestAPI.CONTEXT_REST="REST",WPGMZA.RestAPI.CONTEXT_AJAX="AJAX",WPGMZA.RestAPI.createInstance=function(){return new WPGMZA.RestAPI},Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableSupported",{get:function(){return WPGMZA.serverCanInflate&&"Uint8Array"in window&&"TextEncoder"in window}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableAllowed",{get:function(){return!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?!WPGMZA.settings.disable_compressed_path_variables:WPGMZA.settings.enable_compressed_path_variables}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"maxURLLength",{get:function(){return 2083}}),WPGMZA.RestAPI.prototype.compressParams=function(params){var suffix="";if(params.markerIDs){var markerIDs=params.markerIDs.split(",");if(1<markerIDs.length){var encoded=(new WPGMZA.EliasFano).encode(markerIDs),compressed=pako.deflate(encoded),string=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");suffix="/"+btoa(string).replace(/\//g,"-").replace(/=+$/,""),params.midcbp=encoded.pointer,delete params.markerIDs}}string=JSON.stringify(params);var input=(new TextEncoder).encode(string),raw=(compressed=pako.deflate(input),Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join(""));return btoa(raw).replace(/\//g,"-").replace(/=+$/,"")+suffix},WPGMZA.RestAPI.prototype.getNonce=function(route){var matches=[];for(var pattern in WPGMZA.restnoncetable){var regex=new RegExp(pattern);route.match(regex)&&matches.push({pattern:pattern,nonce:WPGMZA.restnoncetable[pattern],length:pattern.length})}if(!matches.length)throw new Error("No nonce found for route");return matches.sort(function(a,b){return b.length-a.length}),matches[0].nonce},WPGMZA.RestAPI.prototype.addNonce=function(route,params,context){function setRESTNonce(xhr){context==WPGMZA.RestAPI.CONTEXT_REST&&self.shouldAddNonce(route)&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&¶ms.method&&!params.method.match(/^GET$/i)&&xhr.setRequestHeader("X-WPGMZA-Action-Nonce",self.getNonce(route))}var self=this;if(params.beforeSend){var base=params.beforeSend;params.beforeSend=function(xhr){base(xhr),setRESTNonce(xhr)}}else params.beforeSend=setRESTNonce},WPGMZA.RestAPI.prototype.shouldAddNonce=function(route){route=route.replace(/\//g,"");var isAdmin=!1;WPGMZA.is_admin&&1===parseInt(WPGMZA.is_admin)&&(isAdmin=!0);return!(route&&["markers","features","marker-listing","datatables"].includes(route)&&!isAdmin)},WPGMZA.RestAPI.prototype.call=function(route,params){if(this.useAJAXFallback)return sendAJAXFallbackRequest(route,params);var attemptedCompressedPathVariable=!1,fallbackRoute=route,fallbackParams=$.extend({},params);if("string"!=typeof route||!route.match(/^\//)&&!route.match(/^http/))throw new Error("Invalid route");if(WPGMZA.RestAPI.URL.match(/\/$/)&&(route=route.replace(/^\//,"")),params=params||{},this.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_REST),params.error||(params.error=function(xhr,status,message){if("abort"!=status){switch(xhr.status){case 401:case 403:case 405:return($.post(WPGMZA.ajaxurl,{action:"wpgmza_report_rest_api_blocked"},function(response){}),console.warn("The REST API was blocked. This is usually due to security plugins blocking REST requests for non-authenticated users."),"DELETE"===params.method)?(console.warn("The REST API rejected a DELETE request, attempting again with POST fallback"),params.method="POST",params.data||(params.data={}),params.data.simulateDelete="yes",WPGMZA.restAPI.call(route,params)):(this.useAJAXFallback=!0,sendAJAXFallbackRequest(fallbackRoute,fallbackParams));case 414:if(!attemptedCompressedPathVariable)break;return fallbackParams.method="POST",fallbackParams.useCompressedPathVariable=!1,WPGMZA.restAPI.call(fallbackRoute,fallbackParams)}throw new Error(message)}}),params.useCompressedPathVariable&&this.isCompressedPathVariableSupported&&this.isCompressedPathVariableAllowed){var compressedParams=$.extend({},params),data=params.data,base64=this.compressParams(data);WPGMZA.isServerIIS&&(base64=base64.replace(/\+/g,"%20"));var compressedRoute=route.replace(/\/$/,"")+"/base64"+base64;WPGMZA.RestAPI.URL;compressedParams.method="GET",delete compressedParams.data,!1===params.cache&&(compressedParams.data={skip_cache:1}),compressedRoute.length<this.maxURLLength?(attemptedCompressedPathVariable=!0,route=compressedRoute,params=compressedParams):(WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed||console.warn("Compressed path variable route would exceed URL length limit"),WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed=!0)}var onSuccess=null;return params.success&&(onSuccess=params.success),params.success=function(result,status,xhr){if("object"!=typeof result){var rawResult=result;try{result=JSON.parse(result)}catch(parseExc){result=rawResult}}onSuccess&&"function"==typeof onSuccess&&onSuccess(result,status,xhr)},WPGMZA.RestAPI.URL.match(/\?/)&&(route=route.replace(/\?/,"&")),$.ajax(WPGMZA.RestAPI.URL+route,params)};var nativeCallFunction=WPGMZA.RestAPI.call;WPGMZA.RestAPI.call=function(){console.warn("WPGMZA.RestAPI.call was called statically, did you mean to call the function on WPGMZA.restAPI?"),nativeCallFunction.apply(this,arguments)},$(document.body).on("click","#wpgmza-rest-api-blocked button.notice-dismiss",function(event){WPGMZA.restAPI.call("/rest-api/",{method:"POST",data:{dismiss_blocked_notice:!0}})})});var $_GET={};if(-1!==document.location.toString().indexOf("?"))for(var query=document.location.toString().replace(/^.*?\?/,"").replace(/#.*$/,"").split("&"),wpgmza_i=0,wpgmza_l=query.length;wpgmza_i<wpgmza_l;wpgmza_i++){var aux=decodeURIComponent(query[wpgmza_i]).split("=");$_GET[aux[0]]=aux[1]}jQuery(function($){WPGMZA.SettingsPage=function(){var self=this;this._keypressHistory=[],this.updateEngineSpecificControls(),this.updateStorageControls(),this.updateGDPRControls(),$(window).on("keypress",function(event){self.onKeyPress(event)}),jQuery("body").on("click",".wpgmza_destroy_data",function(e){e.preventDefault();var ttype=jQuery(this).attr("danger"),warning="Are you sure?";"wpgmza_destroy_all_data"==ttype&&(warning="Are you sure? This will delete ALL data and settings for WP Google Maps!"),window.confirm(warning)&&jQuery.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_settings_danger_zone_delete_data",type:ttype,nonce:wpgmza_dz_nonce},success:function(response,status,xhr){"wpgmza_destroy_all_data"==ttype?window.location.replace("admin.php?page=wp-google-maps-menu&action=welcome_page"):"wpgmza_reset_all_settings"==ttype?window.location.reload():alert("Complete.")}})}),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$('[name="wpgmza_settings_marker_pull"]').on("click",function(event){self.updateStorageControls()}),$("input[name='wpgmza_gdpr_require_consent_before_load'], input[name='wpgmza_gdpr_require_consent_before_vgm_submit'], input[name='wpgmza_gdpr_override_notice']").on("change",function(event){self.updateGDPRControls()}),$('select[name="tile_server_url"]').on("change",function(event){"custom_override"===$('select[name="tile_server_url"]').val()?$(".wpgmza_tile_server_override_component").removeClass("wpgmza-hidden"):$(".wpgmza_tile_server_override_component").addClass("wpgmza-hidden")}),$('select[name="tile_server_url"]').trigger("change"),jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.settingsPage.flushGeocodeCache()}),$("#wpgmza-global-settings").tabs({create:function(event,ui){if(void 0!==$_GET.highlight){var elmnt=document.getElementById($_GET.highlight);elmnt.classList.add("highlight-item"),setTimeout(function(){elmnt.classList.add("highlight-item-step-2")},1e3);var y=elmnt.getBoundingClientRect().top+window.pageYOffset+-100;window.scrollTo({top:y,behavior:"smooth"})}}}),$("#wpgmza-global-setting").bind("create",function(event,ui){alert("now")}),$("#wpgmza-global-settings fieldset").each(function(index,el){$(el).children(":not(legend)").wrapAll("<span class='settings-group'></span>")})},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},WPGMZA.SettingsPage.prototype.updateEngineSpecificControls=function(){var engine=$("select[name='wpgmza_maps_engine']").val();$("[data-required-maps-engine][data-required-maps-engine!='"+engine+"']").hide(),$("[data-required-maps-engine='"+engine+"']").show()},WPGMZA.SettingsPage.prototype.updateStorageControls=function(){$("input[name='wpgmza_settings_marker_pull'][value='1']").is(":checked")?$("#xml-cache-settings").show():$("#xml-cache-settings").hide()},WPGMZA.SettingsPage.prototype.updateGDPRControls=function(){var showNoticeControls=$("input[name='wpgmza_gdpr_require_consent_before_load']").prop("checked"),vgmCheckbox=$("input[name='wpgmza_gdpr_require_consent_before_vgm_submit']");vgmCheckbox.length&&(showNoticeControls=showNoticeControls||vgmCheckbox.prop("checked"));var showOverrideTextarea=showNoticeControls&&$("input[name='wpgmza_gdpr_override_notice']").prop("checked");showNoticeControls?$("#wpgmza-gdpr-compliance-notice").show("slow"):$("#wpgmza-gdpr-compliance-notice").hide("slow"),showOverrideTextarea?$("#wpgmza_gdpr_override_notice_text").show("slow"):$("#wpgmza_gdpr_override_notice_text").hide("slow")},WPGMZA.SettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},WPGMZA.SettingsPage.prototype.onKeyPress=function(event){this._keypressHistory.push(event.key),9<this._keypressHistory.length&&(this._keypressHistory=this._keypressHistory.slice(this._keypressHistory.length-9)),"codecabin"!=this._keypressHistory.join("")||this._developerModeRevealed||($("fieldset#wpgmza-developer-mode").show(),this._developerModeRevealed=!0)},$(document).ready(function(event){WPGMZA.getCurrentPage()&&(WPGMZA.settingsPage=WPGMZA.SettingsPage.createInstance())})}),jQuery(function($){WPGMZA.StoreLocator=function(map,element){var self=this;WPGMZA.EventDispatcher.call(this),this._center=null,this.map=map,this.element=element,this.state=WPGMZA.StoreLocator.STATE_INITIAL,this.distanceUnits=this.map.settings.store_locator_distance,this.addressInput=WPGMZA.AddressInput.createInstance(this.addressElement,this.map),$(element).find(".wpgmza-not-found-msg").hide(),this.radiusElement&&this.map.settings.wpgmza_store_locator_default_radius&&0<this.radiusElement.find("option[value='"+this.map.settings.wpgmza_store_locator_default_radius+"']").length&&this.radiusElement.val(this.map.settings.wpgmza_store_locator_default_radius),this.map.on("storelocatorgeocodecomplete",function(event){self.onGeocodeComplete(event)}),this.map.on("init",function(event){self.map.markerFilter.on("filteringcomplete",function(event){self.onFilteringComplete(event)}),void 0!==self.map.settings.store_locator_style&&"modern"!=self.map.settings.store_locator_style&&"modern"!==WPGMZA.settings.user_interface_style||"default"!==WPGMZA.settings.user_interface_style&&"modern"!=WPGMZA.settings.user_interface_style&&"legacy"!=WPGMZA.settings.user_interface_style||(self.legacyModernAdapter=WPGMZA.ModernStoreLocator.createInstance(map.id))}),$(document.body).on("click",".wpgmza_sl_search_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_search_button",function(event){self.onSearch(event)}),$(document.body).on("click",".wpgmza_sl_reset_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_reset_button_div",function(event){self.onReset(event)}),$(this.addressElement).on("keypress",function(event){13==event.which&&self.onSearch(event)})},WPGMZA.StoreLocator.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.StoreLocator.prototype.constructor=WPGMZA.StoreLocator,WPGMZA.StoreLocator.STATE_INITIAL="initial",WPGMZA.StoreLocator.STATE_APPLIED="applied",WPGMZA.StoreLocator.createInstance=function(map,element){return new WPGMZA.StoreLocator(map,element)},Object.defineProperty(WPGMZA.StoreLocator.prototype,"address",{get:function(){return $(this.addressElement).val()}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"addressElement",{get:function(){return this.legacyModernAdapter?$(this.legacyModernAdapter.element).find("input.wpgmza-address")[0]:$(this.element).find("input.wpgmza-address")[0]}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"countryRestriction",{get:function(){return this.map.settings.wpgmza_store_locator_restrict}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radiusElement",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id)}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return parseFloat(this.radiusElement.val())}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"center",{get:function(){return this._center}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"bounds",{get:function(){return this._bounds}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"marker",{get:function(){if(1!=this.map.settings.store_locator_bounce)return null;if(this._marker)return this._marker;return this._marker=WPGMZA.Marker.createInstance({visible:!1}),this._marker.disableInfoWindow=!0,this._marker.isFilterable=!1,this._marker.setAnimation(WPGMZA.Marker.ANIMATION_BOUNCE),this._marker}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"circle",{get:function(){return this._circle||("modern"!=this.map.settings.wpgmza_store_locator_radius_style||WPGMZA.isDeviceiOS()?this._circle=WPGMZA.Circle.createInstance({strokeColor:"#ff0000",strokeOpacity:"0.25",strokeWeight:2,fillColor:"#ff0000",fillOpacity:"0.15",visible:!1,clickable:!1,center:new WPGMZA.LatLng}):(this._circle=WPGMZA.ModernStoreLocatorCircle.createInstance(this.map.id),this._circle.settings.color=this.circleStrokeColor)),this._circle}}),WPGMZA.StoreLocator.prototype.onGeocodeComplete=function(event){if(!event.results||!event.results.length)return this._center=null,void(this._bounds=null);this._center=new WPGMZA.LatLng(event.results[0].latLng),this._bounds=new WPGMZA.LatLngBounds(event.results[0].bounds),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.onSearch=function(event){var self=this;if(this.state=WPGMZA.StoreLocator.STATE_APPLIED,!this.address||!this.address.length)return this.addressElement.focus(),!1;function callback(results,status){self.map.trigger({type:"storelocatorgeocodecomplete",results:results,status:status})}if(void 0!==this.map.settings.store_locator_style&&"modern"!==this.map.settings.store_locator_style&&"modern"!==WPGMZA.settings.user_interface_style&&"default"===WPGMZA.settings.user_interface_style&&WPGMZA.animateScroll(this.map.element),$(this.element).find(".wpgmza-not-found-msg").hide(),WPGMZA.LatLng.isLatLngString(this.address))callback([WPGMZA.LatLng.fromString(this.address)],WPGMZA.Geocoder.SUCCESS);else{var geocoder=WPGMZA.Geocoder.createInstance(),options={address:this.address};this.countryRestriction&&(options.country=this.countryRestriction),geocoder.geocode(options,function(results,status){status==WPGMZA.Geocoder.SUCCESS?callback(results,status):alert(WPGMZA.localized_strings.address_not_found)})}return!0},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.setZoom(this.map.settings.map_start_zoom),$(this.element).find(".wpgmza-not-found-msg").hide(),this.circle&&this.circle.setVisible(!1),this.marker&&this.marker.map&&this.map.removeMarker(this.marker),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.getZoomFromRadius=function(radius){return this.distanceUnits==WPGMZA.Distance.MILES&&(radius*=WPGMZA.Distance.KILOMETERS_PER_MILE),Math.round(14-Math.log(radius)/Math.LN2)},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&(this.map.setCenter(params.center),marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker))),params.radius&&this.map.setZoom(this.getZoomFromRadius(params.radius));var circle=this.circle;if(circle){circle.setVisible(!1);var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;params.center&¶ms.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle instanceof WPGMZA.ModernStoreLocatorCircle||circle.map==this.map||this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}0==event.filteredMarkers.length&&this.state===WPGMZA.StoreLocator.STATE_APPLIED&&(0<$(this.element).find(".wpgmza-no-results").length&&"legacy"===WPGMZA.settings.user_interface_style?$(this.element).find(".wpgmza-no-results").show():alert(this.map.settings.store_locator_not_found_message?this.map.settings.store_locator_not_found_message:WPGMZA.localized_strings.zero_results))}}),jQuery(function($){WPGMZA.Text=function(options){if(options)for(var name in options)this[name]=options[name]},WPGMZA.Text.createInstance=function(options){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLText(options);default:return new WPGMZA.GoogleText(options)}}}),jQuery(function($){WPGMZA.ThemeEditor=function(){WPGMZA.EventDispatcher.call(this),this.element=$("#wpgmza-theme-editor"),"open-layers"!=WPGMZA.settings.engine?this.element.length?(this.json=[{}],this.mapElement=WPGMZA.maps[0].element,this.element.appendTo("#wpgmza-map-theme-editor__holder"),$(window).on("scroll",function(event){}),setInterval(function(){},200),this.initHTML(),WPGMZA.themeEditor=this):console.warn("No element to initialise theme editor on"):this.element.remove()},WPGMZA.extend(WPGMZA.ThemeEditor,WPGMZA.EventDispatcher),WPGMZA.ThemeEditor.prototype.updatePosition=function(){},WPGMZA.ThemeEditor.features={all:[],administrative:["country","land_parcel","locality","neighborhood","province"],landscape:["man_made","natural","natural.landcover","natural.terrain"],poi:["attraction","business","government","medical","park","place_of_worship","school","sports_complex"],road:["arterial","highway","highway.controlled_access","local"],transit:["line","station","station.airport","station.bus","station.rail"],water:[]},WPGMZA.ThemeEditor.elements={all:[],geometry:["fill","stroke"],labels:["icon","text","text.fill","text.stroke"]},WPGMZA.ThemeEditor.prototype.parse=function(){$("#wpgmza_theme_editor_feature option, #wpgmza_theme_editor_element option").css("font-weight","normal"),$("#wpgmza_theme_editor_error").hide(),$("#wpgmza_theme_editor").show(),$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val("");var textarea=$('textarea[name="wpgmza_theme_data"]');if(!textarea.val()||textarea.val().length<1)this.json=[{}];else{try{this.json=$.parseJSON($('textarea[name="wpgmza_theme_data"]').val())}catch(e){return this.json=[{}],$("#wpgmza_theme_editor").hide(),void $("#wpgmza_theme_editor_error").show()}if(!$.isArray(this.json)){var jsonCopy=this.json;this.json=[],this.json.push(jsonCopy)}this.highlightFeatures(),this.highlightElements(),this.loadElementStylers()}},WPGMZA.ThemeEditor.prototype.highlightFeatures=function(){$("#wpgmza_theme_editor_feature option").css("font-weight","normal"),$.each(this.json,function(i,v){v.hasOwnProperty("featureType")?$('#wpgmza_theme_editor_feature option[value="'+v.featureType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_feature option[value="all"]').css("font-weight","bold")})},WPGMZA.ThemeEditor.prototype.highlightElements=function(){var feature=$("#wpgmza_theme_editor_feature").val();$("#wpgmza_theme_editor_element option").css("font-weight","normal"),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")?$('#wpgmza_theme_editor_element option[value="'+v.elementType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_element option[value="all"]').css("font-weight","bold"))})},WPGMZA.ThemeEditor.prototype.loadElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val();$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val(""),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&v.hasOwnProperty("stylers")&&$.isArray(v.stylers)&&0<v.stylers.length&&$.each(v.stylers,function(ii,vv){vv.hasOwnProperty("hue")&&($("#wpgmza_theme_editor_do_hue").prop("checked",!0),$("#wpgmza_theme_editor_hue").val(vv.hue)),vv.hasOwnProperty("lightness")&&$("#wpgmza_theme_editor_lightness").val(vv.lightness),vv.hasOwnProperty("saturation")&&$("#wpgmza_theme_editor_saturation").val(vv.xaturation),vv.hasOwnProperty("gamma")&&$("#wpgmza_theme_editor_gamma").val(vv.gamma),vv.hasOwnProperty("invert_lightness")&&$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!0),vv.hasOwnProperty("visibility")&&$("#wpgmza_theme_editor_visibility").val(vv.visibility),vv.hasOwnProperty("color")&&($("#wpgmza_theme_editor_do_color").prop("checked",!0),$("#wpgmza_theme_editor_color").val(vv.color)),vv.hasOwnProperty("weight")&&$("#wpgmza_theme_editor_weight").val(vv.weight)})})},WPGMZA.ThemeEditor.prototype.writeElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val(),indexJSON=null,stylers=[];if("inherit"!=$("#wpgmza_theme_editor_visibility").val()&&stylers.push({visibility:$("#wpgmza_theme_editor_visibility").val()}),!0===$("#wpgmza_theme_editor_do_color").prop("checked")&&stylers.push({color:$("#wpgmza_theme_editor_color").val()}),!0===$("#wpgmza_theme_editor_do_hue").prop("checked")&&stylers.push({hue:$("#wpgmza_theme_editor_hue").val()}),0<$("#wpgmza_theme_editor_gamma").val().length&&stylers.push({gamma:parseFloat($("#wpgmza_theme_editor_gamma").val())}),0<$("#wpgmza_theme_editor_weight").val().length&&stylers.push({weight:parseFloat($("#wpgmza_theme_editor_weight").val())}),0<$("#wpgmza_theme_editor_saturation").val().length&&stylers.push({saturation:parseFloat($("#wpgmza_theme_editor_saturation").val())}),0<$("#wpgmza_theme_editor_lightness").val().length&&stylers.push({lightness:parseFloat($("#wpgmza_theme_editor_lightness").val())}),!0===$("#wpgmza_theme_editor_do_invert_lightness").prop("checked")&&stylers.push({invert_lightness:!0}),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&(indexJSON=i)}),null===indexJSON){if(0<stylers.length){var new_feature_element_stylers={};"all"!=feature&&(new_feature_element_stylers.featureType=feature),"all"!=element&&(new_feature_element_stylers.elementType=element),new_feature_element_stylers.stylers=stylers,this.json.push(new_feature_element_stylers)}}else 0<stylers.length?this.json[indexJSON].stylers=stylers:this.json.splice(indexJSON,1);$('textarea[name="wpgmza_theme_data"]').val(JSON.stringify(this.json).replace(/:/g,": ").replace(/,/g,", ")),this.highlightFeatures(),this.highlightElements(),WPGMZA.themePanel.updateMapTheme()},WPGMZA.ThemeEditor.prototype.initHTML=function(){var self=this;$.each(WPGMZA.ThemeEditor.features,function(i,v){$("#wpgmza_theme_editor_feature").append('<option value="'+i+'">'+i+"</option>"),0<v.length&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_feature").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),$.each(WPGMZA.ThemeEditor.elements,function(i,v){$("#wpgmza_theme_editor_element").append('<option value="'+i+'">'+i+"</option>"),0<v.length&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_element").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),this.parse(),$('textarea[name="wpgmza_theme_data"]').on("input selectionchange propertychange",function(){self.parse()}),$(".wpgmza_theme_selection").click(function(){setTimeout(function(){$('textarea[name="wpgmza_theme_data"]').trigger("input")},1e3)}),$("#wpgmza-theme-editor__toggle").click(function(){$("#wpgmza-theme-editor").removeClass("active")}),$("#wpgmza_theme_editor_feature").on("change",function(){self.highlightElements(),self.loadElementStylers()}),$("#wpgmza_theme_editor_element").on("change",function(){self.loadElementStylers()}),$("#wpgmza_theme_editor_do_hue, #wpgmza_theme_editor_hue, #wpgmza_theme_editor_lightness, #wpgmza_theme_editor_saturation, #wpgmza_theme_editor_gamma, #wpgmza_theme_editor_do_invert_lightness, #wpgmza_theme_editor_visibility, #wpgmza_theme_editor_do_color, #wpgmza_theme_editor_color, #wpgmza_theme_editor_weight").on("input selectionchange propertychange",function(){self.writeElementStylers()}),"open-layers"==WPGMZA.settings.engine&&$("#wpgmza_theme_editor :input").prop("disabled",!0)}}),jQuery(function($){WPGMZA.ThemePanel=function(){var self=this;this.element=$("#wpgmza-theme-panel"),this.map=WPGMZA.maps[0],"open-layers"!=WPGMZA.settings.engine?this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:6,dots:!0}),this.element.on("click","#wpgmza-theme-presets label",function(event){self.onThemePresetClick(event)}),$("#wpgmza-open-theme-editor").on("click",function(event){$("#wpgmza-map-theme-editor__holder").addClass("active"),$("#wpgmza-theme-editor").addClass("active"),WPGMZA.animateScroll($("#wpgmza-theme-editor"))}),WPGMZA.themePanel=this):console.warn("No element to initialise theme panel on"):this.element.remove()},WPGMZA.ThemePanel.previewImageCenter={lat:33.701806462148646,lng:-118.15949896058983},WPGMZA.ThemePanel.previewImageZoom=11,WPGMZA.ThemePanel.prototype.onThemePresetClick=function(event){var selectedData=$(event.currentTarget).find("[data-theme-json]").attr("data-theme-json"),textarea=$(this.element).find("textarea[name='wpgmza_theme_data']"),existingData=textarea.val(),allPresetData=[];$(this.element).find("[data-theme-json]").each(function(index,el){allPresetData.push($(el).attr("data-theme-json"))}),existingData.length&&-1==allPresetData.indexOf(existingData)&&!confirm(WPGMZA.localized_strings.overwrite_theme_data)||(textarea.val(selectedData),this.updateMapTheme(),WPGMZA.themeEditor.parse())},WPGMZA.ThemePanel.prototype.updateMapTheme=function(){var data;try{data=JSON.parse($("textarea[name='wpgmza_theme_data']").val())}catch(e){return void alert(WPGMZA.localized_strings.invalid_theme_data)}this.map.setOptions({styles:data})}}),jQuery(function($){WPGMZA.Version=function(){},WPGMZA.Version.GREATER_THAN=1,WPGMZA.Version.EQUAL_TO=0,WPGMZA.Version.LESS_THAN=-1,WPGMZA.Version.compare=function(v1,v2){for(var v1parts=v1.match(/\d+/g),v2parts=v2.match(/\d+/g),i=0;i<v1parts.length;++i){if(v2parts.length===i)return 1;if(v1parts[i]!==v2parts[i])return v1parts[i]>v2parts[i]?1:-1}return v1parts.length!=v2parts.length?-1:0}}),jQuery(function($){WPGMZA.XMLCacheConverter=function(){},WPGMZA.XMLCacheConverter.prototype.convert=function(xml){var markers=[],remap={marker_id:"id",linkd:"link"};return $(xml).find("marker").each(function(index,el){var data={};$(el).children().each(function(j,child){var key=child.nodeName;remap[key]&&(key=remap[key]),child.hasAttribute("data-json")?data[key]=JSON.parse($(child).text()):data[key]=$(child).text()}),markers.push(data)}),markers}}),jQuery(function($){WPGMZA.loadXMLAsWebWorker=function(){function tXml(a,d){function c(){for(var l=[];a[b];){if(60==a.charCodeAt(b)){if(47===a.charCodeAt(b+1)){b=a.indexOf(">",b);break}if(33===a.charCodeAt(b+1)){if(45==a.charCodeAt(b+2)){for(;62!==a.charCodeAt(b)||45!=a.charCodeAt(b-1)||45!=a.charCodeAt(b-2)||-1==b;)b=a.indexOf(">",b+1);-1===b&&(b=a.length)}else for(b+=2;62!==a.charCodeAt(b);)b++;b++;continue}var c=f();l.push(c)}else c=b,-2===(b=a.indexOf("<",b)-1)&&(b=a.length),0<(c=a.slice(c,b+1)).trim().length&&l.push(c);b++}return l}function l(){for(var c=b;-1===g.indexOf(a[b]);)b++;return a.slice(c,b)}function f(){var d={};b++,d.tagName=l();for(var f=!1;62!==a.charCodeAt(b);){if(64<(e=a.charCodeAt(b))&&e<91||96<e&&e<123){for(var g=l(),e=a.charCodeAt(b);39!==e&&34!==e&&!(64<e&&e<91||96<e&&e<123)&&62!==e;)b++,e=a.charCodeAt(b);if(f||(d.attributes={},f=!0),39===e||34===e){e=a[b];var h=++b;b=a.indexOf(e,h),e=a.slice(h,b)}else e=null,b--;d.attributes[g]=e}b++}return 47!==a.charCodeAt(b-1)&&("script"==d.tagName?(f=b+1,b=a.indexOf("<\/script>",b),d.children=[a.slice(f,b-1)],b+=8):"style"==d.tagName?(f=b+1,b=a.indexOf("</style>",b),d.children=[a.slice(f,b-1)],b+=7):-1==k.indexOf(d.tagName)&&(b++,d.children=c())),d}var g="\n\t>/= ",k=["img","br","input","meta","link"],h=null;if((d=d||{}).searchId){var b=new RegExp("s*ids*=s*['\"]"+d.searchId+"['\"]").exec(a).index;return-1!==b&&(-1!==(b=a.lastIndexOf("<",b))&&(h=f())),b}return b=0,h=c(),d.filter&&(h=tXml.filter(h,d.filter)),d.simplify&&(h=tXml.simplefy(h)),h}tXml.simplify=function(a){var d={};if(1===a.length&&"string"==typeof a[0])return a[0];for(var c in a.forEach(function(a){if(d[a.tagName]||(d[a.tagName]=[]),"object"==typeof a){var c=tXml.simplefy(a.children);d[a.tagName].push(c),a.attributes&&(c._attributes=a.attributes)}else d[a.tagName].push(a)}),d)1==d[c].length&&(d[c]=d[c][0]);return d},tXml.filter=function(a,d){var c=[];return a.forEach(function(a){"object"==typeof a&&d(a)&&c.push(a),a.children&&(a=tXml.filter(a.children,d),c=c.concat(a))}),c},tXml.domToXml=function(a){var c="";return function d(a){if(a)for(var f=0;f<a.length;f++)if("string"==typeof a[f])c+=a[f].trim();else{var g=a[f];c+="<"+g.tagName;var k=void 0;for(k in g.attributes)c=-1===g.attributes[k].indexOf('"')?c+(" "+k+'="'+g.attributes[k].trim())+'"':c+(" "+k+"='"+g.attributes[k].trim())+"'";c+=">",d(g.children),c+="</"+g.tagName+">"}}(O),c},"object"!=typeof window&&(module.exports=tXml);var inputData,totalFiles,worker=self,dataForMainThread=[],filesLoaded=0;function onXMLLoaded(request){if(4==request.readyState&&200==request.status){(new Date).getTime();!function(xml){for(var markers=xml[0].children[0],remap={marker_id:"id",linkd:"link"},i=0;i<markers.children.length;i++){var data={};markers.children[i].children.forEach(function(node){var key=node.tagName;remap[key]&&(key=remap[key]),node.attributes["data-json"]?data[key]=JSON.parse(node.children[0]):node.children.length?data[key]=node.children[0]:data[key]=""}),dataForMainThread.push(data)}}(tXml(request.responseText)),++filesLoaded>=totalFiles?worker.postMessage(dataForMainThread):loadNextFile()}}function loadNextFile(){var url=inputData.urls[filesLoaded],request=new XMLHttpRequest;request.onreadystatechange=function(){onXMLLoaded(this)},request.open("GET",inputData.protocol+url,!0),request.send()}self.addEventListener("message",function(event){var data=event.data;switch(data.command){case"load":dataForMainThread=[],filesLoaded=0,totalFiles=(inputData=data).urls.length,loadNextFile();break;default:throw new Error("Unknown command")}},!1)}}),jQuery(function($){WPGMZA.Integration={},WPGMZA.integrationModules={}}),jQuery(function($){if(window.wp&&wp.i18n&&wp.blocks&&wp.editor&&wp.components){var __=wp.i18n.__,registerBlockType=wp.blocks.registerBlockType,_wp$editor=wp.editor,InspectorControls=_wp$editor.InspectorControls,_wp$components=(_wp$editor.BlockControls,wp.components),Dashicon=_wp$components.Dashicon,PanelBody=(_wp$components.Toolbar,_wp$components.Button,_wp$components.Tooltip,_wp$components.PanelBody);_wp$components.TextareaControl,_wp$components.CheckboxControl,_wp$components.TextControl,_wp$components.SelectControl,_wp$components.RichText;WPGMZA.Integration.Gutenberg=function(){registerBlockType("gutenberg-wpgmza/block",this.getBlockDefinition())},WPGMZA.Integration.Gutenberg.prototype.getBlockTitle=function(){return __("WP Google Maps")},WPGMZA.Integration.Gutenberg.prototype.getBlockInspectorControls=function(props){return React.createElement(InspectorControls,{key:"inspector"},React.createElement(PanelBody,{title:__("Map Settings")},React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:WPGMZA.adminurl+"admin.php?page=wp-google-maps-menu&action=edit&map_id=1",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-pencil-square-o","aria-hidden":"true"}),__("Go to Map Editor"))),React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:"https://www.wpgmaps.com/documentation/creating-your-first-map/",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-book","aria-hidden":"true"}),__("View Documentation")))))},WPGMZA.Integration.Gutenberg.prototype.getBlockAttributes=function(){return{}},WPGMZA.Integration.Gutenberg.prototype.getBlockDefinition=function(props){var _this=this;return{title:__("WP Google Maps"),description:__("The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss."),category:"common",icon:"location-alt",keywords:[__("Map"),__("Maps"),__("Google")],attributes:this.getBlockAttributes(),edit:function(props){return[!!props.isSelected&&_this.getBlockInspectorControls(props),React.createElement("div",{className:props.className+" wpgmza-gutenberg-block"},React.createElement(Dashicon,{icon:"location-alt"}),React.createElement("span",{class:"wpgmza-gutenberg-block-title"},__("Your map will appear here on your websites front end")))]},save:function(){return null}}},WPGMZA.Integration.Gutenberg.getConstructor=function(){return WPGMZA.Integration.Gutenberg},WPGMZA.Integration.Gutenberg.createInstance=function(){return new(WPGMZA.Integration.Gutenberg.getConstructor())},WPGMZA.isProVersion()||/^6/.test(WPGMZA.pro_version)||(WPGMZA.integrationModules.gutenberg=WPGMZA.Integration.Gutenberg.createInstance())}}),jQuery(function($){$(document).ready(function(event){var parent=document.body.onclick;parent&&(document.body.onclick=function(event){event.target instanceof WPGMZA.Marker||parent(event)})})}),jQuery(function($){WPGMZA.GoogleUICompatibility=function(){if(!(navigator.vendor&&-1<navigator.vendor.indexOf("Apple")&&navigator.userAgent&&-1==navigator.userAgent.indexOf("CriOS")&&-1==navigator.userAgent.indexOf("FxiOS"))){var style=$("<style id='wpgmza-google-ui-compatiblity-fix'/>");style.html(".wpgmza_map img:not(button img) { padding:0 !important; }"),$(document.head).append(style)}},WPGMZA.googleUICompatibility=new WPGMZA.GoogleUICompatibility}),jQuery(function($){WPGMZA.GoogleCircle=function(options,googleCircle){var self=this;WPGMZA.Circle.call(this,options,googleCircle),googleCircle?(this.googleCircle=googleCircle,options&&(options.center=WPGMZA.LatLng.fromGoogleLatLng(googleCircle.getCenter()),options.radius=googleCircle.getRadius()/1e3)):(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),this.googleFeature=this.googleCircle,options&&this.setOptions(options),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.getCenter=function(){return WPGMZA.LatLng.fromGoogleLatLng(this.googleCircle.getCenter())},WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},WPGMZA.GoogleCircle.prototype.getRadius=function(){return this.googleCircle.getRadius()/1e3},WPGMZA.GoogleCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.googleCircle.setRadius(1e3*parseFloat(radius))},WPGMZA.GoogleCircle.prototype.setVisible=function(visible){this.googleCircle.setVisible(!!visible)},WPGMZA.GoogleCircle.prototype.setDraggable=function(value){this.googleCircle.setDraggable(!!value)},WPGMZA.GoogleCircle.prototype.setEditable=function(value){var self=this;this.googleCircle.setOptions({editable:value}),value&&(google.maps.event.addListener(this.googleCircle,"center_changed",function(event){self.center=WPGMZA.LatLng.fromGoogleLatLng(self.googleCircle.getCenter()),self.trigger("change")}),google.maps.event.addListener(this.googleCircle,"radius_changed",function(event){self.radius=self.googleCircle.getRadius()/1e3,self.trigger("change")}))},WPGMZA.GoogleCircle.prototype.setOptions=function(options){WPGMZA.Circle.prototype.setOptions.apply(this,arguments),options.center&&(this.center=new WPGMZA.LatLng(options.center))},WPGMZA.GoogleCircle.prototype.updateNativeFeature=function(){var googleOptions=this.getScalarProperties(),center=new WPGMZA.LatLng(this.center);googleOptions.radius*=1e3,googleOptions.center=center.toGoogleLatLng(),this.googleCircle.setOptions(googleOptions)}}),jQuery(function($){WPGMZA.GoogleDrawingManager=function(map){var self=this;WPGMZA.DrawingManager.call(this,map),this.mode=null,this.googleDrawingManager=new google.maps.drawing.DrawingManager({drawingControl:!1,polygonOptions:{editable:!0},polylineOptions:{editable:!0},circleOptions:{editable:!0},rectangleOptions:{editable:!0}}),this.googleDrawingManager.setMap(map.googleMap),google.maps.event.addListener(this.googleDrawingManager,"polygoncomplete",function(polygon){self.onPolygonClosed(polygon)}),google.maps.event.addListener(this.googleDrawingManager,"polylinecomplete",function(polyline){self.onPolylineComplete(polyline)}),google.maps.event.addListener(this.googleDrawingManager,"circlecomplete",function(circle){self.onCircleComplete(circle)}),google.maps.event.addListener(this.googleDrawingManager,"rectanglecomplete",function(rectangle){self.onRectangleComplete(rectangle)})},WPGMZA.GoogleDrawingManager.prototype=Object.create(WPGMZA.DrawingManager.prototype),WPGMZA.GoogleDrawingManager.prototype.constructor=WPGMZA.GoogleDrawingManager,WPGMZA.GoogleDrawingManager.prototype.setDrawingMode=function(mode){var googleMode;switch(WPGMZA.DrawingManager.prototype.setDrawingMode.call(this,mode),mode){case WPGMZA.DrawingManager.MODE_NONE:case WPGMZA.DrawingManager.MODE_MARKER:googleMode=null;break;case WPGMZA.DrawingManager.MODE_POLYGON:googleMode=google.maps.drawing.OverlayType.POLYGON;break;case WPGMZA.DrawingManager.MODE_POLYLINE:googleMode=google.maps.drawing.OverlayType.POLYLINE;break;case WPGMZA.DrawingManager.MODE_CIRCLE:googleMode=google.maps.drawing.OverlayType.CIRCLE;break;case WPGMZA.DrawingManager.MODE_RECTANGLE:googleMode=google.maps.drawing.OverlayType.RECTANGLE;break;case WPGMZA.DrawingManager.MODE_HEATMAP:googleMode=null;break;default:throw new Error("Invalid drawing mode")}this.googleDrawingManager.setDrawingMode(googleMode)},WPGMZA.GoogleDrawingManager.prototype.setOptions=function(options){this.googleDrawingManager.setOptions({polygonOptions:options,polylineOptions:options})},WPGMZA.GoogleDrawingManager.prototype.onVertexClicked=function(event){},WPGMZA.GoogleDrawingManager.prototype.onPolygonClosed=function(googlePolygon){var event=new WPGMZA.Event("polygonclosed");event.enginePolygon=googlePolygon,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onPolylineComplete=function(googlePolyline){var event=new WPGMZA.Event("polylinecomplete");event.enginePolyline=googlePolyline,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onCircleComplete=function(googleCircle){var event=new WPGMZA.Event("circlecomplete");event.engineCircle=googleCircle,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onRectangleComplete=function(googleRectangle){var event=new WPGMZA.Event("rectanglecomplete");event.engineRectangle=googleRectangle,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onHeatmapPointAdded=function(googleMarker){var position=WPGMZA.LatLng.fromGoogleLatLng(googleMarker.getPosition());googleMarker.setMap(null);var marker=WPGMZA.Marker.createInstance();marker.setPosition(position);var image={url:WPGMZA.imageFolderURL+"heatmap-point.png",origin:new google.maps.Point(0,0),anchor:new google.maps.Point(13,13)};marker.googleMarker.setIcon(image),this.map.addMarker(marker);var event=new WPGMZA.Event("heatmappointadded");event.position=position,this.trigger(event)}}),jQuery(function($){WPGMZA.GoogleGeocoder=function(){},WPGMZA.GoogleGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.GoogleGeocoder.prototype.constructor=WPGMZA.GoogleGeocoder,WPGMZA.GoogleGeocoder.prototype.getLatLngFromAddress=function(options,callback){if(!options||!options.address)return nativeStatus=WPGMZA.Geocoder.NO_ADDRESS,void callback(null,nativeStatus);if(options.lat&&options.lng){var latLng={lat:options.lat,lng:options.lng};callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:null}],WPGMZA.Geocoder.SUCCESS)}if(WPGMZA.isLatLngString(options.address))return WPGMZA.Geocoder.prototype.getLatLngFromAddress.call(this,options,callback);options.country&&(options.componentRestrictions={country:options.country}),(new google.maps.Geocoder).geocode(options,function(results,status){if(status==google.maps.GeocoderStatus.OK){var location=results[0].geometry.location,latLng={lat:location.lat(),lng:location.lng()},bounds=null;results[0].geometry.bounds&&(bounds=WPGMZA.LatLngBounds.fromGoogleLatLngBounds(results[0].geometry.bounds)),callback(results=[{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:bounds}],WPGMZA.Geocoder.SUCCESS)}else{var nativeStatus=WPGMZA.Geocoder.FAIL;status==google.maps.GeocoderStatus.ZERO_RESULTS&&(nativeStatus=WPGMZA.Geocoder.ZERO_RESULTS),callback(null,nativeStatus)}})},WPGMZA.GoogleGeocoder.prototype.getAddressFromLatLng=function(options,callback){if(!options||!options.latLng)throw new Error("No latLng specified");var latLng=new WPGMZA.LatLng(options.latLng),geocoder=new google.maps.Geocoder;delete(options=$.extend(options,{location:{lat:latLng.lat,lng:latLng.lng}})).latLng,geocoder.geocode(options,function(results,status){"OK"!==status&&callback(null,WPGMZA.Geocoder.FAIL),results&&results.length||callback([],WPGMZA.Geocoder.NO_RESULTS),callback([results[0].formatted_address],WPGMZA.Geocoder.SUCCESS)})}}),jQuery(function($){WPGMZA.settings.engine&&"google-maps"!=WPGMZA.settings.engine||window.google&&window.google.maps&&(WPGMZA.GoogleHTMLOverlay=function(map){this.element=$("<div class='wpgmza-google-html-overlay'></div>"),this.visible=!0,this.position=new WPGMZA.LatLng,this.setMap(map.googleMap),this.wpgmzaMap=map},WPGMZA.GoogleHTMLOverlay.prototype=new google.maps.OverlayView,WPGMZA.GoogleHTMLOverlay.prototype.onAdd=function(){this.getPanes().overlayMouseTarget.appendChild(this.element[0])},WPGMZA.GoogleHTMLOverlay.prototype.onRemove=function(){this.element&&$(this.element).parent().length&&($(this.element).remove(),this.element=null)},WPGMZA.GoogleHTMLOverlay.prototype.draw=function(){this.updateElementPosition()},WPGMZA.GoogleHTMLOverlay.prototype.updateElementPosition=function(){var projection=this.getProjection();if(projection){var pixels=projection.fromLatLngToDivPixel(this.position.toGoogleLatLng());$(this.element).css({left:pixels.x,top:pixels.y})}})}),jQuery(function($){var Parent;WPGMZA.GoogleInfoWindow=function(feature){Parent.call(this,feature),this.setFeature(feature)},WPGMZA.GoogleInfoWindow.Z_INDEX=99,Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.GoogleInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.GoogleInfoWindow.prototype.constructor=WPGMZA.GoogleInfoWindow,WPGMZA.GoogleInfoWindow.prototype.setFeature=function(feature){(this.feature=feature)instanceof WPGMZA.Marker?this.googleObject=feature.googleMarker:feature instanceof WPGMZA.Polygon?this.googleObject=feature.googlePolygon:feature instanceof WPGMZA.Polyline&&(this.googleObject=feature.googlePolyline)},WPGMZA.GoogleInfoWindow.prototype.createGoogleInfoWindow=function(){var self=this;this.googleInfoWindow||(this.googleInfoWindow=new google.maps.InfoWindow,this.googleInfoWindow.setZIndex(WPGMZA.GoogleInfoWindow.Z_INDEX),google.maps.event.addListener(this.googleInfoWindow,"domready",function(event){self.trigger("domready")}),google.maps.event.addListener(this.googleInfoWindow,"closeclick",function(event){self.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(self.state=WPGMZA.InfoWindow.STATE_CLOSED,self.feature.map.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,feature){var self=this;if(!Parent.prototype.open.call(this,map,feature))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setFeature(feature),this.googleInfoWindow.open(this.feature.map.googleMap,this.googleObject);var intervalID,guid=WPGMZA.guid(),eaBtn=WPGMZA.isProVersion()?"":this.addEditButton(),html="<div id='"+guid+"'>"+eaBtn+" "+this.content+"</div>";return this.googleInfoWindow.setContent(html),intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaFeature=self.feature,div.addClass("wpgmza-infowindow"),self.element=div[0],self.trigger("infowindowopen"))},50),!0},WPGMZA.GoogleInfoWindow.prototype.close=function(){this.googleInfoWindow&&(WPGMZA.InfoWindow.prototype.close.call(this),this.googleInfoWindow.close())},WPGMZA.GoogleInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html,this.createGoogleInfoWindow(),this.googleInfoWindow.setContent(html)},WPGMZA.GoogleInfoWindow.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.createGoogleInfoWindow(),this.googleInfoWindow.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMap=function(element,options){var self=this;Parent.call(this,element,options),this.loadGoogleMap(),options?this.setOptions(options,!0):this.setOptions({},!0),google.maps.event.addListener(this.googleMap,"click",function(event){var wpgmzaEvent=new WPGMZA.Event("click");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"rightclick",function(event){var wpgmzaEvent=new WPGMZA.Event("rightclick");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"dragend",function(event){self.dispatchEvent("dragend")}),google.maps.event.addListener(this.googleMap,"zoom_changed",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged")}),google.maps.event.addListener(this.googleMap,"idle",function(event){self.onIdle(event)}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},WPGMZA.isProVersion()?(Parent=WPGMZA.ProMap,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.ProMap.prototype)):(Parent=WPGMZA.Map,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.Map.prototype)),WPGMZA.GoogleMap.prototype.constructor=WPGMZA.GoogleMap,WPGMZA.GoogleMap.parseThemeData=function(raw){var json;try{json=JSON.parse(raw)}catch(e){try{json=eval(raw)}catch(e){var str=raw;str=str.replace(/\\'/g,"'"),str=str.replace(/\\"/g,'"'),str=str.replace(/\\0/g,"\0"),str=str.replace(/\\\\/g,"\\");try{json=eval(str)}catch(e){return console.warn("Couldn't parse theme data"),[]}}}return json},WPGMZA.GoogleMap.prototype.loadGoogleMap=function(){var self=this,options=this.settings.toGoogleMapsOptions();this.googleMap=new google.maps.Map(this.engineElement,options),google.maps.event.addListener(this.googleMap,"bounds_changed",function(){self.onBoundsChanged()}),1==this.settings.bicycle&&this.enableBicycleLayer(!0),1==this.settings.traffic&&this.enableTrafficLayer(!0),this.settings.transport_layer&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.wpgmza_show_point_of_interest),$(this.engineElement).append($(this.element).find(".wpgmza-loader"))},WPGMZA.GoogleMap.prototype.setOptions=function(options,initializing){if(Parent.prototype.setOptions.call(this,options),options.scrollwheel&&delete options.scrollwheel,initializing){var converted=$.extend(options,this.settings.toGoogleMapsOptions()),clone=$.extend({},converted);if(!clone.center instanceof google.maps.LatLng&&(clone.center instanceof WPGMZA.LatLng||"object"==typeof clone.center)&&(clone.center={lat:parseFloat(clone.center.lat),lng:parseFloat(clone.center.lng)}),this.settings.hide_point_of_interest){clone.styles||(clone.styles=[]),clone.styles.push({featureType:"poi",elementType:"labels",stylers:[{visibility:"off"}]})}this.googleMap.setOptions(clone)}else this.googleMap.setOptions(options)},WPGMZA.GoogleMap.prototype.addMarker=function(marker){marker.googleMarker.setMap(this.googleMap),Parent.prototype.addMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.removeMarker=function(marker){marker.googleMarker.setMap(null),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.addPolygon=function(polygon){polygon.googlePolygon.setMap(this.googleMap),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.removePolygon=function(polygon){polygon.googlePolygon.setMap(null),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.addPolyline=function(polyline){polyline.googlePolyline.setMap(this.googleMap),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.removePolyline=function(polyline){polyline.googlePolyline.setMap(null),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.addCircle=function(circle){circle.googleCircle.setMap(this.googleMap),Parent.prototype.addCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.removeCircle=function(circle){circle.googleCircle.setMap(null),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.addRectangle=function(rectangle){rectangle.googleRectangle.setMap(this.googleMap),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.removeRectangle=function(rectangle){rectangle.googleRectangle.setMap(null),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.getCenter=function(){var latLng=this.googleMap.getCenter();return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.setCenter=function(latLng){WPGMZA.Map.prototype.setCenter.call(this,latLng),latLng instanceof WPGMZA.LatLng?this.googleMap.setCenter({lat:latLng.lat,lng:latLng.lng}):this.googleMap.setCenter(latLng)},WPGMZA.GoogleMap.prototype.panTo=function(latLng){latLng instanceof WPGMZA.LatLng?this.googleMap.panTo({lat:latLng.lat,lng:latLng.lng}):this.googleMap.panTo(latLng)},WPGMZA.GoogleMap.prototype.getZoom=function(){return this.googleMap.getZoom()},WPGMZA.GoogleMap.prototype.setZoom=function(value){if(isNaN(value))throw new Error("Value must not be NaN");return this.googleMap.setZoom(parseInt(value))},WPGMZA.GoogleMap.prototype.getBounds=function(){var nativeBounds=new WPGMZA.LatLngBounds({});try{var bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest();nativeBounds.north=northEast.lat(),nativeBounds.south=southWest.lat(),nativeBounds.west=southWest.lng(),nativeBounds.east=northEast.lng(),nativeBounds.topLeft={lat:northEast.lat(),lng:southWest.lng()},nativeBounds.bottomRight={lat:southWest.lat(),lng:northEast.lng()}}catch(ex){}return nativeBounds},WPGMZA.GoogleMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var nativeBounds=new google.maps.LatLngBounds(southWest,northEast);this.googleMap.fitBounds(nativeBounds)},WPGMZA.GoogleMap.prototype.fitBoundsToVisibleMarkers=function(){for(var bounds=new google.maps.LatLngBounds,i=0;i<this.markers.length;i++)markers[i].getVisible()&&bounds.extend(markers[i].getPosition());this.googleMap.fitBounds(bounds)},WPGMZA.GoogleMap.prototype.enableBicycleLayer=function(enable){this.bicycleLayer||(this.bicycleLayer=new google.maps.BicyclingLayer),this.bicycleLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enableTrafficLayer=function(enable){this.trafficLayer||(this.trafficLayer=new google.maps.TrafficLayer),this.trafficLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enablePublicTransportLayer=function(enable){this.publicTransportLayer||(this.publicTransportLayer=new google.maps.TransitLayer),this.publicTransportLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.showPointsOfInterest=function(show){var text=$("textarea[name='theme_data']").val();if(text){var styles=JSON.parse(text);styles.push({featureType:"poi",stylers:[{visibility:show?"on":"off"}]}),this.googleMap.setOptions({styles:styles})}},WPGMZA.GoogleMap.prototype.getMinZoom=function(){return parseInt(this.settings.min_zoom)},WPGMZA.GoogleMap.prototype.setMinZoom=function(value){this.googleMap.setOptions({minZoom:value,maxZoom:this.getMaxZoom()})},WPGMZA.GoogleMap.prototype.getMaxZoom=function(){return parseInt(this.settings.max_zoom)},WPGMZA.GoogleMap.prototype.setMaxZoom=function(value){this.googleMap.setOptions({minZoom:this.getMinZoom(),maxZoom:value})},WPGMZA.GoogleMap.prototype.latLngToPixels=function(latLng){var map=this.googleMap,nativeLatLng=new google.maps.LatLng({lat:parseFloat(latLng.lat),lng:parseFloat(latLng.lng)}),topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=map.getProjection().fromLatLngToPoint(nativeLatLng);return{x:(worldPoint.x-bottomLeft.x)*scale,y:(worldPoint.y-topRight.y)*scale}},WPGMZA.GoogleMap.prototype.pixelsToLatLng=function(x,y){null==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var map=this.googleMap,topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=new google.maps.Point(x/scale+bottomLeft.x,y/scale+topRight.y),latLng=map.getProjection().fromPointToLatLng(worldPoint);return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.onElementResized=function(event){this.googleMap&&google.maps.event.trigger(this.googleMap,"resize")},WPGMZA.GoogleMap.prototype.enableAllInteractions=function(){var options={scrollwheel:!0,draggable:!0,disableDoubleClickZoom:!1};this.googleMap.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMarker=function(options){var self=this;Parent.call(this,options);var settings={};if(options)for(var name in options)options[name]instanceof WPGMZA.LatLng?settings[name]=options[name].toGoogleLatLng():options[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=options[name]);this.googleMarker=new google.maps.Marker(settings),(this.googleMarker.wpgmzaMarker=this).googleFeature=this.googleMarker,this.googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.anim&&this.googleMarker.setAnimation(this.anim),this.animation&&this.googleMarker.setAnimation(this.animation),google.maps.event.addListener(this.googleMarker,"click",function(){self.dispatchEvent("click"),self.dispatchEvent("select")}),google.maps.event.addListener(this.googleMarker,"mouseover",function(){self.dispatchEvent("mouseover")}),google.maps.event.addListener(this.googleMarker,"dragend",function(){var googleMarkerPosition=self.googleMarker.getPosition();self.setPosition({lat:googleMarkerPosition.lat(),lng:googleMarkerPosition.lng()}),self.dispatchEvent({type:"dragend",latLng:self.getPosition()}),self.trigger("change")}),this.setOptions(settings),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.GoogleMarker.prototype=Object.create(Parent.prototype),WPGMZA.GoogleMarker.prototype.constructor=WPGMZA.GoogleMarker,Object.defineProperty(WPGMZA.GoogleMarker.prototype,"opacity",{get:function(){return this._opacity},set:function(value){this._opacity=value,this.googleMarker.setOpacity(value)}}),WPGMZA.GoogleMarker.prototype.setLabel=function(label){label?(this.googleMarker.setLabel({text:label}),this.googleMarker.getIcon()||this.googleMarker.setIcon(WPGMZA.settings.default_marker_icon)):this.googleMarker.setLabel(null)},WPGMZA.GoogleMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng),this.googleMarker.setPosition({lat:this.lat,lng:this.lng})},WPGMZA.GoogleMarker.prototype.updateOffset=function(){var params,self=this,icon=this.googleMarker.getIcon(),img=new Image,x=this._offset.x,y=this._offset.y;icon=icon||WPGMZA.settings.default_marker_icon,params="string"==typeof icon?{url:icon}:icon,img.onload=function(){var defaultAnchor_x=img.width/2,defaultAnchor_y=img.height;params.anchor=new google.maps.Point(defaultAnchor_x-x,defaultAnchor_y-y),self.googleMarker.setIcon(params)},img.src=params.url},WPGMZA.GoogleMarker.prototype.setOptions=function(options){this.googleMarker.setOptions(options)},WPGMZA.GoogleMarker.prototype.setAnimation=function(animation){Parent.prototype.setAnimation.call(this,animation),this.googleMarker.setAnimation(animation)},WPGMZA.GoogleMarker.prototype.setVisible=function(visible){Parent.prototype.setVisible.call(this,visible),this.googleMarker.setVisible(!!visible)},WPGMZA.GoogleMarker.prototype.getVisible=function(visible){return this.googleMarker.getVisible()},WPGMZA.GoogleMarker.prototype.setDraggable=function(draggable){this.googleMarker.setDraggable(draggable)},WPGMZA.GoogleMarker.prototype.setOpacity=function(opacity){this.googleMarker.setOpacity(opacity)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocatorCircle=function(map,settings){var self=this;WPGMZA.ModernStoreLocatorCircle.call(this,map,settings),this.intervalID=setInterval(function(){var mapSize={width:$(self.mapElement).width(),height:$(self.mapElement).height()};mapSize.width==self.mapSize.width&&mapSize.height==self.mapSize.height||(self.canvasLayer.resize_(),self.canvasLayer.draw(),self.mapSize=mapSize)},1e3),$(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange",function(){self.canvasLayer.resize_(),self.canvasLayer.draw()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.GoogleModernStoreLocatorCircle.prototype.constructor=WPGMZA.GoogleModernStoreLocatorCircle,WPGMZA.GoogleModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this;this.canvasLayer&&(this.canvasLayer.setMap(null),this.canvasLayer.setAnimate(!1)),this.canvasLayer=new CanvasLayer({map:this.map.googleMap,resizeHandler:function(event){self.onResize(event)},updateHandler:function(event){self.onUpdate(event)},animate:!0,resolutionScale:this.getResolutionScale()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setOptions=function(options){WPGMZA.ModernStoreLocatorCircle.prototype.setOptions.call(this,options),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setPosition=function(position){WPGMZA.ModernStoreLocatorCircle.prototype.setPosition.call(this,position),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setRadius=function(radius){WPGMZA.ModernStoreLocatorCircle.prototype.setRadius.call(this,radius),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var spherical=google.maps.geometry.spherical,center=this.settings.center,equator=new WPGMZA.LatLng({lat:0,lng:0}),latitude=new WPGMZA.LatLng({lat:center.lat,lng:0}),offsetAtEquator=spherical.computeOffset(equator.toGoogleLatLng(),1e3*km,90),result=.006395*km*(spherical.computeOffset(latitude.toGoogleLatLng(),1e3*km,90).lng()/offsetAtEquator.lng());if(isNaN(result))throw new Error("here");return result},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvasLayer.canvas.width,height:this.canvasLayer.canvas.height}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){var position=this.map.googleMap.getProjection().fromLatLngToPoint(this.canvasLayer.getTopLeft());return{x:-position.x,y:-position.y}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCenterPixels=function(){var center=new WPGMZA.LatLng(this.settings.center);return this.map.googleMap.getProjection().fromLatLngToPoint(center.toGoogleLatLng())},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvasLayer.canvas.getContext("2d")},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getScale=function(){return Math.pow(2,this.map.getZoom())*this.getResolutionScale()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setVisible=function(visible){WPGMZA.ModernStoreLocatorCircle.prototype.setVisible.call(this,visible),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.destroy=function(){this.canvasLayer.setMap(null),this.canvasLayer=null,clearInterval(this.intervalID)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocator=function(map_id){var map=this.map=WPGMZA.getMapByID(map_id);WPGMZA.ModernStoreLocator.call(this,map_id);var restrict=map.settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&restrict&&restrict.length,this.map.googleMap.controls[google.maps.ControlPosition.TOP_CENTER].push(this.element)},WPGMZA.GoogleModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator.prototype),WPGMZA.GoogleModernStoreLocator.prototype.constructor=WPGMZA.GoogleModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.GooglePolygon=function(options,googlePolygon){var self=this;options=options||{},Parent.call(this,options,googlePolygon),this.googlePolygon=googlePolygon||new google.maps.Polygon,this.googleFeature=this.googlePolygon,options&&options.polydata&&this.googlePolygon.setOptions({paths:this.parseGeometry(options.polydata)}),this.googlePolygon.wpgmzaPolygon=this,options&&this.setOptions(options),google.maps.event.addListener(this.googlePolygon,"click",function(){self.dispatchEvent({type:"click"})})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.GooglePolygon.prototype=Object.create(Parent.prototype),WPGMZA.GooglePolygon.prototype.constructor=WPGMZA.GooglePolygon,WPGMZA.GooglePolygon.prototype.updateNativeFeature=function(){this.googlePolygon.setOptions(this.getScalarProperties())},WPGMZA.GooglePolygon.prototype.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){var self=this;this.googlePolygon.setOptions({editable:value}),value&&(this.googlePolygon.getPaths().forEach(function(path,index){["insert_at","remove_at","set_at"].forEach(function(name){google.maps.event.addListener(path,name,function(){self.trigger("change")})})}),google.maps.event.addListener(this.googlePolygon,"dragend",function(event){self.trigger("change")}),google.maps.event.addListener(this.googlePolygon,"click",function(event){WPGMZA.altKeyDown&&(this.getPath().removeAt(event.vertex),self.trigger("change"))}))},WPGMZA.GooglePolygon.prototype.setDraggable=function(value){this.googlePolygon.setDraggable(value)},WPGMZA.GooglePolygon.prototype.getGeometry=function(){for(var result=[],path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GooglePolyline=function(options,googlePolyline){var self=this;if(WPGMZA.Polyline.call(this,options,googlePolyline),this.googlePolyline=googlePolyline||new google.maps.Polyline(this.settings),this.googleFeature=this.googlePolyline,options&&options.polydata){var path=this.parseGeometry(options.polydata);this.googlePolyline.setPath(path)}this.googlePolyline.wpgmzaPolyline=this,options&&this.setOptions(options),google.maps.event.addListener(this.googlePolyline,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GooglePolyline.prototype=Object.create(WPGMZA.Polyline.prototype),WPGMZA.GooglePolyline.prototype.constructor=WPGMZA.GooglePolyline,WPGMZA.GooglePolyline.prototype.updateNativeFeature=function(){this.googlePolyline.setOptions(this.getScalarProperties())},WPGMZA.GooglePolyline.prototype.setEditable=function(value){var self=this;if(this.googlePolyline.setOptions({editable:value}),value){var path=this.googlePolyline.getPath();["insert_at","remove_at","set_at"].forEach(function(name){google.maps.event.addListener(path,name,function(){self.trigger("change")})}),google.maps.event.addListener(this.googlePolyline,"dragend",function(event){self.trigger("change")}),google.maps.event.addListener(this.googlePolyline,"click",function(event){WPGMZA.altKeyDown&&(this.getPath().removeAt(event.vertex),self.trigger("change"))})}},WPGMZA.GooglePolyline.prototype.setDraggable=function(value){this.googlePolyline.setOptions({draggable:value})},WPGMZA.GooglePolyline.prototype.getGeometry=function(){for(var result=[],path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GoogleRectangle=function(options,googleRectangle){var self=this;options=options||{},WPGMZA.Rectangle.call(this,options,googleRectangle),googleRectangle?(this.googleRectangle=googleRectangle,this.cornerA=options.cornerA=new WPGMZA.LatLng({lat:googleRectangle.getBounds().getNorthEast().lat(),lng:googleRectangle.getBounds().getSouthWest().lng()}),this.cornerB=options.cornerB=new WPGMZA.LatLng({lat:googleRectangle.getBounds().getSouthWest().lat(),lng:googleRectangle.getBounds().getNorthEast().lng()})):(this.googleRectangle=new google.maps.Rectangle,this.googleRectangle.wpgmzaRectangle=this),this.googleFeature=this.googleRectangle,options&&this.setOptions(options),google.maps.event.addListener(this.googleRectangle,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GoogleRectangle.prototype=Object.create(WPGMZA.Rectangle.prototype),WPGMZA.GoogleRectangle.prototype.constructor=WPGMZA.GoogleRectangle,WPGMZA.GoogleRectangle.prototype.getBounds=function(){return WPGMZA.LatLngBounds.fromGoogleLatLngBounds(this.googleRectangle.getBounds())},WPGMZA.GoogleRectangle.prototype.setVisible=function(visible){this.googleRectangle.setVisible(!!visible)},WPGMZA.GoogleRectangle.prototype.setDraggable=function(value){this.googleRectangle.setDraggable(!!value)},WPGMZA.GoogleRectangle.prototype.setEditable=function(value){var self=this;this.googleRectangle.setEditable(!!value),value&&google.maps.event.addListener(this.googleRectangle,"bounds_changed",function(event){self.trigger("change")})},WPGMZA.GoogleRectangle.prototype.setOptions=function(options){WPGMZA.Rectangle.prototype.setOptions.apply(this,arguments),options.cornerA&&options.cornerB&&(this.cornerA=new WPGMZA.LatLng(options.cornerA),this.cornerB=new WPGMZA.LatLng(options.cornerB))},WPGMZA.GoogleRectangle.prototype.updateNativeFeature=function(){var googleOptions=this.getScalarProperties(),north=parseFloat(this.cornerA.lat),west=parseFloat(this.cornerA.lng),south=parseFloat(this.cornerB.lat),east=parseFloat(this.cornerB.lng);north&&west&&south&&east&&(googleOptions.bounds={north:north,west:west,south:south,east:east}),this.googleRectangle.setOptions(googleOptions)}}),jQuery(function($){WPGMZA.GoogleText=function(options){WPGMZA.Text.apply(this,arguments),this.overlay=new WPGMZA.GoogleTextOverlay(options)},WPGMZA.extend(WPGMZA.GoogleText,WPGMZA.Text)}),jQuery(function($){WPGMZA.GoogleTextOverlay=function(options){this.element=$("<div class='wpgmza-google-text-overlay'><div class='wpgmza-inner'></div></div>"),(options=options||{}).position&&(this.position=options.position),options.text&&this.element.find(".wpgmza-inner").text(options.text),options.map&&this.setMap(options.map.googleMap)},window.google&&google.maps&&google.maps.OverlayView&&(WPGMZA.GoogleTextOverlay.prototype=new google.maps.OverlayView),WPGMZA.GoogleTextOverlay.prototype.onAdd=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px",minWidth:"200px"}),this.getPanes().floatPane.appendChild(this.element[0])},WPGMZA.GoogleTextOverlay.prototype.draw=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px",minWidth:"200px"})},WPGMZA.GoogleTextOverlay.prototype.onRemove=function(){this.element.remove()},WPGMZA.GoogleTextOverlay.prototype.hide=function(){this.element.hide()},WPGMZA.GoogleTextOverlay.prototype.show=function(){this.element.show()},WPGMZA.GoogleTextOverlay.prototype.toggle=function(){this.element.is(":visible")?this.element.hide():this.element.show()}}),jQuery(function($){"google-maps"==WPGMZA.settings.engine&&(WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code||(WPGMZA.GoogleVertexContextMenu=function(mapEditPage){var self=this;this.mapEditPage=mapEditPage,this.element=document.createElement("div"),this.element.className="wpgmza-vertex-context-menu",this.element.innerHTML="Delete",google.maps.event.addDomListener(this.element,"click",function(event){return self.removeVertex(),event.preventDefault(),event.stopPropagation(),!1})},WPGMZA.GoogleVertexContextMenu.prototype=new google.maps.OverlayView,WPGMZA.GoogleVertexContextMenu.prototype.onAdd=function(){var self=this,map=this.getMap();this.getPanes().floatPane.appendChild(this.element),this.divListener=google.maps.event.addDomListener(map.getDiv(),"mousedown",function(e){e.target!=self.element&&self.close()},!0)},WPGMZA.GoogleVertexContextMenu.prototype.onRemove=function(){google.maps.event.removeListener(this.divListener),this.element.parentNode.removeChild(this.element),this.set("position"),this.set("path"),this.set("vertex")},WPGMZA.GoogleVertexContextMenu.prototype.open=function(map,path,vertex){this.set("position",path.getAt(vertex)),this.set("path",path),this.set("vertex",vertex),this.setMap(map),this.draw()},WPGMZA.GoogleVertexContextMenu.prototype.close=function(){this.setMap(null)},WPGMZA.GoogleVertexContextMenu.prototype.draw=function(){var position=this.get("position"),projection=this.getProjection();if(position&&projection){var point=projection.fromLatLngToDivPixel(position);this.element.style.top=point.y+"px",this.element.style.left=point.x+"px"}},WPGMZA.GoogleVertexContextMenu.prototype.removeVertex=function(){var path=this.get("path"),vertex=this.get("vertex");path&&null!=vertex&&path.removeAt(vertex),this.close()}))}),jQuery(function($){WPGMZA.FeaturePanel=function(element,mapEditPage){var self=this;WPGMZA.EventDispatcher.apply(this,arguments),this.map=mapEditPage.map,this.drawingManager=mapEditPage.drawingManager,this.feature=null,this.element=element,this.initDefaults(),this.setMode(WPGMZA.FeaturePanel.MODE_ADD),this.drawingInstructionsElement=$(this.element).find(".wpgmza-feature-drawing-instructions"),this.drawingInstructionsElement.detach(),this.editingInstructionsElement=$(this.element).find(".wpgmza-feature-editing-instructions"),this.editingInstructionsElement.detach(),$("#wpgmaps_tabs_markers").on("tabsactivate",function(event,ui){$.contains(ui.newPanel[0],self.element[0])&&self.onTabActivated(event)}),$("#wpgmaps_tabs_markers").on("tabsactivate",function(event,ui){$.contains(ui.oldPanel[0],self.element[0])&&self.onTabDeactivated(event)}),$(document.body).on("click","[data-edit-"+this.featureType+"-id]",function(event){self.onEditFeature(event)}),$(document.body).on("click","[data-delete-"+this.featureType+"-id]",function(event){self.onDeleteFeature(event)}),$(this.element).find(".wpgmza-save-feature").on("click",function(event){self.onSave(event)}),this.drawingManager.on(self.drawingManagerCompleteEvent,function(event){self.onDrawingComplete(event)}),this.drawingManager.on("drawingmodechanged",function(event){self.onDrawingModeChanged(event)}),$(this.element).on("change input",function(event){self.onPropertyChanged(event)})},WPGMZA.extend(WPGMZA.FeaturePanel,WPGMZA.EventDispatcher),WPGMZA.FeaturePanel.MODE_ADD="add",WPGMZA.FeaturePanel.MODE_EDIT="edit",WPGMZA.FeaturePanel.prevEditableFeature=null,Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureType",{get:function(){return $(this.element).attr("data-wpgmza-feature-type")}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"drawingManagerCompleteEvent",{get:function(){return this.featureType+"complete"}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureDataTable",{get:function(){return $("[data-wpgmza-datatable][data-wpgmza-feature-type='"+this.featureType+"']")[0].wpgmzaDataTable}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureAccordion",{get:function(){return $(this.element).closest(".wpgmza-accordion")}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"map",{get:function(){return WPGMZA.mapEditPage.map}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"mode",{get:function(){return this._mode}}),WPGMZA.FeaturePanel.prototype.initPreloader=function(){this.preloader||(this.preloader=$(WPGMZA.preloaderHTML),this.preloader.hide(),$(this.element).append(this.preloader))},WPGMZA.FeaturePanel.prototype.initDataTable=function(){var el=$(this.element).find("[data-wpgmza-datatable][data-wpgmza-rest-api-route]");this[this.featureType+"AdminDataTable"]=new WPGMZA.AdminFeatureDataTable(el)},WPGMZA.FeaturePanel.prototype.initDefaults=function(){$(this.element).find("[data-ajax-name]:not([type='radio'])").each(function(index,el){var val=$(el).val();val&&$(el).attr("data-default-value",val)})},WPGMZA.FeaturePanel.prototype.setCaptionType=function(type,id){var icons={add:"fa-plus-circle",save:"fa-pencil-square-o"};switch(type){case WPGMZA.FeaturePanel.MODE_ADD:case WPGMZA.FeaturePanel.MODE_EDIT:this.featureAccordion.find("[data-add-caption][data-edit-caption]").each(function(index,el){var text=$(el).attr("data-"+type+"-caption"),icon=$(el).find("i.fa");id&&(text+=" "+id),$(el).text(text),icon.length&&((icon=$("<i class='fa' aria-hidden='true'></i>")).addClass(icons[type]),$(el).prepend(" "),$(el).prepend(icon))});break;default:throw new Error("Invalid type")}},WPGMZA.FeaturePanel.prototype.setMode=function(type,id){this._mode=type,this.setCaptionType(type,id)},WPGMZA.FeaturePanel.prototype.setTargetFeature=function(feature){var self=this;if(WPGMZA.FeaturePanel.prevEditableFeature){var prev=WPGMZA.FeaturePanel.prevEditableFeature;prev.setEditable(!1),prev.setDraggable(!1),prev.off("change")}feature?(feature.setEditable(!0),feature.setDraggable(!0),feature.on("change",function(event){self.onFeatureChanged(event)}),this.setMode(WPGMZA.FeaturePanel.MODE_EDIT),this.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showInstructions()):this.setMode(WPGMZA.FeaturePanel.MODE_ADD),this.feature=WPGMZA.FeaturePanel.prevEditableFeature=feature},WPGMZA.FeaturePanel.prototype.reset=function(){$(this.element).find("[data-ajax-name]:not([data-ajax-name='map_id']):not([type='color']):not([type='checkbox']):not([type='radio'])").val(""),$(this.element).find("select[data-ajax-name]>option:first-child").prop("selected",!0),$(this.element).find("[data-ajax-name='id']").val("-1"),$(this.element).find("input[type='checkbox']").prop("checked",!1),tinyMCE.get("wpgmza-description-editor")?tinyMCE.get("wpgmza-description-editor").setContent(""):$("#wpgmza-description-editor").val(""),$("#wpgmza-description-editor").val(""),this.showPreloader(!1),this.setMode(WPGMZA.FeaturePanel.MODE_ADD),$(this.element).find("[data-ajax-name][data-default-value]").each(function(index,el){$(el).val($(el).data("default-value"))})},WPGMZA.FeaturePanel.prototype.select=function(arg){var id,expectedBaseClass,self=this;if(this.reset(),$.isNumeric(arg))id=arg;else{if(expectedBaseClass=WPGMZA[WPGMZA.capitalizeWords(this.featureType)],!(feature instanceof expectedBaseClass))throw new Error("Invalid feature type for this panel");id=arg.id}this.showPreloader(!0),WPGMZA.animateScroll($(".wpgmza_map")),WPGMZA.restAPI.call("/"+this.featureType+"s/"+id+"?skip_cache=1",{success:function(data,status,xhr){var getByIDFunction="get"+WPGMZA.capitalizeWords(self.featureType)+"ByID",feature=self.map[getByIDFunction](id);self.populate(data),self.showPreloader(!1),self.setMode(WPGMZA.FeaturePanel.MODE_EDIT,id),self.setTargetFeature(feature)}})},WPGMZA.FeaturePanel.prototype.showPreloader=function(show){this.initPreloader(),0==arguments.length||show?(this.preloader.fadeIn(),this.element.addClass("wpgmza-loading")):(this.preloader.fadeOut(),this.element.removeClass("wpgmza-loading"))},WPGMZA.FeaturePanel.prototype.populate=function(data){var value,target,name;for(name in data)switch(target=$(this.element).find("[data-ajax-name='"+name+"']"),value=data[name],(target.attr("type")||"").toLowerCase()){case"checkbox":case"radio":target.prop("checked",1==data[name]);break;case"color":value.match(/^#/)||(value="#"+value);default:"object"==typeof value&&(value=JSON.stringify(value)),$(this.element).find("[data-ajax-name='"+name+"']:not(select)").val(value),$(this.element).find("select[data-ajax-name='"+name+"']").each(function(index,el){"string"==typeof value&&0==data[name].length||$(el).val(value)})}},WPGMZA.FeaturePanel.prototype.serializeFormData=function(){var fields=$(this.element).find("[data-ajax-name]"),data={};return fields.each(function(index,el){var type="text";switch($(el).attr("type")&&(type=$(el).attr("type").toLowerCase()),type){case"checkbox":data[$(el).attr("data-ajax-name")]=$(el).prop("checked")?1:0;break;case"radio":$(el).prop("checked")&&(data[$(el).attr("data-ajax-name")]=$(el).val());break;default:data[$(el).attr("data-ajax-name")]=$(el).val()}}),data},WPGMZA.FeaturePanel.prototype.discardChanges=function(){if(this.feature){var feature=this.feature;this.setTargetFeature(null),feature&&feature.map&&(this.map["remove"+WPGMZA.capitalizeWords(this.featureType)](feature),-1<feature.id&&this.updateFeatureByID(feature.id))}},WPGMZA.FeaturePanel.prototype.updateFeatureByID=function(id){var feature,self=this,route="/"+this.featureType+"s/",functionSuffix=WPGMZA.capitalizeWords(self.featureType),getByIDFunction="get"+functionSuffix+"ByID",removeFunction="remove"+functionSuffix,addFunction="add"+functionSuffix;WPGMZA.restAPI.call(route+id,{success:function(data,status,xhr){(feature=self.map[getByIDFunction](id))&&self.map[removeFunction](feature),feature=WPGMZA[WPGMZA.capitalizeWords(self.featureType)].createInstance(data),self.map[addFunction](feature)}})},WPGMZA.FeaturePanel.prototype.showInstructions=function(){switch(this.mode){case WPGMZA.FeaturePanel.MODE_ADD:$(this.map.element).append(this.drawingInstructionsElement),$(this.drawingInstructionsElement).hide().fadeIn();break;default:$(this.map.element).append(this.editingInstructionsElement),$(this.editingInstructionsElement).hide().fadeIn()}},WPGMZA.FeaturePanel.prototype.onTabActivated=function(){this.reset(),this.drawingManager.setDrawingMode(this.featureType),this.onAddFeature(event),$(".wpgmza-table-container-title").hide(),$(".wpgmza-table-container").hide();var featureString=this.featureType.charAt(0).toUpperCase()+this.featureType.slice(1);$("#wpgmza-table-container-"+featureString).show(),$("#wpgmza-table-container-title-"+featureString).show()},WPGMZA.FeaturePanel.prototype.onTabDeactivated=function(){this.discardChanges(),this.setTargetFeature(null)},WPGMZA.FeaturePanel.prototype.onAddFeature=function(event){this.drawingManager.setDrawingMode(this.featureType)},WPGMZA.FeaturePanel.prototype.onEditFeature=function(event){var name="data-edit-"+this.featureType+"-id",id=$(event.currentTarget).attr(name);this.discardChanges(),this.select(id)},WPGMZA.FeaturePanel.prototype.onDeleteFeature=function(event){var self=this,name="data-delete-"+this.featureType+"-id",id=$(event.currentTarget).attr(name),route="/"+this.featureType+"s/",feature=this.map["get"+WPGMZA.capitalizeWords(this.featureType)+"ByID"](id);this.featureDataTable.dataTable.processing(!0),WPGMZA.restAPI.call(route+id,{method:"DELETE",success:function(data,status,xhr){self.map["remove"+WPGMZA.capitalizeWords(self.featureType)](feature),self.featureDataTable.reload()}})},WPGMZA.FeaturePanel.prototype.onDrawingModeChanged=function(event){$(this.drawingInstructionsElement).detach(),$(this.editingInstructionsElement).detach(),this.drawingManager.mode==this.featureType&&this.showInstructions()},WPGMZA.FeaturePanel.prototype.onDrawingComplete=function(event){var engineFeature=event["engine"+WPGMZA.capitalizeWords(this.featureType)],formData=this.serializeFormData(),geometryField=$(this.element).find("textarea[data-ajax-name$='data']");delete formData.polydata;var nativeFeature=WPGMZA[WPGMZA.capitalizeWords(this.featureType)].createInstance(formData,engineFeature);this.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.map["add"+WPGMZA.capitalizeWords(this.featureType)](nativeFeature),this.setTargetFeature(nativeFeature),geometryField.length&&geometryField.val(JSON.stringify(nativeFeature.getGeometry())),this.featureType},WPGMZA.FeaturePanel.prototype.onPropertyChanged=function(event){var feature=this.feature;feature&&($(this.element).find(":input[data-ajax-name]").each(function(index,el){var key=$(el).attr("data-ajax-name");feature[key]=$(el).val()}),feature.updateNativeFeature())},WPGMZA.FeaturePanel.prototype.onFeatureChanged=function(event){var geometryField=$(this.element).find("textarea[data-ajax-name$='data']");geometryField.length&&geometryField.val(JSON.stringify(this.feature.getGeometry()))},WPGMZA.FeaturePanel.prototype.onSave=function(event){var self=this,id=$(self.element).find("[data-ajax-name='id']").val(),data=this.serializeFormData(),route="/"+this.featureType+"s/",isNew=-1==id;"circle"!=this.featureType||data.center?"rectangle"!=this.featureType||data.cornerA?"polygon"!=this.featureType||data.polydata?"polyline"!=this.featureType||data.polydata?(isNew||(route+=id),WPGMZA.mapEditPage.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showPreloader(!0),WPGMZA.restAPI.call(route,{method:"POST",data:data,success:function(data,status,xhr){var feature,functionSuffix=WPGMZA.capitalizeWords(self.featureType),getByIDFunction="get"+functionSuffix+"ByID",removeFunction="remove"+functionSuffix,addFunction="add"+functionSuffix;self.reset(),(feature=self.map[getByIDFunction](id))&&self.map[removeFunction](feature),self.setTargetFeature(null),self.showPreloader(!1),feature=WPGMZA[WPGMZA.capitalizeWords(self.featureType)].createInstance(data),self.map[addFunction](feature),self.featureDataTable.reload(),self.onTabActivated(event)}})):alert(WPGMZA.localized_strings.no_shape_polyline):alert(WPGMZA.localized_strings.no_shape_polygon):alert(WPGMZA.localized_strings.no_shape_rectangle):alert(WPGMZA.localized_strings.no_shape_circle)}}),jQuery(function($){WPGMZA.MarkerPanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.MarkerPanel,WPGMZA.FeaturePanel),WPGMZA.MarkerPanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProMarkerPanel(element,mapEditPage):new WPGMZA.MarkerPanel(element,mapEditPage)},WPGMZA.MarkerPanel.prototype.initDefaults=function(){var self=this;WPGMZA.FeaturePanel.prototype.initDefaults.apply(this,arguments),this.adjustSubMode=!1,this.onTabActivated(null),$(document.body).on("click","[data-adjust-"+this.featureType+"-id]",function(event){self.onAdjustFeature(event)}),$(document.body).on("click",".wpgmza_approve_btn",function(event){self.onApproveMarker(event)})},WPGMZA.MarkerPanel.prototype.onAdjustFeature=function(event){var name="data-adjust-"+this.featureType+"-id",id=$(event.currentTarget).attr(name);this.discardChanges(),this.adjustSubMode=!0,this.select(id)},WPGMZA.MarkerPanel.prototype.onApproveMarker=function(event){var self=this,route="/"+this.featureType+"s/"+$(event.currentTarget).attr("id");WPGMZA.restAPI.call(route,{method:"POST",data:{approved:"1"},success:function(data,status,xhr){self.featureDataTable.reload()}})},WPGMZA.MarkerPanel.prototype.onFeatureChanged=function(event){if(this.adjustSubMode){var aPos=this.feature.getPosition();aPos&&($(this.element).find("[data-ajax-name='lat']").val(aPos.lat),$(this.element).find("[data-ajax-name='lng']").val(aPos.lng))}else{var addressField=$(this.element).find("input[data-ajax-name$='address']");if(addressField.length){var pos=this.feature.getPosition();addressField.val(pos.lat+","+pos.lng)}}},WPGMZA.MarkerPanel.prototype.setTargetFeature=function(feature){if(WPGMZA.FeaturePanel.prevEditableFeature){var prev=WPGMZA.FeaturePanel.prevEditableFeature;prev.setOpacity&&prev.setOpacity(1)}$(this.element).find("[data-ajax-name]").removeAttr("disabled"),$(this.element).find("fieldset").show(),$(this.element).find(".wpgmza-adjust-mode-notice").addClass("wpgmza-hidden"),$(this.element).find('[data-ajax-name="lat"]').attr("type","hidden"),$(this.element).find('[data-ajax-name="lng"]').attr("type","hidden"),$(this.element).find(".wpgmza-hide-in-adjust-mode").removeClass("wpgmza-hidden"),$(this.element).find(".wpgmza-show-in-adjust-mode").addClass("wpgmza-hidden"),feature?(feature.setOpacity&&feature.setOpacity(.7),feature.getMap().panTo(feature.getPosition()),this.adjustSubMode&&($(this.element).find("[data-ajax-name]").attr("disabled","disabled"),$(this.element).find("fieldset:not(.wpgmza-always-on)").hide(),$(this.element).find(".wpgmza-adjust-mode-notice").removeClass("wpgmza-hidden"),$(this.element).find('[data-ajax-name="lat"]').attr("type","text").removeAttr("disabled"),$(this.element).find('[data-ajax-name="lng"]').attr("type","text").removeAttr("disabled"),$(this.element).find(".wpgmza-hide-in-adjust-mode").addClass("wpgmza-hidden"),$(this.element).find(".wpgmza-show-in-adjust-mode").removeClass("wpgmza-hidden"))):this.adjustSubMode=!1,WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments)},WPGMZA.MarkerPanel.prototype.onSave=function(event){var self=this,geocoder=WPGMZA.Geocoder.createInstance(),address=$(this.element).find("[data-ajax-name='address']").val(),geocodingData={address:address};WPGMZA.mapEditPage.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showPreloader(!0);var cloud_lat=!1,cloud_lng=!1;0<document.getElementsByName("lat").length&&(cloud_lat=document.getElementsByName("lat")[0].value),0<document.getElementsByName("lng").length&&(cloud_lng=document.getElementsByName("lng")[0].value),cloud_lat&&cloud_lng&&(WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey||(geocodingData.lat=parseFloat(cloud_lat),geocodingData.lng=parseFloat(cloud_lng)));var addressUnchanged=!1;this.feature&&this.feature.address&&address&&"string"==typeof this.feature.address&&"string"==typeof address&&this.feature.address.trim()===address.trim()&&(addressUnchanged=!0),this.adjustSubMode||addressUnchanged?WPGMZA.FeaturePanel.prototype.onSave.apply(self,arguments):geocoder.geocode(geocodingData,function(results,status){switch(status){case WPGMZA.Geocoder.ZERO_RESULTS:return alert(WPGMZA.localized_strings.zero_results),void self.showPreloader(!1);case WPGMZA.Geocoder.SUCCESS:break;case WPGMZA.Geocoder.NO_ADDRESS:return alert(WPGMZA.localized_strings.no_address),void self.showPreloader(!1);case WPGMZA.Geocoder.FAIL:default:return alert(WPGMZA.localized_strings.geocode_fail),void self.showPreloader(!1)}var result=results[0];$(self.element).find("[data-ajax-name='lat']").val(result.lat),$(self.element).find("[data-ajax-name='lng']").val(result.lng),WPGMZA.FeaturePanel.prototype.onSave.apply(self,arguments)}),WPGMZA.mapEditPage.map.resetBounds()}}),jQuery(function($){WPGMZA.CirclePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.CirclePanel,WPGMZA.FeaturePanel),WPGMZA.CirclePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProCirclePanel(element,mapEditPage):new WPGMZA.CirclePanel(element,mapEditPage)},WPGMZA.CirclePanel.prototype.updateFields=function(){$(this.element).find("[data-ajax-name='center']").val(this.feature.getCenter().toString()),$(this.element).find("[data-ajax-name='radius']").val(this.feature.getRadius())},WPGMZA.CirclePanel.prototype.onDrawingComplete=function(event){WPGMZA.FeaturePanel.prototype.onDrawingComplete.apply(this,arguments),this.updateFields()},WPGMZA.CirclePanel.prototype.setTargetFeature=function(feature){WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments),feature&&this.updateFields()},WPGMZA.CirclePanel.prototype.onFeatureChanged=function(event){WPGMZA.FeaturePanel.prototype.onFeatureChanged.apply(this,arguments),this.updateFields()}});var wpgmza_autoCompleteDisabled=!1;jQuery(function($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){var self=this,element=document.body;WPGMZA.EventDispatcher.call(this),$("#wpgmaps_options fieldset").wrapInner("<div class='wpgmza-flex'></div>"),this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0],(!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.1.0")>=WPGMZA.Version.EQUAL_TO)&&(this.drawingManager=WPGMZA.DrawingManager.createInstance(this.map)),this.initDataTables(),this.initFeaturePanels(),this.initJQueryUIControls(),"en"!==WPGMZA.locale&&$("#datatable_no_result_message,#datatable_search_string").parent().parent().hide(),$("input.wpgmza-address").each(function(index,el){el.addressInput=WPGMZA.AddressInput.createInstance(el,self.map)}),$('#wpgmza-map-edit-page input[type="color"]').each(function(){$("<div class='button-secondary wpgmza-paste-color-btn' title='Paste a HEX color code'><i class='fa fa-clipboard' aria-hidden='true'></i></div>").insertAfter(this)}),jQuery("body").on("click",".wpgmza_ac_result",function(e){var index=jQuery(this).data("id"),lat=jQuery(this).data("lat"),lng=jQuery(this).data("lng"),name=jQuery("#wpgmza_item_address_"+index).html();jQuery("input[name='lat']").val(lat),jQuery("input[name='lng']").val(lng),jQuery("#wpgmza_add_address_map_editor").val(name),jQuery("#wpgmza_autocomplete_search_results").hide()}),jQuery("body").on("click",".wpgmza-paste-color-btn",function(){try{var colorBtn=$(this);if(!navigator||!navigator.clipboard||!navigator.clipboard.readText)return;navigator.clipboard.readText().then(function(textcopy){colorBtn.parent().find('input[type="color"]').val("#"+textcopy.replace("#","").trim())}).catch(function(err){console.error("WP Google Maps: Could not access clipboard",err)})}catch(c_ex){}}),jQuery("body").on("focusout","#wpgmza_add_address_map_editor",function(e){setTimeout(function(){jQuery("#wpgmza_autocomplete_search_results").fadeOut("slow")},500)});var ajaxRequest=!1,wpgmzaAjaxTimeout=!1,wpgmzaStartTyping=!1,wpgmzaKeyStrokeCount=1,wpgmzaAvgTimeBetweenStrokes=300,wpgmzaTotalTimeForKeyStrokes=0,wpgmzaTmp="",wpgmzaIdentifiedTypingSpeed=!1;$("body").on("keypress",".wpgmza-address",function(e){if("wpgmza_add_address_map_editor"==this.id){if(wpgmza_autoCompleteDisabled)return;var wpgmza_apikey=!1;if(WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey)return void(wpgmza_apikey=WPGMZA_localized_data.settings.googleMapsApiKey);if("Escape"===e.key||"Alt"===e.key||"Control"===e.key||"Option"===e.key||"Shift"===e.key||"ArrowLeft"===e.key||"ArrowRight"===e.key||"ArrowUp"===e.key||"ArrowDown"===e.key)return void $("#wpgmza_autocomplete_search_results").hide();if(!wpgmzaIdentifiedTypingSpeed){var d=new Date;return clearTimeout(wpgmzaTmp),wpgmzaTmp=setTimeout(function(){wpgmzaStartTyping=!1,wpgmzaAvgTimeBetweenStrokes=300,wpgmzaTotalTimeForKeyStrokes=0},1500),wpgmzaStartTyping?1==wpgmzaKeyStrokeCount||(wpgmzaCurrentTimeBetweenStrokes=d.getTime()-wpgmzaStartTyping,wpgmzaTotalTimeForKeyStrokes+=wpgmzaCurrentTimeBetweenStrokes,wpgmzaAvgTimeBetweenStrokes=wpgmzaTotalTimeForKeyStrokes/(wpgmzaKeyStrokeCount-1),wpgmzaStartTyping=d.getTime(),3<=wpgmzaKeyStrokeCount&&(wpgmzaIdentifiedTypingSpeed=wpgmzaAvgTimeBetweenStrokes)):wpgmzaStartTyping=d.getTime(),void wpgmzaKeyStrokeCount++}clearTimeout(wpgmzaAjaxTimeout),$("#wpgmza_autocomplete_search_results").html("Searching..."),$("#wpgmza_autocomplete_search_results").show();var currentSearch=jQuery(this).val();if(""!==currentSearch){!1!==ajaxRequest&&ajaxRequest.abort();var wpgmza_api_url="";wpgmza_api_url=wpgmza_apikey?"https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+window.location.hostname+"&hash="+WPGMZA_localized_data.siteHash+"&k="+wpgmza_apikey:"https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+window.location.hostname+"&hash="+WPGMZA_localized_data.siteHash,wpgmzaAjaxTimeout=setTimeout(function(){ajaxRequest=$.ajax({url:wpgmza_api_url,type:"GET",dataType:"json",success:function(results){try{if(void 0!==results.error)"error1"==results.error?($("#wpgmza_autoc_disabled").html(WPGMZA.localized_strings.cloud_api_key_error_1),$("#wpgmza_autoc_disabled").fadeIn("slow"),$("#wpgmza_autocomplete_search_results").hide(),wpgmza_autoCompleteDisabled=!0):console.error(results.error);else{$("#wpgmza_autocomplete_search_results").html("");var html="";for(var i in results)html+="<div class='wpgmza_ac_result "+(""===html?"":"border-top")+"' data-id='"+i+"' data-lat='"+results[i].lat+"' data-lng='"+results[i].lng+"'><div class='wpgmza_ac_container'><div class='wpgmza_ac_icon'><img src='"+results[i].icon+"' /></div><div class='wpgmza_ac_item'><span id='wpgmza_item_name_"+i+"' class='wpgmza_item_name'>"+results[i].place_name+"</span><span id='wpgmza_item_address_"+i+"' class='wpgmza_item_address'>"+results[i].formatted_address+"</span></div></div></div>";""==html&&(html="<div class='p-2 text-center'><small>No results found...</small></div>"),$("#wpgmza_autocomplete_search_results").html(html),$("#wpgmza_autocomplete_search_results").show()}}catch(exception){console.error("WP Google Maps Plugin: There was an error returning the list of places for your search")}}})},2*wpgmzaIdentifiedTypingSpeed)}else $("#wpgmza_autocomplete_search_results").hide()}}),$("#wpgmza_map_height_type").on("change",function(event){self.onMapHeightTypeChange(event)}),$("#advanced-markers .wpgmza-feature-drawing-instructions").remove(),$("[data-search-area='auto']").hide(),$(document.body).on("click","[data-wpgmza-admin-marker-datatable] input[name='mark']",function(event){self.onShiftClick(event)}),$("#wpgmza_map_type").on("change",function(event){self.onMapTypeChanged(event)}),$("body").on("click",".wpgmza_copy_shortcode",function(){var $temp=jQuery("<input>");jQuery('<span id="wpgmza_tmp" style="display:none; width:100%; text-align:center;">');jQuery("body").append($temp),$temp.val(jQuery(this).val()).select(),document.execCommand("copy"),$temp.remove(),WPGMZA.notification("Shortcode Copied")}),this.on("markerupdated",function(event){self.onMarkerUpdated(event)}),this.map&&(this.map.on("zoomchanged",function(event){self.onZoomChanged(event)}),this.map.on("boundschanged",function(event){self.onBoundsChanged(event)}),this.map.on("rightclick",function(event){self.onRightClick(event)})),$(element).on("click",".wpgmza_poly_del_btn",function(event){self.onDeletePolygon(event)}),$(element).on("click",".wpgmza_polyline_del_btn",function(event){self.onDeletePolyline(event)}),$(element).on("click",".wpgmza_dataset_del_btn",function(evevnt){self.onDeleteHeatmap(event)}),$(element).on("click",".wpgmza_circle_del_btn",function(event){self.onDeleteCircle(event)}),$(element).on("click",".wpgmza_rectangle_del_btn",function(event){self.onDeleteRectangle(event)}),$(element).on("click","#wpgmza-open-advanced-theme-data",function(event){event.preventDefault(),$(".wpgmza_theme_data_container").toggleClass("wpgmza_hidden")})},WPGMZA.extend(WPGMZA.MapEditPage,WPGMZA.EventDispatcher),WPGMZA.MapEditPage.createInstance=function(){return WPGMZA.isProVersion()&&WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?new WPGMZA.ProMapEditPage:new WPGMZA.MapEditPage},WPGMZA.MapEditPage.prototype.initDataTables=function(){var self=this;$("[data-wpgmza-datatable][data-wpgmza-rest-api-route]").each(function(index,el){var featureType=$(el).attr("data-wpgmza-feature-type");self[featureType+"AdminDataTable"]=new WPGMZA.AdminFeatureDataTable(el)})},WPGMZA.MapEditPage.prototype.initFeaturePanels=function(){var self=this;$(".wpgmza-feature-accordion[data-wpgmza-feature-type]").each(function(index,el){var featurePanelElement=$(el).find(".wpgmza-feature-panel-container > *"),featureType=$(el).attr("data-wpgmza-feature-type"),panelClassName=WPGMZA.capitalizeWords(featureType)+"Panel",instance=WPGMZA[panelClassName].createInstance(featurePanelElement,self);self[featureType+"Panel"]=instance})},WPGMZA.MapEditPage.prototype.initJQueryUIControls=function(){var mapContainer,self=this;$("#wpgmaps_tabs").tabs(),mapContainer=$("#wpgmza-map-container").detach(),$("#wpgmaps_tabs_markers").tabs(),$(".map_wrapper").prepend(mapContainer),$("#slider-range-max").slider({range:"max",min:1,max:21,value:$("input[name='map_start_zoom']").val(),slide:function(event,ui){$("input[name='map_start_zoom']").val(ui.value),self.map.setZoom(ui.value)}})},WPGMZA.MapEditPage.prototype.onShiftClick=function(event){var checkbox=event.currentTarget,row=jQuery(checkbox).closest("tr");if(this.lastSelectedRow&&event.shiftKey){var prevIndex=this.lastSelectedRow.index(),currIndex=row.index(),startIndex=Math.min(prevIndex,currIndex),endIndex=Math.max(prevIndex,currIndex),rows=jQuery("[data-wpgmza-admin-marker-datatable] tbody>tr");jQuery("[data-wpgmza-admin-marker-datatable] input[name='mark']").prop("checked",!1);for(var i=startIndex;i<=endIndex;i++)jQuery(rows[i]).find("input[name='mark']").prop("checked",!0)}this.lastSelectedRow=row},WPGMZA.MapEditPage.prototype.onMapTypeChanged=function(event){if("open-layers"!=WPGMZA.settings.engine){var mapTypeId;switch(event.target.value){case"2":mapTypeId=google.maps.MapTypeId.SATELLITE;break;case"3":mapTypeId=google.maps.MapTypeId.HYBRID;break;case"4":mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:mapTypeId=google.maps.MapTypeId.ROADMAP}this.map.setOptions({mapTypeId:mapTypeId})}},WPGMZA.MapEditPage.prototype.onMarkerUpdated=function(event){this.markerDataTable.reload()},WPGMZA.MapEditPage.prototype.onZoomChanged=function(event){$(".map_start_zoom").val(this.map.getZoom())},WPGMZA.MapEditPage.prototype.onBoundsChanged=function(event){var location=this.map.getCenter();$("#wpgmza_start_location").val(location.lat+","+location.lng),$("input[name='map_start_lat']").val(location.lat),$("input[name='map_start_lng']").val(location.lng),$("#wpgmza_start_zoom").val(this.map.getZoom()),$("#wpgmaps_save_reminder").show()},WPGMZA.MapEditPage.prototype.onMapHeightTypeChange=function(event){"%"==event.target.value&&$("#wpgmza_height_warning").show()},WPGMZA.MapEditPage.prototype.onRightClick=function(event){var marker,self=this;this.drawingManager&&this.drawingManager.mode!=WPGMZA.DrawingManager.MODE_MARKER||(this.rightClickMarker||(this.rightClickMarker=WPGMZA.Marker.createInstance({draggable:!0}),this.rightClickMarker.on("dragend",function(event){$(".wpgmza-marker-panel [data-ajax-name='address']").val(event.latLng.lat+","+event.latLng.lng)}),this.map.on("click",function(event){self.rightClickMarker.setMap(null)})),(marker=this.rightClickMarker).setPosition(event.latLng),marker.setMap(this.map),$(".wpgmza-marker-panel [data-ajax-name='address']").val(event.latLng.lat+", "+event.latLng.lng))},WPGMZA.MapEditPage.prototype.onDeletePolygon=function(event){var cur_id=parseInt($(this).attr("id")),data={action:"delete_poly",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){WPGM_Path[cur_id].setMap(null),delete WPGM_PathData[cur_id],delete WPGM_Path[cur_id],$("#wpgmza_poly_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeletePolyline=function(event){var cur_id=$(this).attr("id"),data={action:"delete_polyline",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){WPGM_PathLine[cur_id].setMap(null),delete WPGM_PathLineData[cur_id],delete WPGM_PathLine[cur_id],$("#wpgmza_polyline_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeleteHeatmap=function(event){var cur_id=$(this).attr("id"),data={action:"delete_dataset",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){heatmap[cur_id].setMap(null),delete heatmap[cur_id],$("#wpgmza_heatmap_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeleteCircle=function(event){var circle_id=$(this).attr("id"),data={action:"delete_circle",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,circle_id:circle_id};$.post(ajaxurl,data,function(response){$("#tabs-m-5 table").replaceWith(response),circle_array.forEach(function(circle){if(circle.id==circle_id)return circle.setMap(null),!1})})},WPGMZA.MapEditPage.prototype.onDeleteRectangle=function(event){var rectangle_id=$(this).attr("id"),data={action:"delete_rectangle",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,rectangle_id:rectangle_id};$.post(ajaxurl,data,function(response){$("#tabs-m-6 table").replaceWith(response),rectangle_array.forEach(function(rectangle){if(rectangle.id==rectangle_id)return rectangle.setMap(null),!1})})},$(document).ready(function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.PolygonPanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.PolygonPanel,WPGMZA.FeaturePanel),WPGMZA.PolygonPanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProPolygonPanel(element,mapEditPage):new WPGMZA.PolygonPanel(element,mapEditPage)},Object.defineProperty(WPGMZA.PolygonPanel.prototype,"drawingManagerCompleteEvent",{get:function(){return"polygonclosed"}})}),jQuery(function($){WPGMZA.PolylinePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.PolylinePanel,WPGMZA.FeaturePanel),WPGMZA.PolylinePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProPolylinePanel(element,mapEditPage):new WPGMZA.PolylinePanel(element,mapEditPage)}}),jQuery(function($){WPGMZA.RectanglePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.RectanglePanel,WPGMZA.FeaturePanel),WPGMZA.RectanglePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProRectanglePanel(element,mapEditPage):new WPGMZA.RectanglePanel(element,mapEditPage)},WPGMZA.RectanglePanel.prototype.updateFields=function(){var bounds=this.feature.getBounds();bounds.north&&bounds.west&&bounds.south&&bounds.east&&($(this.element).find("[data-ajax-name='cornerA']").val(bounds.north+", "+bounds.west),$(this.element).find("[data-ajax-name='cornerB']").val(bounds.south+", "+bounds.east))},WPGMZA.RectanglePanel.prototype.setTargetFeature=function(feature){WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments),feature&&this.updateFields()},WPGMZA.RectanglePanel.prototype.onDrawingComplete=function(event){WPGMZA.FeaturePanel.prototype.onDrawingComplete.apply(this,arguments),this.updateFields()},WPGMZA.RectanglePanel.prototype.onFeatureChanged=function(event){WPGMZA.FeaturePanel.prototype.onFeatureChanged.apply(this,arguments),this.updateFields()}}),jQuery(function($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){var geom;if(Parent.call(this,options,olFeature),options=options||{},olFeature){var circle=olFeature.getGeometry(),center=ol.proj.toLonLat(circle.getCenter());geom=circle,options.center=new WPGMZA.LatLng(center[1],center[0]),options.radius=circle.getRadius()/1e3}else geom=new ol.geom.Circle(ol.proj.fromLonLat([parseFloat(options.center.lng),parseFloat(options.center.lat)]),1e3*options.radius);this.layer=new ol.layer.Vector({source:new ol.source.Vector}),this.olFeature=new ol.Feature({geometry:geom}),this.layer.getSource().addFeature(this.olFeature),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaCircle:this,wpgmzaFeature:this}),options&&this.setOptions(options)},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)},WPGMZA.OLCircle.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olFeature.getGeometry().getCenter());return new WPGMZA.LatLng({lat:lonLat[1],lng:lonLat[0]})},WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,radius=1e3*parseFloat(this.radius);x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular([x,y],radius,64).clone().transform("EPSG:4326","EPSG:3857");this.olFeature=new ol.Feature(circle3857),this.layer.getSource().addFeature(this.olFeature)}},WPGMZA.OLCircle.prototype.setVisible=function(visible){this.layer.setVisible(!!visible)},WPGMZA.OLCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.recreate()},WPGMZA.OLCircle.prototype.getRadius=function(){return this.layer.getSource().getFeatures()[0].getGeometry().getRadius()/1e3},WPGMZA.OLCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments)},WPGMZA.OLCircle.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){WPGMZA.OLDrawingManager=function(map){WPGMZA.DrawingManager.call(this,map),this.source=new ol.source.Vector({wrapX:!1}),this.layer=new ol.layer.Vector({source:this.source})},WPGMZA.OLDrawingManager.prototype=Object.create(WPGMZA.DrawingManager.prototype),WPGMZA.OLDrawingManager.prototype.constructor=WPGMZA.OLDrawingManager,WPGMZA.OLDrawingManager.prototype.setOptions=function(options){var params={};options.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(options.strokeColor,options.strokeOpacity)})),options.fillOpacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(options.fillColor,options.fillOpacity)})),this.layer.setStyle(new ol.style.Style(params))},WPGMZA.OLDrawingManager.prototype.setDrawingMode=function(mode){var type,endEventType,self=this;switch(WPGMZA.DrawingManager.prototype.setDrawingMode.call(this,mode),this.interaction&&(this.map.olMap.removeInteraction(this.interaction),this.interaction=null),mode){case WPGMZA.DrawingManager.MODE_NONE:case WPGMZA.DrawingManager.MODE_MARKER:return;case WPGMZA.DrawingManager.MODE_POLYGON:type="Polygon",endEventType="polygonclosed";break;case WPGMZA.DrawingManager.MODE_POLYLINE:type="LineString",endEventType="polylinecomplete";break;case WPGMZA.DrawingManager.MODE_CIRCLE:type="Circle",endEventType="circlecomplete";break;case WPGMZA.DrawingManager.MODE_RECTANGLE:type="Circle",endEventType="rectanglecomplete";break;case WPGMZA.DrawingManager.MODE_HEATMAP:return;default:throw new Error("Invalid drawing mode")}WPGMZA.mapEditPage&&WPGMZA.mapEditPage.selectInteraction&&WPGMZA.mapEditPage.map.olMap.removeInteraction(WPGMZA.mapEditPage.selectInteraction);var options={source:this.source,type:type};mode==WPGMZA.DrawingManager.MODE_RECTANGLE&&(options.geometryFunction=ol.interaction.Draw.createBox()),this.interaction=new ol.interaction.Draw(options),this.interaction.on("drawend",function(event){if(endEventType){var WPGMZAEvent=new WPGMZA.Event(endEventType);switch(mode){case WPGMZA.DrawingManager.MODE_POLYGON:WPGMZAEvent.enginePolygon=event.feature;break;case WPGMZA.DrawingManager.MODE_POLYLINE:WPGMZAEvent.enginePolyline=event.feature;break;case WPGMZA.DrawingManager.MODE_CIRCLE:WPGMZAEvent.engineCircle=event.feature;break;case WPGMZA.DrawingManager.MODE_RECTANGLE:WPGMZAEvent.engineRectangle=event.feature;break;default:throw new Error("Drawing mode not implemented")}self.dispatchEvent(WPGMZAEvent)}}),this.map.olMap.addInteraction(this.interaction)}}),jQuery(function($){WPGMZA.OLFeature=function(options){WPGMZA.assertInstangeOf(this,"OLFeature"),WPGMZA.Feature.apply(this,arguments)},WPGMZA.extend(WPGMZA.OLFeature,WPGMZA.Feature),WPGMZA.OLFeature.getOLStyle=function(options){var translated={};if(!options)return new ol.style.Style;options=$.extend({},options);var map={fillcolor:"fillColor",opacity:"fillOpacity",linecolor:"strokeColor",lineopacity:"strokeOpacity",linethickness:"strokeWeight"};for(var name in options)name in map&&(options[map[name]]=options[name]);if(options.strokeColor){var opacity=1,weight=1;"strokeOpacity"in options&&(opacity=options.strokeOpacity),"strokeWeight"in options&&(weight=options.strokeWeight),translated.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToString(options.strokeColor,opacity),width:weight})}if(options.fillColor){opacity=1;"fillOpacity"in options&&(opacity=options.fillOpacity);var color=WPGMZA.hexOpacityToString(options.fillColor,opacity);translated.fill=new ol.style.Fill({color:color})}return new ol.style.Style(translated)},WPGMZA.OLFeature.setInteractionsOnFeature=function(feature,enable){if(enable){if(feature.modifyInteraction)return;feature.snapInteraction=new ol.interaction.Snap({source:feature.layer.getSource()}),feature.map.olMap.addInteraction(feature.snapInteraction),feature.modifyInteraction=new ol.interaction.Modify({source:feature.layer.getSource()}),feature.map.olMap.addInteraction(feature.modifyInteraction),feature.modifyInteraction.on("modifyend",function(event){feature.trigger("change")})}else{if(!feature.modifyInteraction)return;feature.map&&(feature.map.olMap.removeInteraction(feature.snapInteraction),feature.map.olMap.removeInteraction(feature.modifyInteraction)),delete feature.snapInteraction,delete feature.modifyInteraction}}}),jQuery(function($){WPGMZA.OLGeocoder=function(){},WPGMZA.OLGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.OLGeocoder.prototype.constructor=WPGMZA.OLGeocoder,WPGMZA.OLGeocoder.prototype.getResponseFromCache=function(query,callback){WPGMZA.restAPI.call("/geocode-cache",{data:{query:JSON.stringify(query)},success:function(response,xhr,status){response.lng=response.lon,callback(response)},useCompressedPathVariable:!0})},WPGMZA.OLGeocoder.prototype.getResponseFromNominatim=function(options,callback){var data={q:options.address,format:"json"};options.componentRestrictions&&options.componentRestrictions.country?data.countrycodes=options.componentRestrictions.country:options.country&&(data.countrycodes=options.country),$.ajax("https://nominatim.openstreetmap.org/search/",{data:data,success:function(response,xhr,status){callback(response)},error:function(response,xhr,status){callback(null,WPGMZA.Geocoder.FAIL)}})},WPGMZA.OLGeocoder.prototype.cacheResponse=function(query,response){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_store_nominatim_cache",query:JSON.stringify(query),response:JSON.stringify(response)},method:"POST"})},WPGMZA.OLGeocoder.prototype.clearCache=function(callback){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_clear_nominatim_cache"},method:"POST",success:function(response){callback(response)}})},WPGMZA.OLGeocoder.prototype.getLatLngFromAddress=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.getAddressFromLatLng=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.geocode=function(options,callback){var self=this;if(!options)throw new Error("Invalid options");if(WPGMZA.LatLng.REGEXP.test(options.address)){var latLng=WPGMZA.LatLng.fromString(options.address);callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng}],WPGMZA.Geocoder.SUCCESS)}else{var finish,location;if(options.location&&(options.latLng=new WPGMZA.LatLng(options.location)),options.address)location=options.address,finish=function(response,status){for(var i=0;i<response.length;i++)response[i].geometry={location:new WPGMZA.LatLng({lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)})},response[i].latLng={lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)},response[i].bounds=new WPGMZA.LatLngBounds(new WPGMZA.LatLng({lat:response[i].boundingbox[1],lng:response[i].boundingbox[2]}),new WPGMZA.LatLng({lat:response[i].boundingbox[0],lng:response[i].boundingbox[3]})),response[i].lng=response[i].lon;callback(response,status)};else{if(!options.latLng)throw new Error("You must supply either a latLng or address");location=options.latLng.toString(),finish=function(response,status){var address=response[0].display_name;callback([address],status)}}var query={location:location,options:options};this.getResponseFromCache(query,function(response){response.length?finish(response,WPGMZA.Geocoder.SUCCESS):self.getResponseFromNominatim($.extend(options,{address:location}),function(response,status){status!=WPGMZA.Geocoder.FAIL?0!=response.length?(finish(response,WPGMZA.Geocoder.SUCCESS),self.cacheResponse(query,response)):callback([],WPGMZA.Geocoder.ZERO_RESULTS):callback(null,WPGMZA.Geocoder.FAIL)})})}}}),jQuery(function($){var Parent;WPGMZA.OLInfoWindow=function(feature){var self=this;Parent.call(this,feature),this.element=$("<div class='wpgmza-infowindow ol-info-window-container ol-info-window-plain'></div>")[0],$(this.element).on("click",".ol-info-window-close",function(event){self.close()})},Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.OLInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.OLInfoWindow.prototype.constructor=WPGMZA.OLInfoWindow,Object.defineProperty(WPGMZA.OLInfoWindow.prototype,"isPanIntoViewAllowed",{get:function(){return!0}}),WPGMZA.OLInfoWindow.prototype.open=function(map,feature){var self=this,latLng=feature.getPosition();if(!Parent.prototype.open.call(this,map,feature))return!1;this.parent=map,this.overlay&&this.feature.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!0,insertFirst:!0}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.feature.map.olMap.addOverlay(this.overlay),$(this.element).show(),this.setContent(this.content),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(feature.getIcon(),function(size){$(self.element).css({left:Math.round(size.width/2)+"px"})}),this.trigger("infowindowopen"),this.trigger("domready")},WPGMZA.OLInfoWindow.prototype.close=function(event){$(this.element).hide(),this.overlay&&(WPGMZA.InfoWindow.prototype.close.call(this),this.trigger("infowindowclose"),this.feature.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html;var eaBtn=WPGMZA.isProVersion()?"":this.addEditButton();$(this.element).html(eaBtn+"<i class='fa fa-times ol-info-window-close' aria-hidden='true'></i>"+html)},WPGMZA.OLInfoWindow.prototype.setOptions=function(options){options.maxWidth&&$(this.element).css({"max-width":options.maxWidth+"px"})},WPGMZA.OLInfoWindow.prototype.onOpen=function(){var self=this,imgs=$(this.element).find("img"),numImages=imgs.length,numImagesLoaded=0;if(WPGMZA.InfoWindow.prototype.onOpen.apply(this,arguments),this.isPanIntoViewAllowed){function inside(el,viewport){var a=$(el)[0].getBoundingClientRect(),b=$(viewport)[0].getBoundingClientRect();return a.left>=b.left&&a.left<=b.right&&a.right<=b.right&&a.right>=b.left&&a.top>=b.top&&a.top<=b.bottom&&a.bottom<=b.bottom&&a.bottom>=b.top}function panIntoView(){var offset=.45*-$(self.element).height();self.feature.map.animateNudge(0,offset,self.feature.getPosition())}imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.feature.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.feature.map.element)||panIntoView()}}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var viewOptions=this.settings.toOLViewOptions();function isSettingDisabled(value){return"yes"===value||!!value}$(this.element).html(""),this.olMap=new ol.Map({target:$(element)[0],layers:[this.getTileLayer()],view:new ol.View(viewOptions)}),this.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan?interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_draggable)):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_clickzoom)):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_scroll))},this),"greedy"!=this.settings.wpgmza_force_greedy_gestures&&"yes"!=this.settings.wpgmza_force_greedy_gestures&&1!=this.settings.wpgmza_force_greedy_gestures&&(this.gestureOverlay=$("<div class='wpgmza-gesture-overlay'></div>"),this.gestureOverlayTimeoutID=null,WPGMZA.isTouchDevice()||(this.olMap.on("wheel",function(event){if(!ol.events.condition.platformModifierKeyOnly(event))return self.showGestureOverlay(),event.originalEvent.preventDefault(),!1}),this.gestureOverlay.text(WPGMZA.localized_strings.use_ctrl_scroll_to_zoom))),this.olMap.getControls().forEach(function(control){control instanceof ol.control.Zoom&&1==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),isSettingDisabled(WPGMZA.settings.wpgmza_settings_map_full_screen_control)||this.olMap.addControl(new ol.control.FullScreen),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(this.markerLayer=new ol.layer.Vector({source:new ol.source.Vector({features:[]})}),this.olMap.addLayer(this.markerLayer),this.olMap.on("click",function(event){var features=self.olMap.getFeaturesAtPixel(event.pixel);if(features&&features.length){var marker=features[0].wpgmzaMarker;marker&&(marker.trigger("click"),marker.trigger("select"))}})),this.olMap.on("movestart",function(event){self.isBeingDragged=!0}),this.olMap.on("moveend",function(event){self.wrapLongitude(),self.isBeingDragged=!1,self.dispatchEvent("dragend"),self.onIdle()}),this.olMap.getView().on("change:resolution",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged"),setTimeout(function(){self.onIdle()},10)}),this.olMap.getView().on("change",function(){self.onBoundsChanged()}),self.onBoundsChanged(),this._mouseoverNativeFeatures=[],this.olMap.on("pointermove",function(event){if(!event.dragging){try{var featuresUnderPixel=event.target.getFeaturesAtPixel(event.pixel)}catch(e){return}featuresUnderPixel=featuresUnderPixel||[];var i,props,nativeFeaturesUnderPixel=[];for(i=0;i<featuresUnderPixel.length;i++)(props=featuresUnderPixel[i].getProperties()).wpgmzaFeature&&(nativeFeature=props.wpgmzaFeature,nativeFeaturesUnderPixel.push(nativeFeature),-1==self._mouseoverNativeFeatures.indexOf(nativeFeature)&&(nativeFeature.trigger("mouseover"),self._mouseoverNativeFeatures.push(nativeFeature)));for(i=self._mouseoverNativeFeatures.length-1;0<=i;i--)nativeFeature=self._mouseoverNativeFeatures[i],-1==nativeFeaturesUnderPixel.indexOf(nativeFeature)&&(nativeFeature.trigger("mouseout"),self._mouseoverNativeFeatures.splice(i,1))}}),$(this.element).on("click contextmenu",function(event){var isRight;event=event||window.event;var latLng=self.pixelsToLatLng(event.offsetX,event.offsetY);if("which"in event?isRight=3==event.which:"button"in event&&(isRight=2==event.button),1!=event.which&&1!=event.button){if(isRight)return self.onRightClick(event)}else{if(self.isBeingDragged)return;if($(event.target).closest(".ol-marker").length)return;try{var featuresUnderPixel=self.olMap.getFeaturesAtPixel([event.offsetX,event.offsetY])}catch(e){return}featuresUnderPixel=featuresUnderPixel||[];var i,props,nativeFeaturesUnderPixel=[];for(i=0;i<featuresUnderPixel.length;i++)(props=featuresUnderPixel[i].getProperties()).wpgmzaFeature&&(nativeFeature=props.wpgmzaFeature,nativeFeaturesUnderPixel.push(nativeFeature),nativeFeature.trigger("click"));if(0<featuresUnderPixel.length)return;self.trigger({type:"click",latLng:latLng})}}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},Parent=WPGMZA.isProVersion()?WPGMZA.ProMap:WPGMZA.Map,WPGMZA.OLMap.prototype=Object.create(Parent.prototype),WPGMZA.OLMap.prototype.constructor=WPGMZA.OLMap,WPGMZA.OLMap.prototype.getTileLayer=function(){var options={};return WPGMZA.settings.tile_server_url&&(options.url=WPGMZA.settings.tile_server_url,"custom_override"===WPGMZA.settings.tile_server_url&&(WPGMZA.settings.tile_server_url_override&&""!==WPGMZA.settings.tile_server_url_override.trim()?options.url=WPGMZA.settings.tile_server_url_override.trim():options.url="https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png"),WPGMZA.settings.open_layers_api_key&&""!==WPGMZA.settings.open_layers_api_key&&(options.url+="?apikey="+WPGMZA.settings.open_layers_api_key.trim())),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var transformed=ol.proj.transform(this.olMap.getView().getCenter(),"EPSG:3857","EPSG:4326"),center={lat:transformed[1],lng:transformed[0]};-180<=center.lng&¢er.lng<=180||(center.lng=center.lng-360*Math.floor(center.lng/360),180<center.lng&&(center.lng-=360),this.setCenter(center))},WPGMZA.OLMap.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olMap.getView().getCenter());return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.setCenter=function(latLng){var view=this.olMap.getView();WPGMZA.Map.prototype.setCenter.call(this,latLng),view.setCenter(ol.proj.fromLonLat([latLng.lng,latLng.lat])),this.wrapLongitude(),this.onBoundsChanged()},WPGMZA.OLMap.prototype.getBounds=function(){var bounds=this.olMap.getView().calculateExtent(this.olMap.getSize()),nativeBounds=new WPGMZA.LatLngBounds,topLeft=ol.proj.toLonLat([bounds[0],bounds[1]]),bottomRight=ol.proj.toLonLat([bounds[2],bounds[3]]);return nativeBounds.north=topLeft[1],nativeBounds.south=bottomRight[1],nativeBounds.west=topLeft[0],nativeBounds.east=bottomRight[0],nativeBounds},WPGMZA.OLMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var view=this.olMap.getView(),extent=ol.extent.boundingExtent([ol.proj.fromLonLat([parseFloat(southWest.lng),parseFloat(southWest.lat)]),ol.proj.fromLonLat([parseFloat(northEast.lng),parseFloat(northEast.lat)])]);view.fit(extent,this.olMap.getSize())},WPGMZA.OLMap.prototype.panTo=function(latLng,zoom){var view=this.olMap.getView(),options={center:ol.proj.fromLonLat([parseFloat(latLng.lng),parseFloat(latLng.lat)]),duration:500};1<arguments.length&&(options.zoom=parseInt(zoom)),view.animate(options)},WPGMZA.OLMap.prototype.getZoom=function(){return Math.round(this.olMap.getView().getZoom())},WPGMZA.OLMap.prototype.setZoom=function(value){this.olMap.getView().setZoom(value)},WPGMZA.OLMap.prototype.getMinZoom=function(){return this.olMap.getView().getMinZoom()},WPGMZA.OLMap.prototype.setMinZoom=function(value){this.olMap.getView().setMinZoom(value)},WPGMZA.OLMap.prototype.getMaxZoom=function(){return this.olMap.getView().getMaxZoom()},WPGMZA.OLMap.prototype.setMaxZoom=function(value){this.olMap.getView().setMaxZoom(value)},WPGMZA.OLMap.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.olMap&&this.olMap.getView().setProperties(this.settings.toOLViewOptions())},WPGMZA.OLMap.prototype.addMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.addOverlay(marker.overlay):(this.markerLayer.getSource().addFeature(marker.feature),marker.featureInSource=!0),Parent.prototype.addMarker.call(this,marker)},WPGMZA.OLMap.prototype.removeMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.removeOverlay(marker.overlay):(this.markerLayer.getSource().removeFeature(marker.feature),marker.featureInSource=!1),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.OLMap.prototype.addPolygon=function(polygon){this.olMap.addLayer(polygon.layer),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.OLMap.prototype.removePolygon=function(polygon){this.olMap.removeLayer(polygon.layer),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.OLMap.prototype.addPolyline=function(polyline){this.olMap.addLayer(polyline.layer),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.OLMap.prototype.removePolyline=function(polyline){this.olMap.removeLayer(polyline.layer),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.OLMap.prototype.addCircle=function(circle){this.olMap.addLayer(circle.layer),Parent.prototype.addCircle.call(this,circle)},WPGMZA.OLMap.prototype.removeCircle=function(circle){this.olMap.removeLayer(circle.layer),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.OLMap.prototype.addRectangle=function(rectangle){this.olMap.addLayer(rectangle.layer),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.removeRectangle=function(rectangle){this.olMap.removeLayer(rectangle.layer),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.pixelsToLatLng=function(x,y){null==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var coord=this.olMap.getCoordinateFromPixel([x,y]);if(!coord)return{x:null,y:null};var lonLat=ol.proj.toLonLat(coord);return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.latLngToPixels=function(latLng){var coord=ol.proj.fromLonLat([latLng.lng,latLng.lat]),pixel=this.olMap.getPixelFromCoordinate(coord);return pixel?{x:pixel[0],y:pixel[1]}:{x:null,y:null}},WPGMZA.OLMap.prototype.enableBicycleLayer=function(value){if(value)this.bicycleLayer||(this.bicycleLayer=new ol.layer.Tile({source:new ol.source.OSM({url:"http://{a-c}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png"})})),this.olMap.addLayer(this.bicycleLayer);else{if(!this.bicycleLayer)return;this.olMap.removeLayer(this.bicycleLayer)}},WPGMZA.OLMap.prototype.showGestureOverlay=function(){var self=this;clearTimeout(this.gestureOverlayTimeoutID),$(this.gestureOverlay).stop().animate({opacity:"100"}),$(this.element).append(this.gestureOverlay),$(this.gestureOverlay).css({"line-height":$(this.element).height()+"px",opacity:"1.0"}),$(this.gestureOverlay).show(),this.gestureOverlayTimeoutID=setTimeout(function(){self.gestureOverlay.fadeOut(2e3)},2e3)},WPGMZA.OLMap.prototype.onElementResized=function(event){this.olMap.updateSize()},WPGMZA.OLMap.prototype.onRightClick=function(event){if($(event.target).closest(".ol-marker, .wpgmza_modern_infowindow, .wpgmza-modern-store-locator").length)return!0;var parentOffset=$(this.element).offset(),relX=event.pageX-parentOffset.left,relY=event.pageY-parentOffset.top,latLng=this.pixelsToLatLng(relX,relY);return this.trigger({type:"rightclick",latLng:latLng}),$(this.element).trigger({type:"rightclick",latLng:latLng}),event.preventDefault(),!1},WPGMZA.OLMap.prototype.enableAllInteractions=function(){this.olMap.getInteractions().forEach(function(interaction){(interaction instanceof ol.interaction.DragPan||interaction instanceof ol.interaction.DoubleClickZoom||interaction instanceof ol.interaction.MouseWheelZoom)&&interaction.setActive(!0)},this)}}),jQuery(function($){var Parent;WPGMZA.OLMarker=function(options){var self=this;Parent.call(this,options);var settings={};if(options)for(var name in options)options[name]instanceof WPGMZA.LatLng?settings[name]=options[name].toLatLngLiteral():options[name]instanceof WPGMZA.Map||(settings[name]=options[name]);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);if(WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT){var img=$("<img alt=''/>")[0];img.onload=function(event){self.updateElementHeight(),self.map&&self.map.olMap.updateSize()},img.src=WPGMZA.defaultMarkerIcon,this.element=$("<div class='ol-marker'></div>")[0],this.element.appendChild(img),this.element.wpgmzaMarker=this,$(this.element).on("mouseover",function(event){self.dispatchEvent("mouseover")}),this.overlay=new ol.Overlay({element:this.element,position:origin,positioning:"bottom-center",stopEvent:!1}),this.overlay.setPosition(origin),this.animation?this.setAnimation(this.animation):this.anim&&this.setAnimation(this.anim),options&&options.draggable&&this.setDraggable(!0),this.rebindClickListener()}else{if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)throw new Error("Invalid marker render mode");this.feature=new ol.Feature({geometry:new ol.geom.Point(origin)}),this.feature.setStyle(this.getVectorLayerStyle()),(this.feature.wpgmzaMarker=this).feature.wpgmzaFeature=this}this.setOptions(settings),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.OLMarker.prototype=Object.create(Parent.prototype),WPGMZA.OLMarker.prototype.constructor=WPGMZA.OLMarker,WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT="element",WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER="vector",WPGMZA.OLMarker.renderMode=WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT,"open-layers"==WPGMZA.settings.engine&&WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(WPGMZA.OLMarker.defaultVectorLayerStyle=new ol.style.Style({image:new ol.style.Icon({anchor:[.5,1],src:WPGMZA.defaultMarkerIcon})}),WPGMZA.OLMarker.hiddenVectorLayerStyle=new ol.style.Style({})),WPGMZA.OLMarker.prototype.getVectorLayerStyle=function(){return this.vectorLayerStyle?this.vectorLayerStyle:WPGMZA.OLMarker.defaultVectorLayerStyle},WPGMZA.OLMarker.prototype.updateElementHeight=function(height,calledOnFocus){var self=this;0!=(height=height||$(this.element).find("img").height())||calledOnFocus||$(window).one("focus",function(event){self.updateElementHeight(!1,!0)}),$(this.element).css({height:height+"px"})},WPGMZA.OLMarker.prototype.addLabel=function(){this.setLabel(this.getLabelText())},WPGMZA.OLMarker.prototype.setLabel=function(label){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?label?(this.label||(this.label=$("<div class='ol-marker-label'/>"),$(this.element).append(this.label)),this.label.html(label)):this.label&&$(this.element).find(".ol-marker-label").remove():console.warn("Marker labels are not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.getVisible=function(visible){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)return"none"!=this.overlay.getElement().style.display},WPGMZA.OLMarker.prototype.setVisible=function(visible){if(Parent.prototype.setVisible.call(this,visible),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(visible){var style=this.getVectorLayerStyle();this.feature.setStyle(style)}else this.feature.setStyle(null);else this.overlay.getElement().style.display=visible?"block":"none"},WPGMZA.OLMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?this.feature.setGeometry(new ol.geom.Point(origin)):this.overlay.setPosition(origin)},WPGMZA.OLMarker.prototype.updateOffset=function(x,y){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER){x=this._offset.x,y=this._offset.y;this.element.style.position="relative",this.element.style.left=x+"px",this.element.style.top=y+"px"}else console.warn("Marker offset is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setAnimation=function(anim){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)switch(Parent.prototype.setAnimation.call(this,anim),anim){case WPGMZA.Marker.ANIMATION_NONE:$(this.element).removeAttr("data-anim");break;case WPGMZA.Marker.ANIMATION_BOUNCE:$(this.element).attr("data-anim","bounce");break;case WPGMZA.Marker.ANIMATION_DROP:$(this.element).attr("data-anim","drop")}else console.warn("Marker animation is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setDraggable=function(draggable){var self=this;if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(draggable){var options={disabled:!1};this.jQueryDraggableInitialized||(options.start=function(event){self.onDragStart(event)},options.stop=function(event){self.onDragEnd(event)}),$(this.element).draggable(options),this.jQueryDraggableInitialized=!0,this.rebindClickListener()}else $(this.element).draggable({disabled:!0});else console.warn("Marker dragging is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setOpacity=function(opacity){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?$(this.element).css({opacity:opacity}):console.warn("Marker opacity is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.onDragStart=function(event){this.isBeingDragged=!0,this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!1)})},WPGMZA.OLMarker.prototype.onDragEnd=function(event){var offset_top=parseFloat($(this.element).css("top").match(/-?\d+/)[0]),offset_left=parseFloat($(this.element).css("left").match(/-?\d+/)[0]);$(this.element).css({top:"0px",left:"0px"});var currentLatLng=this.getPosition(),pixelsBeforeDrag=this.map.latLngToPixels(currentLatLng),pixelsAfterDrag={x:pixelsBeforeDrag.x+offset_left,y:pixelsBeforeDrag.y+offset_top},latLngAfterDrag=this.map.pixelsToLatLng(pixelsAfterDrag);this.setPosition(latLngAfterDrag),this.isBeingDragged=!1,this.trigger({type:"dragend",latLng:latLngAfterDrag}),this.trigger("change"),"yes"!=this.map.settings.wpgmza_settings_map_draggable&&this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!0)})},WPGMZA.OLMarker.prototype.onElementClick=function(event){var self=event.currentTarget.wpgmzaMarker;self.isBeingDragged||(self.dispatchEvent("click"),self.dispatchEvent("select"))},WPGMZA.OLMarker.prototype.rebindClickListener=function(){$(this.element).off("click",this.onElementClick),$(this.element).on("click",this.onElementClick)}}),jQuery(function($){WPGMZA.OLModernStoreLocatorCircle=function(map,settings){WPGMZA.ModernStoreLocatorCircle.call(this,map,settings)},WPGMZA.OLModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.OLModernStoreLocatorCircle.prototype.constructor=WPGMZA.OLModernStoreLocatorCircle,WPGMZA.OLModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this,olViewportElement=$(this.map.element).children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",olViewportElement.find(".ol-layers .ol-layer:first-child").prepend(this.canvas),this.renderFunction=function(event){self.canvas.width==olViewportElement.width()&&self.canvas.height==olViewportElement.height()||(self.canvas.width=olViewportElement.width(),self.canvas.height=olViewportElement.height(),$(this.canvas).css({width:olViewportElement.width()+"px",height:olViewportElement.height()+"px"})),self.draw()},this.map.olMap.on("postrender",this.renderFunction)},WPGMZA.OLModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvas.getContext(type)},WPGMZA.OLModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvas.width,height:this.canvas.height}},WPGMZA.OLModernStoreLocatorCircle.prototype.getCenterPixels=function(){return this.map.latLngToPixels(this.settings.center)},WPGMZA.OLModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){return{x:0,y:0}},WPGMZA.OLModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var center=new WPGMZA.LatLng(this.settings.center),outer=new WPGMZA.LatLng(center);outer.moveByDistance(km,90);var centerPixels=this.map.latLngToPixels(center),outerPixels=this.map.latLngToPixels(outer);return Math.abs(outerPixels.x-centerPixels.x)},WPGMZA.OLModernStoreLocatorCircle.prototype.getScale=function(){return 1},WPGMZA.OLModernStoreLocatorCircle.prototype.destroy=function(){$(this.canvas).remove(),this.map.olMap.un("postrender",this.renderFunction),this.map=null,this.canvas=null}}),jQuery(function($){WPGMZA.OLModernStoreLocator=function(map_id){WPGMZA.ModernStoreLocator.call(this,map_id),(WPGMZA.isProVersion()?$(".wpgmza_map[data-map-id='"+map_id+"']"):$("#wpgmza_map")).append(this.element)},WPGMZA.OLModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator),WPGMZA.OLModernStoreLocator.prototype.constructor=WPGMZA.OLModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.OLPolygon=function(options,olFeature){if(Parent.call(this,options,olFeature),olFeature)this.olFeature=olFeature;else{var coordinates=[[]];if(options&&options.polydata)for(var paths=this.parseGeometry(options.polydata),i=0;i<=paths.length;i++)coordinates[0].push(ol.proj.fromLonLat([parseFloat(paths[i%paths.length].lng),parseFloat(paths[i%paths.length].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]})}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolygon:this,wpgmzaFeature:this}),options&&this.setOptions(options)},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getGeometry=function(){for(var coordinates=this.olFeature.getGeometry().getCoordinates()[0],result=[],i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.push(latLng)}return result},WPGMZA.OLPolygon.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&options.polydata)for(var path=this.parseGeometry(options.polydata),i=0;i<path.length;i++){if(!$.isNumeric(path[i].lat))throw new Error("Invalid latitude");if(!$.isNumeric(path[i].lng))throw new Error("Invalid longitude");coordinates.push(ol.proj.fromLonLat([parseFloat(path[i].lng),parseFloat(path[i].lat)]))}this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]})}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this,wpgmzaFeature:this}),options&&this.setOptions(options)},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getGeometry=function(){for(var result=[],coordinates=this.olFeature.getGeometry().getCoordinates(),i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.push(latLng)}return result},WPGMZA.OLPolyline.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){var Parent=WPGMZA.Rectangle;WPGMZA.OLRectangle=function(options,olFeature){if(Parent.apply(this,arguments),olFeature)this.olFeature=olFeature;else{var coordinates=[[]];options.cornerA&&options.cornerB&&(coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerA.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerB.lng),parseFloat(options.cornerA.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerB.lng),parseFloat(options.cornerB.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerB.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerA.lat)]))),this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaRectangle:this,wpgmzaFeature:this}),options&&this.setOptions(options)},WPGMZA.extend(WPGMZA.OLRectangle,WPGMZA.Rectangle),WPGMZA.OLRectangle.prototype.getBounds=function(){var extent=this.olFeature.getGeometry().getExtent(),topLeft=ol.extent.getTopLeft(extent),bottomRight=ol.extent.getBottomRight(extent),topLeftLonLat=ol.proj.toLonLat(topLeft),bottomRightLonLat=ol.proj.toLonLat(bottomRight),topLeftLatLng=new WPGMZA.LatLng(topLeftLonLat[1],topLeftLonLat[0]),bottomRightLatLng=new WPGMZA.LatLng(bottomRightLonLat[1],bottomRightLonLat[0]);return new WPGMZA.LatLngBounds(topLeftLatLng,bottomRightLatLng)},WPGMZA.OLRectangle.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){WPGMZA.OLText=function(){}}),jQuery(function($){WPGMZA.DataTable=function(element){var self=this;if(!$.fn.dataTable)return console.warn("The dataTables library is not loaded. Cannot create a dataTable. Did you enable 'Do not enqueue dataTables'?"),void(WPGMZA.settings.wpgmza_do_not_enqueue_datatables&&WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&alert("You have selected 'Do not enqueue DataTables' in WP Google Maps' settings. No 3rd party software is loading the DataTables library. Because of this, the marker table cannot load. Please uncheck this option to use the marker table."));if($.fn.dataTable.ext)$.fn.dataTable.ext.errMode="throw";else{var version=$.fn.dataTable.version?$.fn.dataTable.version:"unknown";console.warn("You appear to be running an outdated or modified version of the dataTables library. This may cause issues with table functionality. This is usually caused by 3rd party software loading an older version of DataTables. The loaded version is "+version+", we recommend version 1.10.12 or above.")}$.fn.dataTable.Api&&$.fn.dataTable.Api.register("processing()",function(show){return this.iterator("table",function(ctx){ctx.oApi._fnProcessingDisplay(ctx,show)})}),this.element=element,(this.element.wpgmzaDataTable=this).dataTableElement=this.getDataTableElement();var settings=this.getDataTableSettings();this.phpClass=$(element).attr("data-wpgmza-php-class"),(this.wpgmzaDataTable=this).useCompressedPathVariable=WPGMZA.restAPI&&WPGMZA.restAPI.isCompressedPathVariableSupported&&WPGMZA.settings.enable_compressed_path_variables,this.method=this.useCompressedPathVariable?"GET":"POST",null==this.getLanguageURL()||"//cdn.datatables.net/plug-ins/1.10.12/i18n/English.json"==this.getLanguageURL()?(this.dataTable=$(this.dataTableElement).DataTable(settings),this.dataTable.ajax.reload()):$.ajax(this.getLanguageURL(),{success:function(response,status,xhr){self.languageJSON=response,self.dataTable=$(self.dataTableElement).DataTable(settings),self.dataTable.ajax.reload()}})},WPGMZA.DataTable.prototype.getDataTableElement=function(){return $(this.element).find("table")},WPGMZA.DataTable.prototype.onAJAXRequest=function(data,settings){var params={phpClass:this.phpClass},attr=$(this.element).attr("data-wpgmza-ajax-parameters");return attr&&$.extend(params,JSON.parse(attr)),$.extend(data,params)},WPGMZA.DataTable.prototype.onDataTableAjaxRequest=function(data,callback,settings){var self=this,element=this.element,route=$(element).attr("data-wpgmza-rest-api-route"),params=this.onAJAXRequest(data,settings),draw=params.draw;if(delete params.draw,!route)throw new Error("No data-wpgmza-rest-api-route attribute specified");var options={method:"POST",useCompressedPathVariable:!0,data:params,dataType:"json",cache:!this.preventCaching,beforeSend:function(xhr){xhr.setRequestHeader("X-DataTables-Draw",draw)},success:function(response,status,xhr){response.draw=draw,self.lastResponse=response,callback(response),$("[data-marker-icon-src]").each(function(index,element){WPGMZA.MarkerIcon.createInstance($(element).attr("data-marker-icon-src")).applyToElement(element)})}};return WPGMZA.restAPI.call(route,options)},WPGMZA.DataTable.prototype.getDataTableSettings=function(){var self=this,element=this.element,options={};$(element).attr("data-wpgmza-datatable-options")&&(options=JSON.parse($(element).attr("data-wpgmza-datatable-options"))),options.deferLoading=!0,options.processing=!0,options.serverSide=!0,options.ajax=function(data,callback,settings){return WPGMZA.DataTable.prototype.onDataTableAjaxRequest.apply(self,arguments)},WPGMZA.AdvancedTableDataTable&&this instanceof WPGMZA.AdvancedTableDataTable&&WPGMZA.settings.wpgmza_default_items&&(options.iDisplayLength=parseInt(WPGMZA.settings.wpgmza_default_items)),options.aLengthMenu=[[5,10,25,50,100,-1],["5","10","25","50","100",WPGMZA.localized_strings.all]];var languageURL=this.getLanguageURL();return languageURL&&(options.language={url:languageURL}),options},WPGMZA.DataTable.prototype.getLanguageURL=function(){if(!WPGMZA.locale)return null;var languageURL;switch(WPGMZA.locale.substr(0,2)){case"af":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Afrikaans.json";break;case"sq":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Albanian.json";break;case"am":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Amharic.json";break;case"ar":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Arabic.json";break;case"hy":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Armenian.json";break;case"az":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Azerbaijan.json";break;case"bn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Bangla.json";break;case"eu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Basque.json";break;case"be":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Belarusian.json";break;case"bg":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Bulgarian.json";break;case"ca":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?WPGMZA.pluginDirURL+"languages/datatables/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Croatian.json";break;case"cs":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Czech.json";break;case"da":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Danish.json";break;case"nl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Dutch.json";break;case"et":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?WPGMZA.pluginDirURL+"languages/datatables/Filipino.json":WPGMZA.pluginDirURL+"languages/datatables/Finnish.json";break;case"fr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/French.json";break;case"gl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Galician.json";break;case"ka":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Georgian.json";break;case"de":languageURL=WPGMZA.pluginDirURL+"languages/datatables/German.json";break;case"el":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Greek.json";break;case"gu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Gujarati.json";break;case"he":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hebrew.json";break;case"hi":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hindi.json";break;case"hu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hungarian.json";break;case"is":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Icelandic.json";break;case"id":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Indonesian.json";break;case"ga":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Irish.json";break;case"it":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Italian.json";break;case"ja":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Japanese.json";break;case"kk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Kazakh.json";break;case"ko":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Korean.json";break;case"ky":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Kyrgyz.json";break;case"lv":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Latvian.json";break;case"lt":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Lithuanian.json";break;case"mk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Macedonian.json";break;case"ml":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Malay.json";break;case"mn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Mongolian.json";break;case"ne":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Nepali.json";break;case"nb":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Norwegian-Bokmal.json";break;case"nn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Norwegian-Nynorsk.json";break;case"ps":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Pashto.json";break;case"fa":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Persian.json";break;case"pl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?WPGMZA.pluginDirURL+"languages/datatables/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Romanian.json";break;case"ru":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Russian.json";break;case"sr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Serbian.json";break;case"si":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Sinhala.json";break;case"sk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Slovak.json";break;case"sl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Slovenian.json";break;case"es":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Spanish.json";break;case"sw":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Swahili.json";break;case"sv":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Swedish.json";break;case"ta":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Tamil.json";break;case"te":languageURL=WPGMZA.pluginDirURL+"languages/datatables/telugu.json";break;case"th":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Thai.json";break;case"tr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Turkish.json";break;case"uk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Ukrainian.json";break;case"ur":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Urdu.json";break;case"uz":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Uzbek.json";break;case"vi":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Vietnamese.json";break;case"cy":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),jQuery(function($){WPGMZA.AdminFeatureDataTable=function(element){var self=this;this.allSelected=!1,WPGMZA.DataTable.call(this,element),$(element).on("click",".wpgmza.bulk_delete",function(event){self.onBulkDelete(event)}),$(element).on("click",".wpgmza.select_all_markers",function(event){self.onSelectAll(event)}),$(element).on("click","[data-center-marker-id]",function(event){self.onCenterMarker(event)})},WPGMZA.extend(WPGMZA.AdminFeatureDataTable,WPGMZA.DataTable),Object.defineProperty(WPGMZA.AdminFeatureDataTable.prototype,"featureType",{get:function(){return $(this.element).attr("data-wpgmza-feature-type")}}),Object.defineProperty(WPGMZA.AdminFeatureDataTable.prototype,"featurePanel",{get:function(){return WPGMZA.mapEditPage[this.featureType+"Panel"]}}),WPGMZA.AdminFeatureDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaFeatureData=meta},options},WPGMZA.AdminFeatureDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0],plural=this.featureType+"s";$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaFeatureData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/"+plural+"/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},WPGMZA.AdminFeatureDataTable.prototype.onSelectAll=function(event){this.allSelected=!this.allSelected;var self=this;$(this.element).find("input[name='mark']").each(function(){self.allSelected?$(this).prop("checked",!0):$(this).prop("checked",!1)})},WPGMZA.AdminFeatureDataTable.prototype.onCenterMarker=function(event){var id;id=null==event.currentTarget?event:$(event.currentTarget).attr("data-center-marker-id");var marker=WPGMZA.mapEditPage.map.getMarkerByID(id);if(marker){var latLng=new WPGMZA.LatLng({lat:marker.lat,lng:marker.lng});WPGMZA.mapEditPage.map.setCenter(latLng),WPGMZA.animateScroll("#wpgmaps_tabs_markers")}}}),jQuery(function($){WPGMZA.AdminMapDataTable=function(element){var self=this;WPGMZA.DataTable.call(this,element),$(element).on("mousedown","button[data-action='edit']",function(event){switch(event.which){case 1:var map_id=$(event.target).attr("data-map-id");window.location.href=window.location.href+"&action=edit&map_id="+map_id;break;case 2:map_id=$(event.target).attr("data-map-id");window.open(window.location.href+"&action=edit&map_id="+map_id)}}),$(element).find(".wpgmza.select_all_maps").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete_maps").on("click",function(event){self.onBulkDelete(event)}),$(element).on("click","button[data-action='duplicate']",function(event){var map_id=$(event.target).attr("data-map-id");WPGMZA.restAPI.call("/maps/",{method:"POST",data:{id:map_id,action:"duplicate"},success:function(response,status,xhr){self.reload()}})}),$(element).on("click","button[data-action='trash']",function(event){if(confirm(WPGMZA.localized_strings.map_delete_prompt_text)){var map_id=$(event.target).attr("data-map-id");WPGMZA.restAPI.call("/maps/",{method:"DELETE",data:{id:map_id},success:function(response,status,xhr){self.reload()}})}})},WPGMZA.extend(WPGMZA.AdminMapDataTable,WPGMZA.DataTable),WPGMZA.AdminMapDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMapData=meta},options},WPGMZA.AdminMapDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMapDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMapData.id)}),confirm(WPGMZA.localized_strings.map_bulk_delete_prompt_text)&&WPGMZA.restAPI.call("/maps/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},$(document).ready(function(event){$("[data-wpgmza-admin-map-datatable]").each(function(index,el){WPGMZA.AdminMapDataTable=new WPGMZA.AdminMapDataTable(el)})})}),jQuery(function($){WPGMZA.AdminMarkerDataTable=function(element){var self=this;this.preventCaching=!0,WPGMZA.DataTable.call(this,element),$(element).on("click","[data-delete-marker-id]",function(event){self.onDeleteMarker(event)}),$(element).find(".wpgmza.select_all_markers").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete").on("click",function(event){self.onBulkDelete(event)}),$(element).on("click","[data-center-marker-id]",function(event){self.onCenterMarker(event)})},WPGMZA.AdminMarkerDataTable.prototype=Object.create(WPGMZA.DataTable.prototype),WPGMZA.AdminMarkerDataTable.prototype.constructor=WPGMZA.AdminMarkerDataTable,WPGMZA.AdminMarkerDataTable.createInstance=function(element){return new WPGMZA.AdminMarkerDataTable(element)},WPGMZA.AdminMarkerDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMarkerData=meta},options},WPGMZA.AdminMarkerDataTable.prototype.onEditMarker=function(event){WPGMZA.animatedScroll("#wpgmaps_tabs_markers")},WPGMZA.AdminMarkerDataTable.prototype.onDeleteMarker=function(event){var self=this,id=$(event.currentTarget).attr("data-delete-marker-id"),data={action:"delete_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:id};$.post(ajaxurl,data,function(response){WPGMZA.mapEditPage.map.removeMarkerByID(id),self.reload()})},WPGMZA.AdminMarkerDataTable.prototype.onApproveMarker=function(event){var cur_id=$(this).attr("id"),data={action:"approve_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:cur_id};$.post(ajaxurl,data,function(response){wpgmza_InitMap(),wpgmza_reinitialisetbl()})},WPGMZA.AdminMarkerDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMarkerDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMarkerData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/markers/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker=function(event){var id;id=null==event.currentTarget?event:$(event.currentTarget).attr("data-center-marker-id");var marker=WPGMZA.mapEditPage.map.getMarkerByID(id);if(marker){var latLng=new WPGMZA.LatLng({lat:marker.lat,lng:marker.lng});WPGMZA.mapEditPage.map.setCenter(latLng),WPGMZA.mapEditPage.map.setZoom(6),WPGMZA.animateScroll("#wpgmaps_tabs_markers")}}});
|
1 |
+
jQuery(function($){var core={MARKER_PULL_DATABASE:"0",MARKER_PULL_XML:"1",PAGE_MAP_LIST:"map-list",PAGE_MAP_EDIT:"map-edit",PAGE_SETTINGS:"map-settings",PAGE_SUPPORT:"map-support",PAGE_CATEGORIES:"categories",PAGE_ADVANCED:"advanced",PAGE_CUSTOM_FIELDS:"custom-fields",maps:[],events:null,settings:null,restAPI:null,localized_strings:null,loadingHTML:'<div class="wpgmza-preloader"><div class="wpgmza-loader">...</div></div>',preloaderHTML:"<div class='wpgmza-preloader'><div></div><div></div><div></div><div></div></div>",getCurrentPage:function(){switch(WPGMZA.getQueryParamValue("page")){case"wp-google-maps-menu":return window.location.href.match(/action=edit/)&&window.location.href.match(/map_id=\d+/)?WPGMZA.PAGE_MAP_EDIT:WPGMZA.PAGE_MAP_LIST;case"wp-google-maps-menu-settings":return WPGMZA.PAGE_SETTINGS;case"wp-google-maps-menu-support":return WPGMZA.PAGE_SUPPORT;case"wp-google-maps-menu-categories":return WPGMZA.PAGE_CATEGORIES;case"wp-google-maps-menu-advanced":return WPGMZA.PAGE_ADVANCED;case"wp-google-maps-menu-custom-fields":return WPGMZA.PAGE_CUSTOM_FIELDS;default:return null}},getScrollAnimationOffset:function(){return(WPGMZA.settings.scroll_animation_offset||0)+($("#wpadminbar").height()||0)},getScrollAnimationDuration:function(){return WPGMZA.settings.scroll_animation_milliseconds?WPGMZA.settings.scroll_animation_milliseconds:500},animateScroll:function(element,milliseconds){var offset=WPGMZA.getScrollAnimationOffset();milliseconds=milliseconds||WPGMZA.getScrollAnimationDuration(),$("html, body").animate({scrollTop:$(element).offset().top-offset},milliseconds)},extend:function(child,parent){var constructor=child;child.prototype=Object.create(parent.prototype),child.prototype.constructor=constructor},guid:function(){var d=(new Date).getTime();return"undefined"!=typeof performance&&"function"==typeof performance.now&&(d+=performance.now()),"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g,function(c){var r=(d+16*Math.random())%16|0;return d=Math.floor(d/16),("x"===c?r:3&r|8).toString(16)})},hexOpacityToRGBA:function(colour,opacity){var hex=parseInt(colour.replace(/^#/,""),16);return[(16711680&hex)>>16,(65280&hex)>>8,255&hex,parseFloat(opacity)]},hexOpacityToString:function(colour,opacity){var arr=WPGMZA.hexOpacityToRGBA(colour,opacity);return"rgba("+arr[0]+", "+arr[1]+", "+arr[2]+", "+arr[3]+")"},hexToRgba:function(hex){var c;return/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)?(3==(c=hex.substring(1).split("")).length&&(c=[c[0],c[0],c[1],c[1],c[2],c[2]]),{r:(c="0x"+c.join(""))>>16&255,g:c>>8&255,b:255&c,a:1}):0},rgbaToString:function(rgba){return"rgba("+rgba.r+", "+rgba.g+", "+rgba.b+", "+rgba.a+")"},latLngRegexp:/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,isLatLngString:function(str){if("string"!=typeof str)return null;str.match(/^\(.+\)$/)&&(str=str.replace(/^\(|\)$/,""));var m=str.match(WPGMZA.latLngRegexp);return m?new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])}):null},stringToLatLng:function(str){var result=WPGMZA.isLatLngString(str);if(!result)throw new Error("Not a valid latLng");return result},isHexColorString:function(str){return"string"==typeof str&&!!str.match(/#[0-9A-F]{6}/i)},imageDimensionsCache:{},getImageDimensions:function(src,callback){if(WPGMZA.imageDimensionsCache[src])callback(WPGMZA.imageDimensionsCache[src]);else{var img=document.createElement("img");img.onload=function(event){var result={width:img.width,height:img.height};WPGMZA.imageDimensionsCache[src]=result,callback(result)},img.src=src}},decodeEntities:function(input){return input.replace(/&(nbsp|amp|quot|lt|gt);/g,function(m,e){return m[e]}).replace(/&#(\d+);/gi,function(m,e){return String.fromCharCode(parseInt(e,10))})},isDeveloperMode:function(){return this.settings.developer_mode||window.Cookies&&window.Cookies.get("wpgmza-developer-mode")},isProVersion:function(){return"1"==this._isProVersion},openMediaDialog:function(callback){var file_frame;if(file_frame)return file_frame.uploader.uploader.param("post_id",set_to_post_id),void file_frame.open();(file_frame=wp.media.frames.file_frame=wp.media({title:"Select a image to upload",button:{text:"Use this image"},multiple:!1})).on("select",function(){attachment=file_frame.state().get("selection").first().toJSON(),callback(attachment.id,attachment.url)}),file_frame.open()},getCurrentPosition:function(callback,error,watch){var nativeFunction="getCurrentPosition";if(WPGMZA.userLocationDenied)error&&error({code:1,message:"Location unavailable"});else if(watch&&(nativeFunction="watchPosition"),navigator.geolocation){var options={enableHighAccuracy:!0};navigator.geolocation[nativeFunction]?navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){options.enableHighAccuracy=!1,navigator.geolocation[nativeFunction](function(position){callback&&callback(position),WPGMZA.events.trigger("userlocationfound")},function(err){console.warn(err.code,err.message),1==err.code&&(WPGMZA.userLocationDenied=!0),error&&error(err)},options)},options):console.warn(nativeFunction+" is not available")}else console.warn("No geolocation available on this device")},watchPosition:function(callback,error){return WPGMZA.getCurrentPosition(callback,error,!0)},runCatchableTask:function(callback,friendlyErrorContainer){if(WPGMZA.isDeveloperMode())callback();else try{callback()}catch(e){var friendlyError=new WPGMZA.FriendlyError(e);$(friendlyErrorContainer).html(""),$(friendlyErrorContainer).append(friendlyError.element),$(friendlyErrorContainer).show()}},capitalizeWords:function(string){return(string+"").replace(/^(.)|\s+(.)/g,function(m){return m.toUpperCase()})},pluralize:function(string){return WPGMZA.singularize(string)+"s"},singularize:function(string){return string.replace(/s$/,"")},assertInstanceOf:function(instance,instanceName){var engine,fullInstanceName,pro=WPGMZA.isProVersion()?"Pro":"";switch(WPGMZA.settings.engine){case"open-layers":engine="OL";break;default:engine="Google"}if("OLFeature"!=(fullInstanceName=WPGMZA[engine+pro+instanceName]&&engine+instanceName!="OLFeature"?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]&&WPGMZA[engine+instanceName].prototype?engine+instanceName:instanceName)&&!(instance instanceof WPGMZA[fullInstanceName]))throw new Error("Object must be an instance of "+fullInstanceName+" (did you call a constructor directly, rather than createInstance?)")},getMapByID:function(id){for(var i=0;i<WPGMZA.maps.length;i++)if(WPGMZA.maps[i].id==id)return WPGMZA.maps[i];return null},isGoogleAutocompleteSupported:function(){return!!window.google&&(!!google.maps&&(!!google.maps.places&&(!!google.maps.places.Autocomplete&&(!WPGMZA.CloudAPI||!WPGMZA.CloudAPI.isBeingUsed))))},googleAPIStatus:window.wpgmza_google_api_status,isSafari:function(){var ua=navigator.userAgent.toLowerCase();return ua.match(/safari/i)&&!ua.match(/chrome/i)},isTouchDevice:function(){return"ontouchstart"in window},isDeviceiOS:function(){return/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream||!!navigator.platform&&/iPad|iPhone|iPod/.test(navigator.platform)},isModernComponentStyleAllowed:function(){return!WPGMZA.settings.user_interface_style||"legacy"==WPGMZA.settings.user_interface_style||"modern"==WPGMZA.settings.user_interface_style},isElementInView:function(element){var pageTop=$(window).scrollTop(),pageBottom=pageTop+$(window).height(),elementTop=$(element).offset().top,elementBottom=elementTop+$(element).height();return elementTop<pageTop&&pageBottom<elementBottom||(pageTop<=elementTop&&elementTop<=pageBottom||pageTop<=elementBottom&&elementBottom<=pageBottom)},isFullScreen:function(){return wpgmzaisFullScreen},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?decodeURIComponent(m[1]):null},notification:function(text,time){switch(arguments.length){case 0:text="",time=4e3;break;case 1:time=4e3}var html='<div class="wpgmza-popup-notification">'+text+"</div>";jQuery("body").append(html),setTimeout(function(){jQuery("body").find(".wpgmza-popup-notification").remove()},time)},initMaps:function(){$(document.body).find(".wpgmza_map:not(.wpgmza-initialized)").each(function(index,el){if(el.wpgmzaMap)console.warn("Element missing class wpgmza-initialized but does have wpgmzaMap property. No new instance will be created");else try{el.wpgmzaMap=WPGMZA.Map.createInstance(el)}catch(ex){console.warn("Map initalization: "+ex)}}),WPGMZA.Map.nextInitTimeoutID=setTimeout(WPGMZA.initMaps,3e3)},onScroll:function(){$(".wpgmza_map").each(function(index,el){var isInView=WPGMZA.isElementInView(el);el.wpgmzaScrollIntoViewTriggerFlag?isInView||(el.wpgmzaScrollIntoViewTriggerFlag=!1):isInView&&($(el).trigger("mapscrolledintoview.wpgmza"),el.wpgmzaScrollIntoViewTriggerFlag=!0)})}},wpgmzaisFullScreen=!1;for(var key in[]){console.warn("It appears that the built in JavaScript Array has been extended, this can create issues with for ... in loops, which may cause failure.");break}for(var key in window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core,window.uc&&window.uc.reloadOnOptIn&&(window.uc.reloadOnOptIn("S1pcEj_jZX"),window.uc.reloadOnOptOut("S1pcEj_jZX")),WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,$(document).on("fullscreenchange",function(){wpgmzaisFullScreen=!!document.fullscreenElement}),$("body").on("click","#wpgmzaCloseChat",function(e){e.preventDefault(),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_hide_chat",nonce:WPGMZA_localized_data.ajaxnonce}}),$(".wpgmza-chat-help").remove()}),$(window).on("scroll",WPGMZA.onScroll),$(document.body).on("click","button.wpgmza-api-consent",function(event){Cookies.set("wpgmza-api-consent-given",!0),window.location.reload()}),$(document.body).on("keydown",function(event){event.altKey&&(WPGMZA.altKeyDown=!0)}),$(document.body).on("keyup",function(event){event.altKey||(WPGMZA.altKeyDown=!1)}),$(document.body).on("preinit.wpgmza",function(){$(window).trigger("ready.wpgmza"),$("script[src*='wp-google-maps.combined.js'], script[src*='wp-google-maps-pro.combined.js']").length&&console.warn("Minified script is out of date, using combined script instead.");var elements=$("script[src]").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});1<elements.length&&console.warn("Multiple jQuery versions detected: ",elements);for(var key in[]){console.warn("The Array object has been extended incorrectly by your theme or another plugin. This can cause issues with functionality.");break}if("https:"!=window.location.protocol){var warning='<div class="notice notice-warning"><p>'+WPGMZA.localized_strings.unsecure_geolocation+"</p></div>";$(".wpgmza-geolocation-setting").first().after($(warning))}WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code&&jQuery(".wpgmza-gdpr-compliance").length<=0&&$("button.wpgmza-api-consent").on("click",function(event){Cookies.set("wpgmza-api-consent-given",!0),window.location.reload()})}),function($){$(function(){WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),WPGMZA.CloudAPI&&(WPGMZA.cloudAPI=WPGMZA.CloudAPI.createInstance()),$(document.body).trigger("preinit.wpgmza"),WPGMZA.initMaps(),WPGMZA.onScroll()})}($)}),jQuery(function($){WPGMZA.Compatibility=function(){this.preventDocumentWriteGoogleMapsAPI()},WPGMZA.Compatibility.prototype.preventDocumentWriteGoogleMapsAPI=function(){var old=document.write;document.write=function(content){content.match&&content.match(/maps\.google/)||old.call(document,content)}},WPGMZA.compatiblityModule=new WPGMZA.Compatibility}),function(root,factory){"object"==typeof exports?module.exports=factory(root):"function"==typeof define&&define.amd?define([],factory.bind(root,root)):factory(root)}("undefined"!=typeof global?global:this,function(root){if(root.CSS&&root.CSS.escape)return root.CSS.escape;function cssEscape(value){if(0==arguments.length)throw new TypeError("`CSS.escape` requires an argument.");for(var codeUnit,string=String(value),length=string.length,index=-1,result="",firstCodeUnit=string.charCodeAt(0);++index<length;)0!=(codeUnit=string.charCodeAt(index))?result+=1<=codeUnit&&codeUnit<=31||127==codeUnit||0==index&&48<=codeUnit&&codeUnit<=57||1==index&&48<=codeUnit&&codeUnit<=57&&45==firstCodeUnit?"\\"+codeUnit.toString(16)+" ":(0!=index||1!=length||45!=codeUnit)&&(128<=codeUnit||45==codeUnit||95==codeUnit||48<=codeUnit&&codeUnit<=57||65<=codeUnit&&codeUnit<=90||97<=codeUnit&&codeUnit<=122)?string.charAt(index):"\\"+string.charAt(index):result+="�";return result}return root.CSS||(root.CSS={}),root.CSS.escape=cssEscape}),jQuery(function($){Math.PI;function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Distance={MILES:!0,KILOMETERS:!1,MILES_PER_KILOMETER:.621371,KILOMETERS_PER_MILE:1.60934,uiToMeters:function(uiDistance){return parseFloat(uiDistance)/(WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?WPGMZA.Distance.MILES_PER_KILOMETER:1)*1e3},uiToKilometers:function(uiDistance){return.001*WPGMZA.Distance.uiToMeters(uiDistance)},uiToMiles:function(uiDistance){return WPGMZA.Distance.uiToKilometers(uiDistance)*WPGMZA.Distance.MILES_PER_KILOMETER},kilometersToUI:function(km){return WPGMZA.settings.distance_units==WPGMZA.Distance.MILES?km*WPGMZA.Distance.MILES_PER_KILOMETER:km},between:function(a,b){if(!(a instanceof WPGMZA.LatLng||"lat"in a&&"lng"in a))throw new Error("First argument must be an instance of WPGMZA.LatLng or a literal");if(!(b instanceof WPGMZA.LatLng||"lat"in b&&"lng"in b))throw new Error("Second argument must be an instance of WPGMZA.LatLng or a literal");if(a===b)return 0;var lat1=a.lat,lon1=a.lng,lat2=b.lat,lon2=b.lng,dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1);a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}}),jQuery(function($){WPGMZA.EliasFano=function(){if(!WPGMZA.EliasFano.isSupported)throw new Error("Elias Fano encoding is not supported on browsers without Uint8Array");WPGMZA.EliasFano.decodingTablesInitialised||WPGMZA.EliasFano.createDecodingTable()},WPGMZA.EliasFano.isSupported="Uint8Array"in window,WPGMZA.EliasFano.decodingTableHighBits=[],WPGMZA.EliasFano.decodingTableDocIDNumber=null,WPGMZA.EliasFano.decodingTableHighBitsCarryover=null,WPGMZA.EliasFano.createDecodingTable=function(){WPGMZA.EliasFano.decodingTableDocIDNumber=new Uint8Array(256),WPGMZA.EliasFano.decodingTableHighBitsCarryover=new Uint8Array(256);for(var decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,i=0;i<256;i++){var zeroCount=0;decodingTableHighBits[i]=[];for(var j=7;0<=j;j--)zeroCount=0<(i&1<<j)?(decodingTableHighBits[i][decodingTableDocIDNumber[i]]=zeroCount,decodingTableDocIDNumber[i]++,0):(zeroCount+1)%255;decodingTableHighBitsCarryover[i]=zeroCount}WPGMZA.EliasFano.decodingTablesInitialised=!0},WPGMZA.EliasFano.prototype.encode=function(list){var lastDocID=0,buffer1=0,bufferLength1=0,buffer2=0,bufferLength2=0;if(0==list.length)return result;function toByte(n){return 255&n}var compressedBufferPointer1=0,compressedBufferPointer2=0,averageDelta=list[list.length-1]/list.length,averageDeltaLog=Math.log2(averageDelta),lowBitsLength=Math.floor(averageDeltaLog),lowBitsMask=(1<<lowBitsLength)-1,prev=null,maxCompressedSize=Math.floor((2+Math.ceil(Math.log2(averageDelta)))*list.length/8)+6,compressedBuffer=new Uint8Array(maxCompressedSize);lowBitsLength<0&&(lowBitsLength=0),compressedBufferPointer2=Math.floor(lowBitsLength*list.length/8+6),compressedBuffer[compressedBufferPointer1++]=toByte(list.length),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>8),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>16),compressedBuffer[compressedBufferPointer1++]=toByte(list.length>>24),compressedBuffer[compressedBufferPointer1++]=toByte(lowBitsLength),list.forEach(function(docID){var docIDDelta=docID-lastDocID-1;if(!$.isNumeric(docID))throw new Error("Value is not numeric");if(docID=parseInt(docID),null!==prev&&docID<=prev)throw new Error("Elias Fano encoding can only be used on a sorted, ascending list of unique integers.");for(prev=docID,buffer1<<=lowBitsLength,buffer1|=docIDDelta&lowBitsMask,bufferLength1+=lowBitsLength;7<bufferLength1;)bufferLength1-=8,compressedBuffer[compressedBufferPointer1++]=toByte(buffer1>>bufferLength1);var unaryCodeLength=1+(docIDDelta>>lowBitsLength);for(buffer2<<=unaryCodeLength,buffer2|=1,bufferLength2+=unaryCodeLength;7<bufferLength2;)bufferLength2-=8,compressedBuffer[compressedBufferPointer2++]=toByte(buffer2>>bufferLength2);lastDocID=docID}),0<bufferLength1&&(compressedBuffer[compressedBufferPointer1++]=toByte(buffer1<<8-bufferLength1)),0<bufferLength2&&(compressedBuffer[compressedBufferPointer2++]=toByte(buffer2<<8-bufferLength2));var result=new Uint8Array(compressedBuffer);return result.pointer=compressedBufferPointer2,result},WPGMZA.EliasFano.prototype.decode=function(compressedBuffer){var resultPointer=0,list=[],decodingTableHighBits=WPGMZA.EliasFano.decodingTableHighBits,decodingTableDocIDNumber=WPGMZA.EliasFano.decodingTableDocIDNumber,decodingTableHighBitsCarryover=WPGMZA.EliasFano.decodingTableHighBitsCarryover,lowBitsPointer=0,lastDocID=0,docID=0,docIDNumber=0,listCount=compressedBuffer[lowBitsPointer++];listCount|=compressedBuffer[lowBitsPointer++]<<8,listCount|=compressedBuffer[lowBitsPointer++]<<16,listCount|=compressedBuffer[lowBitsPointer++]<<24;var highBitsPointer,lowBitsLength=compressedBuffer[lowBitsPointer++],lowBitsCount=0,lowBits=0,cb=1;for(highBitsPointer=Math.floor(lowBitsLength*listCount/8+6);highBitsPointer<compressedBuffer.pointer;highBitsPointer++){docID+=decodingTableHighBitsCarryover[cb],docIDNumber=decodingTableDocIDNumber[cb=compressedBuffer[highBitsPointer]];for(var i=0;i<docIDNumber;i++){for(docID<<=lowBitsCount,docID|=lowBits&(1<<lowBitsCount)-1;lowBitsCount<lowBitsLength;)docID<<=8,docID|=lowBits=compressedBuffer[lowBitsPointer++],lowBitsCount+=8;docID>>=lowBitsCount-=lowBitsLength,docID+=(decodingTableHighBits[cb][i]<<lowBitsLength)+lastDocID+1,lastDocID=list[resultPointer++]=docID,docID=0}}return list}}),jQuery(function($){WPGMZA.EventDispatcher=function(){WPGMZA.assertInstanceOf(this,"EventDispatcher"),this._listenersByType={}},WPGMZA.EventDispatcher.prototype.addEventListener=function(type,listener,thisObject,useCapture){var types=type.split(/\s+/);if(1<types.length)for(var i=0;i<types.length;i++)this.addEventListener(types[i],listener,thisObject,useCapture);else{if(!(listener instanceof Function))throw new Error("Listener must be a function");var target;target=this._listenersByType.hasOwnProperty(type)?this._listenersByType[type]:this._listenersByType[type]=[];var obj={listener:listener,thisObject:thisObject||this,useCapture:!!useCapture};target.push(obj)}},WPGMZA.EventDispatcher.prototype.on=WPGMZA.EventDispatcher.prototype.addEventListener,WPGMZA.EventDispatcher.prototype.removeEventListener=function(type,listener,thisObject,useCapture){var arr,obj;if(arr=this._listenersByType[type]){thisObject=thisObject||this,useCapture=!!useCapture;for(var i=0;i<arr.length;i++)if(obj=arr[i],(1==arguments.length||obj.listener==listener)&&obj.thisObject==thisObject&&obj.useCapture==useCapture)return void arr.splice(i,1)}},WPGMZA.EventDispatcher.prototype.off=WPGMZA.EventDispatcher.prototype.removeEventListener,WPGMZA.EventDispatcher.prototype.hasEventListener=function(type){return!!_listenersByType[type]},WPGMZA.EventDispatcher.prototype.dispatchEvent=function(event){if(!(event instanceof WPGMZA.Event))if("string"==typeof event)event=new WPGMZA.Event(event);else{var src=event;for(var name in event=new WPGMZA.Event,src)event[name]=src[name]}for(var path=[],obj=(event.target=this).parent;null!=obj;obj=obj.parent)path.unshift(obj);event.phase=WPGMZA.Event.CAPTURING_PHASE;for(var i=0;i<path.length&&!event._cancelled;i++)path[i]._triggerListeners(event);if(!event._cancelled){for(event.phase=WPGMZA.Event.AT_TARGET,this._triggerListeners(event),event.phase=WPGMZA.Event.BUBBLING_PHASE,i=path.length-1;0<=i&&!event._cancelled;i--)path[i]._triggerListeners(event);var topMostElement=this.element;for(obj=this.parent;null!=obj;obj=obj.parent)obj.element&&(topMostElement=obj.element);if(topMostElement){var customEvent={};for(var key in event){var value=event[key];"type"==key&&(value+=".wpgmza"),customEvent[key]=value}$(topMostElement).trigger(customEvent)}}},WPGMZA.EventDispatcher.prototype.trigger=WPGMZA.EventDispatcher.prototype.dispatchEvent,WPGMZA.EventDispatcher.prototype._triggerListeners=function(event){var arr,obj;if(arr=this._listenersByType[event.type])for(var i=0;i<arr.length;i++)obj=arr[i],event.phase==WPGMZA.Event.CAPTURING_PHASE&&!obj.useCapture||obj.listener.call(arr[i].thisObject,event)},WPGMZA.events=new WPGMZA.EventDispatcher}),jQuery(function($){WPGMZA.AddressInput=function(element,map){if(!(element instanceof HTMLInputElement))throw new Error("Element is not an instance of HTMLInputElement");var json;this.element=element;var options={fields:["name","formatted_address"],types:["geocode","establishment"]};(json=$(element).attr("data-autocomplete-options"))&&(options=$.extend(options,JSON.parse(json))),map&&map.settings.wpgmza_store_locator_restrict&&(options.country=map.settings.wpgmza_store_locator_restrict),WPGMZA.isGoogleAutocompleteSupported()?"wpgmza_add_address_map_editor"!=this.id&&WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey&&(element.googleAutoComplete=new google.maps.places.Autocomplete(element,options),options.country&&element.googleAutoComplete.setComponentRestrictions({country:options.country})):WPGMZA.CloudAPI&&WPGMZA.CloudAPI.isBeingUsed&&(element.cloudAutoComplete=new WPGMZA.CloudAutocomplete(element,options))},WPGMZA.extend(WPGMZA.AddressInput,WPGMZA.EventDispatcher),WPGMZA.AddressInput.createInstance=function(element,map){return new WPGMZA.AddressInput(element,map)}}),jQuery(function($){WPGMZA.DrawingManager=function(map){WPGMZA.assertInstanceOf(this,"DrawingManager"),WPGMZA.EventDispatcher.call(this),this.map=map,this.mode=WPGMZA.DrawingManager.MODE_NONE},WPGMZA.DrawingManager.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.DrawingManager.prototype.constructor=WPGMZA.DrawingManager,WPGMZA.DrawingManager.MODE_NONE=null,WPGMZA.DrawingManager.MODE_MARKER="marker",WPGMZA.DrawingManager.MODE_POLYGON="polygon",WPGMZA.DrawingManager.MODE_POLYLINE="polyline",WPGMZA.DrawingManager.MODE_CIRCLE="circle",WPGMZA.DrawingManager.MODE_RECTANGLE="rectangle",WPGMZA.DrawingManager.MODE_HEATMAP="heatmap",WPGMZA.DrawingManager.getConstructor=function(){switch(WPGMZA.settings.engine){case"google-maps":return WPGMZA.GoogleDrawingManager;default:return WPGMZA.OLDrawingManager}},WPGMZA.DrawingManager.createInstance=function(map){return new(WPGMZA.DrawingManager.getConstructor())(map)},WPGMZA.DrawingManager.prototype.setDrawingMode=function(mode){this.mode=mode,this.trigger("drawingmodechanged")}}),jQuery(function($){WPGMZA.Event=function(options){if("string"==typeof options&&(this.type=options),this.bubbles=!0,this.cancelable=!0,this.phase=WPGMZA.Event.PHASE_CAPTURE,this.target=null,this._cancelled=!1,"object"==typeof options)for(var name in options)this[name]=options[name]},WPGMZA.Event.CAPTURING_PHASE=0,WPGMZA.Event.AT_TARGET=1,WPGMZA.Event.BUBBLING_PHASE=2,WPGMZA.Event.prototype.stopPropagation=function(){this._cancelled=!0}}),jQuery(function($){WPGMZA.FancyControls={formatToggleSwitch:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-round-flat"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)},formatToggleButton:function(el){var div=$("<div class='switch'></div>"),input=el,container=el.parentNode,text=$(container).text().trim(),label=$("<label></label>");$(input).addClass("cmn-toggle cmn-toggle-yes-no"),$(input).attr("id",$(input).attr("name")),$(label).attr("for",$(input).attr("name")),$(label).attr("data-on",WPGMZA.localized_strings.yes),$(label).attr("data-off",WPGMZA.localized_strings.no),$(div).append(input),$(div).append(label),$(container).replaceWith(div),$(div).wrap($("<div></div>")),$(div).after(text)}},$(".wpgmza-fancy-toggle-switch").each(function(index,el){WPGMZA.FancyControls.formatToggleSwitch(el)}),$(".wpgmza-fancy-toggle-button").each(function(index,el){WPGMZA.FancyControls.formatToggleButton(el)})}),jQuery(function($){WPGMZA.Feature=function(options){for(var key in WPGMZA.assertInstanceOf(this,"Feature"),WPGMZA.EventDispatcher.call(this),this.id=-1,options)this[key]=options[key]},WPGMZA.extend(WPGMZA.Feature,WPGMZA.EventDispatcher),WPGMZA.MapObject=WPGMZA.Feature,WPGMZA.Feature.prototype.parseGeometry=function(subject){if("string"==typeof subject&&subject.match(/^\[/))try{subject=JSON.parse(subject)}catch(e){}if("object"==typeof subject){for(var arr=subject,i=0;i<arr.length;i++)arr[i].lat=parseFloat(arr[i].lat),arr[i].lng=parseFloat(arr[i].lng);return arr}if("string"!=typeof subject)throw new Error("Invalid geometry");var pairs,coords,results=[];pairs=subject.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.Feature.prototype.setOptions=function(options){for(var key in options)this[key]=options[key];this.updateNativeFeature()},WPGMZA.Feature.prototype.setEditable=function(editable){this.setOptions({editable:editable})},WPGMZA.Feature.prototype.setDraggable=function(draggable){this.setOptions({draggable:draggable})},WPGMZA.Feature.prototype.getScalarProperties=function(){var options={};for(var key in this)switch(typeof this[key]){case"number":options[key]=parseFloat(this[key]);break;case"boolean":case"string":options[key]=this[key]}return options},WPGMZA.Feature.prototype.updateNativeFeature=function(){var props=this.getScalarProperties();switch(WPGMZA.settings.engine){case"open-layers":this.layer&&this.layer.setStyle(WPGMZA.OLFeature.getOLStyle(props));break;default:this.googleFeature.setOptions(props)}}}),jQuery(function($){var Parent=WPGMZA.Feature;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.extend(WPGMZA.Circle,WPGMZA.Feature),Object.defineProperty(WPGMZA.Circle.prototype,"fillColor",{enumerable:!0,get:function(){return this.color&&this.color.length?this.color:"#ff0000"},set:function(a){this.color=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity||0==this.opacity?parseFloat(this.opacity):.5},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"strokeColor",{enumerable:!0,get:function(){return this.lineColor?this.lineColor:"#000000"},set:function(a){this.lineColor=a}}),Object.defineProperty(WPGMZA.Circle.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.lineOpacity||0==this.lineOpacity?parseFloat(this.lineOpacity):0},set:function(a){this.lineOpacity=a}}),WPGMZA.Circle.createInstance=function(options,engineCircle){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options,engineCircle)},WPGMZA.Circle.prototype.getCenter=function(){return this.center.clone()},WPGMZA.Circle.prototype.setCenter=function(latLng){this.center.lat=latLng.lat,this.center.lng=latLng.lng},WPGMZA.Circle.prototype.getRadius=function(){return this.radius},WPGMZA.Circle.prototype.setRadius=function(radius){this.radius=radius},WPGMZA.Circle.prototype.getMap=function(){return this.map},WPGMZA.Circle.prototype.setMap=function(map){this.map&&this.map.removeCircle(this),map&&map.addCircle(this)}}),jQuery(function($){WPGMZA.FriendlyError=function(){}}),jQuery(function($){WPGMZA.Geocoder=function(){WPGMZA.assertInstanceOf(this,"Geocoder")},WPGMZA.Geocoder.SUCCESS="success",WPGMZA.Geocoder.ZERO_RESULTS="zero-results",WPGMZA.Geocoder.FAIL="fail",WPGMZA.Geocoder.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLGeocoder;default:return WPGMZA.GoogleGeocoder}},WPGMZA.Geocoder.createInstance=function(){return new(WPGMZA.Geocoder.getConstructor())},WPGMZA.Geocoder.prototype.getLatLngFromAddress=function(options,callback){if(WPGMZA.isLatLngString(options.address)){var parts=options.address.split(/,\s*/),latLng=new WPGMZA.LatLng({lat:parseFloat(parts[0]),lng:parseFloat(parts[1])});callback([latLng.latLng=latLng],WPGMZA.Geocoder.SUCCESS)}},WPGMZA.Geocoder.prototype.getAddressFromLatLng=function(options,callback){callback([new WPGMZA.LatLng(options.latLng).toString()],WPGMZA.Geocoder.SUCCESS)},WPGMZA.Geocoder.prototype.geocode=function(options,callback){if("address"in options)return this.getLatLngFromAddress(options,callback);if("latLng"in options)return this.getAddressFromLatLng(options,callback);throw new Error("You must supply either a latLng or address")}}),jQuery(function($){WPGMZA.GoogleAPIErrorHandler=function(){var self=this;if("google-maps"==WPGMZA.settings.engine&&("map-edit"==WPGMZA.currentPage||0==WPGMZA.is_admin&&1==WPGMZA.userCanAdministrator)){this.element=$(WPGMZA.html.googleMapsAPIErrorDialog),1==WPGMZA.is_admin&&this.element.find(".wpgmza-front-end-only").remove(),this.errorMessageList=this.element.find(".wpgmza-google-api-error-list"),this.templateListItem=this.element.find("li.template").remove(),this.messagesAlreadyDisplayed={};var _error=console.error;console.error=function(message){self.onErrorMessage(message),_error.apply(this,arguments)},"google-maps"!=WPGMZA.settings.engine||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT||this.addErrorMessage(WPGMZA.localized_strings.no_google_maps_api_key,["https://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/"])}},WPGMZA.GoogleAPIErrorHandler.prototype.onErrorMessage=function(message){var m;if(message)if((m=message.match(/You have exceeded your (daily )?request quota for this API/))||(m=message.match(/This API project is not authorized to use this API/))||(m=message.match(/^Geocoding Service: .+/))){var urls=message.match(/http(s)?:\/\/[^\s]+/gm);this.addErrorMessage(m[0],urls)}else(m=message.match(/^Google Maps.+error: (.+)\s+(http(s?):\/\/.+)/m))&&this.addErrorMessage(m[1].replace(/([A-Z])/g," $1"),[m[2]])},WPGMZA.GoogleAPIErrorHandler.prototype.addErrorMessage=function(message,urls){var self=this;if(!this.messagesAlreadyDisplayed[message]){var li=this.templateListItem.clone();$(li).find(".wpgmza-message").html(message);var buttonContainer=$(li).find(".wpgmza-documentation-buttons"),buttonTemplate=$(li).find(".wpgmza-documentation-buttons>a");if(buttonTemplate.remove(),urls&&urls.length){for(var i=0;i<urls.length;i++){urls[i];var button=buttonTemplate.clone(),text=WPGMZA.localized_strings.documentation;button.attr("href",urls[i]),$(button).find("i").addClass("fa-external-link"),$(button).append(text)}buttonContainer.append(button)}$(this.errorMessageList).append(li),$("#wpgmza_map, .wpgmza_map").each(function(index,el){var container=$(el).find(".wpgmza-google-maps-api-error-overlay");0==container.length&&(container=$("<div class='wpgmza-google-maps-api-error-overlay'></div>")).html(self.element.html()),setTimeout(function(){$(el).append(container)},1e3)}),$(".gm-err-container").parent().css({"z-index":1}),this.messagesAlreadyDisplayed[message]=!0}},WPGMZA.googleAPIErrorHandler=new WPGMZA.GoogleAPIErrorHandler}),jQuery(function($){WPGMZA.InfoWindow=function(feature){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),feature&&(this.feature=feature,this.state=WPGMZA.InfoWindow.STATE_CLOSED,feature.map?setTimeout(function(){self.onFeatureAdded(event)},100):feature.addEventListener("added",function(event){self.onFeatureAdded(event)}))},WPGMZA.InfoWindow.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.InfoWindow.prototype.constructor=WPGMZA.InfoWindow,WPGMZA.InfoWindow.OPEN_BY_CLICK=1,WPGMZA.InfoWindow.OPEN_BY_HOVER=2,WPGMZA.InfoWindow.STATE_OPEN="open",WPGMZA.InfoWindow.STATE_CLOSED="closed",WPGMZA.InfoWindow.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProInfoWindow:WPGMZA.OLInfoWindow;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProInfoWindow:WPGMZA.GoogleInfoWindow}},WPGMZA.InfoWindow.createInstance=function(feature){return new(this.getConstructor())(feature)},Object.defineProperty(WPGMZA.InfoWindow.prototype,"content",{get:function(){return this.getContent()},set:function(value){this.contentHtml=value}}),WPGMZA.InfoWindow.prototype.addEditButton=function(){return"map-edit"==WPGMZA.currentPage&&this.feature instanceof WPGMZA.Marker?' <a title="Edit this marker" style="width:15px;" class="wpgmza_edit_btn" data-edit-marker-id="'+this.feature.id+'"><i class="fa fa-edit"></i></a>':""},WPGMZA.InfoWindow.prototype.workOutDistanceBetweenTwoMarkers=function(location1,location2){if(location1&&location2){var distanceToDisplay=WPGMZA.Distance.between(location1,location2);return this.distanceUnits==WPGMZA.Distance.MILES&&(distanceToDisplay/=WPGMZA.Distance.KILOMETERS_PER_MILE),Math.round(distanceToDisplay,2)}},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="",extra_html="";if(this.feature instanceof WPGMZA.Marker){if(this.feature.map.settings.store_locator_show_distance&&this.feature.map.storeLocator&&this.feature.map.storeLocator.state==WPGMZA.StoreLocator.STATE_APPLIED){var currentLatLng=this.feature.getPosition(),distance=this.workOutDistanceBetweenTwoMarkers(this.feature.map.storeLocator.center,currentLatLng);extra_html+="<p>"+(this.feature.map.settings.store_locator_distance==WPGMZA.Distance.KILOMETERS?distance+WPGMZA.localized_strings.kilometers_away:distance+" "+WPGMZA.localized_strings.miles_away)+"</p>"}html=this.feature.address+extra_html}return this.contentHtml&&(html=this.contentHtml),callback&&callback(html),html},WPGMZA.InfoWindow.prototype.open=function(map,feature){return this.feature=feature,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.feature.disableInfoWindow&&(this.state=WPGMZA.InfoWindow.STATE_OPEN,!0))},WPGMZA.InfoWindow.prototype.close=function(){this.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(this.state=WPGMZA.InfoWindow.STATE_CLOSED,this.trigger("infowindowclose"))},WPGMZA.InfoWindow.prototype.setContent=function(options){},WPGMZA.InfoWindow.prototype.setOptions=function(options){},WPGMZA.InfoWindow.prototype.onFeatureAdded=function(){1==this.feature.settings.infoopen&&this.open()},WPGMZA.InfoWindow.prototype.onOpen=function(){}}),jQuery(function($){WPGMZA.LatLng=function(arg,lng){if(this._lat=0,(this._lng=0)!=arguments.length)if(1==arguments.length){if("string"==typeof arg){var m;if(!(m=arg.match(WPGMZA.LatLng.REGEXP)))throw new Error("Invalid LatLng string");arg={lat:m[1],lng:m[3]}}if("object"!=typeof arg||!("lat"in arg&&"lng"in arg))throw new Error("Argument must be a LatLng literal");this.lat=arg.lat,this.lng=arg.lng}else this.lat=arg,this.lng=lng},WPGMZA.LatLng.REGEXP=/^(\-?\d+(\.\d+)?),\s*(\-?\d+(\.\d+)?)$/,WPGMZA.LatLng.isValid=function(obj){return"object"==typeof obj&&("lat"in obj&&"lng"in obj)},WPGMZA.LatLng.isLatLngString=function(str){return"string"==typeof str&&!!str.match(WPGMZA.LatLng.REGEXP)},Object.defineProperty(WPGMZA.LatLng.prototype,"lat",{get:function(){return this._lat},set:function(val){if(!$.isNumeric(val))throw new Error("Latitude must be numeric");this._lat=parseFloat(val)}}),Object.defineProperty(WPGMZA.LatLng.prototype,"lng",{get:function(){return this._lng},set:function(val){if(!$.isNumeric(val))throw new Error("Longitude must be numeric");this._lng=parseFloat(val)}}),WPGMZA.LatLng.fromString=function(string){if(!WPGMZA.LatLng.isLatLngString(string))throw new Error("Not a valid latlng string");var m=string.match(WPGMZA.LatLng.REGEXP);return new WPGMZA.LatLng({lat:parseFloat(m[1]),lng:parseFloat(m[3])})},WPGMZA.LatLng.prototype.toString=function(){return this._lat+", "+this._lng},WPGMZA.LatLng.fromCurrentPosition=function(callback,options){options=options||{},callback&&WPGMZA.getCurrentPosition(function(position){var latLng=new WPGMZA.LatLng({lat:position.coords.latitude,lng:position.coords.longitude});options.geocodeAddress?WPGMZA.Geocoder.createInstance().getAddressFromLatLng({latLng:latLng},function(results){results.length&&(latLng.address=results[0]),callback(latLng)}):callback(latLng)})},WPGMZA.LatLng.fromGoogleLatLng=function(googleLatLng){return new WPGMZA.LatLng(googleLatLng.lat(),googleLatLng.lng())},WPGMZA.LatLng.toGoogleLatLngArray=function(arr){var result=[];return arr.forEach(function(nativeLatLng){if(!(nativeLatLng instanceof WPGMZA.LatLng||"lat"in nativeLatLng&&"lng"in nativeLatLng))throw new Error("Unexpected input");result.push(new google.maps.LatLng({lat:parseFloat(nativeLatLng.lat),lng:parseFloat(nativeLatLng.lng)}))}),result},WPGMZA.LatLng.prototype.toGoogleLatLng=function(){return new google.maps.LatLng({lat:this.lat,lng:this.lng})},WPGMZA.LatLng.prototype.toLatLngLiteral=function(){return{lat:this.lat,lng:this.lng}},WPGMZA.LatLng.prototype.moveByDistance=function(kilometers,heading){var delta=parseFloat(kilometers)/6371,theta=parseFloat(heading)/180*Math.PI,phi1=this.lat/180*Math.PI,lambda1=this.lng/180*Math.PI,sinPhi1=Math.sin(phi1),cosPhi1=Math.cos(phi1),sinDelta=Math.sin(delta),cosDelta=Math.cos(delta),sinTheta=Math.sin(theta),sinPhi2=sinPhi1*cosDelta+cosPhi1*sinDelta*Math.cos(theta),phi2=Math.asin(sinPhi2),y=sinTheta*sinDelta*cosPhi1,x=cosDelta-sinPhi1*sinPhi2,lambda2=lambda1+Math.atan2(y,x);this.lat=180*phi2/Math.PI,this.lng=180*lambda2/Math.PI},WPGMZA.LatLng.prototype.getGreatCircleDistance=function(arg1,arg2){var other,lat1=this.lat,lon1=this.lng;if(1==arguments.length)other=new WPGMZA.LatLng(arg1);else{if(2!=arguments.length)throw new Error("Invalid number of arguments");other=new WPGMZA.LatLng(arg1,arg2)}var lat2=other.lat,lon2=other.lng,phi1=lat1.toRadians(),phi2=lat2.toRadians(),deltaPhi=(lat2-lat1).toRadians(),deltaLambda=(lon2-lon1).toRadians(),a=Math.sin(deltaPhi/2)*Math.sin(deltaPhi/2)+Math.cos(phi1)*Math.cos(phi2)*Math.sin(deltaLambda/2)*Math.sin(deltaLambda/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))}}),jQuery(function($){WPGMZA.LatLngBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLngBounds){var other=southWest;this.south=other.south,this.north=other.north,this.west=other.west,this.east=other.east}else southWest&&northEast&&(this.south=southWest.lat,this.north=northEast.lat,this.west=southWest.lng,this.east=northEast.lng)},WPGMZA.LatLngBounds.fromGoogleLatLngBounds=function(googleLatLngBounds){if(!(googleLatLngBounds instanceof google.maps.LatLngBounds))throw new Error("Argument must be an instance of google.maps.LatLngBounds");var result=new WPGMZA.LatLngBounds,southWest=googleLatLngBounds.getSouthWest(),northEast=googleLatLngBounds.getNorthEast();return result.north=northEast.lat(),result.south=southWest.lat(),result.west=southWest.lng(),result.east=northEast.lng(),result},WPGMZA.LatLngBounds.fromGoogleLatLngBoundsLiteral=function(obj){var result=new WPGMZA.LatLngBounds,southWest=obj.southwest,northEast=obj.northeast;return result.north=northEast.lat,result.south=southWest.lat,result.west=southWest.lng,result.east=northEast.lng,result},WPGMZA.LatLngBounds.prototype.isInInitialState=function(){return null==this.north&&null==this.south&&null==this.west&&null==this.east},WPGMZA.LatLngBounds.prototype.extend=function(latLng){if(latLng instanceof WPGMZA.LatLng||(latLng=new WPGMZA.LatLng(latLng)),this.isInInitialState())return this.north=this.south=latLng.lat,void(this.west=this.east=latLng.lng);latLng.lat<this.north&&(this.north=latLng.lat),latLng.lat>this.south&&(this.south=latLng.lat),latLng.lng<this.west&&(this.west=latLng.lng),latLng.lng>this.east&&(this.east=latLng.lng)},WPGMZA.LatLngBounds.prototype.extendByPixelMargin=function(map,x,arg){var y=x;if(!(map instanceof WPGMZA.Map))throw new Error("First argument must be an instance of WPGMZA.Map");if(this.isInInitialState())throw new Error("Cannot extend by pixels in initial state");3<=arguments.length&&(y=arg);var southWest=new WPGMZA.LatLng(this.south,this.west),northEast=new WPGMZA.LatLng(this.north,this.east);southWest=map.latLngToPixels(southWest),northEast=map.latLngToPixels(northEast),southWest.x-=x,southWest.y+=y,northEast.x+=x,northEast.y-=y,southWest=map.pixelsToLatLng(southWest.x,southWest.y),northEast=map.pixelsToLatLng(northEast.x,northEast.y);this.toString();this.north=northEast.lat,this.south=southWest.lat,this.west=southWest.lng,this.east=northEast.lng},WPGMZA.LatLngBounds.prototype.contains=function(latLng){if(!(latLng instanceof WPGMZA.LatLng))throw new Error("Argument must be an instance of WPGMZA.LatLng");return!(latLng.lat<Math.min(this.north,this.south))&&(!(latLng.lat>Math.max(this.north,this.south))&&(this.west<this.east?latLng.lng>=this.west&&latLng.lng<=this.east:latLng.lng<=this.west||latLng.lng>=this.east))},WPGMZA.LatLngBounds.prototype.toString=function(){return this.north+"N "+this.south+"S "+this.west+"W "+this.east+"E"},WPGMZA.LatLngBounds.prototype.toLiteral=function(){return{north:this.north,south:this.south,west:this.west,east:this.east}}}),jQuery(function($){var legacyGlobals={marker_pull:"0",marker_array:[],MYMAP:[],infoWindow_poly:[],markerClusterer:[],heatmap:[],WPGM_Path:[],WPGM_Path_Polygon:[],WPGM_PathLine:[],WPGM_PathLineData:[],WPGM_PathData:[],original_iw:null,wpgmza_user_marker:null,wpgmaps_localize_marker_data:[],wpgmaps_localize_polygon_settings:[],wpgmaps_localize_heatmap_settings:[],wpgmaps_localize_polyline_settings:[],wpgmza_cirtcle_data_array:[],wpgmza_rectangle_data_array:[],wpgmzaForceLegacyMarkerClusterer:!1};function bindLegacyGlobalProperty(key){key in window?console.warn("Cannot redefine legacy global "+key):Object.defineProperty(window,key,{get:function(){return console.warn("This property is deprecated and should no longer be used"),legacyGlobals[key]},set:function(value){console.warn("This property is deprecated and should no longer be used"),legacyGlobals[key]=value}})}for(var key in legacyGlobals)bindLegacyGlobalProperty(key);WPGMZA.legacyGlobals=legacyGlobals,window.InitMap=window.resetLocations=window.searchLocations=window.fillInAddress=window.searchLocationsNear=function(){console.warn("This function is deprecated and should no longer be used")}}),jQuery(function($){WPGMZA.MapListPage=function(){$("body").on("click",".wpgmza_copy_shortcode",function(){var $temp=jQuery("<input>");jQuery('<span id="wpgmza_tmp" style="display:none; width:100%; text-align:center;">');jQuery("body").append($temp),$temp.val(jQuery(this).val()).select(),document.execCommand("copy"),$temp.remove(),WPGMZA.notification("Shortcode Copied")})},WPGMZA.MapListPage.createInstance=function(){return new WPGMZA.MapListPage},$(document).ready(function(event){WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_LIST&&(WPGMZA.mapListPage=WPGMZA.MapListPage.createInstance())})}),jQuery(function($){WPGMZA.MapSettings=function(element){var json,self=this,str=element.getAttribute("data-settings");try{json=JSON.parse(str)}catch(e){str=(str=str.replace(/\\%/g,"%")).replace(/\\\\"/g,'\\"');try{json=JSON.parse(str)}catch(e){json={},console.warn("Failed to parse map settings JSON")}}function addSettings(input){if(input)for(var key in input)if("other_settings"!=key){var value=input[key];String(value).match(/^-?\d+$/)&&(value=parseInt(value)),self[key]=value}}WPGMZA.assertInstanceOf(this,"MapSettings"),addSettings(WPGMZA.settings),addSettings(json),json&&json.other_settings&&addSettings(json.other_settings)},WPGMZA.MapSettings.prototype.toOLViewOptions=function(){var self=this,options={center:ol.proj.fromLonLat([-119.4179,36.7783]),zoom:4};function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}if("string"==typeof this.start_location){var coords=this.start_location.replace(/^\(|\)$/g,"").split(",");WPGMZA.isLatLngString(this.start_location)?options.center=ol.proj.fromLonLat([parseFloat(coords[1]),parseFloat(coords[0])]):console.warn("Invalid start location")}return this.center&&(options.center=ol.proj.fromLonLat([parseFloat(this.center.lng),parseFloat(this.center.lat)])),empty("map_start_lat")||empty("map_start_lng")||(options.center=ol.proj.fromLonLat([parseFloat(this.map_start_lng),parseFloat(this.map_start_lat)])),this.zoom&&(options.zoom=parseInt(this.zoom)),this.start_zoom&&(options.zoom=parseInt(this.start_zoom)),this.map_start_zoom&&(options.zoom=parseInt(this.map_start_zoom)),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options},WPGMZA.MapSettings.prototype.toGoogleMapsOptions=function(){var self=this,latLngCoords=this.start_location&&this.start_location.length?this.start_location.split(","):[36.7783,-119.4179];function empty(name){return"object"!=typeof self[name]&&(!self[name]||!self[name].length)}function formatCoord(coord){return $.isNumeric(coord)?coord:parseFloat(String(coord).replace(/[\(\)\s]/,""))}var latLng=new google.maps.LatLng(formatCoord(latLngCoords[0]),formatCoord(latLngCoords[1])),zoom=this.start_zoom?parseInt(this.start_zoom):4;!this.start_zoom&&this.zoom&&(zoom=parseInt(this.zoom)),this.map_start_zoom&&(zoom=parseInt(this.map_start_zoom));var options={zoom:zoom,center:latLng};function isSettingDisabled(value){return"yes"===value||!!value}switch(empty("center")||(options.center=new google.maps.LatLng({lat:parseFloat(this.center.lat),lng:parseFloat(this.center.lng)})),empty("map_start_lat")||empty("map_start_lng")||(options.center=new google.maps.LatLng({lat:parseFloat(this.map_start_lat),lng:parseFloat(this.map_start_lng)})),this.map_min_zoom&&this.map_max_zoom&&(options.minZoom=Math.min(this.map_min_zoom,this.map_max_zoom),options.maxZoom=Math.max(this.map_min_zoom,this.map_max_zoom)),options.zoomControl=!isSettingDisabled(this.wpgmza_settings_map_zoom),options.panControl=!isSettingDisabled(this.wpgmza_settings_map_pan),options.mapTypeControl=!isSettingDisabled(this.wpgmza_settings_map_type),options.streetViewControl=!isSettingDisabled(this.wpgmza_settings_map_streetview),options.fullscreenControl=!isSettingDisabled(this.wpgmza_settings_map_full_screen_control),options.draggable=!isSettingDisabled(this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom=isSettingDisabled(this.wpgmza_settings_map_clickzoom),isSettingDisabled(this.wpgmza_settings_map_tilt_controls)&&(options.rotateControl=!1,options.tilt=0),this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures||1==this.wpgmza_force_greedy_gestures?(options.gestureHandling="greedy",!this.wpgmza_settings_map_scroll&&"scrollwheel"in options&&delete options.scrollwheel):options.gestureHandling="cooperative",parseInt(this.type)){case 2:options.mapTypeId=google.maps.MapTypeId.SATELLITE;break;case 3:options.mapTypeId=google.maps.MapTypeId.HYBRID;break;case 4:options.mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:options.mapTypeId=google.maps.MapTypeId.ROADMAP}return this.wpgmza_theme_data&&this.wpgmza_theme_data.length&&(options.styles=WPGMZA.GoogleMap.parseThemeData(this.wpgmza_theme_data)),options}}),jQuery(function($){WPGMZA.Map=function(element,options){var self=this;if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement||window.elementor))throw new Error("Argument must be a HTMLElement");if(element.hasAttribute("data-map-id")?this.id=element.getAttribute("data-map-id"):this.id=1,!/\d+/.test(this.id))throw new Error("Map ID must be an integer");if(WPGMZA.maps.push(this),this.element=element,this.element.wpgmzaMap=this,$(this.element).addClass("wpgmza-initialized"),this.engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code)return $(element).append($(WPGMZA.api_consent_html)),void $(element).css({height:"auto"});if(this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes")),this.shortcodeAttributes.zoom&&(this.settings.map_start_zoom=parseInt(this.shortcodeAttributes.zoom))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.setDimensions(),this.setAlignment(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this),this.on("init",function(event){self.onInit(event)}),this.on("click",function(event){self.onClick(event)}),WPGMZA.useLegacyGlobals&&(wpgmzaLegacyGlobals.MYMAP[this.id]={map:null,bounds:null,mc:null},wpgmzaLegacyGlobals.MYMAP.init=wpgmzaLegacyGlobals.MYMAP[this.id].init=wpgmzaLegacyGlobals.MYMAP.placeMarkers=wpgmzaLegacyGlobals.MYMAP[this.id].placeMarkers=function(){console.warn("This function is deprecated and should no longer be used")})},WPGMZA.Map.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.Map.prototype.constructor=WPGMZA.Map,WPGMZA.Map.nightTimeThemeData=[{elementType:"geometry",stylers:[{color:"#242f3e"}]},{elementType:"labels.text.fill",stylers:[{color:"#746855"}]},{elementType:"labels.text.stroke",stylers:[{color:"#242f3e"}]},{featureType:"administrative.locality",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"landscape",elementType:"geometry.fill",stylers:[{color:"#575663"}]},{featureType:"poi",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"poi.park",elementType:"geometry",stylers:[{color:"#263c3f"}]},{featureType:"poi.park",elementType:"labels.text.fill",stylers:[{color:"#6b9a76"}]},{featureType:"road",elementType:"geometry",stylers:[{color:"#38414e"}]},{featureType:"road",elementType:"geometry.stroke",stylers:[{color:"#212a37"}]},{featureType:"road",elementType:"labels.text.fill",stylers:[{color:"#9ca5b3"}]},{featureType:"road.highway",elementType:"geometry",stylers:[{color:"#746855"}]},{featureType:"road.highway",elementType:"geometry.fill",stylers:[{color:"#80823e"}]},{featureType:"road.highway",elementType:"geometry.stroke",stylers:[{color:"#1f2835"}]},{featureType:"road.highway",elementType:"labels.text.fill",stylers:[{color:"#f3d19c"}]},{featureType:"transit",elementType:"geometry",stylers:[{color:"#2f3948"}]},{featureType:"transit.station",elementType:"labels.text.fill",stylers:[{color:"#d59563"}]},{featureType:"water",elementType:"geometry",stylers:[{color:"#17263c"}]},{featureType:"water",elementType:"geometry.fill",stylers:[{color:"#1b737a"}]},{featureType:"water",elementType:"labels.text.fill",stylers:[{color:"#515c6d"}]},{featureType:"water",elementType:"labels.text.stroke",stylers:[{color:"#17263c"}]}],WPGMZA.Map.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMap:WPGMZA.OLMap;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMap:WPGMZA.GoogleMap}},WPGMZA.Map.createInstance=function(element,options){return new(WPGMZA.Map.getConstructor())(element,options)},Object.defineProperty(WPGMZA.Map.prototype,"markersPlaced",{get:function(){return this._markersPlaced},set:function(value){throw new Error("Value is read only")}}),Object.defineProperty(WPGMZA.Map.prototype,"lat",{get:function(){return this.getCenter().lat},set:function(value){var center=this.getCenter();center.lat=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"lng",{get:function(){return this.getCenter().lng},set:function(value){var center=this.getCenter();center.lng=value,this.setCenter(center)}}),Object.defineProperty(WPGMZA.Map.prototype,"zoom",{get:function(){return this.getZoom()},set:function(value){this.setZoom(value)}}),WPGMZA.Map.prototype.onInit=function(event){this.initPreloader(),"autoFetchFeatures"in this.settings&&!1===this.settings.autoFetchFeatures||this.fetchFeatures()},WPGMZA.Map.prototype.initPreloader=function(){this.preloader=$(WPGMZA.preloaderHTML),$(this.preloader).hide(),$(this.element).append(this.preloader)},WPGMZA.Map.prototype.showPreloader=function(show){show?$(this.preloader).show():$(this.preloader).hide()},WPGMZA.Map.prototype.loadSettings=function(options){var settings=new WPGMZA.MapSettings(this.element);settings.other_settings;if(delete settings.other_settings,options)for(var key in options)settings[key]=options[key];this.settings=settings},WPGMZA.Map.prototype.initStoreLocator=function(){var storeLocatorElement=$(".wpgmza_sl_main_div");storeLocatorElement.length&&(this.storeLocator=WPGMZA.StoreLocator.createInstance(this,storeLocatorElement[0]))},WPGMZA.Map.prototype.getFeatureArrays=function(){var arrays=WPGMZA.Map.prototype.getFeatureArrays.call(this);return arrays.heatmaps=this.heatmaps,arrays},WPGMZA.Map.prototype.setOptions=function(options){for(var name in options)this.settings[name]=options[name]},WPGMZA.Map.prototype.getRESTParameters=function(options){var defaults={};return options&&options.filter||(defaults.filter=JSON.stringify(this.markerFilter.getFilteringParameters())),$.extend(!0,defaults,options)},WPGMZA.Map.prototype.fetchFeaturesViaREST=function(){var data,self=this,filter=this.markerFilter.getFilteringParameters();if("1"==WPGMZA.is_admin&&(filter.includeUnapproved=!0,filter.excludeIntegrated=!0),this.shortcodeAttributes.acf_post_id&&(filter.acfPostID=this.shortcodeAttributes.acf_post_id),this.showPreloader(!0),this.fetchFeaturesXhr&&this.fetchFeaturesXhr.abort(),WPGMZA.settings.fetchMarkersBatchSize){var offset=0,limit=WPGMZA.settings.fetchMarkersBatchSize;!function fetchNextBatch(){filter.offset=offset,filter.limit=limit,data=self.getRESTParameters({filter:JSON.stringify(filter)}),self.fetchFeaturesXhr=WPGMZA.restAPI.call("/markers/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){result.length?(self.onMarkersFetched(result,!0),offset+=limit,fetchNextBatch()):(self.onMarkersFetched(result),data.exclude="markers",WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}}))}})}()}else data=this.getRESTParameters({filter:JSON.stringify(filter)}),this.fetchFeaturesXhr=WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})},WPGMZA.Map.prototype.fetchFeaturesViaXML=function(){var self=this,urls=[WPGMZA.markerXMLPathURL+this.id+"markers.xml"];function fetchFeaturesExcludingMarkersViaREST(){var filter={map_id:this.id,mashup_ids:this.mashupIDs},data={filter:JSON.stringify(filter),exclude:"markers"};WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})}if(this.mashupIDs&&this.mashupIDs.forEach(function(id){urls.push(WPGMZA.markerXMLPathURL+id+"markers.xml")}),urls=urls.filter(function(item,index){return urls.indexOf(item)==index}),window.Worker&&window.Blob&&window.URL&&WPGMZA.settings.enable_asynchronous_xml_parsing){var source=WPGMZA.loadXMLAsWebWorker.toString().replace(/function\(\)\s*{([\s\S]+)}/,"$1"),blob=new Blob([source],{type:"text/javascript"}),worker=new Worker(URL.createObjectURL(blob));worker.onmessage=function(event){self.onMarkersFetched(event.data),fetchFeaturesExcludingMarkersViaREST()},worker.postMessage({command:"load",protocol:window.location.protocol,urls:urls})}else for(var filesLoaded=0,converter=new WPGMZA.XMLCacheConverter,converted=[],i=0;i<urls.length;i++)$.ajax(urls[i],{success:function(response,status,xhr){converted=converted.concat(converter.convert(response)),++filesLoaded==urls.length&&(self.onMarkersFetched(converted),fetchFeaturesExcludingMarkersViaREST())}})},WPGMZA.Map.prototype.fetchFeatures=function(){WPGMZA.settings.wpgmza_settings_marker_pull!=WPGMZA.MARKER_PULL_XML||"1"==WPGMZA.is_admin?this.fetchFeaturesViaREST():this.fetchFeaturesViaXML()},WPGMZA.Map.prototype.onFeaturesFetched=function(data){for(var type in data.markers&&this.onMarkersFetched(data.markers),data)if("markers"!=type)for(var module=type.substr(0,1).toUpperCase()+type.substr(1).replace(/s$/,""),i=0;i<data[type].length;i++){var instance=WPGMZA[module].createInstance(data[type][i]);this["add"+module](instance)}},WPGMZA.Map.prototype.onMarkersFetched=function(data,expectMoreBatches){for(var self=this,startFiltered=this.shortcodeAttributes.cat&&this.shortcodeAttributes.cat.length,i=0;i<data.length;i++){var obj=data[i],marker=WPGMZA.Marker.createInstance(obj);startFiltered&&(marker.isFiltered=!0,marker.setVisible(!1)),this.addMarker(marker)}if(!expectMoreBatches){this.showPreloader(!1);var triggerEvent=function(){self._markersPlaced=!0,self.trigger("markersplaced"),self.off("filteringcomplete",triggerEvent)};if(this.shortcodeAttributes.cat){var categories=this.shortcodeAttributes.cat.split(","),select=$("select[mid='"+this.id+"'][name='wpgmza_filter_select']");for(i=0;i<categories.length;i++)$("input[type='checkbox'][mid='"+this.id+"'][value='"+categories[i]+"']").prop("checked",!0),select.val(categories[i]);this.on("filteringcomplete",triggerEvent),this.markerFilter.update({categories:categories})}else triggerEvent();if(this.shortcodeAttributes.markers){var arr=this.shortcodeAttributes.markers.split(","),markers=[];for(i=0;i<arr.length;i++){var id=arr[i];id=id.replace(" ","");marker=this.getMarkerByID(id);markers.push(marker)}this.fitMapBoundsToMarkers(markers)}}},WPGMZA.Map.prototype.fetchFeaturesViaXML=function(){var self=this,urls=[WPGMZA.markerXMLPathURL+this.id+"markers.xml"];function fetchFeaturesExcludingMarkersViaREST(){var filter={map_id:this.id,mashup_ids:this.mashupIDs},data={filter:JSON.stringify(filter),exclude:"markers"};WPGMZA.restAPI.call("/features/",{useCompressedPathVariable:!0,data:data,success:function(result,status,xhr){self.onFeaturesFetched(result)}})}if(this.mashupIDs&&this.mashupIDs.forEach(function(id){urls.push(WPGMZA.markerXMLPathURL+id+"markers.xml")}),urls=urls.filter(function(item,index){return urls.indexOf(item)==index}),window.Worker&&window.Blob&&window.URL&&WPGMZA.settings.enable_asynchronous_xml_parsing){var source=WPGMZA.loadXMLAsWebWorker.toString().replace(/function\(\)\s*{([\s\S]+)}/,"$1"),blob=new Blob([source],{type:"text/javascript"}),worker=new Worker(URL.createObjectURL(blob));worker.onmessage=function(event){self.onMarkersFetched(event.data),fetchFeaturesExcludingMarkersViaREST()},worker.postMessage({command:"load",protocol:window.location.protocol,urls:urls})}else for(var filesLoaded=0,converter=new WPGMZA.XMLCacheConverter,converted=[],i=0;i<urls.length;i++)$.ajax(urls[i],{success:function(response,status,xhr){converted=converted.concat(converter.convert(response)),++filesLoaded==urls.length&&(self.onMarkersFetched(converted),fetchFeaturesExcludingMarkersViaREST())}})},WPGMZA.Map.prototype.fetchFeatures=function(){WPGMZA.settings.wpgmza_settings_marker_pull!=WPGMZA.MARKER_PULL_XML||"1"==WPGMZA.is_admin?this.fetchFeaturesViaREST():this.fetchFeaturesViaXML()},WPGMZA.Map.prototype.onFeaturesFetched=function(data){for(var type in data.markers&&this.onMarkersFetched(data.markers),data)if("markers"!=type)for(var module=type.substr(0,1).toUpperCase()+type.substr(1).replace(/s$/,""),i=0;i<data[type].length;i++){var instance=WPGMZA[module].createInstance(data[type][i]);this["add"+module](instance)}},WPGMZA.Map.prototype.onMarkersFetched=function(data,expectMoreBatches){for(var self=this,startFiltered=this.shortcodeAttributes.cat&&this.shortcodeAttributes.cat.length,i=0;i<data.length;i++){var obj=data[i],marker=WPGMZA.Marker.createInstance(obj);startFiltered&&(marker.isFiltered=!0,marker.setVisible(!1)),this.addMarker(marker)}if(!expectMoreBatches){this.showPreloader(!1);var triggerEvent=function(){self._markersPlaced=!0,self.trigger("markersplaced"),self.off("filteringcomplete",triggerEvent)};if(this.shortcodeAttributes.cat){var categories=this.shortcodeAttributes.cat.split(","),select=$("select[mid='"+this.id+"'][name='wpgmza_filter_select']");for(i=0;i<categories.length;i++)$("input[type='checkbox'][mid='"+this.id+"'][value='"+categories[i]+"']").prop("checked",!0),select.val(categories[i]);this.on("filteringcomplete",triggerEvent),this.markerFilter.update({categories:categories})}else triggerEvent();if(this.shortcodeAttributes.markers){var arr=this.shortcodeAttributes.markers.split(","),markers=[];for(i=0;i<arr.length;i++){var id=arr[i];id=id.replace(" ","");marker=this.getMarkerByID(id);markers.push(marker)}this.fitMapBoundsToMarkers(markers)}}};Math.PI;function deg2rad(deg){return deg*(Math.PI/180)}WPGMZA.Map.getGeographicDistance=function(lat1,lon1,lat2,lon2){var dLat=deg2rad(lat2-lat1),dLon=deg2rad(lon2-lon1),a=Math.sin(dLat/2)*Math.sin(dLat/2)+Math.cos(deg2rad(lat1))*Math.cos(deg2rad(lat2))*Math.sin(dLon/2)*Math.sin(dLon/2);return 6371*(2*Math.atan2(Math.sqrt(a),Math.sqrt(1-a)))},WPGMZA.Map.prototype.setCenter=function(latLng){if(!("lat"in latLng&&"lng"in latLng))throw new Error("Argument is not an object with lat and lng")},WPGMZA.Map.prototype.setDimensions=function(width,height){0==arguments.length&&(width=this.settings.map_width?this.settings.map_width:"100",this.settings.map_width_type?width+=this.settings.map_width_type.replace("\\",""):width+="%",height=this.settings.map_height?this.settings.map_height:"400",this.settings.map_height_type?height+=this.settings.map_height_type.replace("\\",""):height+="px"),$(this.engineElement).css({width:width,height:height})},WPGMZA.Map.prototype.setAlignment=function(){switch(parseInt(this.settings.wpgmza_map_align)){case 1:$(this.element).css({float:"left"});break;case 2:$(this.element).css({"margin-left":"auto","margin-right":"auto"});break;case 3:$(this.element).css({float:"right"})}},WPGMZA.Map.prototype.addMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");marker.map=this,(marker.parent=this).markers.push(marker),this.dispatchEvent({type:"markeradded",marker:marker}),marker.dispatchEvent({type:"added"})},WPGMZA.Map.prototype.removeMarker=function(marker){if(!(marker instanceof WPGMZA.Marker))throw new Error("Argument must be an instance of WPGMZA.Marker");if(marker.map!==this)throw new Error("Wrong map error");marker.infoWindow&&marker.infoWindow.close(),marker.map=null,marker.parent=null;var index=this.markers.indexOf(marker);if(-1==index)throw new Error("Marker not found in marker array");this.markers.splice(index,1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},WPGMZA.Map.prototype.removeAllMarkers=function(options){for(var i=this.markers.length-1;0<=i;i--)this.removeMarker(this.markers[i])},WPGMZA.Map.prototype.getMarkerByID=function(id){for(var i=0;i<this.markers.length;i++)if(this.markers[i].id==id)return this.markers[i];return null},WPGMZA.Map.prototype.getMarkerByTitle=function(title){if("string"==typeof title){for(var i=0;i<this.markers.length;i++)if(this.markers[i].title==title)return this.markers[i]}else{if(!(title instanceof RegExp))throw new Error("Invalid argument");for(i=0;i<this.markers.length;i++)if(title.test(this.markers[i].title))return this.markers[i]}return null},WPGMZA.Map.prototype.removeMarkerByID=function(id){var marker=this.getMarkerByID(id);marker&&this.removeMarker(marker)},WPGMZA.Map.prototype.addPolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");(polygon.map=this).polygons.push(polygon),this.dispatchEvent({type:"polygonadded",polygon:polygon})},WPGMZA.Map.prototype.removePolygon=function(polygon){if(!(polygon instanceof WPGMZA.Polygon))throw new Error("Argument must be an instance of WPGMZA.Polygon");if(polygon.map!==this)throw new Error("Wrong map error");polygon.map=null,this.polygons.splice(this.polygons.indexOf(polygon),1),this.dispatchEvent({type:"polygonremoved",polygon:polygon})},WPGMZA.Map.prototype.getPolygonByID=function(id){for(var i=0;i<this.polygons.length;i++)if(this.polygons[i].id==id)return this.polygons[i];return null},WPGMZA.Map.prototype.removePolygonByID=function(id){var polygon=this.getPolygonByID(id);polygon&&this.removePolygon(polygon)},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.addPolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");(polyline.map=this).polylines.push(polyline),this.dispatchEvent({type:"polylineadded",polyline:polyline})},WPGMZA.Map.prototype.removePolyline=function(polyline){if(!(polyline instanceof WPGMZA.Polyline))throw new Error("Argument must be an instance of WPGMZA.Polyline");if(polyline.map!==this)throw new Error("Wrong map error");polyline.map=null,this.polylines.splice(this.polylines.indexOf(polyline),1),this.dispatchEvent({type:"polylineremoved",polyline:polyline})},WPGMZA.Map.prototype.getPolylineByID=function(id){for(var i=0;i<this.polylines.length;i++)if(this.polylines[i].id==id)return this.polylines[i];return null},WPGMZA.Map.prototype.removePolylineByID=function(id){var polyline=this.getPolylineByID(id);polyline&&this.removePolyline(polyline)},WPGMZA.Map.prototype.addCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");(circle.map=this).circles.push(circle),this.dispatchEvent({type:"circleadded",circle:circle})},WPGMZA.Map.prototype.removeCircle=function(circle){if(!(circle instanceof WPGMZA.Circle))throw new Error("Argument must be an instance of WPGMZA.Circle");if(circle.map!==this)throw new Error("Wrong map error");circle.map=null,this.circles.splice(this.circles.indexOf(circle),1),this.dispatchEvent({type:"circleremoved",circle:circle})},WPGMZA.Map.prototype.getCircleByID=function(id){for(var i=0;i<this.circles.length;i++)if(this.circles[i].id==id)return this.circles[i];return null},WPGMZA.Map.prototype.removeCircleByID=function(id){var circle=this.getCircleByID(id);circle&&this.removeCircle(circle)},WPGMZA.Map.prototype.addRectangle=function(rectangle){if(!(rectangle instanceof WPGMZA.Rectangle))throw new Error("Argument must be an instance of WPGMZA.Rectangle");(rectangle.map=this).rectangles.push(rectangle),this.dispatchEvent({type:"rectangleadded",rectangle:rectangle})},WPGMZA.Map.prototype.removeRectangle=function(rectangle){if(!(rectangle instanceof WPGMZA.Rectangle))throw new Error("Argument must be an instance of WPGMZA.Rectangle");if(rectangle.map!==this)throw new Error("Wrong map error");rectangle.map=null,this.rectangles.splice(this.rectangles.indexOf(rectangle),1),this.dispatchEvent({type:"rectangleremoved",rectangle:rectangle})},WPGMZA.Map.prototype.getRectangleByID=function(id){for(var i=0;i<this.rectangles.length;i++)if(this.rectangles[i].id==id)return this.rectangles[i];return null},WPGMZA.Map.prototype.removeRectangleByID=function(id){var rectangle=this.getRectangleByID(id);rectangle&&this.removeRectangle(rectangle)},WPGMZA.Map.prototype.resetBounds=function(){var latlng=new WPGMZA.LatLng(this.settings.map_start_lat,this.settings.map_start_lng);this.panTo(latlng),this.setZoom(this.settings.map_start_zoom)},WPGMZA.Map.prototype.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},WPGMZA.Map.prototype.nudgeLatLng=function(latLng,x,y){var pixels=this.latLngToPixels(latLng);if(pixels.x+=parseFloat(x),pixels.y+=parseFloat(y),isNaN(pixels.x)||isNaN(pixels.y))throw new Error("Invalid coordinates supplied");return this.pixelsToLatLng(pixels)},WPGMZA.Map.prototype.animateNudge=function(x,y,origin,milliseconds){var nudged;if(origin){if(!(origin instanceof WPGMZA.LatLng))throw new Error("Origin must be an instance of WPGMZA.LatLng")}else origin=this.getCenter();nudged=this.nudgeLatLng(origin,x,y),milliseconds=milliseconds||WPGMZA.getScrollAnimationDuration(),$(this).animate({lat:nudged.lat,lng:nudged.lng},milliseconds)},WPGMZA.Map.prototype.onWindowResize=function(event){},WPGMZA.Map.prototype.onElementResized=function(event){},WPGMZA.Map.prototype.onBoundsChanged=function(event){this.trigger("boundschanged"),this.trigger("bounds_changed")},WPGMZA.Map.prototype.onIdle=function(event){this.trigger("idle")},WPGMZA.Map.prototype.onClick=function(event){},WPGMZA.Map.prototype.hasVisibleMarkers=function(){for(var marker,length=this.markers.length,i=0;i<length;i++)if((marker=this.markers[i]).isFilterable&&marker.getVisible())return!0;return!1},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})},$(document).ready(function(event){if(!WPGMZA.visibilityWorkaroundIntervalID){var invisibleMaps=jQuery(".wpgmza_map:hidden");WPGMZA.visibilityWorkaroundIntervalID=setInterval(function(){jQuery(invisibleMaps).each(function(index,el){if(jQuery(el).is(":visible")){var id=jQuery(el).attr("data-map-id");WPGMZA.getMapByID(id).onElementResized(),invisibleMaps.splice(invisibleMaps.toArray().indexOf(el),1)}})},1e3)}})}),jQuery(function($){WPGMZA.MapsEngineDialog=function(element){var self=this;this.element=element,window.wpgmzaUnbindSaveReminder&&window.wpgmzaUnbindSaveReminder(),$(element).show(),$(element).remodal().open(),$(element).find("input:radio").on("change",function(event){$("#wpgmza-confirm-engine").prop("disabled",!1),$("#wpgmza-confirm-engine").click()}),$("#wpgmza-confirm-engine").on("click",function(event){self.onButtonClicked(event)})},WPGMZA.MapsEngineDialog.prototype.onButtonClicked=function(event){$(event.target).prop("disabled",!0),$.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_engine_dialog_set_engine",engine:$("[name='wpgmza_maps_engine']:checked").val(),nonce:$("#wpgmza-maps-engine-dialog").attr("data-ajax-nonce")},success:function(response,status,xhr){window.location.reload()}})},$(document).ready(function(event){var element=$("#wpgmza-maps-engine-dialog");element.length&&(WPGMZA.settings.wpgmza_maps_engine_dialog_done||WPGMZA.settings.wpgmza_google_maps_api_key&&WPGMZA.settings.wpgmza_google_maps_api_key.length||(WPGMZA.mapsEngineDialog=new WPGMZA.MapsEngineDialog(element)))})}),jQuery(function($){WPGMZA.MarkerFilter=function(map){WPGMZA.EventDispatcher.call(this),this.map=map},WPGMZA.MarkerFilter.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MarkerFilter.prototype.constructor=WPGMZA.MarkerFilter,WPGMZA.MarkerFilter.createInstance=function(map){return new WPGMZA.MarkerFilter(map)},WPGMZA.MarkerFilter.prototype.getFilteringParameters=function(){var params={map_id:this.map.id};return this.map.storeLocator&&(params=$.extend(params,this.map.storeLocator.getFilteringParameters())),params},WPGMZA.MarkerFilter.prototype.update=function(params,source){var self=this;function dispatchEvent(result){var event=new WPGMZA.Event("filteringcomplete");event.map=self.map,event.source=source,event.filteredMarkers=result,event.filteringParams=params,self.onFilteringComplete(event),self.trigger(event),self.map.trigger(event)}this.updateTimeoutID||(params=params||{},this.xhr&&(this.xhr.abort(),delete this.xhr),this.updateTimeoutID=setTimeout(function(){if((params=$.extend(self.getFilteringParameters(),params)).center instanceof WPGMZA.LatLng&&(params.center=params.center.toLatLngLiteral()),params.hideAll)return dispatchEvent([]),void delete self.updateTimeoutID;self.map.showPreloader(!0),self.xhr=WPGMZA.restAPI.call("/markers",{data:{fields:["id"],filter:JSON.stringify(params)},success:function(result,status,xhr){self.map.showPreloader(!1),dispatchEvent(result)},useCompressedPathVariable:!0}),delete self.updateTimeoutID},0))},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(event){var map=[];event.filteredMarkers.forEach(function(data){map[data.id]=!0}),this.map.markers.forEach(function(marker){if(marker.isFilterable){var allowByFilter=!!map[marker.id];marker.isFiltered=!allowByFilter,marker.setVisible(allowByFilter)}})}}),jQuery(function($){WPGMZA.Marker=function(row){var self=this;this._offset={x:0,y:0},WPGMZA.assertInstanceOf(this,"Marker"),this.lat="36.778261",this.lng="-119.4179323999",this.address="California",this.title=null,this.description="",this.link="",this.icon="",this.approved=1,this.pic=null,this.isFilterable=!0,this.disableInfoWindow=!1,WPGMZA.Feature.apply(this,arguments),row&&row.heatmap||(row&&this.on("init",function(event){row.position&&this.setPosition(row.position),row.map&&row.map.addMarker(this)}),this.addEventListener("added",function(event){self.onAdded(event)}),this.handleLegacyGlobals(row))},WPGMZA.Marker.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Marker.prototype.constructor=WPGMZA.Marker,WPGMZA.Marker.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProMarker:WPGMZA.OLMarker;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProMarker:WPGMZA.GoogleMarker}},WPGMZA.Marker.createInstance=function(row){return new(WPGMZA.Marker.getConstructor())(row)},WPGMZA.Marker.ANIMATION_NONE="0",WPGMZA.Marker.ANIMATION_BOUNCE="1",WPGMZA.Marker.ANIMATION_DROP="2",Object.defineProperty(WPGMZA.Marker.prototype,"offsetX",{get:function(){return this._offset.x},set:function(value){this._offset.x=value,this.updateOffset()}}),Object.defineProperty(WPGMZA.Marker.prototype,"offsetY",{get:function(){return this._offset.y},set:function(value){this._offset.y=value,this.updateOffset()}}),WPGMZA.Marker.prototype.onAdded=function(event){var self=this;this.addEventListener("click",function(event){self.onClick(event)}),this.addEventListener("mouseover",function(event){self.onMouseOver(event)}),this.addEventListener("select",function(event){self.onSelect(event)}),this.map.settings.marker==this.id&&self.trigger("select"),"1"==this.infoopen&&this.openInfoWindow(!0)},WPGMZA.Marker.prototype.handleLegacyGlobals=function(row){var m;if(WPGMZA.settings.useLegacyGlobals&&this.map_id&&this.id&&!(WPGMZA.pro_version&&(m=WPGMZA.pro_version.match(/\d+/))&&m[0]<=7)){WPGMZA.legacyGlobals.marker_array[this.map_id]||(WPGMZA.legacyGlobals.marker_array[this.map_id]=[]),WPGMZA.legacyGlobals.marker_array[this.map_id][this.id]=this,WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id]||(WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);WPGMZA.legacyGlobals.wpgmaps_localize_marker_data[this.map_id][this.id]=cloned}},WPGMZA.Marker.prototype.initInfoWindow=function(){this.infoWindow||(this.infoWindow=WPGMZA.InfoWindow.createInstance())},WPGMZA.Marker.prototype.openInfoWindow=function(autoOpen){this.map?(autoOpen||(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),this.map.lastInteractedMarker=this),this.initInfoWindow(),this.infoWindow.open(this.map,this)):console.warn("Cannot open infowindow for marker with no map")},WPGMZA.Marker.prototype.onClick=function(event){},WPGMZA.Marker.prototype.onSelect=function(event){this.openInfoWindow()},WPGMZA.Marker.prototype.onMouseOver=function(event){WPGMZA.settings.wpgmza_settings_map_open_marker_by==WPGMZA.InfoWindow.OPEN_BY_HOVER&&this.openInfoWindow()},WPGMZA.Marker.prototype.getIcon=function(){function stripProtocol(url){return"string"!=typeof url?url:url.replace(/^http(s?):/,"")}return WPGMZA.defaultMarkerIcon?stripProtocol(WPGMZA.defaultMarkerIcon):stripProtocol(WPGMZA.settings.default_marker_icon)},WPGMZA.Marker.prototype.getPosition=function(){return new WPGMZA.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})},WPGMZA.Marker.prototype.setPosition=function(latLng){latLng instanceof WPGMZA.LatLng?(this.lat=latLng.lat,this.lng=latLng.lng):(this.lat=parseFloat(latLng.lat),this.lng=parseFloat(latLng.lng))},WPGMZA.Marker.prototype.setOffset=function(x,y){this._offset.x=x,this._offset.y=y,this.updateOffset()},WPGMZA.Marker.prototype.updateOffset=function(){},WPGMZA.Marker.prototype.getAnimation=function(){return this.anim},WPGMZA.Marker.prototype.setAnimation=function(animation){},WPGMZA.Marker.prototype.getVisible=function(){},WPGMZA.Marker.prototype.setVisible=function(visible){!visible&&this.infoWindow&&this.infoWindow.close()},WPGMZA.Marker.prototype.getMap=function(){return this.map},WPGMZA.Marker.prototype.setMap=function(map){map?map.addMarker(this):this.map&&this.map.removeMarker(this),this.map=map},WPGMZA.Marker.prototype.getDraggable=function(){},WPGMZA.Marker.prototype.setDraggable=function(draggable){},WPGMZA.Marker.prototype.setOptions=function(options){},WPGMZA.Marker.prototype.setOpacity=function(opacity){},WPGMZA.Marker.prototype.panIntoView=function(){if(!this.map)throw new Error("Marker hasn't been added to a map");this.map.setCenter(this.getPosition())},WPGMZA.Marker.prototype.toJSON=function(){var result=WPGMZA.Feature.prototype.toJSON.call(this),position=this.getPosition();return $.extend(result,{lat:position.lat,lng:position.lng,address:this.address,title:this.title,description:this.description,link:this.link,icon:this.icon,pic:this.pic,approved:this.approved}),result}}),jQuery(function($){WPGMZA.ModernStoreLocatorCircle=function(map_id,settings){var map;map=WPGMZA.isProVersion()?this.map=WPGMZA.getMapByID(map_id):this.map=WPGMZA.maps[0],this.map_id=map_id,this.mapElement=map.element,this.mapSize={width:$(this.mapElement).width(),height:$(this.mapElement).height()},this.initCanvasLayer(),this.settings={center:new WPGMZA.LatLng(0,0),radius:1,color:"#ff0000",shadowColor:"white",shadowBlur:4,centerRingRadius:10,centerRingLineWidth:3,numInnerRings:9,innerRingLineWidth:1,innerRingFade:!0,numOuterRings:7,ringLineWidth:1,mainRingLineWidth:2,numSpokes:6,spokesStartAngle:Math.PI/2,numRadiusLabels:6,radiusLabelsStartAngle:Math.PI/2,radiusLabelFont:"13px sans-serif",visible:!1},settings&&this.setOptions(settings)},WPGMZA.ModernStoreLocatorCircle.createInstance=function(map,settings){return"google-maps"==WPGMZA.settings.engine?new WPGMZA.GoogleModernStoreLocatorCircle(map,settings):new WPGMZA.OLModernStoreLocatorCircle(map,settings)},WPGMZA.ModernStoreLocatorCircle.prototype.initCanvasLayer=function(){},WPGMZA.ModernStoreLocatorCircle.prototype.onResize=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.onUpdate=function(event){this.draw()},WPGMZA.ModernStoreLocatorCircle.prototype.setOptions=function(options){for(var name in options){var functionName="set"+name.substr(0,1).toUpperCase()+name.substr(1);"function"==typeof this[functionName]?this[functionName](options[name]):this.settings[name]=options[name]}},WPGMZA.ModernStoreLocatorCircle.prototype.getResolutionScale=function(){return window.devicePixelRatio||1},WPGMZA.ModernStoreLocatorCircle.prototype.getCenter=function(){return this.getPosition()},WPGMZA.ModernStoreLocatorCircle.prototype.setCenter=function(value){this.setPosition(value)},WPGMZA.ModernStoreLocatorCircle.prototype.getPosition=function(){return this.settings.center},WPGMZA.ModernStoreLocatorCircle.prototype.setPosition=function(position){this.settings.center=position},WPGMZA.ModernStoreLocatorCircle.prototype.getRadius=function(){return this.settings.radius},WPGMZA.ModernStoreLocatorCircle.prototype.setRadius=function(radius){if(isNaN(radius))throw new Error("Invalid radius");this.settings.radius=radius},WPGMZA.ModernStoreLocatorCircle.prototype.getVisible=function(){return this.settings.visible},WPGMZA.ModernStoreLocatorCircle.prototype.setVisible=function(visible){this.settings.visible=visible},WPGMZA.ModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getContext=function(type){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){throw new Error("Abstract function called")},WPGMZA.ModernStoreLocatorCircle.prototype.validateSettings=function(){WPGMZA.isHexColorString(this.settings.color)||(this.settings.color="#ff0000")},WPGMZA.ModernStoreLocatorCircle.prototype.draw=function(){this.validateSettings();var settings=this.settings,canvasDimensions=this.getCanvasDimensions(),canvasWidth=canvasDimensions.width,canvasHeight=canvasDimensions.height;this.map,this.getResolutionScale();if(context=this.getContext("2d"),context.clearRect(0,0,canvasWidth,canvasHeight),settings.visible){context.shadowColor=settings.shadowColor,context.shadowBlur=settings.shadowBlur,context.setTransform(1,0,0,1,0,0);var scale=this.getScale();context.scale(scale,scale);var offset=this.getWorldOriginOffset();context.translate(offset.x,offset.y);new WPGMZA.LatLng(this.settings.center);var worldPoint=this.getCenterPixels(),rgba=WPGMZA.hexToRgba(settings.color),ringSpacing=this.getTransformedRadius(settings.radius)/(settings.numInnerRings+1);context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.centerRingRadius)/scale,0,2*Math.PI),context.stroke(),context.closePath();var end,radius=this.getTransformedRadius(settings.radius)+ringSpacing*settings.numOuterRings+1,grad=context.createRadialGradient(0,0,0,0,0,radius),start=(rgba=WPGMZA.hexToRgba(settings.color),WPGMZA.rgbaToString(rgba));rgba.a=0,end=WPGMZA.rgbaToString(rgba),grad.addColorStop(0,start),grad.addColorStop(1,end),context.save(),context.translate(worldPoint.x,worldPoint.y),context.strokeStyle=grad,context.lineWidth=2/scale;for(var i=0;i<settings.numSpokes;i++)spokeAngle=settings.spokesStartAngle+2*Math.PI*(i/settings.numSpokes),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.setLineDash([2/scale,15/scale]),context.beginPath(),context.moveTo(0,0),context.lineTo(x,y),context.stroke();context.setLineDash([]),context.restore(),context.lineWidth=1/scale*settings.innerRingLineWidth;for(i=1;i<=settings.numInnerRings;i++){radius=i*ringSpacing;settings.innerRingFade&&(rgba.a=1-(i-1)/settings.numInnerRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath()}context.strokeStyle=settings.color,context.lineWidth=1/scale*settings.centerRingLineWidth,context.beginPath(),context.arc(worldPoint.x,worldPoint.y,this.getTransformedRadius(settings.radius),0,2*Math.PI),context.stroke(),context.closePath();for(radius=radius+ringSpacing,i=0;i<settings.numOuterRings;i++)settings.innerRingFade&&(rgba.a=1-i/settings.numOuterRings),context.strokeStyle=WPGMZA.rgbaToString(rgba),context.beginPath(),context.arc(worldPoint.x,worldPoint.y,radius,0,2*Math.PI),context.stroke(),context.closePath(),radius+=ringSpacing;if(0<settings.numRadiusLabels){var m,x,y;radius=this.getTransformedRadius(settings.radius);(m=settings.radiusLabelFont.match(/(\d+)px/))&&parseInt(m[1]),context.font=settings.radiusLabelFont,context.textAlign="center",context.textBaseline="middle",context.fillStyle=settings.color,context.save(),context.translate(worldPoint.x,worldPoint.y);for(i=0;i<settings.numRadiusLabels;i++){var spokeAngle,width,textAngle=(spokeAngle=settings.radiusLabelsStartAngle+2*Math.PI*(i/settings.numRadiusLabels))+Math.PI/2,text=settings.radiusString;0<Math.sin(spokeAngle)&&(textAngle-=Math.PI),x=Math.cos(spokeAngle)*radius,y=Math.sin(spokeAngle)*radius,context.save(),context.translate(x,y),context.rotate(textAngle),context.scale(1/scale,1/scale),width=context.measureText(text).width,height=width/2,context.clearRect(-width,-height,2*width,2*height),context.fillText(settings.radiusString,0,0),context.restore()}context.restore()}}}}),jQuery(function($){WPGMZA.ModernStoreLocator=function(map_id){var original,self=this,map=WPGMZA.getMapByID(map_id);if(WPGMZA.assertInstanceOf(this,"ModernStoreLocator"),(original=WPGMZA.isProVersion()?$(".wpgmza_sl_search_button[mid='"+map_id+"'], .wpgmza_sl_search_button_"+map_id).closest(".wpgmza_sl_main_div"):$(".wpgmza_sl_search_button").closest(".wpgmza_sl_main_div")).length){this.element=$("<div class='wpgmza-modern-store-locator'><div class='wpgmza-inner wpgmza-modern-hover-opaque'/></div>")[0];var addressInput,inner=$(this.element).find(".wpgmza-inner");addressInput=WPGMZA.isProVersion()?$(original).find(".addressInput"):$(original).find("#addressInput"),map.settings.store_locator_query_string&&map.settings.store_locator_query_string.length&&addressInput.attr("placeholder",map.settings.store_locator_query_string),inner.append(addressInput);var button,titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=map.settings.store_locator_name_string;placeholder&&placeholder.length&&titleSearch.attr("placeholder",placeholder),inner.append(titleSearch)}(button=$(original).find("button.wpgmza-use-my-location"))&&inner.append(button),$(addressInput).on("keydown keypress",function(event){13==event.keyCode&&self.searchButton.is(":visible")&&self.searchButton.trigger("click")}),$(addressInput).on("input",function(event){self.searchButton.show(),self.resetButton.hide()}),inner.append($(original).find("select.wpgmza_sl_radius_select")),this.searchButton=$(original).find(".wpgmza_sl_search_button, .wpgmza_sl_search_button_div"),inner.append(this.searchButton),this.resetButton=$(original).find(".wpgmza_sl_reset_button_div"),inner.append(this.resetButton),this.resetButton.on("click",function(event){resetLocations(map_id)}),this.resetButton.hide(),WPGMZA.isProVersion()&&(this.searchButton.on("click",function(event){0!=$("addressInput_"+map_id).val()&&(self.searchButton.hide(),self.resetButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_APPLIED)}),this.resetButton.on("click",function(event){self.resetButton.hide(),self.searchButton.show(),map.storeLocator.state=WPGMZA.StoreLocator.STATE_INITIAL})),inner.append($("#wpgmza_distance_type_"+map_id));var container=$(original).find(".wpgmza_cat_checkbox_holder"),items=($(container).children("ul"),$(container).find("li")),numCategories=0,icons=[];items.each(function(index,el){var id=$(el).attr("class").match(/\d+/);for(var category_id in wpgmza_category_data)if(id==category_id){var src=wpgmza_category_data[category_id].image,icon=$('<div class="wpgmza-chip-icon"/>');icon.css({"background-image":"url('"+src+"')",width:$("#wpgmza_cat_checkbox_"+category_id+" + label").height()+"px"}),icons.push(icon),null!=src&&""!=src&&$("#wpgmza_cat_checkbox_"+category_id+" + label").prepend(icon),numCategories++;break}}),$(this.element).append(container),numCategories&&(this.optionsButton=$('<span class="wpgmza_store_locator_options_button"><i class="fa fa-list"></i></span>'),$(this.searchButton).before(this.optionsButton)),setInterval(function(){icons.forEach(function(icon){var height=$(icon).height();$(icon).css({width:height+"px"}),$(icon).closest("label").css({"padding-left":height+8+"px"})}),$(container).css("width",$(self.element).find(".wpgmza-inner").outerWidth()+"px")},1e3),$(this.element).find(".wpgmza_store_locator_options_button").on("click",function(event){container.hasClass("wpgmza-open")?container.removeClass("wpgmza-open"):container.addClass("wpgmza-open")}),$(original).remove(),$(this.element).find("input, select").on("focus",function(){$(inner).addClass("active")}),$(this.element).find("input, select").on("blur",function(){$(inner).removeClass("active")}),$(this.element).on("mouseover","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseOverCategory(event)}),$(this.element).on("mouseleave","li.wpgmza_cat_checkbox_item_holder",function(event){self.onMouseLeaveCategory(event)}),$("body").on("click",".wpgmza_store_locator_options_button",function(event){setTimeout(function(){if($(".wpgmza_cat_checkbox_holder").hasClass("wpgmza-open")){var p_cat=$(".wpgmza_cat_checkbox_holder"),position_cat=p_cat.position().top+p_cat.outerHeight(!0)+$(".wpgmza-modern-store-locator").height(),$p_map=$(".wpgmza_map");$p_map.position().top+$p_map.outerHeight(!0)<=position_cat&&($(".wpgmza_cat_ul").css("overflow","scroll "),$(".wpgmza_cat_ul").css("height","100%"),$(".wpgmza-modern-store-locator").css("height","100%"),$(".wpgmza_cat_checkbox_holder.wpgmza-open").css({"padding-bottom":"50px",height:"100%"}))}},500)})}},WPGMZA.ModernStoreLocator.createInstance=function(map_id){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLModernStoreLocator(map_id);default:return new WPGMZA.GoogleModernStoreLocator(map_id)}},WPGMZA.ModernStoreLocator.prototype.onMouseOverCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeIn()},WPGMZA.ModernStoreLocator.prototype.onMouseLeaveCategory=function(event){var li=event.currentTarget;$(li).children("ul.wpgmza_cat_checkbox_item_holder").stop(!0,!1).fadeOut()}}),jQuery(function($){WPGMZA.NativeMapsAppIcon=function(){navigator.userAgent.match(/^Apple|iPhone|iPad|iPod/)?(this.type="apple",this.element=$('<span><i class="fab fa fa-apple" aria-hidden="true"></i></span>')):(this.type="google",this.element=$('<span><i class="fab fa fa-google" aria-hidden="true"></i></span>'))}}),jQuery(function($){Uint8Array.prototype.slice||Object.defineProperty(Uint8Array.prototype,"slice",{value:function(begin,end){return new Uint8Array(Array.prototype.slice.call(this,begin,end))}}),WPGMZA.isSafari()&&!window.external&&(window.external={})}),jQuery(function($){WPGMZA.Polygon=function(row,enginePolygon){WPGMZA.assertInstanceOf(this,"Polygon"),this.paths=null,WPGMZA.Feature.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,Object.defineProperty(WPGMZA.Polygon.prototype,"fillColor",{enumerable:!0,get:function(){return this.fillcolor&&this.fillcolor.length?"#"+this.fillcolor.replace(/^#/,""):"#ff0000"},set:function(a){this.fillcolor=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity&&this.opacity.length?this.opacity:.6},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"strokeColor",{enumerable:!0,get:function(){return this.linecolor&&this.linecolor.length?"#"+this.linecolor.replace(/^#/,""):"#ff0000"},set:function(a){this.linecolor=a}}),Object.defineProperty(WPGMZA.Polygon.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.lineopacity&&this.lineopacity.length?this.lineopacity:.6},set:function(a){this.lineopacity=a}}),WPGMZA.Polygon.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.isProVersion()?WPGMZA.OLProPolygon:WPGMZA.OLPolygon;default:return WPGMZA.isProVersion()?WPGMZA.GoogleProPolygon:WPGMZA.GooglePolygon}},WPGMZA.Polygon.createInstance=function(row,engineObject){return new(WPGMZA.Polygon.getConstructor())(row,engineObject)}}),jQuery(function($){WPGMZA.Polyline=function(options,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),WPGMZA.Feature.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.Feature.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,Object.defineProperty(WPGMZA.Polyline.prototype,"strokeColor",{enumerable:!0,get:function(){return this.linecolor&&this.linecolor.length?"#"+this.linecolor.replace(/^#/,""):"#ff0000"},set:function(a){this.linecolor=a}}),Object.defineProperty(WPGMZA.Polyline.prototype,"strokeOpacity",{enumerable:!0,get:function(){return this.opacity&&this.opacity.length?this.opacity:.6},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Polyline.prototype,"strokeWeight",{enumerable:!0,get:function(){return this.linethickness&&this.linethickness.length?parseInt(this.linethickness):1},set:function(a){this.linethickness=a}}),WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(options,engineObject){return new(WPGMZA.Polyline.getConstructor())(options,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.Feature.prototype.toJSON.call(this);return result.title=this.title,result}}),jQuery(function($){WPGMZA.PopoutPanel=function(element){this.element=element},WPGMZA.PopoutPanel.prototype.open=function(){$(this.element).addClass("wpgmza-open")},WPGMZA.PopoutPanel.prototype.close=function(){$(this.element).removeClass("wpgmza-open")}}),jQuery(function($){var Parent=WPGMZA.Feature;WPGMZA.Rectangle=function(options,engineRectangle){WPGMZA.assertInstanceOf(this,"Rectangle"),this.name="",this.cornerA=new WPGMZA.LatLng,this.cornerB=new WPGMZA.LatLng,this.color="#ff0000",this.opacity=.5,Parent.apply(this,arguments)},WPGMZA.extend(WPGMZA.Rectangle,WPGMZA.Feature),Object.defineProperty(WPGMZA.Rectangle.prototype,"fillColor",{enumerable:!0,get:function(){return this.color&&this.color.length?this.color:"#ff0000"},set:function(a){this.color=a}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"fillOpacity",{enumerable:!0,get:function(){return this.opacity||0==this.opacity?parseFloat(this.opacity):.5},set:function(a){this.opacity=a}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"strokeColor",{enumerable:!0,get:function(){return"#000000"}}),Object.defineProperty(WPGMZA.Rectangle.prototype,"strokeOpacity",{enumerable:!0,get:function(){return 0}}),WPGMZA.Rectangle.createInstance=function(options,engineRectangle){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLRectangle;break;default:constructor=WPGMZA.GoogleRectangle}return new constructor(options,engineRectangle)}}),jQuery(function($){function sendAJAXFallbackRequest(route,params){if((params=$.extend({},params)).data||(params.data={}),"route"in params.data)throw new Error("Cannot send route through this method");if("action"in params.data)throw new Error("Cannot send action through this method");return params.data.route=route,params.data.action="wpgmza_rest_api_request",WPGMZA.restAPI.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_AJAX),$.ajax(WPGMZA.ajaxurl,params)}WPGMZA.RestAPI=function(){WPGMZA.RestAPI.URL=WPGMZA.resturl,this.useAJAXFallback=!1},WPGMZA.RestAPI.CONTEXT_REST="REST",WPGMZA.RestAPI.CONTEXT_AJAX="AJAX",WPGMZA.RestAPI.createInstance=function(){return new WPGMZA.RestAPI},Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableSupported",{get:function(){return WPGMZA.serverCanInflate&&"Uint8Array"in window&&"TextEncoder"in window}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"isCompressedPathVariableAllowed",{get:function(){return!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?!WPGMZA.settings.disable_compressed_path_variables:WPGMZA.settings.enable_compressed_path_variables}}),Object.defineProperty(WPGMZA.RestAPI.prototype,"maxURLLength",{get:function(){return 2083}}),WPGMZA.RestAPI.prototype.compressParams=function(params){var suffix="";if(params.markerIDs){var markerIDs=params.markerIDs.split(",");if(1<markerIDs.length){var encoded=(new WPGMZA.EliasFano).encode(markerIDs),compressed=pako.deflate(encoded),string=Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join("");suffix="/"+btoa(string).replace(/\//g,"-").replace(/=+$/,""),params.midcbp=encoded.pointer,delete params.markerIDs}}string=JSON.stringify(params);var input=(new TextEncoder).encode(string),raw=(compressed=pako.deflate(input),Array.prototype.map.call(compressed,function(ch){return String.fromCharCode(ch)}).join(""));return btoa(raw).replace(/\//g,"-").replace(/=+$/,"")+suffix},WPGMZA.RestAPI.prototype.getNonce=function(route){var matches=[];for(var pattern in WPGMZA.restnoncetable){var regex=new RegExp(pattern);route.match(regex)&&matches.push({pattern:pattern,nonce:WPGMZA.restnoncetable[pattern],length:pattern.length})}if(!matches.length)throw new Error("No nonce found for route");return matches.sort(function(a,b){return b.length-a.length}),matches[0].nonce},WPGMZA.RestAPI.prototype.addNonce=function(route,params,context){function setRESTNonce(xhr){context==WPGMZA.RestAPI.CONTEXT_REST&&self.shouldAddNonce(route)&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&¶ms.method&&!params.method.match(/^GET$/i)&&xhr.setRequestHeader("X-WPGMZA-Action-Nonce",self.getNonce(route))}var self=this;if(params.beforeSend){var base=params.beforeSend;params.beforeSend=function(xhr){base(xhr),setRESTNonce(xhr)}}else params.beforeSend=setRESTNonce},WPGMZA.RestAPI.prototype.shouldAddNonce=function(route){route=route.replace(/\//g,"");var isAdmin=!1;WPGMZA.is_admin&&1===parseInt(WPGMZA.is_admin)&&(isAdmin=!0);return!(route&&["markers","features","marker-listing","datatables"].includes(route)&&!isAdmin)},WPGMZA.RestAPI.prototype.call=function(route,params){if(this.useAJAXFallback)return sendAJAXFallbackRequest(route,params);var attemptedCompressedPathVariable=!1,fallbackRoute=route,fallbackParams=$.extend({},params);if("string"!=typeof route||!route.match(/^\//)&&!route.match(/^http/))throw new Error("Invalid route");if(WPGMZA.RestAPI.URL.match(/\/$/)&&(route=route.replace(/^\//,"")),params=params||{},this.addNonce(route,params,WPGMZA.RestAPI.CONTEXT_REST),params.error||(params.error=function(xhr,status,message){if("abort"!=status){switch(xhr.status){case 401:case 403:case 405:return($.post(WPGMZA.ajaxurl,{action:"wpgmza_report_rest_api_blocked"},function(response){}),console.warn("The REST API was blocked. This is usually due to security plugins blocking REST requests for non-authenticated users."),"DELETE"===params.method)?(console.warn("The REST API rejected a DELETE request, attempting again with POST fallback"),params.method="POST",params.data||(params.data={}),params.data.simulateDelete="yes",WPGMZA.restAPI.call(route,params)):(this.useAJAXFallback=!0,sendAJAXFallbackRequest(fallbackRoute,fallbackParams));case 414:if(!attemptedCompressedPathVariable)break;return fallbackParams.method="POST",fallbackParams.useCompressedPathVariable=!1,WPGMZA.restAPI.call(fallbackRoute,fallbackParams)}throw new Error(message)}}),params.useCompressedPathVariable&&this.isCompressedPathVariableSupported&&this.isCompressedPathVariableAllowed){var compressedParams=$.extend({},params),data=params.data,base64=this.compressParams(data);WPGMZA.isServerIIS&&(base64=base64.replace(/\+/g,"%20"));var compressedRoute=route.replace(/\/$/,"")+"/base64"+base64;WPGMZA.RestAPI.URL;compressedParams.method="GET",delete compressedParams.data,!1===params.cache&&(compressedParams.data={skip_cache:1}),compressedRoute.length<this.maxURLLength?(attemptedCompressedPathVariable=!0,route=compressedRoute,params=compressedParams):(WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed||console.warn("Compressed path variable route would exceed URL length limit"),WPGMZA.RestAPI.compressedPathVariableURLLimitWarningDisplayed=!0)}var onSuccess=null;return params.success&&(onSuccess=params.success),params.success=function(result,status,xhr){if("object"!=typeof result){var rawResult=result;try{result=JSON.parse(result)}catch(parseExc){result=rawResult}}onSuccess&&"function"==typeof onSuccess&&onSuccess(result,status,xhr)},WPGMZA.RestAPI.URL.match(/\?/)&&(route=route.replace(/\?/,"&")),$.ajax(WPGMZA.RestAPI.URL+route,params)};var nativeCallFunction=WPGMZA.RestAPI.call;WPGMZA.RestAPI.call=function(){console.warn("WPGMZA.RestAPI.call was called statically, did you mean to call the function on WPGMZA.restAPI?"),nativeCallFunction.apply(this,arguments)},$(document.body).on("click","#wpgmza-rest-api-blocked button.notice-dismiss",function(event){WPGMZA.restAPI.call("/rest-api/",{method:"POST",data:{dismiss_blocked_notice:!0}})})});var $_GET={};if(-1!==document.location.toString().indexOf("?"))for(var query=document.location.toString().replace(/^.*?\?/,"").replace(/#.*$/,"").split("&"),wpgmza_i=0,wpgmza_l=query.length;wpgmza_i<wpgmza_l;wpgmza_i++){var aux=decodeURIComponent(query[wpgmza_i]).split("=");$_GET[aux[0]]=aux[1]}jQuery(function($){WPGMZA.SettingsPage=function(){var self=this;this._keypressHistory=[],this.updateEngineSpecificControls(),this.updateStorageControls(),this.updateGDPRControls(),$(window).on("keypress",function(event){self.onKeyPress(event)}),jQuery("body").on("click",".wpgmza_destroy_data",function(e){e.preventDefault();var ttype=jQuery(this).attr("danger"),warning="Are you sure?";"wpgmza_destroy_all_data"==ttype&&(warning="Are you sure? This will delete ALL data and settings for WP Google Maps!"),window.confirm(warning)&&jQuery.ajax(WPGMZA.ajaxurl,{method:"POST",data:{action:"wpgmza_maps_settings_danger_zone_delete_data",type:ttype,nonce:wpgmza_dz_nonce},success:function(response,status,xhr){"wpgmza_destroy_all_data"==ttype?window.location.replace("admin.php?page=wp-google-maps-menu&action=welcome_page"):"wpgmza_reset_all_settings"==ttype?window.location.reload():alert("Complete.")}})}),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$('[name="wpgmza_settings_marker_pull"]').on("click",function(event){self.updateStorageControls()}),$("input[name='wpgmza_gdpr_require_consent_before_load'], input[name='wpgmza_gdpr_require_consent_before_vgm_submit'], input[name='wpgmza_gdpr_override_notice']").on("change",function(event){self.updateGDPRControls()}),$('select[name="tile_server_url"]').on("change",function(event){"custom_override"===$('select[name="tile_server_url"]').val()?$(".wpgmza_tile_server_override_component").removeClass("wpgmza-hidden"):$(".wpgmza_tile_server_override_component").addClass("wpgmza-hidden")}),$('select[name="tile_server_url"]').trigger("change"),jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.settingsPage.flushGeocodeCache()}),$("#wpgmza-global-settings").tabs({create:function(event,ui){if(void 0!==$_GET.highlight){var elmnt=document.getElementById($_GET.highlight);elmnt.classList.add("highlight-item"),setTimeout(function(){elmnt.classList.add("highlight-item-step-2")},1e3);var y=elmnt.getBoundingClientRect().top+window.pageYOffset+-100;window.scrollTo({top:y,behavior:"smooth"})}}}),$("#wpgmza-global-setting").bind("create",function(event,ui){alert("now")}),$("#wpgmza-global-settings fieldset").each(function(index,el){$(el).children(":not(legend)").wrapAll("<span class='settings-group'></span>")})},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},WPGMZA.SettingsPage.prototype.updateEngineSpecificControls=function(){var engine=$("select[name='wpgmza_maps_engine']").val();$("[data-required-maps-engine][data-required-maps-engine!='"+engine+"']").hide(),$("[data-required-maps-engine='"+engine+"']").show()},WPGMZA.SettingsPage.prototype.updateStorageControls=function(){$("input[name='wpgmza_settings_marker_pull'][value='1']").is(":checked")?$("#xml-cache-settings").show():$("#xml-cache-settings").hide()},WPGMZA.SettingsPage.prototype.updateGDPRControls=function(){var showNoticeControls=$("input[name='wpgmza_gdpr_require_consent_before_load']").prop("checked"),vgmCheckbox=$("input[name='wpgmza_gdpr_require_consent_before_vgm_submit']");vgmCheckbox.length&&(showNoticeControls=showNoticeControls||vgmCheckbox.prop("checked"));var showOverrideTextarea=showNoticeControls&&$("input[name='wpgmza_gdpr_override_notice']").prop("checked");showNoticeControls?$("#wpgmza-gdpr-compliance-notice").show("slow"):$("#wpgmza-gdpr-compliance-notice").hide("slow"),showOverrideTextarea?$("#wpgmza_gdpr_override_notice_text").show("slow"):$("#wpgmza_gdpr_override_notice_text").hide("slow")},WPGMZA.SettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},WPGMZA.SettingsPage.prototype.onKeyPress=function(event){this._keypressHistory.push(event.key),9<this._keypressHistory.length&&(this._keypressHistory=this._keypressHistory.slice(this._keypressHistory.length-9)),"codecabin"!=this._keypressHistory.join("")||this._developerModeRevealed||($("fieldset#wpgmza-developer-mode").show(),this._developerModeRevealed=!0)},$(document).ready(function(event){WPGMZA.getCurrentPage()&&(WPGMZA.settingsPage=WPGMZA.SettingsPage.createInstance())})}),jQuery(function($){WPGMZA.StoreLocator=function(map,element){var self=this;WPGMZA.EventDispatcher.call(this),this._center=null,this.map=map,this.element=element,this.state=WPGMZA.StoreLocator.STATE_INITIAL,this.distanceUnits=this.map.settings.store_locator_distance,this.addressInput=WPGMZA.AddressInput.createInstance(this.addressElement,this.map),$(element).find(".wpgmza-not-found-msg").hide(),this.radiusElement&&this.map.settings.wpgmza_store_locator_default_radius&&0<this.radiusElement.find("option[value='"+this.map.settings.wpgmza_store_locator_default_radius+"']").length&&this.radiusElement.val(this.map.settings.wpgmza_store_locator_default_radius),this.map.on("storelocatorgeocodecomplete",function(event){self.onGeocodeComplete(event)}),this.map.on("init",function(event){self.map.markerFilter.on("filteringcomplete",function(event){self.onFilteringComplete(event)}),void 0!==self.map.settings.store_locator_style&&"modern"!=self.map.settings.store_locator_style&&"modern"!==WPGMZA.settings.user_interface_style||"default"!==WPGMZA.settings.user_interface_style&&"modern"!=WPGMZA.settings.user_interface_style&&"legacy"!=WPGMZA.settings.user_interface_style||(self.legacyModernAdapter=WPGMZA.ModernStoreLocator.createInstance(map.id))}),$(document.body).on("click",".wpgmza_sl_search_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_search_button",function(event){self.onSearch(event)}),$(document.body).on("click",".wpgmza_sl_reset_button_"+map.id+", [data-map-id='"+map.id+"'] .wpgmza_sl_reset_button_div",function(event){self.onReset(event)}),$(this.addressElement).on("keypress",function(event){13==event.which&&self.onSearch(event)})},WPGMZA.StoreLocator.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.StoreLocator.prototype.constructor=WPGMZA.StoreLocator,WPGMZA.StoreLocator.STATE_INITIAL="initial",WPGMZA.StoreLocator.STATE_APPLIED="applied",WPGMZA.StoreLocator.createInstance=function(map,element){return new WPGMZA.StoreLocator(map,element)},Object.defineProperty(WPGMZA.StoreLocator.prototype,"address",{get:function(){return $(this.addressElement).val()}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"addressElement",{get:function(){return this.legacyModernAdapter?$(this.legacyModernAdapter.element).find("input.wpgmza-address")[0]:$(this.element).find("input.wpgmza-address")[0]}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"countryRestriction",{get:function(){return this.map.settings.wpgmza_store_locator_restrict}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radiusElement",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id)}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return parseFloat(this.radiusElement.val())}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"center",{get:function(){return this._center}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"bounds",{get:function(){return this._bounds}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"marker",{get:function(){if(1!=this.map.settings.store_locator_bounce)return null;if(this._marker)return this._marker;return this._marker=WPGMZA.Marker.createInstance({visible:!1}),this._marker.disableInfoWindow=!0,this._marker.isFilterable=!1,this._marker.setAnimation(WPGMZA.Marker.ANIMATION_BOUNCE),this._marker}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"circle",{get:function(){return this._circle||("modern"!=this.map.settings.wpgmza_store_locator_radius_style||WPGMZA.isDeviceiOS()?this._circle=WPGMZA.Circle.createInstance({strokeColor:"#ff0000",strokeOpacity:"0.25",strokeWeight:2,fillColor:"#ff0000",fillOpacity:"0.15",visible:!1,clickable:!1,center:new WPGMZA.LatLng}):(this._circle=WPGMZA.ModernStoreLocatorCircle.createInstance(this.map.id),this._circle.settings.color=this.circleStrokeColor)),this._circle}}),WPGMZA.StoreLocator.prototype.onGeocodeComplete=function(event){if(!event.results||!event.results.length)return this._center=null,void(this._bounds=null);this._center=new WPGMZA.LatLng(event.results[0].latLng),this._bounds=new WPGMZA.LatLngBounds(event.results[0].bounds),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.onSearch=function(event){var self=this;if(this.state=WPGMZA.StoreLocator.STATE_APPLIED,!this.address||!this.address.length)return this.addressElement.focus(),!1;function callback(results,status){self.map.trigger({type:"storelocatorgeocodecomplete",results:results,status:status})}if(void 0!==this.map.settings.store_locator_style&&"modern"!==this.map.settings.store_locator_style&&"modern"!==WPGMZA.settings.user_interface_style&&"default"===WPGMZA.settings.user_interface_style&&WPGMZA.animateScroll(this.map.element),$(this.element).find(".wpgmza-not-found-msg").hide(),WPGMZA.LatLng.isLatLngString(this.address))callback([WPGMZA.LatLng.fromString(this.address)],WPGMZA.Geocoder.SUCCESS);else{var geocoder=WPGMZA.Geocoder.createInstance(),options={address:this.address};this.countryRestriction&&(options.country=this.countryRestriction),geocoder.geocode(options,function(results,status){status==WPGMZA.Geocoder.SUCCESS?callback(results,status):alert(WPGMZA.localized_strings.address_not_found)})}return!0},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.setZoom(this.map.settings.map_start_zoom),$(this.element).find(".wpgmza-not-found-msg").hide(),this.circle&&this.circle.setVisible(!1),this.marker&&this.marker.map&&this.map.removeMarker(this.marker),this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.getZoomFromRadius=function(radius){return this.distanceUnits==WPGMZA.Distance.MILES&&(radius*=WPGMZA.Distance.KILOMETERS_PER_MILE),Math.round(14-Math.log(radius)/Math.LN2)},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&(this.map.setCenter(params.center),marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker))),params.radius&&this.map.setZoom(this.getZoomFromRadius(params.radius));var circle=this.circle;if(circle){circle.setVisible(!1);var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;params.center&¶ms.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle instanceof WPGMZA.ModernStoreLocatorCircle||circle.map==this.map||this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}0==event.filteredMarkers.length&&this.state===WPGMZA.StoreLocator.STATE_APPLIED&&(0<$(this.element).find(".wpgmza-no-results").length&&"legacy"===WPGMZA.settings.user_interface_style?$(this.element).find(".wpgmza-no-results").show():alert(this.map.settings.store_locator_not_found_message?this.map.settings.store_locator_not_found_message:WPGMZA.localized_strings.zero_results))}}),jQuery(function($){WPGMZA.Text=function(options){if(options)for(var name in options)this[name]=options[name]},WPGMZA.Text.createInstance=function(options){switch(WPGMZA.settings.engine){case"open-layers":return new WPGMZA.OLText(options);default:return new WPGMZA.GoogleText(options)}}}),jQuery(function($){WPGMZA.ThemeEditor=function(){WPGMZA.EventDispatcher.call(this),this.element=$("#wpgmza-theme-editor"),"open-layers"!=WPGMZA.settings.engine?this.element.length?(this.json=[{}],this.mapElement=WPGMZA.maps[0].element,this.element.appendTo("#wpgmza-map-theme-editor__holder"),$(window).on("scroll",function(event){}),setInterval(function(){},200),this.initHTML(),WPGMZA.themeEditor=this):console.warn("No element to initialise theme editor on"):this.element.remove()},WPGMZA.extend(WPGMZA.ThemeEditor,WPGMZA.EventDispatcher),WPGMZA.ThemeEditor.prototype.updatePosition=function(){},WPGMZA.ThemeEditor.features={all:[],administrative:["country","land_parcel","locality","neighborhood","province"],landscape:["man_made","natural","natural.landcover","natural.terrain"],poi:["attraction","business","government","medical","park","place_of_worship","school","sports_complex"],road:["arterial","highway","highway.controlled_access","local"],transit:["line","station","station.airport","station.bus","station.rail"],water:[]},WPGMZA.ThemeEditor.elements={all:[],geometry:["fill","stroke"],labels:["icon","text","text.fill","text.stroke"]},WPGMZA.ThemeEditor.prototype.parse=function(){$("#wpgmza_theme_editor_feature option, #wpgmza_theme_editor_element option").css("font-weight","normal"),$("#wpgmza_theme_editor_error").hide(),$("#wpgmza_theme_editor").show(),$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val("");var textarea=$('textarea[name="wpgmza_theme_data"]');if(!textarea.val()||textarea.val().length<1)this.json=[{}];else{try{this.json=$.parseJSON($('textarea[name="wpgmza_theme_data"]').val())}catch(e){return this.json=[{}],$("#wpgmza_theme_editor").hide(),void $("#wpgmza_theme_editor_error").show()}if(!$.isArray(this.json)){var jsonCopy=this.json;this.json=[],this.json.push(jsonCopy)}this.highlightFeatures(),this.highlightElements(),this.loadElementStylers()}},WPGMZA.ThemeEditor.prototype.highlightFeatures=function(){$("#wpgmza_theme_editor_feature option").css("font-weight","normal"),$.each(this.json,function(i,v){v.hasOwnProperty("featureType")?$('#wpgmza_theme_editor_feature option[value="'+v.featureType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_feature option[value="all"]').css("font-weight","bold")})},WPGMZA.ThemeEditor.prototype.highlightElements=function(){var feature=$("#wpgmza_theme_editor_feature").val();$("#wpgmza_theme_editor_element option").css("font-weight","normal"),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")?$('#wpgmza_theme_editor_element option[value="'+v.elementType+'"]').css("font-weight","bold"):$('#wpgmza_theme_editor_element option[value="all"]').css("font-weight","bold"))})},WPGMZA.ThemeEditor.prototype.loadElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val();$("#wpgmza_theme_editor_do_hue").prop("checked",!1),$("#wpgmza_theme_editor_hue").val("#000000"),$("#wpgmza_theme_editor_lightness").val(""),$("#wpgmza_theme_editor_saturation").val(""),$("#wpgmza_theme_editor_gamma").val(""),$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!1),$("#wpgmza_theme_editor_visibility").val("inherit"),$("#wpgmza_theme_editor_do_color").prop("checked",!1),$("#wpgmza_theme_editor_color").val("#000000"),$("#wpgmza_theme_editor_weight").val(""),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&v.hasOwnProperty("stylers")&&$.isArray(v.stylers)&&0<v.stylers.length&&$.each(v.stylers,function(ii,vv){vv.hasOwnProperty("hue")&&($("#wpgmza_theme_editor_do_hue").prop("checked",!0),$("#wpgmza_theme_editor_hue").val(vv.hue)),vv.hasOwnProperty("lightness")&&$("#wpgmza_theme_editor_lightness").val(vv.lightness),vv.hasOwnProperty("saturation")&&$("#wpgmza_theme_editor_saturation").val(vv.xaturation),vv.hasOwnProperty("gamma")&&$("#wpgmza_theme_editor_gamma").val(vv.gamma),vv.hasOwnProperty("invert_lightness")&&$("#wpgmza_theme_editor_do_invert_lightness").prop("checked",!0),vv.hasOwnProperty("visibility")&&$("#wpgmza_theme_editor_visibility").val(vv.visibility),vv.hasOwnProperty("color")&&($("#wpgmza_theme_editor_do_color").prop("checked",!0),$("#wpgmza_theme_editor_color").val(vv.color)),vv.hasOwnProperty("weight")&&$("#wpgmza_theme_editor_weight").val(vv.weight)})})},WPGMZA.ThemeEditor.prototype.writeElementStylers=function(){var feature=$("#wpgmza_theme_editor_feature").val(),element=$("#wpgmza_theme_editor_element").val(),indexJSON=null,stylers=[];if("inherit"!=$("#wpgmza_theme_editor_visibility").val()&&stylers.push({visibility:$("#wpgmza_theme_editor_visibility").val()}),!0===$("#wpgmza_theme_editor_do_color").prop("checked")&&stylers.push({color:$("#wpgmza_theme_editor_color").val()}),!0===$("#wpgmza_theme_editor_do_hue").prop("checked")&&stylers.push({hue:$("#wpgmza_theme_editor_hue").val()}),0<$("#wpgmza_theme_editor_gamma").val().length&&stylers.push({gamma:parseFloat($("#wpgmza_theme_editor_gamma").val())}),0<$("#wpgmza_theme_editor_weight").val().length&&stylers.push({weight:parseFloat($("#wpgmza_theme_editor_weight").val())}),0<$("#wpgmza_theme_editor_saturation").val().length&&stylers.push({saturation:parseFloat($("#wpgmza_theme_editor_saturation").val())}),0<$("#wpgmza_theme_editor_lightness").val().length&&stylers.push({lightness:parseFloat($("#wpgmza_theme_editor_lightness").val())}),!0===$("#wpgmza_theme_editor_do_invert_lightness").prop("checked")&&stylers.push({invert_lightness:!0}),$.each(this.json,function(i,v){(v.hasOwnProperty("featureType")&&v.featureType==feature||"all"==feature&&!v.hasOwnProperty("featureType"))&&(v.hasOwnProperty("elementType")&&v.elementType==element||"all"==element&&!v.hasOwnProperty("elementType"))&&(indexJSON=i)}),null===indexJSON){if(0<stylers.length){var new_feature_element_stylers={};"all"!=feature&&(new_feature_element_stylers.featureType=feature),"all"!=element&&(new_feature_element_stylers.elementType=element),new_feature_element_stylers.stylers=stylers,this.json.push(new_feature_element_stylers)}}else 0<stylers.length?this.json[indexJSON].stylers=stylers:this.json.splice(indexJSON,1);$('textarea[name="wpgmza_theme_data"]').val(JSON.stringify(this.json).replace(/:/g,": ").replace(/,/g,", ")),this.highlightFeatures(),this.highlightElements(),WPGMZA.themePanel.updateMapTheme()},WPGMZA.ThemeEditor.prototype.initHTML=function(){var self=this;$.each(WPGMZA.ThemeEditor.features,function(i,v){$("#wpgmza_theme_editor_feature").append('<option value="'+i+'">'+i+"</option>"),0<v.length&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_feature").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),$.each(WPGMZA.ThemeEditor.elements,function(i,v){$("#wpgmza_theme_editor_element").append('<option value="'+i+'">'+i+"</option>"),0<v.length&&$.each(v,function(ii,vv){$("#wpgmza_theme_editor_element").append('<option value="'+i+"."+vv+'">'+i+"."+vv+"</option>")})}),this.parse(),$('textarea[name="wpgmza_theme_data"]').on("input selectionchange propertychange",function(){self.parse()}),$(".wpgmza_theme_selection").click(function(){setTimeout(function(){$('textarea[name="wpgmza_theme_data"]').trigger("input")},1e3)}),$("#wpgmza-theme-editor__toggle").click(function(){$("#wpgmza-theme-editor").removeClass("active")}),$("#wpgmza_theme_editor_feature").on("change",function(){self.highlightElements(),self.loadElementStylers()}),$("#wpgmza_theme_editor_element").on("change",function(){self.loadElementStylers()}),$("#wpgmza_theme_editor_do_hue, #wpgmza_theme_editor_hue, #wpgmza_theme_editor_lightness, #wpgmza_theme_editor_saturation, #wpgmza_theme_editor_gamma, #wpgmza_theme_editor_do_invert_lightness, #wpgmza_theme_editor_visibility, #wpgmza_theme_editor_do_color, #wpgmza_theme_editor_color, #wpgmza_theme_editor_weight").on("input selectionchange propertychange",function(){self.writeElementStylers()}),"open-layers"==WPGMZA.settings.engine&&$("#wpgmza_theme_editor :input").prop("disabled",!0)}}),jQuery(function($){WPGMZA.ThemePanel=function(){var self=this;this.element=$("#wpgmza-theme-panel"),this.map=WPGMZA.maps[0],"open-layers"!=WPGMZA.settings.engine?this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:6,dots:!0}),this.element.on("click","#wpgmza-theme-presets label",function(event){self.onThemePresetClick(event)}),$("#wpgmza-open-theme-editor").on("click",function(event){$("#wpgmza-map-theme-editor__holder").addClass("active"),$("#wpgmza-theme-editor").addClass("active"),WPGMZA.animateScroll($("#wpgmza-theme-editor"))}),WPGMZA.themePanel=this):console.warn("No element to initialise theme panel on"):this.element.remove()},WPGMZA.ThemePanel.previewImageCenter={lat:33.701806462148646,lng:-118.15949896058983},WPGMZA.ThemePanel.previewImageZoom=11,WPGMZA.ThemePanel.prototype.onThemePresetClick=function(event){var selectedData=$(event.currentTarget).find("[data-theme-json]").attr("data-theme-json"),textarea=$(this.element).find("textarea[name='wpgmza_theme_data']"),existingData=textarea.val(),allPresetData=[];$(this.element).find("[data-theme-json]").each(function(index,el){allPresetData.push($(el).attr("data-theme-json"))}),existingData.length&&-1==allPresetData.indexOf(existingData)&&!confirm(WPGMZA.localized_strings.overwrite_theme_data)||(textarea.val(selectedData),this.updateMapTheme(),WPGMZA.themeEditor.parse())},WPGMZA.ThemePanel.prototype.updateMapTheme=function(){var data;try{data=JSON.parse($("textarea[name='wpgmza_theme_data']").val())}catch(e){return void alert(WPGMZA.localized_strings.invalid_theme_data)}this.map.setOptions({styles:data})}}),jQuery(function($){WPGMZA.Version=function(){},WPGMZA.Version.GREATER_THAN=1,WPGMZA.Version.EQUAL_TO=0,WPGMZA.Version.LESS_THAN=-1,WPGMZA.Version.compare=function(v1,v2){for(var v1parts=v1.match(/\d+/g),v2parts=v2.match(/\d+/g),i=0;i<v1parts.length;++i){if(v2parts.length===i)return 1;if(v1parts[i]!==v2parts[i])return v1parts[i]>v2parts[i]?1:-1}return v1parts.length!=v2parts.length?-1:0}}),jQuery(function($){WPGMZA.XMLCacheConverter=function(){},WPGMZA.XMLCacheConverter.prototype.convert=function(xml){var markers=[],remap={marker_id:"id",linkd:"link"};return $(xml).find("marker").each(function(index,el){var data={};$(el).children().each(function(j,child){var key=child.nodeName;remap[key]&&(key=remap[key]),child.hasAttribute("data-json")?data[key]=JSON.parse($(child).text()):data[key]=$(child).text()}),markers.push(data)}),markers}}),jQuery(function($){WPGMZA.loadXMLAsWebWorker=function(){function tXml(a,d){function c(){for(var l=[];a[b];){if(60==a.charCodeAt(b)){if(47===a.charCodeAt(b+1)){b=a.indexOf(">",b);break}if(33===a.charCodeAt(b+1)){if(45==a.charCodeAt(b+2)){for(;62!==a.charCodeAt(b)||45!=a.charCodeAt(b-1)||45!=a.charCodeAt(b-2)||-1==b;)b=a.indexOf(">",b+1);-1===b&&(b=a.length)}else for(b+=2;62!==a.charCodeAt(b);)b++;b++;continue}var c=f();l.push(c)}else c=b,-2===(b=a.indexOf("<",b)-1)&&(b=a.length),0<(c=a.slice(c,b+1)).trim().length&&l.push(c);b++}return l}function l(){for(var c=b;-1===g.indexOf(a[b]);)b++;return a.slice(c,b)}function f(){var d={};b++,d.tagName=l();for(var f=!1;62!==a.charCodeAt(b);){if(64<(e=a.charCodeAt(b))&&e<91||96<e&&e<123){for(var g=l(),e=a.charCodeAt(b);39!==e&&34!==e&&!(64<e&&e<91||96<e&&e<123)&&62!==e;)b++,e=a.charCodeAt(b);if(f||(d.attributes={},f=!0),39===e||34===e){e=a[b];var h=++b;b=a.indexOf(e,h),e=a.slice(h,b)}else e=null,b--;d.attributes[g]=e}b++}return 47!==a.charCodeAt(b-1)&&("script"==d.tagName?(f=b+1,b=a.indexOf("<\/script>",b),d.children=[a.slice(f,b-1)],b+=8):"style"==d.tagName?(f=b+1,b=a.indexOf("</style>",b),d.children=[a.slice(f,b-1)],b+=7):-1==k.indexOf(d.tagName)&&(b++,d.children=c())),d}var g="\n\t>/= ",k=["img","br","input","meta","link"],h=null;if((d=d||{}).searchId){var b=new RegExp("s*ids*=s*['\"]"+d.searchId+"['\"]").exec(a).index;return-1!==b&&(-1!==(b=a.lastIndexOf("<",b))&&(h=f())),b}return b=0,h=c(),d.filter&&(h=tXml.filter(h,d.filter)),d.simplify&&(h=tXml.simplefy(h)),h}tXml.simplify=function(a){var d={};if(1===a.length&&"string"==typeof a[0])return a[0];for(var c in a.forEach(function(a){if(d[a.tagName]||(d[a.tagName]=[]),"object"==typeof a){var c=tXml.simplefy(a.children);d[a.tagName].push(c),a.attributes&&(c._attributes=a.attributes)}else d[a.tagName].push(a)}),d)1==d[c].length&&(d[c]=d[c][0]);return d},tXml.filter=function(a,d){var c=[];return a.forEach(function(a){"object"==typeof a&&d(a)&&c.push(a),a.children&&(a=tXml.filter(a.children,d),c=c.concat(a))}),c},tXml.domToXml=function(a){var c="";return function d(a){if(a)for(var f=0;f<a.length;f++)if("string"==typeof a[f])c+=a[f].trim();else{var g=a[f];c+="<"+g.tagName;var k=void 0;for(k in g.attributes)c=-1===g.attributes[k].indexOf('"')?c+(" "+k+'="'+g.attributes[k].trim())+'"':c+(" "+k+"='"+g.attributes[k].trim())+"'";c+=">",d(g.children),c+="</"+g.tagName+">"}}(O),c},"object"!=typeof window&&(module.exports=tXml);var inputData,totalFiles,worker=self,dataForMainThread=[],filesLoaded=0;function onXMLLoaded(request){if(4==request.readyState&&200==request.status){(new Date).getTime();!function(xml){for(var markers=xml[0].children[0],remap={marker_id:"id",linkd:"link"},i=0;i<markers.children.length;i++){var data={};markers.children[i].children.forEach(function(node){var key=node.tagName;remap[key]&&(key=remap[key]),node.attributes["data-json"]?data[key]=JSON.parse(node.children[0]):node.children.length?data[key]=node.children[0]:data[key]=""}),dataForMainThread.push(data)}}(tXml(request.responseText)),++filesLoaded>=totalFiles?worker.postMessage(dataForMainThread):loadNextFile()}}function loadNextFile(){var url=inputData.urls[filesLoaded],request=new XMLHttpRequest;request.onreadystatechange=function(){onXMLLoaded(this)},request.open("GET",inputData.protocol+url,!0),request.send()}self.addEventListener("message",function(event){var data=event.data;switch(data.command){case"load":dataForMainThread=[],filesLoaded=0,totalFiles=(inputData=data).urls.length,loadNextFile();break;default:throw new Error("Unknown command")}},!1)}}),jQuery(function($){WPGMZA.Integration={},WPGMZA.integrationModules={}}),jQuery(function($){if(window.wp&&wp.i18n&&wp.blocks&&wp.editor&&wp.components){var __=wp.i18n.__,registerBlockType=wp.blocks.registerBlockType,_wp$editor=wp.editor,InspectorControls=_wp$editor.InspectorControls,_wp$components=(_wp$editor.BlockControls,wp.components),Dashicon=_wp$components.Dashicon,PanelBody=(_wp$components.Toolbar,_wp$components.Button,_wp$components.Tooltip,_wp$components.PanelBody);_wp$components.TextareaControl,_wp$components.CheckboxControl,_wp$components.TextControl,_wp$components.SelectControl,_wp$components.RichText;WPGMZA.Integration.Gutenberg=function(){registerBlockType("gutenberg-wpgmza/block",this.getBlockDefinition())},WPGMZA.Integration.Gutenberg.prototype.getBlockTitle=function(){return __("WP Google Maps")},WPGMZA.Integration.Gutenberg.prototype.getBlockInspectorControls=function(props){return React.createElement(InspectorControls,{key:"inspector"},React.createElement(PanelBody,{title:__("Map Settings")},React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:WPGMZA.adminurl+"admin.php?page=wp-google-maps-menu&action=edit&map_id=1",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-pencil-square-o","aria-hidden":"true"}),__("Go to Map Editor"))),React.createElement("p",{class:"map-block-gutenberg-button-container"},React.createElement("a",{href:"https://www.wpgmaps.com/documentation/creating-your-first-map/",target:"_blank",class:"button button-primary"},React.createElement("i",{class:"fa fa-book","aria-hidden":"true"}),__("View Documentation")))))},WPGMZA.Integration.Gutenberg.prototype.getBlockAttributes=function(){return{}},WPGMZA.Integration.Gutenberg.prototype.getBlockDefinition=function(props){var _this=this;return{title:__("WP Google Maps"),description:__("The easiest to use Google Maps plugin! Create custom Google Maps with high quality markers containing locations, descriptions, images and links. Add your customized map to your WordPress posts and/or pages quickly and easily with the supplied shortcode. No fuss."),category:"common",icon:"location-alt",keywords:[__("Map"),__("Maps"),__("Google")],attributes:this.getBlockAttributes(),edit:function(props){return[!!props.isSelected&&_this.getBlockInspectorControls(props),React.createElement("div",{className:props.className+" wpgmza-gutenberg-block"},React.createElement(Dashicon,{icon:"location-alt"}),React.createElement("span",{class:"wpgmza-gutenberg-block-title"},__("Your map will appear here on your websites front end")))]},save:function(){return null}}},WPGMZA.Integration.Gutenberg.getConstructor=function(){return WPGMZA.Integration.Gutenberg},WPGMZA.Integration.Gutenberg.createInstance=function(){return new(WPGMZA.Integration.Gutenberg.getConstructor())},WPGMZA.isProVersion()||/^6/.test(WPGMZA.pro_version)||(WPGMZA.integrationModules.gutenberg=WPGMZA.Integration.Gutenberg.createInstance())}}),jQuery(function($){$(document).ready(function(event){var parent=document.body.onclick;parent&&(document.body.onclick=function(event){event.target instanceof WPGMZA.Marker||parent(event)})})}),jQuery(function($){WPGMZA.GoogleUICompatibility=function(){if(!(navigator.vendor&&-1<navigator.vendor.indexOf("Apple")&&navigator.userAgent&&-1==navigator.userAgent.indexOf("CriOS")&&-1==navigator.userAgent.indexOf("FxiOS"))){var style=$("<style id='wpgmza-google-ui-compatiblity-fix'/>");style.html(".wpgmza_map img:not(button img) { padding:0 !important; }"),$(document.head).append(style)}},WPGMZA.googleUICompatibility=new WPGMZA.GoogleUICompatibility}),jQuery(function($){WPGMZA.GoogleCircle=function(options,googleCircle){var self=this;WPGMZA.Circle.call(this,options,googleCircle),googleCircle?(this.googleCircle=googleCircle,options&&(options.center=WPGMZA.LatLng.fromGoogleLatLng(googleCircle.getCenter()),options.radius=googleCircle.getRadius()/1e3)):(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),this.googleFeature=this.googleCircle,options&&this.setOptions(options),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.getCenter=function(){return WPGMZA.LatLng.fromGoogleLatLng(this.googleCircle.getCenter())},WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},WPGMZA.GoogleCircle.prototype.getRadius=function(){return this.googleCircle.getRadius()/1e3},WPGMZA.GoogleCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.googleCircle.setRadius(1e3*parseFloat(radius))},WPGMZA.GoogleCircle.prototype.setVisible=function(visible){this.googleCircle.setVisible(!!visible)},WPGMZA.GoogleCircle.prototype.setDraggable=function(value){this.googleCircle.setDraggable(!!value)},WPGMZA.GoogleCircle.prototype.setEditable=function(value){var self=this;this.googleCircle.setOptions({editable:value}),value&&(google.maps.event.addListener(this.googleCircle,"center_changed",function(event){self.center=WPGMZA.LatLng.fromGoogleLatLng(self.googleCircle.getCenter()),self.trigger("change")}),google.maps.event.addListener(this.googleCircle,"radius_changed",function(event){self.radius=self.googleCircle.getRadius()/1e3,self.trigger("change")}))},WPGMZA.GoogleCircle.prototype.setOptions=function(options){WPGMZA.Circle.prototype.setOptions.apply(this,arguments),options.center&&(this.center=new WPGMZA.LatLng(options.center))},WPGMZA.GoogleCircle.prototype.updateNativeFeature=function(){var googleOptions=this.getScalarProperties(),center=new WPGMZA.LatLng(this.center);googleOptions.radius*=1e3,googleOptions.center=center.toGoogleLatLng(),this.googleCircle.setOptions(googleOptions)}}),jQuery(function($){WPGMZA.GoogleDrawingManager=function(map){var self=this;WPGMZA.DrawingManager.call(this,map),this.mode=null,this.googleDrawingManager=new google.maps.drawing.DrawingManager({drawingControl:!1,polygonOptions:{editable:!0},polylineOptions:{editable:!0},circleOptions:{editable:!0},rectangleOptions:{editable:!0}}),this.googleDrawingManager.setMap(map.googleMap),google.maps.event.addListener(this.googleDrawingManager,"polygoncomplete",function(polygon){self.onPolygonClosed(polygon)}),google.maps.event.addListener(this.googleDrawingManager,"polylinecomplete",function(polyline){self.onPolylineComplete(polyline)}),google.maps.event.addListener(this.googleDrawingManager,"circlecomplete",function(circle){self.onCircleComplete(circle)}),google.maps.event.addListener(this.googleDrawingManager,"rectanglecomplete",function(rectangle){self.onRectangleComplete(rectangle)})},WPGMZA.GoogleDrawingManager.prototype=Object.create(WPGMZA.DrawingManager.prototype),WPGMZA.GoogleDrawingManager.prototype.constructor=WPGMZA.GoogleDrawingManager,WPGMZA.GoogleDrawingManager.prototype.setDrawingMode=function(mode){var googleMode;switch(WPGMZA.DrawingManager.prototype.setDrawingMode.call(this,mode),mode){case WPGMZA.DrawingManager.MODE_NONE:case WPGMZA.DrawingManager.MODE_MARKER:googleMode=null;break;case WPGMZA.DrawingManager.MODE_POLYGON:googleMode=google.maps.drawing.OverlayType.POLYGON;break;case WPGMZA.DrawingManager.MODE_POLYLINE:googleMode=google.maps.drawing.OverlayType.POLYLINE;break;case WPGMZA.DrawingManager.MODE_CIRCLE:googleMode=google.maps.drawing.OverlayType.CIRCLE;break;case WPGMZA.DrawingManager.MODE_RECTANGLE:googleMode=google.maps.drawing.OverlayType.RECTANGLE;break;case WPGMZA.DrawingManager.MODE_HEATMAP:googleMode=null;break;default:throw new Error("Invalid drawing mode")}this.googleDrawingManager.setDrawingMode(googleMode)},WPGMZA.GoogleDrawingManager.prototype.setOptions=function(options){this.googleDrawingManager.setOptions({polygonOptions:options,polylineOptions:options})},WPGMZA.GoogleDrawingManager.prototype.onVertexClicked=function(event){},WPGMZA.GoogleDrawingManager.prototype.onPolygonClosed=function(googlePolygon){var event=new WPGMZA.Event("polygonclosed");event.enginePolygon=googlePolygon,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onPolylineComplete=function(googlePolyline){var event=new WPGMZA.Event("polylinecomplete");event.enginePolyline=googlePolyline,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onCircleComplete=function(googleCircle){var event=new WPGMZA.Event("circlecomplete");event.engineCircle=googleCircle,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onRectangleComplete=function(googleRectangle){var event=new WPGMZA.Event("rectanglecomplete");event.engineRectangle=googleRectangle,this.dispatchEvent(event)},WPGMZA.GoogleDrawingManager.prototype.onHeatmapPointAdded=function(googleMarker){var position=WPGMZA.LatLng.fromGoogleLatLng(googleMarker.getPosition());googleMarker.setMap(null);var marker=WPGMZA.Marker.createInstance();marker.setPosition(position);var image={url:WPGMZA.imageFolderURL+"heatmap-point.png",origin:new google.maps.Point(0,0),anchor:new google.maps.Point(13,13)};marker.googleMarker.setIcon(image),this.map.addMarker(marker);var event=new WPGMZA.Event("heatmappointadded");event.position=position,this.trigger(event)}}),jQuery(function($){WPGMZA.GoogleGeocoder=function(){},WPGMZA.GoogleGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.GoogleGeocoder.prototype.constructor=WPGMZA.GoogleGeocoder,WPGMZA.GoogleGeocoder.prototype.getLatLngFromAddress=function(options,callback){if(!options||!options.address)return nativeStatus=WPGMZA.Geocoder.NO_ADDRESS,void callback(null,nativeStatus);if(options.lat&&options.lng){var latLng={lat:options.lat,lng:options.lng};callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:null}],WPGMZA.Geocoder.SUCCESS)}if(WPGMZA.isLatLngString(options.address))return WPGMZA.Geocoder.prototype.getLatLngFromAddress.call(this,options,callback);options.country&&(options.componentRestrictions={country:options.country}),(new google.maps.Geocoder).geocode(options,function(results,status){if(status==google.maps.GeocoderStatus.OK){var location=results[0].geometry.location,latLng={lat:location.lat(),lng:location.lng()},bounds=null;results[0].geometry.bounds&&(bounds=WPGMZA.LatLngBounds.fromGoogleLatLngBounds(results[0].geometry.bounds)),callback(results=[{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng,bounds:bounds}],WPGMZA.Geocoder.SUCCESS)}else{var nativeStatus=WPGMZA.Geocoder.FAIL;status==google.maps.GeocoderStatus.ZERO_RESULTS&&(nativeStatus=WPGMZA.Geocoder.ZERO_RESULTS),callback(null,nativeStatus)}})},WPGMZA.GoogleGeocoder.prototype.getAddressFromLatLng=function(options,callback){if(!options||!options.latLng)throw new Error("No latLng specified");var latLng=new WPGMZA.LatLng(options.latLng),geocoder=new google.maps.Geocoder;delete(options=$.extend(options,{location:{lat:latLng.lat,lng:latLng.lng}})).latLng,geocoder.geocode(options,function(results,status){"OK"!==status&&callback(null,WPGMZA.Geocoder.FAIL),results&&results.length||callback([],WPGMZA.Geocoder.NO_RESULTS),callback([results[0].formatted_address],WPGMZA.Geocoder.SUCCESS)})}}),jQuery(function($){WPGMZA.settings.engine&&"google-maps"!=WPGMZA.settings.engine||window.google&&window.google.maps&&(WPGMZA.GoogleHTMLOverlay=function(map){this.element=$("<div class='wpgmza-google-html-overlay'></div>"),this.visible=!0,this.position=new WPGMZA.LatLng,this.setMap(map.googleMap),this.wpgmzaMap=map},WPGMZA.GoogleHTMLOverlay.prototype=new google.maps.OverlayView,WPGMZA.GoogleHTMLOverlay.prototype.onAdd=function(){this.getPanes().overlayMouseTarget.appendChild(this.element[0])},WPGMZA.GoogleHTMLOverlay.prototype.onRemove=function(){this.element&&$(this.element).parent().length&&($(this.element).remove(),this.element=null)},WPGMZA.GoogleHTMLOverlay.prototype.draw=function(){this.updateElementPosition()},WPGMZA.GoogleHTMLOverlay.prototype.updateElementPosition=function(){var projection=this.getProjection();if(projection){var pixels=projection.fromLatLngToDivPixel(this.position.toGoogleLatLng());$(this.element).css({left:pixels.x,top:pixels.y})}})}),jQuery(function($){var Parent;WPGMZA.GoogleInfoWindow=function(feature){Parent.call(this,feature),this.setFeature(feature)},WPGMZA.GoogleInfoWindow.Z_INDEX=99,Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.GoogleInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.GoogleInfoWindow.prototype.constructor=WPGMZA.GoogleInfoWindow,WPGMZA.GoogleInfoWindow.prototype.setFeature=function(feature){(this.feature=feature)instanceof WPGMZA.Marker?this.googleObject=feature.googleMarker:feature instanceof WPGMZA.Polygon?this.googleObject=feature.googlePolygon:feature instanceof WPGMZA.Polyline&&(this.googleObject=feature.googlePolyline)},WPGMZA.GoogleInfoWindow.prototype.createGoogleInfoWindow=function(){var self=this;this.googleInfoWindow||(this.googleInfoWindow=new google.maps.InfoWindow,this.googleInfoWindow.setZIndex(WPGMZA.GoogleInfoWindow.Z_INDEX),google.maps.event.addListener(this.googleInfoWindow,"domready",function(event){self.trigger("domready")}),google.maps.event.addListener(this.googleInfoWindow,"closeclick",function(event){self.state!=WPGMZA.InfoWindow.STATE_CLOSED&&(self.state=WPGMZA.InfoWindow.STATE_CLOSED,self.feature.map.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,feature){var self=this;if(!Parent.prototype.open.call(this,map,feature))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setFeature(feature),this.googleInfoWindow.open(this.feature.map.googleMap,this.googleObject);var intervalID,guid=WPGMZA.guid(),eaBtn=WPGMZA.isProVersion()?"":this.addEditButton(),html="<div id='"+guid+"'>"+eaBtn+" "+this.content+"</div>";return this.googleInfoWindow.setContent(html),intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaFeature=self.feature,div.addClass("wpgmza-infowindow"),self.element=div[0],self.trigger("infowindowopen"))},50),!0},WPGMZA.GoogleInfoWindow.prototype.close=function(){this.googleInfoWindow&&(WPGMZA.InfoWindow.prototype.close.call(this),this.googleInfoWindow.close())},WPGMZA.GoogleInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html,this.createGoogleInfoWindow(),this.googleInfoWindow.setContent(html)},WPGMZA.GoogleInfoWindow.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.createGoogleInfoWindow(),this.googleInfoWindow.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMap=function(element,options){var self=this;Parent.call(this,element,options),this.loadGoogleMap(),options?this.setOptions(options,!0):this.setOptions({},!0),google.maps.event.addListener(this.googleMap,"click",function(event){var wpgmzaEvent=new WPGMZA.Event("click");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"rightclick",function(event){var wpgmzaEvent=new WPGMZA.Event("rightclick");wpgmzaEvent.latLng={lat:event.latLng.lat(),lng:event.latLng.lng()},self.dispatchEvent(wpgmzaEvent)}),google.maps.event.addListener(this.googleMap,"dragend",function(event){self.dispatchEvent("dragend")}),google.maps.event.addListener(this.googleMap,"zoom_changed",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged")}),google.maps.event.addListener(this.googleMap,"idle",function(event){self.onIdle(event)}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},WPGMZA.isProVersion()?(Parent=WPGMZA.ProMap,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.ProMap.prototype)):(Parent=WPGMZA.Map,WPGMZA.GoogleMap.prototype=Object.create(WPGMZA.Map.prototype)),WPGMZA.GoogleMap.prototype.constructor=WPGMZA.GoogleMap,WPGMZA.GoogleMap.parseThemeData=function(raw){var json;try{json=JSON.parse(raw)}catch(e){try{json=eval(raw)}catch(e){var str=raw;str=str.replace(/\\'/g,"'"),str=str.replace(/\\"/g,'"'),str=str.replace(/\\0/g,"\0"),str=str.replace(/\\\\/g,"\\");try{json=eval(str)}catch(e){return console.warn("Couldn't parse theme data"),[]}}}return json},WPGMZA.GoogleMap.prototype.loadGoogleMap=function(){var self=this,options=this.settings.toGoogleMapsOptions();this.googleMap=new google.maps.Map(this.engineElement,options),google.maps.event.addListener(this.googleMap,"bounds_changed",function(){self.onBoundsChanged()}),1==this.settings.bicycle&&this.enableBicycleLayer(!0),1==this.settings.traffic&&this.enableTrafficLayer(!0),this.settings.transport_layer&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.wpgmza_show_point_of_interest),$(this.engineElement).append($(this.element).find(".wpgmza-loader"))},WPGMZA.GoogleMap.prototype.setOptions=function(options,initializing){if(Parent.prototype.setOptions.call(this,options),options.scrollwheel&&delete options.scrollwheel,initializing){var converted=$.extend(options,this.settings.toGoogleMapsOptions()),clone=$.extend({},converted);if(!clone.center instanceof google.maps.LatLng&&(clone.center instanceof WPGMZA.LatLng||"object"==typeof clone.center)&&(clone.center={lat:parseFloat(clone.center.lat),lng:parseFloat(clone.center.lng)}),this.settings.hide_point_of_interest){clone.styles||(clone.styles=[]),clone.styles.push({featureType:"poi",elementType:"labels",stylers:[{visibility:"off"}]})}this.googleMap.setOptions(clone)}else this.googleMap.setOptions(options)},WPGMZA.GoogleMap.prototype.addMarker=function(marker){marker.googleMarker.setMap(this.googleMap),Parent.prototype.addMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.removeMarker=function(marker){marker.googleMarker.setMap(null),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.GoogleMap.prototype.addPolygon=function(polygon){polygon.googlePolygon.setMap(this.googleMap),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.removePolygon=function(polygon){polygon.googlePolygon.setMap(null),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.GoogleMap.prototype.addPolyline=function(polyline){polyline.googlePolyline.setMap(this.googleMap),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.removePolyline=function(polyline){polyline.googlePolyline.setMap(null),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.GoogleMap.prototype.addCircle=function(circle){circle.googleCircle.setMap(this.googleMap),Parent.prototype.addCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.removeCircle=function(circle){circle.googleCircle.setMap(null),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.GoogleMap.prototype.addRectangle=function(rectangle){rectangle.googleRectangle.setMap(this.googleMap),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.removeRectangle=function(rectangle){rectangle.googleRectangle.setMap(null),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.GoogleMap.prototype.getCenter=function(){var latLng=this.googleMap.getCenter();return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.setCenter=function(latLng){WPGMZA.Map.prototype.setCenter.call(this,latLng),latLng instanceof WPGMZA.LatLng?this.googleMap.setCenter({lat:latLng.lat,lng:latLng.lng}):this.googleMap.setCenter(latLng)},WPGMZA.GoogleMap.prototype.panTo=function(latLng){latLng instanceof WPGMZA.LatLng?this.googleMap.panTo({lat:latLng.lat,lng:latLng.lng}):this.googleMap.panTo(latLng)},WPGMZA.GoogleMap.prototype.getZoom=function(){return this.googleMap.getZoom()},WPGMZA.GoogleMap.prototype.setZoom=function(value){if(isNaN(value))throw new Error("Value must not be NaN");return this.googleMap.setZoom(parseInt(value))},WPGMZA.GoogleMap.prototype.getBounds=function(){var nativeBounds=new WPGMZA.LatLngBounds({});try{var bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest();nativeBounds.north=northEast.lat(),nativeBounds.south=southWest.lat(),nativeBounds.west=southWest.lng(),nativeBounds.east=northEast.lng(),nativeBounds.topLeft={lat:northEast.lat(),lng:southWest.lng()},nativeBounds.bottomRight={lat:southWest.lat(),lng:northEast.lng()}}catch(ex){}return nativeBounds},WPGMZA.GoogleMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var nativeBounds=new google.maps.LatLngBounds(southWest,northEast);this.googleMap.fitBounds(nativeBounds)},WPGMZA.GoogleMap.prototype.fitBoundsToVisibleMarkers=function(){for(var bounds=new google.maps.LatLngBounds,i=0;i<this.markers.length;i++)markers[i].getVisible()&&bounds.extend(markers[i].getPosition());this.googleMap.fitBounds(bounds)},WPGMZA.GoogleMap.prototype.enableBicycleLayer=function(enable){this.bicycleLayer||(this.bicycleLayer=new google.maps.BicyclingLayer),this.bicycleLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enableTrafficLayer=function(enable){this.trafficLayer||(this.trafficLayer=new google.maps.TrafficLayer),this.trafficLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.enablePublicTransportLayer=function(enable){this.publicTransportLayer||(this.publicTransportLayer=new google.maps.TransitLayer),this.publicTransportLayer.setMap(enable?this.googleMap:null)},WPGMZA.GoogleMap.prototype.showPointsOfInterest=function(show){var text=$("textarea[name='theme_data']").val();if(text){var styles=JSON.parse(text);styles.push({featureType:"poi",stylers:[{visibility:show?"on":"off"}]}),this.googleMap.setOptions({styles:styles})}},WPGMZA.GoogleMap.prototype.getMinZoom=function(){return parseInt(this.settings.min_zoom)},WPGMZA.GoogleMap.prototype.setMinZoom=function(value){this.googleMap.setOptions({minZoom:value,maxZoom:this.getMaxZoom()})},WPGMZA.GoogleMap.prototype.getMaxZoom=function(){return parseInt(this.settings.max_zoom)},WPGMZA.GoogleMap.prototype.setMaxZoom=function(value){this.googleMap.setOptions({minZoom:this.getMinZoom(),maxZoom:value})},WPGMZA.GoogleMap.prototype.latLngToPixels=function(latLng){var map=this.googleMap,nativeLatLng=new google.maps.LatLng({lat:parseFloat(latLng.lat),lng:parseFloat(latLng.lng)}),topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=map.getProjection().fromLatLngToPoint(nativeLatLng);return{x:(worldPoint.x-bottomLeft.x)*scale,y:(worldPoint.y-topRight.y)*scale}},WPGMZA.GoogleMap.prototype.pixelsToLatLng=function(x,y){null==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var map=this.googleMap,topRight=map.getProjection().fromLatLngToPoint(map.getBounds().getNorthEast()),bottomLeft=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest()),scale=Math.pow(2,map.getZoom()),worldPoint=new google.maps.Point(x/scale+bottomLeft.x,y/scale+topRight.y),latLng=map.getProjection().fromPointToLatLng(worldPoint);return{lat:latLng.lat(),lng:latLng.lng()}},WPGMZA.GoogleMap.prototype.onElementResized=function(event){this.googleMap&&google.maps.event.trigger(this.googleMap,"resize")},WPGMZA.GoogleMap.prototype.enableAllInteractions=function(){var options={scrollwheel:!0,draggable:!0,disableDoubleClickZoom:!1};this.googleMap.setOptions(options)}}),jQuery(function($){var Parent;WPGMZA.GoogleMarker=function(options){var self=this;Parent.call(this,options);var settings={};if(options)for(var name in options)options[name]instanceof WPGMZA.LatLng?settings[name]=options[name].toGoogleLatLng():options[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=options[name]);this.googleMarker=new google.maps.Marker(settings),(this.googleMarker.wpgmzaMarker=this).googleFeature=this.googleMarker,this.googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.anim&&this.googleMarker.setAnimation(this.anim),this.animation&&this.googleMarker.setAnimation(this.animation),google.maps.event.addListener(this.googleMarker,"click",function(){self.dispatchEvent("click"),self.dispatchEvent("select")}),google.maps.event.addListener(this.googleMarker,"mouseover",function(){self.dispatchEvent("mouseover")}),google.maps.event.addListener(this.googleMarker,"dragend",function(){var googleMarkerPosition=self.googleMarker.getPosition();self.setPosition({lat:googleMarkerPosition.lat(),lng:googleMarkerPosition.lng()}),self.dispatchEvent({type:"dragend",latLng:self.getPosition()}),self.trigger("change")}),this.setOptions(settings),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.GoogleMarker.prototype=Object.create(Parent.prototype),WPGMZA.GoogleMarker.prototype.constructor=WPGMZA.GoogleMarker,Object.defineProperty(WPGMZA.GoogleMarker.prototype,"opacity",{get:function(){return this._opacity},set:function(value){this._opacity=value,this.googleMarker.setOpacity(value)}}),WPGMZA.GoogleMarker.prototype.setLabel=function(label){label?(this.googleMarker.setLabel({text:label}),this.googleMarker.getIcon()||this.googleMarker.setIcon(WPGMZA.settings.default_marker_icon)):this.googleMarker.setLabel(null)},WPGMZA.GoogleMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng),this.googleMarker.setPosition({lat:this.lat,lng:this.lng})},WPGMZA.GoogleMarker.prototype.updateOffset=function(){var params,self=this,icon=this.googleMarker.getIcon(),img=new Image,x=this._offset.x,y=this._offset.y;icon=icon||WPGMZA.settings.default_marker_icon,params="string"==typeof icon?{url:icon}:icon,img.onload=function(){var defaultAnchor_x=img.width/2,defaultAnchor_y=img.height;params.anchor=new google.maps.Point(defaultAnchor_x-x,defaultAnchor_y-y),self.googleMarker.setIcon(params)},img.src=params.url},WPGMZA.GoogleMarker.prototype.setOptions=function(options){this.googleMarker.setOptions(options)},WPGMZA.GoogleMarker.prototype.setAnimation=function(animation){Parent.prototype.setAnimation.call(this,animation),this.googleMarker.setAnimation(animation)},WPGMZA.GoogleMarker.prototype.setVisible=function(visible){Parent.prototype.setVisible.call(this,visible),this.googleMarker.setVisible(!!visible)},WPGMZA.GoogleMarker.prototype.getVisible=function(visible){return this.googleMarker.getVisible()},WPGMZA.GoogleMarker.prototype.setDraggable=function(draggable){this.googleMarker.setDraggable(draggable)},WPGMZA.GoogleMarker.prototype.setOpacity=function(opacity){this.googleMarker.setOpacity(opacity)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocatorCircle=function(map,settings){var self=this;WPGMZA.ModernStoreLocatorCircle.call(this,map,settings),this.intervalID=setInterval(function(){var mapSize={width:$(self.mapElement).width(),height:$(self.mapElement).height()};mapSize.width==self.mapSize.width&&mapSize.height==self.mapSize.height||(self.canvasLayer.resize_(),self.canvasLayer.draw(),self.mapSize=mapSize)},1e3),$(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange",function(){self.canvasLayer.resize_(),self.canvasLayer.draw()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.GoogleModernStoreLocatorCircle.prototype.constructor=WPGMZA.GoogleModernStoreLocatorCircle,WPGMZA.GoogleModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this;this.canvasLayer&&(this.canvasLayer.setMap(null),this.canvasLayer.setAnimate(!1)),this.canvasLayer=new CanvasLayer({map:this.map.googleMap,resizeHandler:function(event){self.onResize(event)},updateHandler:function(event){self.onUpdate(event)},animate:!0,resolutionScale:this.getResolutionScale()})},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setOptions=function(options){WPGMZA.ModernStoreLocatorCircle.prototype.setOptions.call(this,options),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setPosition=function(position){WPGMZA.ModernStoreLocatorCircle.prototype.setPosition.call(this,position),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setRadius=function(radius){WPGMZA.ModernStoreLocatorCircle.prototype.setRadius.call(this,radius),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var spherical=google.maps.geometry.spherical,center=this.settings.center,equator=new WPGMZA.LatLng({lat:0,lng:0}),latitude=new WPGMZA.LatLng({lat:center.lat,lng:0}),offsetAtEquator=spherical.computeOffset(equator.toGoogleLatLng(),1e3*km,90),result=.006395*km*(spherical.computeOffset(latitude.toGoogleLatLng(),1e3*km,90).lng()/offsetAtEquator.lng());if(isNaN(result))throw new Error("here");return result},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvasLayer.canvas.width,height:this.canvasLayer.canvas.height}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){var position=this.map.googleMap.getProjection().fromLatLngToPoint(this.canvasLayer.getTopLeft());return{x:-position.x,y:-position.y}},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getCenterPixels=function(){var center=new WPGMZA.LatLng(this.settings.center);return this.map.googleMap.getProjection().fromLatLngToPoint(center.toGoogleLatLng())},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvasLayer.canvas.getContext("2d")},WPGMZA.GoogleModernStoreLocatorCircle.prototype.getScale=function(){return Math.pow(2,this.map.getZoom())*this.getResolutionScale()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.setVisible=function(visible){WPGMZA.ModernStoreLocatorCircle.prototype.setVisible.call(this,visible),this.canvasLayer.scheduleUpdate()},WPGMZA.GoogleModernStoreLocatorCircle.prototype.destroy=function(){this.canvasLayer.setMap(null),this.canvasLayer=null,clearInterval(this.intervalID)}}),jQuery(function($){WPGMZA.GoogleModernStoreLocator=function(map_id){var map=this.map=WPGMZA.getMapByID(map_id);WPGMZA.ModernStoreLocator.call(this,map_id);var restrict=map.settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&restrict&&restrict.length,this.map.googleMap.controls[google.maps.ControlPosition.TOP_CENTER].push(this.element)},WPGMZA.GoogleModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator.prototype),WPGMZA.GoogleModernStoreLocator.prototype.constructor=WPGMZA.GoogleModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.GooglePolygon=function(options,googlePolygon){var self=this;options=options||{},Parent.call(this,options,googlePolygon),this.googlePolygon=googlePolygon||new google.maps.Polygon,this.googleFeature=this.googlePolygon,options&&options.polydata&&this.googlePolygon.setOptions({paths:this.parseGeometry(options.polydata)}),this.googlePolygon.wpgmzaPolygon=this,options&&this.setOptions(options),google.maps.event.addListener(this.googlePolygon,"click",function(){self.dispatchEvent({type:"click"})})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.GooglePolygon.prototype=Object.create(Parent.prototype),WPGMZA.GooglePolygon.prototype.constructor=WPGMZA.GooglePolygon,WPGMZA.GooglePolygon.prototype.updateNativeFeature=function(){this.googlePolygon.setOptions(this.getScalarProperties())},WPGMZA.GooglePolygon.prototype.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){var self=this;this.googlePolygon.setOptions({editable:value}),value&&(this.googlePolygon.getPaths().forEach(function(path,index){["insert_at","remove_at","set_at"].forEach(function(name){google.maps.event.addListener(path,name,function(){self.trigger("change")})})}),google.maps.event.addListener(this.googlePolygon,"dragend",function(event){self.trigger("change")}),google.maps.event.addListener(this.googlePolygon,"click",function(event){WPGMZA.altKeyDown&&(this.getPath().removeAt(event.vertex),self.trigger("change"))}))},WPGMZA.GooglePolygon.prototype.setDraggable=function(value){this.googlePolygon.setDraggable(value)},WPGMZA.GooglePolygon.prototype.getGeometry=function(){for(var result=[],path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GooglePolyline=function(options,googlePolyline){var self=this;if(WPGMZA.Polyline.call(this,options,googlePolyline),this.googlePolyline=googlePolyline||new google.maps.Polyline(this.settings),this.googleFeature=this.googlePolyline,options&&options.polydata){var path=this.parseGeometry(options.polydata);this.googlePolyline.setPath(path)}this.googlePolyline.wpgmzaPolyline=this,options&&this.setOptions(options),google.maps.event.addListener(this.googlePolyline,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GooglePolyline.prototype=Object.create(WPGMZA.Polyline.prototype),WPGMZA.GooglePolyline.prototype.constructor=WPGMZA.GooglePolyline,WPGMZA.GooglePolyline.prototype.updateNativeFeature=function(){this.googlePolyline.setOptions(this.getScalarProperties())},WPGMZA.GooglePolyline.prototype.setEditable=function(value){var self=this;if(this.googlePolyline.setOptions({editable:value}),value){var path=this.googlePolyline.getPath();["insert_at","remove_at","set_at"].forEach(function(name){google.maps.event.addListener(path,name,function(){self.trigger("change")})}),google.maps.event.addListener(this.googlePolyline,"dragend",function(event){self.trigger("change")}),google.maps.event.addListener(this.googlePolyline,"click",function(event){WPGMZA.altKeyDown&&(this.getPath().removeAt(event.vertex),self.trigger("change"))})}},WPGMZA.GooglePolyline.prototype.setDraggable=function(value){this.googlePolyline.setOptions({draggable:value})},WPGMZA.GooglePolyline.prototype.getGeometry=function(){for(var result=[],path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),jQuery(function($){WPGMZA.GoogleRectangle=function(options,googleRectangle){var self=this;options=options||{},WPGMZA.Rectangle.call(this,options,googleRectangle),googleRectangle?(this.googleRectangle=googleRectangle,this.cornerA=options.cornerA=new WPGMZA.LatLng({lat:googleRectangle.getBounds().getNorthEast().lat(),lng:googleRectangle.getBounds().getSouthWest().lng()}),this.cornerB=options.cornerB=new WPGMZA.LatLng({lat:googleRectangle.getBounds().getSouthWest().lat(),lng:googleRectangle.getBounds().getNorthEast().lng()})):(this.googleRectangle=new google.maps.Rectangle,this.googleRectangle.wpgmzaRectangle=this),this.googleFeature=this.googleRectangle,options&&this.setOptions(options),google.maps.event.addListener(this.googleRectangle,"click",function(){self.dispatchEvent({type:"click"})})},WPGMZA.GoogleRectangle.prototype=Object.create(WPGMZA.Rectangle.prototype),WPGMZA.GoogleRectangle.prototype.constructor=WPGMZA.GoogleRectangle,WPGMZA.GoogleRectangle.prototype.getBounds=function(){return WPGMZA.LatLngBounds.fromGoogleLatLngBounds(this.googleRectangle.getBounds())},WPGMZA.GoogleRectangle.prototype.setVisible=function(visible){this.googleRectangle.setVisible(!!visible)},WPGMZA.GoogleRectangle.prototype.setDraggable=function(value){this.googleRectangle.setDraggable(!!value)},WPGMZA.GoogleRectangle.prototype.setEditable=function(value){var self=this;this.googleRectangle.setEditable(!!value),value&&google.maps.event.addListener(this.googleRectangle,"bounds_changed",function(event){self.trigger("change")})},WPGMZA.GoogleRectangle.prototype.setOptions=function(options){WPGMZA.Rectangle.prototype.setOptions.apply(this,arguments),options.cornerA&&options.cornerB&&(this.cornerA=new WPGMZA.LatLng(options.cornerA),this.cornerB=new WPGMZA.LatLng(options.cornerB))},WPGMZA.GoogleRectangle.prototype.updateNativeFeature=function(){var googleOptions=this.getScalarProperties(),north=parseFloat(this.cornerA.lat),west=parseFloat(this.cornerA.lng),south=parseFloat(this.cornerB.lat),east=parseFloat(this.cornerB.lng);north&&west&&south&&east&&(googleOptions.bounds={north:north,west:west,south:south,east:east}),this.googleRectangle.setOptions(googleOptions)}}),jQuery(function($){WPGMZA.GoogleText=function(options){WPGMZA.Text.apply(this,arguments),this.overlay=new WPGMZA.GoogleTextOverlay(options)},WPGMZA.extend(WPGMZA.GoogleText,WPGMZA.Text)}),jQuery(function($){WPGMZA.GoogleTextOverlay=function(options){this.element=$("<div class='wpgmza-google-text-overlay'><div class='wpgmza-inner'></div></div>"),(options=options||{}).position&&(this.position=options.position),options.text&&this.element.find(".wpgmza-inner").text(options.text),options.map&&this.setMap(options.map.googleMap)},window.google&&google.maps&&google.maps.OverlayView&&(WPGMZA.GoogleTextOverlay.prototype=new google.maps.OverlayView),WPGMZA.GoogleTextOverlay.prototype.onAdd=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px",minWidth:"200px"}),this.getPanes().floatPane.appendChild(this.element[0])},WPGMZA.GoogleTextOverlay.prototype.draw=function(){var position=this.getProjection().fromLatLngToDivPixel(this.position.toGoogleLatLng());this.element.css({position:"absolute",left:position.x+"px",top:position.y+"px",minWidth:"200px"})},WPGMZA.GoogleTextOverlay.prototype.onRemove=function(){this.element.remove()},WPGMZA.GoogleTextOverlay.prototype.hide=function(){this.element.hide()},WPGMZA.GoogleTextOverlay.prototype.show=function(){this.element.show()},WPGMZA.GoogleTextOverlay.prototype.toggle=function(){this.element.is(":visible")?this.element.hide():this.element.show()}}),jQuery(function($){"google-maps"==WPGMZA.settings.engine&&(WPGMZA.googleAPIStatus&&"USER_CONSENT_NOT_GIVEN"==WPGMZA.googleAPIStatus.code||(WPGMZA.GoogleVertexContextMenu=function(mapEditPage){var self=this;this.mapEditPage=mapEditPage,this.element=document.createElement("div"),this.element.className="wpgmza-vertex-context-menu",this.element.innerHTML="Delete",google.maps.event.addDomListener(this.element,"click",function(event){return self.removeVertex(),event.preventDefault(),event.stopPropagation(),!1})},WPGMZA.GoogleVertexContextMenu.prototype=new google.maps.OverlayView,WPGMZA.GoogleVertexContextMenu.prototype.onAdd=function(){var self=this,map=this.getMap();this.getPanes().floatPane.appendChild(this.element),this.divListener=google.maps.event.addDomListener(map.getDiv(),"mousedown",function(e){e.target!=self.element&&self.close()},!0)},WPGMZA.GoogleVertexContextMenu.prototype.onRemove=function(){google.maps.event.removeListener(this.divListener),this.element.parentNode.removeChild(this.element),this.set("position"),this.set("path"),this.set("vertex")},WPGMZA.GoogleVertexContextMenu.prototype.open=function(map,path,vertex){this.set("position",path.getAt(vertex)),this.set("path",path),this.set("vertex",vertex),this.setMap(map),this.draw()},WPGMZA.GoogleVertexContextMenu.prototype.close=function(){this.setMap(null)},WPGMZA.GoogleVertexContextMenu.prototype.draw=function(){var position=this.get("position"),projection=this.getProjection();if(position&&projection){var point=projection.fromLatLngToDivPixel(position);this.element.style.top=point.y+"px",this.element.style.left=point.x+"px"}},WPGMZA.GoogleVertexContextMenu.prototype.removeVertex=function(){var path=this.get("path"),vertex=this.get("vertex");path&&null!=vertex&&path.removeAt(vertex),this.close()}))}),jQuery(function($){WPGMZA.FeaturePanel=function(element,mapEditPage){var self=this;WPGMZA.EventDispatcher.apply(this,arguments),this.map=mapEditPage.map,this.drawingManager=mapEditPage.drawingManager,this.feature=null,this.element=element,this.initDefaults(),this.setMode(WPGMZA.FeaturePanel.MODE_ADD),this.drawingInstructionsElement=$(this.element).find(".wpgmza-feature-drawing-instructions"),this.drawingInstructionsElement.detach(),this.editingInstructionsElement=$(this.element).find(".wpgmza-feature-editing-instructions"),this.editingInstructionsElement.detach(),$("#wpgmaps_tabs_markers").on("tabsactivate",function(event,ui){$.contains(ui.newPanel[0],self.element[0])&&self.onTabActivated(event)}),$("#wpgmaps_tabs_markers").on("tabsactivate",function(event,ui){$.contains(ui.oldPanel[0],self.element[0])&&self.onTabDeactivated(event)}),$(document.body).on("click","[data-edit-"+this.featureType+"-id]",function(event){self.onEditFeature(event)}),$(document.body).on("click","[data-delete-"+this.featureType+"-id]",function(event){self.onDeleteFeature(event)}),$(this.element).find(".wpgmza-save-feature").on("click",function(event){self.onSave(event)}),this.drawingManager.on(self.drawingManagerCompleteEvent,function(event){self.onDrawingComplete(event)}),this.drawingManager.on("drawingmodechanged",function(event){self.onDrawingModeChanged(event)}),$(this.element).on("change input",function(event){self.onPropertyChanged(event)})},WPGMZA.extend(WPGMZA.FeaturePanel,WPGMZA.EventDispatcher),WPGMZA.FeaturePanel.MODE_ADD="add",WPGMZA.FeaturePanel.MODE_EDIT="edit",WPGMZA.FeaturePanel.prevEditableFeature=null,Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureType",{get:function(){return $(this.element).attr("data-wpgmza-feature-type")}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"drawingManagerCompleteEvent",{get:function(){return this.featureType+"complete"}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureDataTable",{get:function(){return $("[data-wpgmza-datatable][data-wpgmza-feature-type='"+this.featureType+"']")[0].wpgmzaDataTable}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"featureAccordion",{get:function(){return $(this.element).closest(".wpgmza-accordion")}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"map",{get:function(){return WPGMZA.mapEditPage.map}}),Object.defineProperty(WPGMZA.FeaturePanel.prototype,"mode",{get:function(){return this._mode}}),WPGMZA.FeaturePanel.prototype.initPreloader=function(){this.preloader||(this.preloader=$(WPGMZA.preloaderHTML),this.preloader.hide(),$(this.element).append(this.preloader))},WPGMZA.FeaturePanel.prototype.initDataTable=function(){var el=$(this.element).find("[data-wpgmza-datatable][data-wpgmza-rest-api-route]");this[this.featureType+"AdminDataTable"]=new WPGMZA.AdminFeatureDataTable(el)},WPGMZA.FeaturePanel.prototype.initDefaults=function(){$(this.element).find("[data-ajax-name]:not([type='radio'])").each(function(index,el){var val=$(el).val();val&&$(el).attr("data-default-value",val)})},WPGMZA.FeaturePanel.prototype.setCaptionType=function(type,id){var icons={add:"fa-plus-circle",save:"fa-pencil-square-o"};switch(type){case WPGMZA.FeaturePanel.MODE_ADD:case WPGMZA.FeaturePanel.MODE_EDIT:this.featureAccordion.find("[data-add-caption][data-edit-caption]").each(function(index,el){var text=$(el).attr("data-"+type+"-caption"),icon=$(el).find("i.fa");id&&(text+=" "+id),$(el).text(text),icon.length&&((icon=$("<i class='fa' aria-hidden='true'></i>")).addClass(icons[type]),$(el).prepend(" "),$(el).prepend(icon))});break;default:throw new Error("Invalid type")}},WPGMZA.FeaturePanel.prototype.setMode=function(type,id){this._mode=type,this.setCaptionType(type,id)},WPGMZA.FeaturePanel.prototype.setTargetFeature=function(feature){var self=this;if(WPGMZA.FeaturePanel.prevEditableFeature){var prev=WPGMZA.FeaturePanel.prevEditableFeature;prev.setEditable(!1),prev.setDraggable(!1),prev.off("change")}feature?(feature.setEditable(!0),feature.setDraggable(!0),feature.on("change",function(event){self.onFeatureChanged(event)}),this.setMode(WPGMZA.FeaturePanel.MODE_EDIT),this.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showInstructions()):this.setMode(WPGMZA.FeaturePanel.MODE_ADD),this.feature=WPGMZA.FeaturePanel.prevEditableFeature=feature},WPGMZA.FeaturePanel.prototype.reset=function(){$(this.element).find("[data-ajax-name]:not([data-ajax-name='map_id']):not([type='color']):not([type='checkbox']):not([type='radio'])").val(""),$(this.element).find("select[data-ajax-name]>option:first-child").prop("selected",!0),$(this.element).find("[data-ajax-name='id']").val("-1"),$(this.element).find("input[type='checkbox']").prop("checked",!1),tinyMCE.get("wpgmza-description-editor")?tinyMCE.get("wpgmza-description-editor").setContent(""):$("#wpgmza-description-editor").val(""),$("#wpgmza-description-editor").val(""),this.showPreloader(!1),this.setMode(WPGMZA.FeaturePanel.MODE_ADD),$(this.element).find("[data-ajax-name][data-default-value]").each(function(index,el){$(el).val($(el).data("default-value"))})},WPGMZA.FeaturePanel.prototype.select=function(arg){var id,expectedBaseClass,self=this;if(this.reset(),$.isNumeric(arg))id=arg;else{if(expectedBaseClass=WPGMZA[WPGMZA.capitalizeWords(this.featureType)],!(feature instanceof expectedBaseClass))throw new Error("Invalid feature type for this panel");id=arg.id}this.showPreloader(!0),WPGMZA.animateScroll($(".wpgmza_map")),WPGMZA.restAPI.call("/"+this.featureType+"s/"+id+"?skip_cache=1",{success:function(data,status,xhr){var getByIDFunction="get"+WPGMZA.capitalizeWords(self.featureType)+"ByID",feature=self.map[getByIDFunction](id);self.populate(data),self.showPreloader(!1),self.setMode(WPGMZA.FeaturePanel.MODE_EDIT,id),self.setTargetFeature(feature)}})},WPGMZA.FeaturePanel.prototype.showPreloader=function(show){this.initPreloader(),0==arguments.length||show?(this.preloader.fadeIn(),this.element.addClass("wpgmza-loading")):(this.preloader.fadeOut(),this.element.removeClass("wpgmza-loading"))},WPGMZA.FeaturePanel.prototype.populate=function(data){var value,target,name;for(name in data)switch(target=$(this.element).find("[data-ajax-name='"+name+"']"),value=data[name],(target.attr("type")||"").toLowerCase()){case"checkbox":case"radio":target.prop("checked",1==data[name]);break;case"color":value.match(/^#/)||(value="#"+value);default:"object"==typeof value&&(value=JSON.stringify(value)),$(this.element).find("[data-ajax-name='"+name+"']:not(select)").val(value),$(this.element).find("select[data-ajax-name='"+name+"']").each(function(index,el){"string"==typeof value&&0==data[name].length||$(el).val(value)})}},WPGMZA.FeaturePanel.prototype.serializeFormData=function(){var fields=$(this.element).find("[data-ajax-name]"),data={};return fields.each(function(index,el){var type="text";switch($(el).attr("type")&&(type=$(el).attr("type").toLowerCase()),type){case"checkbox":data[$(el).attr("data-ajax-name")]=$(el).prop("checked")?1:0;break;case"radio":$(el).prop("checked")&&(data[$(el).attr("data-ajax-name")]=$(el).val());break;default:data[$(el).attr("data-ajax-name")]=$(el).val()}}),data},WPGMZA.FeaturePanel.prototype.discardChanges=function(){if(this.feature){var feature=this.feature;this.setTargetFeature(null),feature&&feature.map&&(this.map["remove"+WPGMZA.capitalizeWords(this.featureType)](feature),-1<feature.id&&this.updateFeatureByID(feature.id))}},WPGMZA.FeaturePanel.prototype.updateFeatureByID=function(id){var feature,self=this,route="/"+this.featureType+"s/",functionSuffix=WPGMZA.capitalizeWords(self.featureType),getByIDFunction="get"+functionSuffix+"ByID",removeFunction="remove"+functionSuffix,addFunction="add"+functionSuffix;WPGMZA.restAPI.call(route+id,{success:function(data,status,xhr){(feature=self.map[getByIDFunction](id))&&self.map[removeFunction](feature),feature=WPGMZA[WPGMZA.capitalizeWords(self.featureType)].createInstance(data),self.map[addFunction](feature)}})},WPGMZA.FeaturePanel.prototype.showInstructions=function(){switch(this.mode){case WPGMZA.FeaturePanel.MODE_ADD:$(this.map.element).append(this.drawingInstructionsElement),$(this.drawingInstructionsElement).hide().fadeIn();break;default:$(this.map.element).append(this.editingInstructionsElement),$(this.editingInstructionsElement).hide().fadeIn()}},WPGMZA.FeaturePanel.prototype.onTabActivated=function(){this.reset(),this.drawingManager.setDrawingMode(this.featureType),this.onAddFeature(event),$(".wpgmza-table-container-title").hide(),$(".wpgmza-table-container").hide();var featureString=this.featureType.charAt(0).toUpperCase()+this.featureType.slice(1);$("#wpgmza-table-container-"+featureString).show(),$("#wpgmza-table-container-title-"+featureString).show()},WPGMZA.FeaturePanel.prototype.onTabDeactivated=function(){this.discardChanges(),this.setTargetFeature(null)},WPGMZA.FeaturePanel.prototype.onAddFeature=function(event){this.drawingManager.setDrawingMode(this.featureType)},WPGMZA.FeaturePanel.prototype.onEditFeature=function(event){var name="data-edit-"+this.featureType+"-id",id=$(event.currentTarget).attr(name);this.discardChanges(),this.select(id)},WPGMZA.FeaturePanel.prototype.onDeleteFeature=function(event){var self=this,name="data-delete-"+this.featureType+"-id",id=$(event.currentTarget).attr(name),route="/"+this.featureType+"s/",feature=this.map["get"+WPGMZA.capitalizeWords(this.featureType)+"ByID"](id);this.featureDataTable.dataTable.processing(!0),WPGMZA.restAPI.call(route+id,{method:"DELETE",success:function(data,status,xhr){self.map["remove"+WPGMZA.capitalizeWords(self.featureType)](feature),self.featureDataTable.reload()}})},WPGMZA.FeaturePanel.prototype.onDrawingModeChanged=function(event){$(this.drawingInstructionsElement).detach(),$(this.editingInstructionsElement).detach(),this.drawingManager.mode==this.featureType&&this.showInstructions()},WPGMZA.FeaturePanel.prototype.onDrawingComplete=function(event){var engineFeature=event["engine"+WPGMZA.capitalizeWords(this.featureType)],formData=this.serializeFormData(),geometryField=$(this.element).find("textarea[data-ajax-name$='data']");delete formData.polydata;var nativeFeature=WPGMZA[WPGMZA.capitalizeWords(this.featureType)].createInstance(formData,engineFeature);this.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.map["add"+WPGMZA.capitalizeWords(this.featureType)](nativeFeature),this.setTargetFeature(nativeFeature),geometryField.length&&geometryField.val(JSON.stringify(nativeFeature.getGeometry())),this.featureType},WPGMZA.FeaturePanel.prototype.onPropertyChanged=function(event){var feature=this.feature;feature&&($(this.element).find(":input[data-ajax-name]").each(function(index,el){var key=$(el).attr("data-ajax-name");feature[key]=$(el).val()}),feature.updateNativeFeature())},WPGMZA.FeaturePanel.prototype.onFeatureChanged=function(event){var geometryField=$(this.element).find("textarea[data-ajax-name$='data']");geometryField.length&&geometryField.val(JSON.stringify(this.feature.getGeometry()))},WPGMZA.FeaturePanel.prototype.onSave=function(event){var self=this,id=$(self.element).find("[data-ajax-name='id']").val(),data=this.serializeFormData(),route="/"+this.featureType+"s/",isNew=-1==id;"circle"!=this.featureType||data.center?"rectangle"!=this.featureType||data.cornerA?"polygon"!=this.featureType||data.polydata?"polyline"!=this.featureType||data.polydata?(isNew||(route+=id),WPGMZA.mapEditPage.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showPreloader(!0),WPGMZA.restAPI.call(route,{method:"POST",data:data,success:function(data,status,xhr){var feature,functionSuffix=WPGMZA.capitalizeWords(self.featureType),getByIDFunction="get"+functionSuffix+"ByID",removeFunction="remove"+functionSuffix,addFunction="add"+functionSuffix;self.reset(),(feature=self.map[getByIDFunction](id))&&self.map[removeFunction](feature),self.setTargetFeature(null),self.showPreloader(!1),feature=WPGMZA[WPGMZA.capitalizeWords(self.featureType)].createInstance(data),self.map[addFunction](feature),self.featureDataTable.reload(),self.onTabActivated(event)}})):alert(WPGMZA.localized_strings.no_shape_polyline):alert(WPGMZA.localized_strings.no_shape_polygon):alert(WPGMZA.localized_strings.no_shape_rectangle):alert(WPGMZA.localized_strings.no_shape_circle)}}),jQuery(function($){WPGMZA.MarkerPanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.MarkerPanel,WPGMZA.FeaturePanel),WPGMZA.MarkerPanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProMarkerPanel(element,mapEditPage):new WPGMZA.MarkerPanel(element,mapEditPage)},WPGMZA.MarkerPanel.prototype.initDefaults=function(){var self=this;WPGMZA.FeaturePanel.prototype.initDefaults.apply(this,arguments),this.adjustSubMode=!1,this.onTabActivated(null),$(document.body).on("click","[data-adjust-"+this.featureType+"-id]",function(event){self.onAdjustFeature(event)}),$(document.body).on("click",".wpgmza_approve_btn",function(event){self.onApproveMarker(event)})},WPGMZA.MarkerPanel.prototype.onAdjustFeature=function(event){var name="data-adjust-"+this.featureType+"-id",id=$(event.currentTarget).attr(name);this.discardChanges(),this.adjustSubMode=!0,this.select(id)},WPGMZA.MarkerPanel.prototype.onApproveMarker=function(event){var self=this,route="/"+this.featureType+"s/"+$(event.currentTarget).attr("id");WPGMZA.restAPI.call(route,{method:"POST",data:{approved:"1"},success:function(data,status,xhr){self.featureDataTable.reload()}})},WPGMZA.MarkerPanel.prototype.onFeatureChanged=function(event){if(this.adjustSubMode){var aPos=this.feature.getPosition();aPos&&($(this.element).find("[data-ajax-name='lat']").val(aPos.lat),$(this.element).find("[data-ajax-name='lng']").val(aPos.lng))}else{var addressField=$(this.element).find("input[data-ajax-name$='address']");if(addressField.length){var pos=this.feature.getPosition();addressField.val(pos.lat+","+pos.lng)}}},WPGMZA.MarkerPanel.prototype.setTargetFeature=function(feature){if(WPGMZA.FeaturePanel.prevEditableFeature){var prev=WPGMZA.FeaturePanel.prevEditableFeature;prev.setOpacity&&prev.setOpacity(1)}$(this.element).find("[data-ajax-name]").removeAttr("disabled"),$(this.element).find("fieldset").show(),$(this.element).find(".wpgmza-adjust-mode-notice").addClass("wpgmza-hidden"),$(this.element).find('[data-ajax-name="lat"]').attr("type","hidden"),$(this.element).find('[data-ajax-name="lng"]').attr("type","hidden"),$(this.element).find(".wpgmza-hide-in-adjust-mode").removeClass("wpgmza-hidden"),$(this.element).find(".wpgmza-show-in-adjust-mode").addClass("wpgmza-hidden"),feature?(feature.setOpacity&&feature.setOpacity(.7),feature.getMap().panTo(feature.getPosition()),this.adjustSubMode&&($(this.element).find("[data-ajax-name]").attr("disabled","disabled"),$(this.element).find("fieldset:not(.wpgmza-always-on)").hide(),$(this.element).find(".wpgmza-adjust-mode-notice").removeClass("wpgmza-hidden"),$(this.element).find('[data-ajax-name="lat"]').attr("type","text").removeAttr("disabled"),$(this.element).find('[data-ajax-name="lng"]').attr("type","text").removeAttr("disabled"),$(this.element).find(".wpgmza-hide-in-adjust-mode").addClass("wpgmza-hidden"),$(this.element).find(".wpgmza-show-in-adjust-mode").removeClass("wpgmza-hidden"))):this.adjustSubMode=!1,WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments)},WPGMZA.MarkerPanel.prototype.onSave=function(event){var self=this,geocoder=WPGMZA.Geocoder.createInstance(),address=$(this.element).find("[data-ajax-name='address']").val(),geocodingData={address:address};WPGMZA.mapEditPage.drawingManager.setDrawingMode(WPGMZA.DrawingManager.MODE_NONE),this.showPreloader(!0);var cloud_lat=!1,cloud_lng=!1;0<document.getElementsByName("lat").length&&(cloud_lat=document.getElementsByName("lat")[0].value),0<document.getElementsByName("lng").length&&(cloud_lng=document.getElementsByName("lng")[0].value),cloud_lat&&cloud_lng&&(WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey||(geocodingData.lat=parseFloat(cloud_lat),geocodingData.lng=parseFloat(cloud_lng)));var addressUnchanged=!1;this.feature&&this.feature.address&&address&&"string"==typeof this.feature.address&&"string"==typeof address&&this.feature.address.trim()===address.trim()&&(addressUnchanged=!0),this.adjustSubMode||addressUnchanged?WPGMZA.FeaturePanel.prototype.onSave.apply(self,arguments):geocoder.geocode(geocodingData,function(results,status){switch(status){case WPGMZA.Geocoder.ZERO_RESULTS:return alert(WPGMZA.localized_strings.zero_results),void self.showPreloader(!1);case WPGMZA.Geocoder.SUCCESS:break;case WPGMZA.Geocoder.NO_ADDRESS:return alert(WPGMZA.localized_strings.no_address),void self.showPreloader(!1);case WPGMZA.Geocoder.FAIL:default:return alert(WPGMZA.localized_strings.geocode_fail),void self.showPreloader(!1)}var result=results[0];$(self.element).find("[data-ajax-name='lat']").val(result.lat),$(self.element).find("[data-ajax-name='lng']").val(result.lng),WPGMZA.FeaturePanel.prototype.onSave.apply(self,arguments)}),WPGMZA.mapEditPage.map.resetBounds()}}),jQuery(function($){WPGMZA.CirclePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.CirclePanel,WPGMZA.FeaturePanel),WPGMZA.CirclePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProCirclePanel(element,mapEditPage):new WPGMZA.CirclePanel(element,mapEditPage)},WPGMZA.CirclePanel.prototype.updateFields=function(){$(this.element).find("[data-ajax-name='center']").val(this.feature.getCenter().toString()),$(this.element).find("[data-ajax-name='radius']").val(this.feature.getRadius())},WPGMZA.CirclePanel.prototype.onDrawingComplete=function(event){WPGMZA.FeaturePanel.prototype.onDrawingComplete.apply(this,arguments),this.updateFields()},WPGMZA.CirclePanel.prototype.setTargetFeature=function(feature){WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments),feature&&this.updateFields()},WPGMZA.CirclePanel.prototype.onFeatureChanged=function(event){WPGMZA.FeaturePanel.prototype.onFeatureChanged.apply(this,arguments),this.updateFields()}});var wpgmza_autoCompleteDisabled=!1;jQuery(function($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){var self=this,element=document.body;WPGMZA.EventDispatcher.call(this),$("#wpgmaps_options fieldset").wrapInner("<div class='wpgmza-flex'></div>"),this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0],(!WPGMZA.pro_version||WPGMZA.Version.compare(WPGMZA.pro_version,"8.1.0")>=WPGMZA.Version.EQUAL_TO)&&(this.drawingManager=WPGMZA.DrawingManager.createInstance(this.map)),this.initDataTables(),this.initFeaturePanels(),this.initJQueryUIControls(),"en"!==WPGMZA.locale&&$("#datatable_no_result_message,#datatable_search_string").parent().parent().hide(),$("input.wpgmza-address").each(function(index,el){el.addressInput=WPGMZA.AddressInput.createInstance(el,self.map)}),$('#wpgmza-map-edit-page input[type="color"]').each(function(){$("<div class='button-secondary wpgmza-paste-color-btn' title='Paste a HEX color code'><i class='fa fa-clipboard' aria-hidden='true'></i></div>").insertAfter(this)}),jQuery("body").on("click",".wpgmza_ac_result",function(e){var index=jQuery(this).data("id"),lat=jQuery(this).data("lat"),lng=jQuery(this).data("lng"),name=jQuery("#wpgmza_item_address_"+index).html();jQuery("input[name='lat']").val(lat),jQuery("input[name='lng']").val(lng),jQuery("#wpgmza_add_address_map_editor").val(name),jQuery("#wpgmza_autocomplete_search_results").hide()}),jQuery("body").on("click",".wpgmza-paste-color-btn",function(){try{var colorBtn=$(this);if(!navigator||!navigator.clipboard||!navigator.clipboard.readText)return;navigator.clipboard.readText().then(function(textcopy){colorBtn.parent().find('input[type="color"]').val("#"+textcopy.replace("#","").trim())}).catch(function(err){console.error("WP Google Maps: Could not access clipboard",err)})}catch(c_ex){}}),jQuery("body").on("focusout","#wpgmza_add_address_map_editor",function(e){setTimeout(function(){jQuery("#wpgmza_autocomplete_search_results").fadeOut("slow")},500)});var ajaxRequest=!1,wpgmzaAjaxTimeout=!1,wpgmzaStartTyping=!1,wpgmzaKeyStrokeCount=1,wpgmzaAvgTimeBetweenStrokes=300,wpgmzaTotalTimeForKeyStrokes=0,wpgmzaTmp="",wpgmzaIdentifiedTypingSpeed=!1;$("body").on("keypress",".wpgmza-address",function(e){if("wpgmza_add_address_map_editor"==this.id){if(wpgmza_autoCompleteDisabled)return;var wpgmza_apikey=!1;if(WPGMZA_localized_data.settings.googleMapsApiKey&&""!==WPGMZA_localized_data.settings.googleMapsApiKey)return void(wpgmza_apikey=WPGMZA_localized_data.settings.googleMapsApiKey);if("Escape"===e.key||"Alt"===e.key||"Control"===e.key||"Option"===e.key||"Shift"===e.key||"ArrowLeft"===e.key||"ArrowRight"===e.key||"ArrowUp"===e.key||"ArrowDown"===e.key)return void $("#wpgmza_autocomplete_search_results").hide();if(!wpgmzaIdentifiedTypingSpeed){var d=new Date;return clearTimeout(wpgmzaTmp),wpgmzaTmp=setTimeout(function(){wpgmzaStartTyping=!1,wpgmzaAvgTimeBetweenStrokes=300,wpgmzaTotalTimeForKeyStrokes=0},1500),wpgmzaStartTyping?1==wpgmzaKeyStrokeCount||(wpgmzaCurrentTimeBetweenStrokes=d.getTime()-wpgmzaStartTyping,wpgmzaTotalTimeForKeyStrokes+=wpgmzaCurrentTimeBetweenStrokes,wpgmzaAvgTimeBetweenStrokes=wpgmzaTotalTimeForKeyStrokes/(wpgmzaKeyStrokeCount-1),wpgmzaStartTyping=d.getTime(),3<=wpgmzaKeyStrokeCount&&(wpgmzaIdentifiedTypingSpeed=wpgmzaAvgTimeBetweenStrokes)):wpgmzaStartTyping=d.getTime(),void wpgmzaKeyStrokeCount++}clearTimeout(wpgmzaAjaxTimeout),$("#wpgmza_autocomplete_search_results").html("Searching..."),$("#wpgmza_autocomplete_search_results").show();var currentSearch=jQuery(this).val();if(""!==currentSearch){!1!==ajaxRequest&&ajaxRequest.abort();var wpgmza_api_url="";wpgmza_api_url=wpgmza_apikey?"https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+window.location.hostname+"&hash="+WPGMZA_localized_data.siteHash+"&k="+wpgmza_apikey:"https://wpgmaps.us-3.evennode.com/api/v1/autocomplete?s="+currentSearch+"&d="+window.location.hostname+"&hash="+WPGMZA_localized_data.siteHash,wpgmzaAjaxTimeout=setTimeout(function(){ajaxRequest=$.ajax({url:wpgmza_api_url,type:"GET",dataType:"json",success:function(results){try{if(void 0!==results.error)"error1"==results.error?($("#wpgmza_autoc_disabled").html(WPGMZA.localized_strings.cloud_api_key_error_1),$("#wpgmza_autoc_disabled").fadeIn("slow"),$("#wpgmza_autocomplete_search_results").hide(),wpgmza_autoCompleteDisabled=!0):console.error(results.error);else{$("#wpgmza_autocomplete_search_results").html("");var html="";for(var i in results)html+="<div class='wpgmza_ac_result "+(""===html?"":"border-top")+"' data-id='"+i+"' data-lat='"+results[i].lat+"' data-lng='"+results[i].lng+"'><div class='wpgmza_ac_container'><div class='wpgmza_ac_icon'><img src='"+results[i].icon+"' /></div><div class='wpgmza_ac_item'><span id='wpgmza_item_name_"+i+"' class='wpgmza_item_name'>"+results[i].place_name+"</span><span id='wpgmza_item_address_"+i+"' class='wpgmza_item_address'>"+results[i].formatted_address+"</span></div></div></div>";""==html&&(html="<div class='p-2 text-center'><small>No results found...</small></div>"),$("#wpgmza_autocomplete_search_results").html(html),$("#wpgmza_autocomplete_search_results").show()}}catch(exception){console.error("WP Google Maps Plugin: There was an error returning the list of places for your search")}}})},2*wpgmzaIdentifiedTypingSpeed)}else $("#wpgmza_autocomplete_search_results").hide()}}),$("#wpgmza_map_height_type").on("change",function(event){self.onMapHeightTypeChange(event)}),$("#advanced-markers .wpgmza-feature-drawing-instructions").remove(),$("[data-search-area='auto']").hide(),$(document.body).on("click","[data-wpgmza-admin-marker-datatable] input[name='mark']",function(event){self.onShiftClick(event)}),$("#wpgmza_map_type").on("change",function(event){self.onMapTypeChanged(event)}),$("body").on("click",".wpgmza_copy_shortcode",function(){var $temp=jQuery("<input>");jQuery('<span id="wpgmza_tmp" style="display:none; width:100%; text-align:center;">');jQuery("body").append($temp),$temp.val(jQuery(this).val()).select(),document.execCommand("copy"),$temp.remove(),WPGMZA.notification("Shortcode Copied")}),this.on("markerupdated",function(event){self.onMarkerUpdated(event)}),this.map&&(this.map.on("zoomchanged",function(event){self.onZoomChanged(event)}),this.map.on("boundschanged",function(event){self.onBoundsChanged(event)}),this.map.on("rightclick",function(event){self.onRightClick(event)})),$(element).on("click",".wpgmza_poly_del_btn",function(event){self.onDeletePolygon(event)}),$(element).on("click",".wpgmza_polyline_del_btn",function(event){self.onDeletePolyline(event)}),$(element).on("click",".wpgmza_dataset_del_btn",function(evevnt){self.onDeleteHeatmap(event)}),$(element).on("click",".wpgmza_circle_del_btn",function(event){self.onDeleteCircle(event)}),$(element).on("click",".wpgmza_rectangle_del_btn",function(event){self.onDeleteRectangle(event)}),$(element).on("click","#wpgmza-open-advanced-theme-data",function(event){event.preventDefault(),$(".wpgmza_theme_data_container").toggleClass("wpgmza_hidden")})},WPGMZA.extend(WPGMZA.MapEditPage,WPGMZA.EventDispatcher),WPGMZA.MapEditPage.createInstance=function(){return WPGMZA.isProVersion()&&WPGMZA.Version.compare(WPGMZA.pro_version,"8.0.0")>=WPGMZA.Version.EQUAL_TO?new WPGMZA.ProMapEditPage:new WPGMZA.MapEditPage},WPGMZA.MapEditPage.prototype.initDataTables=function(){var self=this;$("[data-wpgmza-datatable][data-wpgmza-rest-api-route]").each(function(index,el){var featureType=$(el).attr("data-wpgmza-feature-type");self[featureType+"AdminDataTable"]=new WPGMZA.AdminFeatureDataTable(el)})},WPGMZA.MapEditPage.prototype.initFeaturePanels=function(){var self=this;$(".wpgmza-feature-accordion[data-wpgmza-feature-type]").each(function(index,el){var featurePanelElement=$(el).find(".wpgmza-feature-panel-container > *"),featureType=$(el).attr("data-wpgmza-feature-type"),panelClassName=WPGMZA.capitalizeWords(featureType)+"Panel",instance=WPGMZA[panelClassName].createInstance(featurePanelElement,self);self[featureType+"Panel"]=instance})},WPGMZA.MapEditPage.prototype.initJQueryUIControls=function(){var mapContainer,self=this;$("#wpgmaps_tabs").tabs(),mapContainer=$("#wpgmza-map-container").detach(),$("#wpgmaps_tabs_markers").tabs(),$(".map_wrapper").prepend(mapContainer),$("#slider-range-max").slider({range:"max",min:1,max:21,value:$("input[name='map_start_zoom']").val(),slide:function(event,ui){$("input[name='map_start_zoom']").val(ui.value),self.map.setZoom(ui.value)}})},WPGMZA.MapEditPage.prototype.onShiftClick=function(event){var checkbox=event.currentTarget,row=jQuery(checkbox).closest("tr");if(this.lastSelectedRow&&event.shiftKey){var prevIndex=this.lastSelectedRow.index(),currIndex=row.index(),startIndex=Math.min(prevIndex,currIndex),endIndex=Math.max(prevIndex,currIndex),rows=jQuery("[data-wpgmza-admin-marker-datatable] tbody>tr");jQuery("[data-wpgmza-admin-marker-datatable] input[name='mark']").prop("checked",!1);for(var i=startIndex;i<=endIndex;i++)jQuery(rows[i]).find("input[name='mark']").prop("checked",!0)}this.lastSelectedRow=row},WPGMZA.MapEditPage.prototype.onMapTypeChanged=function(event){if("open-layers"!=WPGMZA.settings.engine){var mapTypeId;switch(event.target.value){case"2":mapTypeId=google.maps.MapTypeId.SATELLITE;break;case"3":mapTypeId=google.maps.MapTypeId.HYBRID;break;case"4":mapTypeId=google.maps.MapTypeId.TERRAIN;break;default:mapTypeId=google.maps.MapTypeId.ROADMAP}this.map.setOptions({mapTypeId:mapTypeId})}},WPGMZA.MapEditPage.prototype.onMarkerUpdated=function(event){this.markerDataTable.reload()},WPGMZA.MapEditPage.prototype.onZoomChanged=function(event){$(".map_start_zoom").val(this.map.getZoom())},WPGMZA.MapEditPage.prototype.onBoundsChanged=function(event){var location=this.map.getCenter();$("#wpgmza_start_location").val(location.lat+","+location.lng),$("input[name='map_start_lat']").val(location.lat),$("input[name='map_start_lng']").val(location.lng),$("#wpgmza_start_zoom").val(this.map.getZoom()),$("#wpgmaps_save_reminder").show()},WPGMZA.MapEditPage.prototype.onMapHeightTypeChange=function(event){"%"==event.target.value&&$("#wpgmza_height_warning").show()},WPGMZA.MapEditPage.prototype.onRightClick=function(event){var marker,self=this;this.drawingManager&&this.drawingManager.mode!=WPGMZA.DrawingManager.MODE_MARKER||(this.rightClickMarker||(this.rightClickMarker=WPGMZA.Marker.createInstance({draggable:!0}),this.rightClickMarker.on("dragend",function(event){$(".wpgmza-marker-panel [data-ajax-name='address']").val(event.latLng.lat+","+event.latLng.lng)}),this.map.on("click",function(event){self.rightClickMarker.setMap(null)})),(marker=this.rightClickMarker).setPosition(event.latLng),marker.setMap(this.map),$(".wpgmza-marker-panel [data-ajax-name='address']").val(event.latLng.lat+", "+event.latLng.lng))},WPGMZA.MapEditPage.prototype.onDeletePolygon=function(event){var cur_id=parseInt($(this).attr("id")),data={action:"delete_poly",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){WPGM_Path[cur_id].setMap(null),delete WPGM_PathData[cur_id],delete WPGM_Path[cur_id],$("#wpgmza_poly_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeletePolyline=function(event){var cur_id=$(this).attr("id"),data={action:"delete_polyline",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){WPGM_PathLine[cur_id].setMap(null),delete WPGM_PathLineData[cur_id],delete WPGM_PathLine[cur_id],$("#wpgmza_polyline_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeleteHeatmap=function(event){var cur_id=$(this).attr("id"),data={action:"delete_dataset",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,poly_id:cur_id};$.post(ajaxurl,data,function(response){heatmap[cur_id].setMap(null),delete heatmap[cur_id],$("#wpgmza_heatmap_holder").html(response)})},WPGMZA.MapEditPage.prototype.onDeleteCircle=function(event){var circle_id=$(this).attr("id"),data={action:"delete_circle",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,circle_id:circle_id};$.post(ajaxurl,data,function(response){$("#tabs-m-5 table").replaceWith(response),circle_array.forEach(function(circle){if(circle.id==circle_id)return circle.setMap(null),!1})})},WPGMZA.MapEditPage.prototype.onDeleteRectangle=function(event){var rectangle_id=$(this).attr("id"),data={action:"delete_rectangle",security:wpgmza_legacy_map_edit_page_vars.ajax_nonce,map_id:this.map.id,rectangle_id:rectangle_id};$.post(ajaxurl,data,function(response){$("#tabs-m-6 table").replaceWith(response),rectangle_array.forEach(function(rectangle){if(rectangle.id==rectangle_id)return rectangle.setMap(null),!1})})},$(document).ready(function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.PolygonPanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.PolygonPanel,WPGMZA.FeaturePanel),WPGMZA.PolygonPanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProPolygonPanel(element,mapEditPage):new WPGMZA.PolygonPanel(element,mapEditPage)},Object.defineProperty(WPGMZA.PolygonPanel.prototype,"drawingManagerCompleteEvent",{get:function(){return"polygonclosed"}})}),jQuery(function($){WPGMZA.PolylinePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.PolylinePanel,WPGMZA.FeaturePanel),WPGMZA.PolylinePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProPolylinePanel(element,mapEditPage):new WPGMZA.PolylinePanel(element,mapEditPage)}}),jQuery(function($){WPGMZA.RectanglePanel=function(element,mapEditPage){WPGMZA.FeaturePanel.apply(this,arguments)},WPGMZA.extend(WPGMZA.RectanglePanel,WPGMZA.FeaturePanel),WPGMZA.RectanglePanel.createInstance=function(element,mapEditPage){return WPGMZA.isProVersion()?new WPGMZA.ProRectanglePanel(element,mapEditPage):new WPGMZA.RectanglePanel(element,mapEditPage)},WPGMZA.RectanglePanel.prototype.updateFields=function(){var bounds=this.feature.getBounds();bounds.north&&bounds.west&&bounds.south&&bounds.east&&($(this.element).find("[data-ajax-name='cornerA']").val(bounds.north+", "+bounds.west),$(this.element).find("[data-ajax-name='cornerB']").val(bounds.south+", "+bounds.east))},WPGMZA.RectanglePanel.prototype.setTargetFeature=function(feature){WPGMZA.FeaturePanel.prototype.setTargetFeature.apply(this,arguments),feature&&this.updateFields()},WPGMZA.RectanglePanel.prototype.onDrawingComplete=function(event){WPGMZA.FeaturePanel.prototype.onDrawingComplete.apply(this,arguments),this.updateFields()},WPGMZA.RectanglePanel.prototype.onFeatureChanged=function(event){WPGMZA.FeaturePanel.prototype.onFeatureChanged.apply(this,arguments),this.updateFields()}}),jQuery(function($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){var geom;if(Parent.call(this,options,olFeature),options=options||{},olFeature){var circle=olFeature.getGeometry(),center=ol.proj.toLonLat(circle.getCenter());geom=circle,options.center=new WPGMZA.LatLng(center[1],center[0]),options.radius=circle.getRadius()/1e3}else geom=new ol.geom.Circle(ol.proj.fromLonLat([parseFloat(options.center.lng),parseFloat(options.center.lat)]),1e3*options.radius);this.layer=new ol.layer.Vector({source:new ol.source.Vector}),this.olFeature=new ol.Feature({geometry:geom}),this.layer.getSource().addFeature(this.olFeature),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaCircle:this,wpgmzaFeature:this}),options&&this.setOptions(options)},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)},WPGMZA.OLCircle.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olFeature.getGeometry().getCenter());return new WPGMZA.LatLng({lat:lonLat[1],lng:lonLat[0]})},WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,radius=1e3*parseFloat(this.radius);x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular([x,y],radius,64).clone().transform("EPSG:4326","EPSG:3857");this.olFeature=new ol.Feature(circle3857),this.layer.getSource().addFeature(this.olFeature)}},WPGMZA.OLCircle.prototype.setVisible=function(visible){this.layer.setVisible(!!visible)},WPGMZA.OLCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.recreate()},WPGMZA.OLCircle.prototype.getRadius=function(){return this.layer.getSource().getFeatures()[0].getGeometry().getRadius()/1e3},WPGMZA.OLCircle.prototype.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments)},WPGMZA.OLCircle.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){WPGMZA.OLDrawingManager=function(map){WPGMZA.DrawingManager.call(this,map),this.source=new ol.source.Vector({wrapX:!1}),this.layer=new ol.layer.Vector({source:this.source})},WPGMZA.OLDrawingManager.prototype=Object.create(WPGMZA.DrawingManager.prototype),WPGMZA.OLDrawingManager.prototype.constructor=WPGMZA.OLDrawingManager,WPGMZA.OLDrawingManager.prototype.setOptions=function(options){var params={};options.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(options.strokeColor,options.strokeOpacity)})),options.fillOpacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(options.fillColor,options.fillOpacity)})),this.layer.setStyle(new ol.style.Style(params))},WPGMZA.OLDrawingManager.prototype.setDrawingMode=function(mode){var type,endEventType,self=this;switch(WPGMZA.DrawingManager.prototype.setDrawingMode.call(this,mode),this.interaction&&(this.map.olMap.removeInteraction(this.interaction),this.interaction=null),mode){case WPGMZA.DrawingManager.MODE_NONE:case WPGMZA.DrawingManager.MODE_MARKER:return;case WPGMZA.DrawingManager.MODE_POLYGON:type="Polygon",endEventType="polygonclosed";break;case WPGMZA.DrawingManager.MODE_POLYLINE:type="LineString",endEventType="polylinecomplete";break;case WPGMZA.DrawingManager.MODE_CIRCLE:type="Circle",endEventType="circlecomplete";break;case WPGMZA.DrawingManager.MODE_RECTANGLE:type="Circle",endEventType="rectanglecomplete";break;case WPGMZA.DrawingManager.MODE_HEATMAP:return;default:throw new Error("Invalid drawing mode")}WPGMZA.mapEditPage&&WPGMZA.mapEditPage.selectInteraction&&WPGMZA.mapEditPage.map.olMap.removeInteraction(WPGMZA.mapEditPage.selectInteraction);var options={source:this.source,type:type};mode==WPGMZA.DrawingManager.MODE_RECTANGLE&&(options.geometryFunction=ol.interaction.Draw.createBox()),this.interaction=new ol.interaction.Draw(options),this.interaction.on("drawend",function(event){if(endEventType){var WPGMZAEvent=new WPGMZA.Event(endEventType);switch(mode){case WPGMZA.DrawingManager.MODE_POLYGON:WPGMZAEvent.enginePolygon=event.feature;break;case WPGMZA.DrawingManager.MODE_POLYLINE:WPGMZAEvent.enginePolyline=event.feature;break;case WPGMZA.DrawingManager.MODE_CIRCLE:WPGMZAEvent.engineCircle=event.feature;break;case WPGMZA.DrawingManager.MODE_RECTANGLE:WPGMZAEvent.engineRectangle=event.feature;break;default:throw new Error("Drawing mode not implemented")}self.dispatchEvent(WPGMZAEvent)}}),this.map.olMap.addInteraction(this.interaction)}}),jQuery(function($){WPGMZA.OLFeature=function(options){WPGMZA.assertInstangeOf(this,"OLFeature"),WPGMZA.Feature.apply(this,arguments)},WPGMZA.extend(WPGMZA.OLFeature,WPGMZA.Feature),WPGMZA.OLFeature.getOLStyle=function(options){var translated={};if(!options)return new ol.style.Style;options=$.extend({},options);var map={fillcolor:"fillColor",opacity:"fillOpacity",linecolor:"strokeColor",lineopacity:"strokeOpacity",linethickness:"strokeWeight"};for(var name in options)name in map&&(options[map[name]]=options[name]);if(options.strokeColor){var opacity=1,weight=1;"strokeOpacity"in options&&(opacity=options.strokeOpacity),"strokeWeight"in options&&(weight=options.strokeWeight),translated.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToString(options.strokeColor,opacity),width:weight})}if(options.fillColor){opacity=1;"fillOpacity"in options&&(opacity=options.fillOpacity);var color=WPGMZA.hexOpacityToString(options.fillColor,opacity);translated.fill=new ol.style.Fill({color:color})}return new ol.style.Style(translated)},WPGMZA.OLFeature.setInteractionsOnFeature=function(feature,enable){if(enable){if(feature.modifyInteraction)return;feature.snapInteraction=new ol.interaction.Snap({source:feature.layer.getSource()}),feature.map.olMap.addInteraction(feature.snapInteraction),feature.modifyInteraction=new ol.interaction.Modify({source:feature.layer.getSource()}),feature.map.olMap.addInteraction(feature.modifyInteraction),feature.modifyInteraction.on("modifyend",function(event){feature.trigger("change")})}else{if(!feature.modifyInteraction)return;feature.map&&(feature.map.olMap.removeInteraction(feature.snapInteraction),feature.map.olMap.removeInteraction(feature.modifyInteraction)),delete feature.snapInteraction,delete feature.modifyInteraction}}}),jQuery(function($){WPGMZA.OLGeocoder=function(){},WPGMZA.OLGeocoder.prototype=Object.create(WPGMZA.Geocoder.prototype),WPGMZA.OLGeocoder.prototype.constructor=WPGMZA.OLGeocoder,WPGMZA.OLGeocoder.prototype.getResponseFromCache=function(query,callback){WPGMZA.restAPI.call("/geocode-cache",{data:{query:JSON.stringify(query)},success:function(response,xhr,status){response.lng=response.lon,callback(response)},useCompressedPathVariable:!0})},WPGMZA.OLGeocoder.prototype.getResponseFromNominatim=function(options,callback){var data={q:options.address,format:"json"};options.componentRestrictions&&options.componentRestrictions.country?data.countrycodes=options.componentRestrictions.country:options.country&&(data.countrycodes=options.country),$.ajax("https://nominatim.openstreetmap.org/search/",{data:data,success:function(response,xhr,status){callback(response)},error:function(response,xhr,status){callback(null,WPGMZA.Geocoder.FAIL)}})},WPGMZA.OLGeocoder.prototype.cacheResponse=function(query,response){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_store_nominatim_cache",query:JSON.stringify(query),response:JSON.stringify(response)},method:"POST"})},WPGMZA.OLGeocoder.prototype.clearCache=function(callback){$.ajax(WPGMZA.ajaxurl,{data:{action:"wpgmza_clear_nominatim_cache"},method:"POST",success:function(response){callback(response)}})},WPGMZA.OLGeocoder.prototype.getLatLngFromAddress=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.getAddressFromLatLng=function(options,callback){return WPGMZA.OLGeocoder.prototype.geocode(options,callback)},WPGMZA.OLGeocoder.prototype.geocode=function(options,callback){var self=this;if(!options)throw new Error("Invalid options");if(WPGMZA.LatLng.REGEXP.test(options.address)){var latLng=WPGMZA.LatLng.fromString(options.address);callback([{geometry:{location:latLng},latLng:latLng,lat:latLng.lat,lng:latLng.lng}],WPGMZA.Geocoder.SUCCESS)}else{var finish,location;if(options.location&&(options.latLng=new WPGMZA.LatLng(options.location)),options.address)location=options.address,finish=function(response,status){for(var i=0;i<response.length;i++)response[i].geometry={location:new WPGMZA.LatLng({lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)})},response[i].latLng={lat:parseFloat(response[i].lat),lng:parseFloat(response[i].lon)},response[i].bounds=new WPGMZA.LatLngBounds(new WPGMZA.LatLng({lat:response[i].boundingbox[1],lng:response[i].boundingbox[2]}),new WPGMZA.LatLng({lat:response[i].boundingbox[0],lng:response[i].boundingbox[3]})),response[i].lng=response[i].lon;callback(response,status)};else{if(!options.latLng)throw new Error("You must supply either a latLng or address");location=options.latLng.toString(),finish=function(response,status){var address=response[0].display_name;callback([address],status)}}var query={location:location,options:options};this.getResponseFromCache(query,function(response){response.length?finish(response,WPGMZA.Geocoder.SUCCESS):self.getResponseFromNominatim($.extend(options,{address:location}),function(response,status){status!=WPGMZA.Geocoder.FAIL?0!=response.length?(finish(response,WPGMZA.Geocoder.SUCCESS),self.cacheResponse(query,response)):callback([],WPGMZA.Geocoder.ZERO_RESULTS):callback(null,WPGMZA.Geocoder.FAIL)})})}}}),jQuery(function($){var Parent;WPGMZA.OLInfoWindow=function(feature){var self=this;Parent.call(this,feature),this.element=$("<div class='wpgmza-infowindow ol-info-window-container ol-info-window-plain'></div>")[0],$(this.element).on("click",".ol-info-window-close",function(event){self.close()})},Parent=WPGMZA.isProVersion()?WPGMZA.ProInfoWindow:WPGMZA.InfoWindow,WPGMZA.OLInfoWindow.prototype=Object.create(Parent.prototype),WPGMZA.OLInfoWindow.prototype.constructor=WPGMZA.OLInfoWindow,Object.defineProperty(WPGMZA.OLInfoWindow.prototype,"isPanIntoViewAllowed",{get:function(){return!0}}),WPGMZA.OLInfoWindow.prototype.open=function(map,feature){var self=this,latLng=feature.getPosition();if(!Parent.prototype.open.call(this,map,feature))return!1;this.parent=map,this.overlay&&this.feature.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!0,insertFirst:!0}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.feature.map.olMap.addOverlay(this.overlay),$(this.element).show(),this.setContent(this.content),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(feature.getIcon(),function(size){$(self.element).css({left:Math.round(size.width/2)+"px"})}),this.trigger("infowindowopen"),this.trigger("domready")},WPGMZA.OLInfoWindow.prototype.close=function(event){$(this.element).hide(),this.overlay&&(WPGMZA.InfoWindow.prototype.close.call(this),this.trigger("infowindowclose"),this.feature.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){Parent.prototype.setContent.call(this,html),this.content=html;var eaBtn=WPGMZA.isProVersion()?"":this.addEditButton();$(this.element).html(eaBtn+"<i class='fa fa-times ol-info-window-close' aria-hidden='true'></i>"+html)},WPGMZA.OLInfoWindow.prototype.setOptions=function(options){options.maxWidth&&$(this.element).css({"max-width":options.maxWidth+"px"})},WPGMZA.OLInfoWindow.prototype.onOpen=function(){var self=this,imgs=$(this.element).find("img"),numImages=imgs.length,numImagesLoaded=0;if(WPGMZA.InfoWindow.prototype.onOpen.apply(this,arguments),this.isPanIntoViewAllowed){function inside(el,viewport){var a=$(el)[0].getBoundingClientRect(),b=$(viewport)[0].getBoundingClientRect();return a.left>=b.left&&a.left<=b.right&&a.right<=b.right&&a.right>=b.left&&a.top>=b.top&&a.top<=b.bottom&&a.bottom<=b.bottom&&a.bottom>=b.top}function panIntoView(){var offset=.45*-$(self.element).height();self.feature.map.animateNudge(0,offset,self.feature.getPosition())}imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.feature.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.feature.map.element)||panIntoView()}}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var viewOptions=this.settings.toOLViewOptions();function isSettingDisabled(value){return"yes"===value||!!value}$(this.element).html(""),this.olMap=new ol.Map({target:$(element)[0],layers:[this.getTileLayer()],view:new ol.View(viewOptions)}),this.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan?interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_draggable)):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_clickzoom)):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive(!isSettingDisabled(self.settings.wpgmza_settings_map_scroll))},this),"greedy"!=this.settings.wpgmza_force_greedy_gestures&&"yes"!=this.settings.wpgmza_force_greedy_gestures&&1!=this.settings.wpgmza_force_greedy_gestures&&(this.gestureOverlay=$("<div class='wpgmza-gesture-overlay'></div>"),this.gestureOverlayTimeoutID=null,WPGMZA.isTouchDevice()||(this.olMap.on("wheel",function(event){if(!ol.events.condition.platformModifierKeyOnly(event))return self.showGestureOverlay(),event.originalEvent.preventDefault(),!1}),this.gestureOverlay.text(WPGMZA.localized_strings.use_ctrl_scroll_to_zoom))),this.olMap.getControls().forEach(function(control){control instanceof ol.control.Zoom&&1==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),isSettingDisabled(WPGMZA.settings.wpgmza_settings_map_full_screen_control)||this.olMap.addControl(new ol.control.FullScreen),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(this.markerLayer=new ol.layer.Vector({source:new ol.source.Vector({features:[]})}),this.olMap.addLayer(this.markerLayer),this.olMap.on("click",function(event){var features=self.olMap.getFeaturesAtPixel(event.pixel);if(features&&features.length){var marker=features[0].wpgmzaMarker;marker&&(marker.trigger("click"),marker.trigger("select"))}})),this.olMap.on("movestart",function(event){self.isBeingDragged=!0}),this.olMap.on("moveend",function(event){self.wrapLongitude(),self.isBeingDragged=!1,self.dispatchEvent("dragend"),self.onIdle()}),this.olMap.getView().on("change:resolution",function(event){self.dispatchEvent("zoom_changed"),self.dispatchEvent("zoomchanged"),setTimeout(function(){self.onIdle()},10)}),this.olMap.getView().on("change",function(){self.onBoundsChanged()}),self.onBoundsChanged(),this._mouseoverNativeFeatures=[],this.olMap.on("pointermove",function(event){if(!event.dragging){try{var featuresUnderPixel=event.target.getFeaturesAtPixel(event.pixel)}catch(e){return}featuresUnderPixel=featuresUnderPixel||[];var i,props,nativeFeaturesUnderPixel=[];for(i=0;i<featuresUnderPixel.length;i++)(props=featuresUnderPixel[i].getProperties()).wpgmzaFeature&&(nativeFeature=props.wpgmzaFeature,nativeFeaturesUnderPixel.push(nativeFeature),-1==self._mouseoverNativeFeatures.indexOf(nativeFeature)&&(nativeFeature.trigger("mouseover"),self._mouseoverNativeFeatures.push(nativeFeature)));for(i=self._mouseoverNativeFeatures.length-1;0<=i;i--)nativeFeature=self._mouseoverNativeFeatures[i],-1==nativeFeaturesUnderPixel.indexOf(nativeFeature)&&(nativeFeature.trigger("mouseout"),self._mouseoverNativeFeatures.splice(i,1))}}),$(this.element).on("click contextmenu",function(event){var isRight;event=event||window.event;var latLng=self.pixelsToLatLng(event.offsetX,event.offsetY);if("which"in event?isRight=3==event.which:"button"in event&&(isRight=2==event.button),1!=event.which&&1!=event.button){if(isRight)return self.onRightClick(event)}else{if(self.isBeingDragged)return;if($(event.target).closest(".ol-marker").length)return;try{var featuresUnderPixel=self.olMap.getFeaturesAtPixel([event.offsetX,event.offsetY])}catch(e){return}featuresUnderPixel=featuresUnderPixel||[];var i,props,nativeFeaturesUnderPixel=[];for(i=0;i<featuresUnderPixel.length;i++)(props=featuresUnderPixel[i].getProperties()).wpgmzaFeature&&(nativeFeature=props.wpgmzaFeature,nativeFeaturesUnderPixel.push(nativeFeature),nativeFeature.trigger("click"));if(0<featuresUnderPixel.length)return;self.trigger({type:"click",latLng:latLng})}}),WPGMZA.isProVersion()||(this.trigger("init"),this.dispatchEvent("created"),WPGMZA.events.dispatchEvent({type:"mapcreated",map:this}),$(this.element).trigger("wpgooglemaps_loaded"))},Parent=WPGMZA.isProVersion()?WPGMZA.ProMap:WPGMZA.Map,WPGMZA.OLMap.prototype=Object.create(Parent.prototype),WPGMZA.OLMap.prototype.constructor=WPGMZA.OLMap,WPGMZA.OLMap.prototype.getTileLayer=function(){var options={};return WPGMZA.settings.tile_server_url&&(options.url=WPGMZA.settings.tile_server_url,"custom_override"===WPGMZA.settings.tile_server_url&&(WPGMZA.settings.tile_server_url_override&&""!==WPGMZA.settings.tile_server_url_override.trim()?options.url=WPGMZA.settings.tile_server_url_override.trim():options.url="https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png"),WPGMZA.settings.open_layers_api_key&&""!==WPGMZA.settings.open_layers_api_key&&(options.url+="?apikey="+WPGMZA.settings.open_layers_api_key.trim())),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var transformed=ol.proj.transform(this.olMap.getView().getCenter(),"EPSG:3857","EPSG:4326"),center={lat:transformed[1],lng:transformed[0]};-180<=center.lng&¢er.lng<=180||(center.lng=center.lng-360*Math.floor(center.lng/360),180<center.lng&&(center.lng-=360),this.setCenter(center))},WPGMZA.OLMap.prototype.getCenter=function(){var lonLat=ol.proj.toLonLat(this.olMap.getView().getCenter());return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.setCenter=function(latLng){var view=this.olMap.getView();WPGMZA.Map.prototype.setCenter.call(this,latLng),view.setCenter(ol.proj.fromLonLat([latLng.lng,latLng.lat])),this.wrapLongitude(),this.onBoundsChanged()},WPGMZA.OLMap.prototype.getBounds=function(){var bounds=this.olMap.getView().calculateExtent(this.olMap.getSize()),nativeBounds=new WPGMZA.LatLngBounds,topLeft=ol.proj.toLonLat([bounds[0],bounds[1]]),bottomRight=ol.proj.toLonLat([bounds[2],bounds[3]]);return nativeBounds.north=topLeft[1],nativeBounds.south=bottomRight[1],nativeBounds.west=topLeft[0],nativeBounds.east=bottomRight[0],nativeBounds},WPGMZA.OLMap.prototype.fitBounds=function(southWest,northEast){if(southWest instanceof WPGMZA.LatLng&&(southWest={lat:southWest.lat,lng:southWest.lng}),northEast instanceof WPGMZA.LatLng)northEast={lat:northEast.lat,lng:northEast.lng};else if(southWest instanceof WPGMZA.LatLngBounds){var bounds=southWest;southWest={lat:bounds.south,lng:bounds.west},northEast={lat:bounds.north,lng:bounds.east}}var view=this.olMap.getView(),extent=ol.extent.boundingExtent([ol.proj.fromLonLat([parseFloat(southWest.lng),parseFloat(southWest.lat)]),ol.proj.fromLonLat([parseFloat(northEast.lng),parseFloat(northEast.lat)])]);view.fit(extent,this.olMap.getSize())},WPGMZA.OLMap.prototype.panTo=function(latLng,zoom){var view=this.olMap.getView(),options={center:ol.proj.fromLonLat([parseFloat(latLng.lng),parseFloat(latLng.lat)]),duration:500};1<arguments.length&&(options.zoom=parseInt(zoom)),view.animate(options)},WPGMZA.OLMap.prototype.getZoom=function(){return Math.round(this.olMap.getView().getZoom())},WPGMZA.OLMap.prototype.setZoom=function(value){this.olMap.getView().setZoom(value)},WPGMZA.OLMap.prototype.getMinZoom=function(){return this.olMap.getView().getMinZoom()},WPGMZA.OLMap.prototype.setMinZoom=function(value){this.olMap.getView().setMinZoom(value)},WPGMZA.OLMap.prototype.getMaxZoom=function(){return this.olMap.getView().getMaxZoom()},WPGMZA.OLMap.prototype.setMaxZoom=function(value){this.olMap.getView().setMaxZoom(value)},WPGMZA.OLMap.prototype.setOptions=function(options){Parent.prototype.setOptions.call(this,options),this.olMap&&this.olMap.getView().setProperties(this.settings.toOLViewOptions())},WPGMZA.OLMap.prototype.addMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.addOverlay(marker.overlay):(this.markerLayer.getSource().addFeature(marker.feature),marker.featureInSource=!0),Parent.prototype.addMarker.call(this,marker)},WPGMZA.OLMap.prototype.removeMarker=function(marker){WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT?this.olMap.removeOverlay(marker.overlay):(this.markerLayer.getSource().removeFeature(marker.feature),marker.featureInSource=!1),Parent.prototype.removeMarker.call(this,marker)},WPGMZA.OLMap.prototype.addPolygon=function(polygon){this.olMap.addLayer(polygon.layer),Parent.prototype.addPolygon.call(this,polygon)},WPGMZA.OLMap.prototype.removePolygon=function(polygon){this.olMap.removeLayer(polygon.layer),Parent.prototype.removePolygon.call(this,polygon)},WPGMZA.OLMap.prototype.addPolyline=function(polyline){this.olMap.addLayer(polyline.layer),Parent.prototype.addPolyline.call(this,polyline)},WPGMZA.OLMap.prototype.removePolyline=function(polyline){this.olMap.removeLayer(polyline.layer),Parent.prototype.removePolyline.call(this,polyline)},WPGMZA.OLMap.prototype.addCircle=function(circle){this.olMap.addLayer(circle.layer),Parent.prototype.addCircle.call(this,circle)},WPGMZA.OLMap.prototype.removeCircle=function(circle){this.olMap.removeLayer(circle.layer),Parent.prototype.removeCircle.call(this,circle)},WPGMZA.OLMap.prototype.addRectangle=function(rectangle){this.olMap.addLayer(rectangle.layer),Parent.prototype.addRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.removeRectangle=function(rectangle){this.olMap.removeLayer(rectangle.layer),Parent.prototype.removeRectangle.call(this,rectangle)},WPGMZA.OLMap.prototype.pixelsToLatLng=function(x,y){null==y&&("x"in x&&"y"in x?(y=x.y,x=x.x):console.warn("Y coordinate undefined in pixelsToLatLng (did you mean to pass 2 arguments?)"));var coord=this.olMap.getCoordinateFromPixel([x,y]);if(!coord)return{x:null,y:null};var lonLat=ol.proj.toLonLat(coord);return{lat:lonLat[1],lng:lonLat[0]}},WPGMZA.OLMap.prototype.latLngToPixels=function(latLng){var coord=ol.proj.fromLonLat([latLng.lng,latLng.lat]),pixel=this.olMap.getPixelFromCoordinate(coord);return pixel?{x:pixel[0],y:pixel[1]}:{x:null,y:null}},WPGMZA.OLMap.prototype.enableBicycleLayer=function(value){if(value)this.bicycleLayer||(this.bicycleLayer=new ol.layer.Tile({source:new ol.source.OSM({url:"http://{a-c}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png"})})),this.olMap.addLayer(this.bicycleLayer);else{if(!this.bicycleLayer)return;this.olMap.removeLayer(this.bicycleLayer)}},WPGMZA.OLMap.prototype.showGestureOverlay=function(){var self=this;clearTimeout(this.gestureOverlayTimeoutID),$(this.gestureOverlay).stop().animate({opacity:"100"}),$(this.element).append(this.gestureOverlay),$(this.gestureOverlay).css({"line-height":$(this.element).height()+"px",opacity:"1.0"}),$(this.gestureOverlay).show(),this.gestureOverlayTimeoutID=setTimeout(function(){self.gestureOverlay.fadeOut(2e3)},2e3)},WPGMZA.OLMap.prototype.onElementResized=function(event){this.olMap.updateSize()},WPGMZA.OLMap.prototype.onRightClick=function(event){if($(event.target).closest(".ol-marker, .wpgmza_modern_infowindow, .wpgmza-modern-store-locator").length)return!0;var parentOffset=$(this.element).offset(),relX=event.pageX-parentOffset.left,relY=event.pageY-parentOffset.top,latLng=this.pixelsToLatLng(relX,relY);return this.trigger({type:"rightclick",latLng:latLng}),$(this.element).trigger({type:"rightclick",latLng:latLng}),event.preventDefault(),!1},WPGMZA.OLMap.prototype.enableAllInteractions=function(){this.olMap.getInteractions().forEach(function(interaction){(interaction instanceof ol.interaction.DragPan||interaction instanceof ol.interaction.DoubleClickZoom||interaction instanceof ol.interaction.MouseWheelZoom)&&interaction.setActive(!0)},this)}}),jQuery(function($){var Parent;WPGMZA.OLMarker=function(options){var self=this;Parent.call(this,options);var settings={};if(options)for(var name in options)options[name]instanceof WPGMZA.LatLng?settings[name]=options[name].toLatLngLiteral():options[name]instanceof WPGMZA.Map||(settings[name]=options[name]);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);if(WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT){var img=$("<img alt=''/>")[0];img.onload=function(event){self.updateElementHeight(),self.map&&self.map.olMap.updateSize()},img.src=WPGMZA.defaultMarkerIcon,this.element=$("<div class='ol-marker'></div>")[0],this.element.appendChild(img),this.element.wpgmzaMarker=this,$(this.element).on("mouseover",function(event){self.dispatchEvent("mouseover")}),this.overlay=new ol.Overlay({element:this.element,position:origin,positioning:"bottom-center",stopEvent:!1}),this.overlay.setPosition(origin),this.animation?this.setAnimation(this.animation):this.anim&&this.setAnimation(this.anim),options&&options.draggable&&this.setDraggable(!0),this.rebindClickListener()}else{if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)throw new Error("Invalid marker render mode");this.feature=new ol.Feature({geometry:new ol.geom.Point(origin)}),this.feature.setStyle(this.getVectorLayerStyle()),(this.feature.wpgmzaMarker=this).feature.wpgmzaFeature=this}this.setOptions(settings),this.trigger("init")},Parent=WPGMZA.isProVersion()?WPGMZA.ProMarker:WPGMZA.Marker,WPGMZA.OLMarker.prototype=Object.create(Parent.prototype),WPGMZA.OLMarker.prototype.constructor=WPGMZA.OLMarker,WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT="element",WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER="vector",WPGMZA.OLMarker.renderMode=WPGMZA.OLMarker.RENDER_MODE_HTML_ELEMENT,"open-layers"==WPGMZA.settings.engine&&WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&(WPGMZA.OLMarker.defaultVectorLayerStyle=new ol.style.Style({image:new ol.style.Icon({anchor:[.5,1],src:WPGMZA.defaultMarkerIcon})}),WPGMZA.OLMarker.hiddenVectorLayerStyle=new ol.style.Style({})),WPGMZA.OLMarker.prototype.getVectorLayerStyle=function(){return this.vectorLayerStyle?this.vectorLayerStyle:WPGMZA.OLMarker.defaultVectorLayerStyle},WPGMZA.OLMarker.prototype.updateElementHeight=function(height,calledOnFocus){var self=this;0!=(height=height||$(this.element).find("img").height())||calledOnFocus||$(window).one("focus",function(event){self.updateElementHeight(!1,!0)}),$(this.element).css({height:height+"px"})},WPGMZA.OLMarker.prototype.addLabel=function(){this.setLabel(this.getLabelText())},WPGMZA.OLMarker.prototype.setLabel=function(label){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?label?(this.label||(this.label=$("<div class='ol-marker-label'/>"),$(this.element).append(this.label)),this.label.html(label)):this.label&&$(this.element).find(".ol-marker-label").remove():console.warn("Marker labels are not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.getVisible=function(visible){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)return"none"!=this.overlay.getElement().style.display},WPGMZA.OLMarker.prototype.setVisible=function(visible){if(Parent.prototype.setVisible.call(this,visible),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(visible){var style=this.getVectorLayerStyle();this.feature.setStyle(style)}else this.feature.setStyle(null);else this.overlay.getElement().style.display=visible?"block":"none"},WPGMZA.OLMarker.prototype.setPosition=function(latLng){Parent.prototype.setPosition.call(this,latLng);var origin=ol.proj.fromLonLat([parseFloat(this.lng),parseFloat(this.lat)]);WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?this.feature.setGeometry(new ol.geom.Point(origin)):this.overlay.setPosition(origin)},WPGMZA.OLMarker.prototype.updateOffset=function(x,y){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER){x=this._offset.x,y=this._offset.y;this.element.style.position="relative",this.element.style.left=x+"px",this.element.style.top=y+"px"}else console.warn("Marker offset is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setAnimation=function(anim){if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)switch(Parent.prototype.setAnimation.call(this,anim),anim){case WPGMZA.Marker.ANIMATION_NONE:$(this.element).removeAttr("data-anim");break;case WPGMZA.Marker.ANIMATION_BOUNCE:$(this.element).attr("data-anim","bounce");break;case WPGMZA.Marker.ANIMATION_DROP:$(this.element).attr("data-anim","drop")}else console.warn("Marker animation is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setDraggable=function(draggable){var self=this;if(WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER)if(draggable){var options={disabled:!1};this.jQueryDraggableInitialized||(options.start=function(event){self.onDragStart(event)},options.stop=function(event){self.onDragEnd(event)}),$(this.element).draggable(options),this.jQueryDraggableInitialized=!0,this.rebindClickListener()}else $(this.element).draggable({disabled:!0});else console.warn("Marker dragging is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.setOpacity=function(opacity){WPGMZA.OLMarker.renderMode!=WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER?$(this.element).css({opacity:opacity}):console.warn("Marker opacity is not currently supported in Vector Layer rendering mode")},WPGMZA.OLMarker.prototype.onDragStart=function(event){this.isBeingDragged=!0,this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!1)})},WPGMZA.OLMarker.prototype.onDragEnd=function(event){var offset_top=parseFloat($(this.element).css("top").match(/-?\d+/)[0]),offset_left=parseFloat($(this.element).css("left").match(/-?\d+/)[0]);$(this.element).css({top:"0px",left:"0px"});var currentLatLng=this.getPosition(),pixelsBeforeDrag=this.map.latLngToPixels(currentLatLng),pixelsAfterDrag={x:pixelsBeforeDrag.x+offset_left,y:pixelsBeforeDrag.y+offset_top},latLngAfterDrag=this.map.pixelsToLatLng(pixelsAfterDrag);this.setPosition(latLngAfterDrag),this.isBeingDragged=!1,this.trigger({type:"dragend",latLng:latLngAfterDrag}),this.trigger("change"),"yes"!=this.map.settings.wpgmza_settings_map_draggable&&this.map.olMap.getInteractions().forEach(function(interaction){interaction instanceof ol.interaction.DragPan&&interaction.setActive(!0)})},WPGMZA.OLMarker.prototype.onElementClick=function(event){var self=event.currentTarget.wpgmzaMarker;self.isBeingDragged||(self.dispatchEvent("click"),self.dispatchEvent("select"))},WPGMZA.OLMarker.prototype.rebindClickListener=function(){$(this.element).off("click",this.onElementClick),$(this.element).on("click",this.onElementClick)}}),jQuery(function($){WPGMZA.OLModernStoreLocatorCircle=function(map,settings){WPGMZA.ModernStoreLocatorCircle.call(this,map,settings)},WPGMZA.OLModernStoreLocatorCircle.prototype=Object.create(WPGMZA.ModernStoreLocatorCircle.prototype),WPGMZA.OLModernStoreLocatorCircle.prototype.constructor=WPGMZA.OLModernStoreLocatorCircle,WPGMZA.OLModernStoreLocatorCircle.prototype.initCanvasLayer=function(){var self=this,olViewportElement=$(this.map.element).children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",olViewportElement.find(".ol-layers .ol-layer:first-child").prepend(this.canvas),this.renderFunction=function(event){self.canvas.width==olViewportElement.width()&&self.canvas.height==olViewportElement.height()||(self.canvas.width=olViewportElement.width(),self.canvas.height=olViewportElement.height(),$(this.canvas).css({width:olViewportElement.width()+"px",height:olViewportElement.height()+"px"})),self.draw()},this.map.olMap.on("postrender",this.renderFunction)},WPGMZA.OLModernStoreLocatorCircle.prototype.getContext=function(type){return this.canvas.getContext(type)},WPGMZA.OLModernStoreLocatorCircle.prototype.getCanvasDimensions=function(){return{width:this.canvas.width,height:this.canvas.height}},WPGMZA.OLModernStoreLocatorCircle.prototype.getCenterPixels=function(){return this.map.latLngToPixels(this.settings.center)},WPGMZA.OLModernStoreLocatorCircle.prototype.getWorldOriginOffset=function(){return{x:0,y:0}},WPGMZA.OLModernStoreLocatorCircle.prototype.getTransformedRadius=function(km){var center=new WPGMZA.LatLng(this.settings.center),outer=new WPGMZA.LatLng(center);outer.moveByDistance(km,90);var centerPixels=this.map.latLngToPixels(center),outerPixels=this.map.latLngToPixels(outer);return Math.abs(outerPixels.x-centerPixels.x)},WPGMZA.OLModernStoreLocatorCircle.prototype.getScale=function(){return 1},WPGMZA.OLModernStoreLocatorCircle.prototype.destroy=function(){$(this.canvas).remove(),this.map.olMap.un("postrender",this.renderFunction),this.map=null,this.canvas=null}}),jQuery(function($){WPGMZA.OLModernStoreLocator=function(map_id){WPGMZA.ModernStoreLocator.call(this,map_id),(WPGMZA.isProVersion()?$(".wpgmza_map[data-map-id='"+map_id+"']"):$("#wpgmza_map")).append(this.element)},WPGMZA.OLModernStoreLocator.prototype=Object.create(WPGMZA.ModernStoreLocator),WPGMZA.OLModernStoreLocator.prototype.constructor=WPGMZA.OLModernStoreLocator}),jQuery(function($){var Parent;WPGMZA.OLPolygon=function(options,olFeature){if(Parent.call(this,options,olFeature),olFeature)this.olFeature=olFeature;else{var coordinates=[[]];if(options&&options.polydata)for(var paths=this.parseGeometry(options.polydata),i=0;i<=paths.length;i++)coordinates[0].push(ol.proj.fromLonLat([parseFloat(paths[i%paths.length].lng),parseFloat(paths[i%paths.length].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]})}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolygon:this,wpgmzaFeature:this}),options&&this.setOptions(options)},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getGeometry=function(){for(var coordinates=this.olFeature.getGeometry().getCoordinates()[0],result=[],i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.push(latLng)}return result},WPGMZA.OLPolygon.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&options.polydata)for(var path=this.parseGeometry(options.polydata),i=0;i<path.length;i++){if(!$.isNumeric(path[i].lat))throw new Error("Invalid latitude");if(!$.isNumeric(path[i].lng))throw new Error("Invalid longitude");coordinates.push(ol.proj.fromLonLat([parseFloat(path[i].lng),parseFloat(path[i].lat)]))}this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]})}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this,wpgmzaFeature:this}),options&&this.setOptions(options)},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getGeometry=function(){for(var result=[],coordinates=this.olFeature.getGeometry().getCoordinates(),i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.push(latLng)}return result},WPGMZA.OLPolyline.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){var Parent=WPGMZA.Rectangle;WPGMZA.OLRectangle=function(options,olFeature){if(Parent.apply(this,arguments),olFeature)this.olFeature=olFeature;else{var coordinates=[[]];options.cornerA&&options.cornerB&&(coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerA.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerB.lng),parseFloat(options.cornerA.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerB.lng),parseFloat(options.cornerB.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerB.lat)])),coordinates[0].push(ol.proj.fromLonLat([parseFloat(options.cornerA.lng),parseFloat(options.cornerA.lat)]))),this.olFeature=new ol.Feature({geometry:new ol.geom.Polygon(coordinates)})}this.layer=new ol.layer.Vector({source:new ol.source.Vector({features:[this.olFeature]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaRectangle:this,wpgmzaFeature:this}),options&&this.setOptions(options)},WPGMZA.extend(WPGMZA.OLRectangle,WPGMZA.Rectangle),WPGMZA.OLRectangle.prototype.getBounds=function(){var extent=this.olFeature.getGeometry().getExtent(),topLeft=ol.extent.getTopLeft(extent),bottomRight=ol.extent.getBottomRight(extent),topLeftLonLat=ol.proj.toLonLat(topLeft),bottomRightLonLat=ol.proj.toLonLat(bottomRight),topLeftLatLng=new WPGMZA.LatLng(topLeftLonLat[1],topLeftLonLat[0]),bottomRightLatLng=new WPGMZA.LatLng(bottomRightLonLat[1],bottomRightLonLat[0]);return new WPGMZA.LatLngBounds(topLeftLatLng,bottomRightLatLng)},WPGMZA.OLRectangle.prototype.setOptions=function(options){Parent.prototype.setOptions.apply(this,arguments),"editable"in options&&WPGMZA.OLFeature.setInteractionsOnFeature(this,options.editable)}}),jQuery(function($){WPGMZA.OLText=function(){}}),jQuery(function($){WPGMZA.DataTable=function(element){var self=this;if(!$.fn.dataTable)return console.warn("The dataTables library is not loaded. Cannot create a dataTable. Did you enable 'Do not enqueue dataTables'?"),void(WPGMZA.settings.wpgmza_do_not_enqueue_datatables&&WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&alert("You have selected 'Do not enqueue DataTables' in WP Google Maps' settings. No 3rd party software is loading the DataTables library. Because of this, the marker table cannot load. Please uncheck this option to use the marker table."));if($.fn.dataTable.ext)$.fn.dataTable.ext.errMode="throw";else{var version=$.fn.dataTable.version?$.fn.dataTable.version:"unknown";console.warn("You appear to be running an outdated or modified version of the dataTables library. This may cause issues with table functionality. This is usually caused by 3rd party software loading an older version of DataTables. The loaded version is "+version+", we recommend version 1.10.12 or above.")}$.fn.dataTable.Api&&$.fn.dataTable.Api.register("processing()",function(show){return this.iterator("table",function(ctx){ctx.oApi._fnProcessingDisplay(ctx,show)})}),this.element=element,(this.element.wpgmzaDataTable=this).dataTableElement=this.getDataTableElement();var settings=this.getDataTableSettings();this.phpClass=$(element).attr("data-wpgmza-php-class"),(this.wpgmzaDataTable=this).useCompressedPathVariable=WPGMZA.restAPI&&WPGMZA.restAPI.isCompressedPathVariableSupported&&WPGMZA.settings.enable_compressed_path_variables,this.method=this.useCompressedPathVariable?"GET":"POST",null==this.getLanguageURL()||"//cdn.datatables.net/plug-ins/1.10.12/i18n/English.json"==this.getLanguageURL()?(this.dataTable=$(this.dataTableElement).DataTable(settings),this.dataTable.ajax.reload()):$.ajax(this.getLanguageURL(),{success:function(response,status,xhr){self.languageJSON=response,self.dataTable=$(self.dataTableElement).DataTable(settings),self.dataTable.ajax.reload()}})},WPGMZA.DataTable.prototype.getDataTableElement=function(){return $(this.element).find("table")},WPGMZA.DataTable.prototype.onAJAXRequest=function(data,settings){var params={phpClass:this.phpClass},attr=$(this.element).attr("data-wpgmza-ajax-parameters");return attr&&$.extend(params,JSON.parse(attr)),$.extend(data,params)},WPGMZA.DataTable.prototype.onDataTableAjaxRequest=function(data,callback,settings){var self=this,element=this.element,route=$(element).attr("data-wpgmza-rest-api-route"),params=this.onAJAXRequest(data,settings),draw=params.draw;if(delete params.draw,!route)throw new Error("No data-wpgmza-rest-api-route attribute specified");var options={method:"POST",useCompressedPathVariable:!0,data:params,dataType:"json",cache:!this.preventCaching,beforeSend:function(xhr){xhr.setRequestHeader("X-DataTables-Draw",draw)},success:function(response,status,xhr){response.draw=draw,self.lastResponse=response,callback(response),$("[data-marker-icon-src]").each(function(index,element){WPGMZA.MarkerIcon.createInstance($(element).attr("data-marker-icon-src")).applyToElement(element)})}};return WPGMZA.restAPI.call(route,options)},WPGMZA.DataTable.prototype.getDataTableSettings=function(){var self=this,element=this.element,options={};$(element).attr("data-wpgmza-datatable-options")&&(options=JSON.parse($(element).attr("data-wpgmza-datatable-options"))),options.deferLoading=!0,options.processing=!0,options.serverSide=!0,options.ajax=function(data,callback,settings){return WPGMZA.DataTable.prototype.onDataTableAjaxRequest.apply(self,arguments)},WPGMZA.AdvancedTableDataTable&&this instanceof WPGMZA.AdvancedTableDataTable&&WPGMZA.settings.wpgmza_default_items&&(options.iDisplayLength=parseInt(WPGMZA.settings.wpgmza_default_items)),options.aLengthMenu=[[5,10,25,50,100,-1],["5","10","25","50","100",WPGMZA.localized_strings.all]];var languageURL=this.getLanguageURL();return languageURL&&(options.language={url:languageURL}),options},WPGMZA.DataTable.prototype.getLanguageURL=function(){if(!WPGMZA.locale)return null;var languageURL;switch(WPGMZA.locale.substr(0,2)){case"af":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Afrikaans.json";break;case"sq":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Albanian.json";break;case"am":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Amharic.json";break;case"ar":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Arabic.json";break;case"hy":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Armenian.json";break;case"az":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Azerbaijan.json";break;case"bn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Bangla.json";break;case"eu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Basque.json";break;case"be":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Belarusian.json";break;case"bg":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Bulgarian.json";break;case"ca":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?WPGMZA.pluginDirURL+"languages/datatables/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Croatian.json";break;case"cs":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Czech.json";break;case"da":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Danish.json";break;case"nl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Dutch.json";break;case"et":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?WPGMZA.pluginDirURL+"languages/datatables/Filipino.json":WPGMZA.pluginDirURL+"languages/datatables/Finnish.json";break;case"fr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/French.json";break;case"gl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Galician.json";break;case"ka":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Georgian.json";break;case"de":languageURL=WPGMZA.pluginDirURL+"languages/datatables/German.json";break;case"el":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Greek.json";break;case"gu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Gujarati.json";break;case"he":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hebrew.json";break;case"hi":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hindi.json";break;case"hu":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Hungarian.json";break;case"is":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Icelandic.json";break;case"id":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Indonesian.json";break;case"ga":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Irish.json";break;case"it":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Italian.json";break;case"ja":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Japanese.json";break;case"kk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Kazakh.json";break;case"ko":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Korean.json";break;case"ky":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Kyrgyz.json";break;case"lv":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Latvian.json";break;case"lt":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Lithuanian.json";break;case"mk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Macedonian.json";break;case"ml":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Malay.json";break;case"mn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Mongolian.json";break;case"ne":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Nepali.json";break;case"nb":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Norwegian-Bokmal.json";break;case"nn":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Norwegian-Nynorsk.json";break;case"ps":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Pashto.json";break;case"fa":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Persian.json";break;case"pl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?WPGMZA.pluginDirURL+"languages/datatables/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Romanian.json";break;case"ru":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Russian.json";break;case"sr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Serbian.json";break;case"si":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Sinhala.json";break;case"sk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Slovak.json";break;case"sl":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Slovenian.json";break;case"es":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Spanish.json";break;case"sw":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Swahili.json";break;case"sv":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Swedish.json";break;case"ta":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Tamil.json";break;case"te":languageURL=WPGMZA.pluginDirURL+"languages/datatables/telugu.json";break;case"th":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Thai.json";break;case"tr":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Turkish.json";break;case"uk":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Ukrainian.json";break;case"ur":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Urdu.json";break;case"uz":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Uzbek.json";break;case"vi":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Vietnamese.json";break;case"cy":languageURL=WPGMZA.pluginDirURL+"languages/datatables/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),jQuery(function($){WPGMZA.AdminFeatureDataTable=function(element){var self=this;this.allSelected=!1,WPGMZA.DataTable.call(this,element),$(element).on("click",".wpgmza.bulk_delete",function(event){self.onBulkDelete(event)}),$(element).on("click",".wpgmza.select_all_markers",function(event){self.onSelectAll(event)}),$(element).on("click","[data-center-marker-id]",function(event){self.onCenterMarker(event)})},WPGMZA.extend(WPGMZA.AdminFeatureDataTable,WPGMZA.DataTable),Object.defineProperty(WPGMZA.AdminFeatureDataTable.prototype,"featureType",{get:function(){return $(this.element).attr("data-wpgmza-feature-type")}}),Object.defineProperty(WPGMZA.AdminFeatureDataTable.prototype,"featurePanel",{get:function(){return WPGMZA.mapEditPage[this.featureType+"Panel"]}}),WPGMZA.AdminFeatureDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaFeatureData=meta},options},WPGMZA.AdminFeatureDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0],plural=this.featureType+"s";$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaFeatureData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/"+plural+"/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},WPGMZA.AdminFeatureDataTable.prototype.onSelectAll=function(event){this.allSelected=!this.allSelected;var self=this;$(this.element).find("input[name='mark']").each(function(){self.allSelected?$(this).prop("checked",!0):$(this).prop("checked",!1)})},WPGMZA.AdminFeatureDataTable.prototype.onCenterMarker=function(event){var id;id=null==event.currentTarget?event:$(event.currentTarget).attr("data-center-marker-id");var marker=WPGMZA.mapEditPage.map.getMarkerByID(id);if(marker){var latLng=new WPGMZA.LatLng({lat:marker.lat,lng:marker.lng});WPGMZA.mapEditPage.map.setCenter(latLng),WPGMZA.animateScroll("#wpgmaps_tabs_markers")}}}),jQuery(function($){WPGMZA.AdminMapDataTable=function(element){var self=this;WPGMZA.DataTable.call(this,element),$(element).on("mousedown","button[data-action='edit']",function(event){switch(event.which){case 1:var map_id=$(event.target).attr("data-map-id");window.location.href=window.location.href+"&action=edit&map_id="+map_id;break;case 2:map_id=$(event.target).attr("data-map-id");window.open(window.location.href+"&action=edit&map_id="+map_id)}}),$(element).find(".wpgmza.select_all_maps").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete_maps").on("click",function(event){self.onBulkDelete(event)}),$(element).on("click","button[data-action='duplicate']",function(event){var map_id=$(event.target).attr("data-map-id");WPGMZA.restAPI.call("/maps/",{method:"POST",data:{id:map_id,action:"duplicate"},success:function(response,status,xhr){self.reload()}})}),$(element).on("click","button[data-action='trash']",function(event){if(confirm(WPGMZA.localized_strings.map_delete_prompt_text)){var map_id=$(event.target).attr("data-map-id");WPGMZA.restAPI.call("/maps/",{method:"DELETE",data:{id:map_id},success:function(response,status,xhr){self.reload()}})}})},WPGMZA.extend(WPGMZA.AdminMapDataTable,WPGMZA.DataTable),WPGMZA.AdminMapDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMapData=meta},options},WPGMZA.AdminMapDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMapDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMapData.id)}),confirm(WPGMZA.localized_strings.map_bulk_delete_prompt_text)&&WPGMZA.restAPI.call("/maps/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},$(document).ready(function(event){$("[data-wpgmza-admin-map-datatable]").each(function(index,el){WPGMZA.AdminMapDataTable=new WPGMZA.AdminMapDataTable(el)})})}),jQuery(function($){WPGMZA.AdminMarkerDataTable=function(element){var self=this;this.preventCaching=!0,WPGMZA.DataTable.call(this,element),$(element).on("click","[data-delete-marker-id]",function(event){self.onDeleteMarker(event)}),$(element).find(".wpgmza.select_all_markers").on("click",function(event){self.onSelectAll(event)}),$(element).find(".wpgmza.bulk_delete").on("click",function(event){self.onBulkDelete(event)}),$(element).on("click","[data-center-marker-id]",function(event){self.onCenterMarker(event)})},WPGMZA.AdminMarkerDataTable.prototype=Object.create(WPGMZA.DataTable.prototype),WPGMZA.AdminMarkerDataTable.prototype.constructor=WPGMZA.AdminMarkerDataTable,WPGMZA.AdminMarkerDataTable.createInstance=function(element){return new WPGMZA.AdminMarkerDataTable(element)},WPGMZA.AdminMarkerDataTable.prototype.getDataTableSettings=function(){var self=this,options=WPGMZA.DataTable.prototype.getDataTableSettings.call(this);return options.createdRow=function(row,data,index){var meta=self.lastResponse.meta[index];row.wpgmzaMarkerData=meta},options},WPGMZA.AdminMarkerDataTable.prototype.onEditMarker=function(event){WPGMZA.animatedScroll("#wpgmaps_tabs_markers")},WPGMZA.AdminMarkerDataTable.prototype.onDeleteMarker=function(event){var self=this,id=$(event.currentTarget).attr("data-delete-marker-id"),data={action:"delete_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:id};$.post(ajaxurl,data,function(response){WPGMZA.mapEditPage.map.removeMarkerByID(id),self.reload()})},WPGMZA.AdminMarkerDataTable.prototype.onApproveMarker=function(event){var cur_id=$(this).attr("id"),data={action:"approve_marker",security:WPGMZA.legacyajaxnonce,map_id:WPGMZA.mapEditPage.map.id,marker_id:cur_id};$.post(ajaxurl,data,function(response){wpgmza_InitMap(),wpgmza_reinitialisetbl()})},WPGMZA.AdminMarkerDataTable.prototype.onSelectAll=function(event){$(this.element).find("input[name='mark']").prop("checked",!0)},WPGMZA.AdminMarkerDataTable.prototype.onBulkDelete=function(event){var self=this,ids=[],map=WPGMZA.maps[0];$(this.element).find("input[name='mark']:checked").each(function(index,el){var row=$(el).closest("tr")[0];ids.push(row.wpgmzaMarkerData.id)}),ids.forEach(function(marker_id){var marker=map.getMarkerByID(marker_id);marker&&map.removeMarker(marker)}),WPGMZA.restAPI.call("/markers/",{method:"DELETE",data:{ids:ids},complete:function(){self.reload()}})},WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker=function(event){var id;id=null==event.currentTarget?event:$(event.currentTarget).attr("data-center-marker-id");var marker=WPGMZA.mapEditPage.map.getMarkerByID(id);if(marker){var latLng=new WPGMZA.LatLng({lat:marker.lat,lng:marker.lng});WPGMZA.mapEditPage.map.setCenter(latLng),WPGMZA.mapEditPage.map.setZoom(6),WPGMZA.animateScroll("#wpgmaps_tabs_markers")}}});
|
languages/wp-google-maps-bg_BG.mo
CHANGED
Binary file
|
languages/wp-google-maps-bg_BG.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpgmaps\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en\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.
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
|
@@ -45,52 +45,33 @@ msgstr "Включи на страници"
|
|
45 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:27
|
46 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:79
|
47 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:139
|
48 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
49 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
50 |
#: ../../wp-google-maps-gold/legacy-core.php:1489
|
51 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
52 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
53 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
54 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
55 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
56 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:22
|
57 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:155
|
58 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:170
|
59 |
#: ../../wp-google-maps-pro/includes/page.categories.php:37
|
60 |
-
#: ../../wp-google-maps-
|
61 |
-
#: ../../wp-google-maps-
|
62 |
-
#: ../../wp-google-maps-
|
63 |
-
#: ../../wp-google-maps-
|
64 |
-
#: ../../wp-google-maps-
|
65 |
-
#: ../../wp-google-maps-
|
66 |
-
#:
|
67 |
-
#:
|
68 |
-
#:
|
69 |
-
#:
|
70 |
-
#:
|
71 |
-
#:
|
72 |
-
#:
|
73 |
-
#:
|
74 |
-
#:
|
75 |
-
#:
|
76 |
-
#:
|
77 |
-
#:
|
78 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:325
|
79 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:343
|
80 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:352
|
81 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:361
|
82 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:371
|
83 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:380
|
84 |
-
#: ../base/includes/full-screen-module.php:40 ../includes/class.strings.php:68
|
85 |
-
#: ../includes/legacy/settings-page.php:286
|
86 |
-
#: ../includes/legacy/settings-page.php:304
|
87 |
-
#: ../includes/legacy/settings-page.php:361
|
88 |
-
#: ../includes/legacy/settings-page.php:369
|
89 |
-
#: ../includes/legacy/settings-page.php:392 ../legacy-core.php:2733
|
90 |
-
#: ../legacy-core.php:2869 ../legacy-core.php:3553 ../legacy-core.php:3593
|
91 |
-
#: ../legacy-core.php:3737 ../legacy-core.php:3755 ../legacy-core.php:3764
|
92 |
-
#: ../legacy-core.php:3775 ../legacy-core.php:3824 ../legacy-core.php:3853
|
93 |
-
#: ../legacy-core.php:3857 ../legacy-core.php:4183 ../legacy-core.php:4238
|
94 |
msgid "Yes"
|
95 |
msgstr "Да"
|
96 |
|
@@ -98,54 +79,36 @@ msgstr "Да"
|
|
98 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:28
|
99 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:80
|
100 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:140
|
101 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
102 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
103 |
#: ../../wp-google-maps-gold/legacy-core.php:1490
|
104 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
105 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
106 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
107 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
108 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
109 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
110 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:65
|
111 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:150
|
112 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:175
|
113 |
#: ../../wp-google-maps-pro/includes/page.categories.php:37
|
114 |
-
#: ../../wp-google-maps-
|
115 |
-
#: ../../wp-google-maps-
|
116 |
-
#: ../../wp-google-maps-
|
117 |
-
#: ../../wp-google-maps-
|
118 |
-
#: ../../wp-google-maps-
|
119 |
-
#: ../../wp-google-maps-
|
120 |
-
#:
|
121 |
-
#:
|
122 |
-
#:
|
123 |
-
#:
|
124 |
-
#:
|
125 |
-
#:
|
126 |
-
#:
|
127 |
-
#:
|
128 |
-
#:
|
129 |
-
#:
|
130 |
-
#:
|
131 |
-
#:
|
132 |
-
#:
|
133 |
-
#:
|
134 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:353
|
135 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:362
|
136 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:370
|
137 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:379
|
138 |
-
#: ../base/includes/full-screen-module.php:40 ../includes/class.strings.php:69
|
139 |
-
#: ../includes/legacy/settings-page.php:286
|
140 |
-
#: ../includes/legacy/settings-page.php:305
|
141 |
-
#: ../includes/legacy/settings-page.php:361
|
142 |
-
#: ../includes/legacy/settings-page.php:369
|
143 |
-
#: ../includes/legacy/settings-page.php:392 ../legacy-core.php:2733
|
144 |
-
#: ../legacy-core.php:2869 ../legacy-core.php:3552 ../legacy-core.php:3556
|
145 |
-
#: ../legacy-core.php:3566 ../legacy-core.php:3593 ../legacy-core.php:3737
|
146 |
-
#: ../legacy-core.php:3755 ../legacy-core.php:3764 ../legacy-core.php:3775
|
147 |
-
#: ../legacy-core.php:3824 ../legacy-core.php:3852 ../legacy-core.php:3857
|
148 |
-
#: ../legacy-core.php:4182 ../legacy-core.php:4237
|
149 |
msgid "No"
|
150 |
msgstr "Не"
|
151 |
|
@@ -164,25 +127,31 @@ msgid "Device ID"
|
|
164 |
msgstr ""
|
165 |
|
166 |
#: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:64
|
167 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
168 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
169 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
170 |
-
#:
|
171 |
-
#:
|
172 |
-
#:
|
173 |
-
#:
|
174 |
-
#:
|
175 |
-
#:
|
176 |
-
#:
|
177 |
-
#:
|
178 |
-
#: ../
|
179 |
-
#: ../
|
180 |
-
#: ../
|
181 |
-
#: ../
|
182 |
-
#: ../
|
183 |
-
#: ../
|
184 |
-
#: ../legacy
|
185 |
-
#: ../legacy
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "Name"
|
187 |
msgstr "Име"
|
188 |
|
@@ -202,155 +171,154 @@ msgstr "Цвят на линк"
|
|
202 |
msgid "Approved"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:106
|
206 |
-
#: ../legacy-core.php:526 ../legacy-core.php:2684
|
207 |
-
msgid "Settings"
|
208 |
-
msgstr "Настройки"
|
209 |
-
|
210 |
-
#: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:113
|
211 |
-
msgid "New Polyline Distance Threshold (meters)"
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:122
|
215 |
-
msgid "New Polyline Time Threshold (minutes)"
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:5
|
219 |
#: ../../wp-google-maps-gold/includes/class.marker-rating.php:207
|
|
|
220 |
#, fuzzy
|
221 |
#| msgid "Marker Listing"
|
222 |
msgid "Marker Ratings"
|
223 |
msgstr "Списък маркери"
|
224 |
|
225 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:12
|
|
|
226 |
msgid "Minimum Rating"
|
227 |
msgstr ""
|
228 |
|
229 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:21
|
|
|
230 |
msgid "Maximum Rating"
|
231 |
msgstr ""
|
232 |
|
233 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:30
|
|
|
234 |
msgid ""
|
235 |
"Please note that changing these settings will not scale ratings which have "
|
236 |
"already been recorded."
|
237 |
msgstr ""
|
238 |
|
239 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:34
|
|
|
240 |
msgid ""
|
241 |
"We recommend that you do not modify the maximum and minimum settings after "
|
242 |
"you begin accepting ratings."
|
243 |
msgstr ""
|
244 |
|
245 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:41
|
|
|
246 |
#, fuzzy
|
247 |
#| msgid "Carousel settings"
|
248 |
msgid "Example range settings:"
|
249 |
msgstr "Настройка въртележка"
|
250 |
|
251 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:46
|
|
|
252 |
msgid "1 - 5 :- Traditional One to Five Stars"
|
253 |
msgstr ""
|
254 |
|
255 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:51
|
|
|
256 |
msgid "0 - 100 :- Percentage Rating"
|
257 |
msgstr ""
|
258 |
|
259 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:56
|
|
|
260 |
msgid "0 - 1 :- Like / Dislike, or Upvote / Downvote"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
264 |
msgid "Rating Step"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
268 |
msgid "The \"Stars\" widget style does not currently support \"Step\""
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
272 |
#, fuzzy
|
273 |
#| msgid "Save Style Settings"
|
274 |
msgid "Example step settings:"
|
275 |
msgstr "Запиши настройки на стил"
|
276 |
|
277 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
278 |
msgid "0.01 :- Allow decimal / floating point ratings"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
282 |
msgid "1 :- Whole number ratings only"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
286 |
msgid "5 :- Round to nearest five (eg for percentage ratings)"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
290 |
msgid "Widget Style"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
294 |
msgid "Bar rating gradient colours:"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
298 |
msgid "Start -"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
302 |
msgid "End -"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
306 |
msgid "Background color:"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
310 |
msgid "Tampering Countermeasures"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
314 |
#, fuzzy
|
315 |
#| msgid "Basic list"
|
316 |
msgid "Basic Only"
|
317 |
msgstr "Основен списък"
|
318 |
|
319 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
320 |
msgid ""
|
321 |
"Uses basic client side countermeasures. This is easily circumvented by "
|
322 |
"anyone with technical knowledge, and is vulnerable to bots."
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
326 |
-
#: ../../wp-google-maps-
|
|
|
327 |
msgid ""
|
328 |
"This method is not reliable for preventing tampering, and is not recommended "
|
329 |
"for use cases where reliability is imperative."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
333 |
-
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:200
|
337 |
-
msgid ""
|
338 |
-
"Uses anti-spam countermeasures and basic server side countermeasures. This "
|
339 |
-
"can be circumvented with human interaction, but is significantly less "
|
340 |
-
"vulnerable to bots."
|
341 |
-
msgstr ""
|
342 |
-
|
343 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:215
|
344 |
msgid "Require Account"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
348 |
msgid ""
|
349 |
"This method uses the same countermeasures as Basic Only, however it does "
|
350 |
"require that in order to leave a rating, the user must be logged in."
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:
|
|
|
354 |
msgid ""
|
355 |
"This method requires login and associates ratings with a users account. You "
|
356 |
"can compliment this by using security methods (eg 3rd party plugins) to "
|
@@ -358,7 +326,7 @@ msgid ""
|
|
358 |
msgstr ""
|
359 |
|
360 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:2
|
361 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
362 |
#, fuzzy
|
363 |
msgid "Near-Vicinity Marker Control Settings"
|
364 |
msgstr "Посетителски настройки за генерирани маркери"
|
@@ -373,12 +341,12 @@ msgid ""
|
|
373 |
msgstr ""
|
374 |
|
375 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:14
|
376 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
377 |
msgid "Enable Near-Vicinity Marker Control"
|
378 |
msgstr ""
|
379 |
|
380 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:36
|
381 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
382 |
msgid "Near-Vicinity Affected Radius"
|
383 |
msgstr ""
|
384 |
|
@@ -403,20 +371,20 @@ msgid "Placeholder Marker"
|
|
403 |
msgstr "Категория маркер"
|
404 |
|
405 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:100
|
406 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
407 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
408 |
msgid "Near-Vicinity Shape"
|
409 |
msgstr ""
|
410 |
|
411 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:106
|
412 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
413 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
414 |
msgid "Circle"
|
415 |
msgstr ""
|
416 |
|
417 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:109
|
418 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
419 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
420 |
msgid "Spiral"
|
421 |
msgstr ""
|
422 |
|
@@ -429,9 +397,7 @@ msgid "Line"
|
|
429 |
msgstr ""
|
430 |
|
431 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:118
|
432 |
-
#:
|
433 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2198
|
434 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2242
|
435 |
msgid "Grid"
|
436 |
msgstr ""
|
437 |
|
@@ -448,195 +414,70 @@ msgid "Animation Duration"
|
|
448 |
msgstr "Анимация"
|
449 |
|
450 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:160
|
451 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
452 |
msgid "Seconds"
|
453 |
msgstr ""
|
454 |
|
455 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:169
|
456 |
#, fuzzy
|
457 |
#| msgid "Animation"
|
458 |
-
msgid "Animation Easing"
|
459 |
-
msgstr "Анимация"
|
460 |
-
|
461 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:174
|
462 |
-
#, fuzzy
|
463 |
-
#| msgid "Line color"
|
464 |
-
msgid "Linear"
|
465 |
-
msgstr "Цвят на линия"
|
466 |
-
|
467 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:175
|
468 |
-
msgid "Sine In"
|
469 |
-
msgstr ""
|
470 |
-
|
471 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:176
|
472 |
-
#, fuzzy
|
473 |
-
#| msgid "Line Opacity"
|
474 |
-
msgid "Sine Out"
|
475 |
-
msgstr "Непрозрачност на линията"
|
476 |
-
|
477 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:177
|
478 |
-
msgid "Sine In & Out"
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:178
|
482 |
-
msgid "Quad In"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:179
|
486 |
-
msgid "Quad Out"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:180
|
490 |
-
msgid "Quad In & Out"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:181
|
494 |
-
msgid "Cubic In"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:182
|
498 |
-
msgid "Cubic Out"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:183
|
502 |
-
msgid "Cubic In & Out"
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:184
|
506 |
-
msgid "Quartic In"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:185
|
510 |
-
msgid "Quartic Out"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:186
|
514 |
-
msgid "Quartic In & Out"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:187
|
518 |
-
msgid "Quintic In"
|
519 |
-
msgstr ""
|
520 |
-
|
521 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:188
|
522 |
-
msgid "Quintic Out"
|
523 |
-
msgstr ""
|
524 |
-
|
525 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:189
|
526 |
-
msgid "Quintic In & Out"
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:190
|
530 |
-
msgid "Exponential In"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:191
|
534 |
-
msgid "Exponential Out"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:192
|
538 |
-
msgid "Exponential In & Out"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:193
|
542 |
-
#, fuzzy
|
543 |
-
msgid "Circular In"
|
544 |
-
msgstr "Дифолт инфо прозорец"
|
545 |
-
|
546 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:194
|
547 |
-
msgid "Circular Out"
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:195
|
551 |
-
msgid "Circular In & Out"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:196
|
555 |
-
msgid "Back In"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:197
|
559 |
-
msgid "Back Out"
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:198
|
563 |
-
msgid "Back In & Out"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:199
|
567 |
-
msgid "Elastic In"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:200
|
571 |
-
msgid "Elastic Out"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:201
|
575 |
-
msgid "Elastic In & Out"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:202
|
579 |
-
#, fuzzy
|
580 |
-
#| msgid "Bounce"
|
581 |
-
msgid "Bounce In"
|
582 |
-
msgstr "Боунс"
|
583 |
-
|
584 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:203
|
585 |
-
#, fuzzy
|
586 |
-
#| msgid "Bounce"
|
587 |
-
msgid "Bounce Out"
|
588 |
-
msgstr "Боунс"
|
589 |
-
|
590 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:204
|
591 |
-
msgid "Bounce In & Out"
|
592 |
-
msgstr ""
|
593 |
-
|
594 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:212
|
595 |
-
#, fuzzy
|
596 |
-
#| msgid "Animation"
|
597 |
msgid "Stagger Animation"
|
598 |
msgstr "Анимация"
|
599 |
|
600 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
601 |
msgid "Stagger Interval"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
605 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
606 |
msgid "Near-Vicinity Hide Lines"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
610 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
611 |
#, fuzzy
|
612 |
#| msgid "On Hover Line Color"
|
613 |
msgid "Near-Vicinity Line Color"
|
614 |
msgstr "При ховър цвят на линията"
|
615 |
|
616 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
617 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
618 |
#, fuzzy
|
619 |
#| msgid "Line Opacity"
|
620 |
msgid "Near-Vicinity Line Opacity"
|
621 |
msgstr "Непрозрачност на линията"
|
622 |
|
623 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
624 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
625 |
msgid "Value between 0.1 and 1.0"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
629 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
630 |
#, fuzzy
|
631 |
#| msgid "Line Thickness"
|
632 |
msgid "Near-Vicinity Line Thinkness"
|
633 |
msgstr "Дебелина на линия"
|
634 |
|
635 |
-
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:
|
636 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
637 |
msgid "Value between 1 and 50"
|
638 |
msgstr ""
|
639 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
#: ../../wp-google-maps-gold/includes/class.add-on.php:90
|
641 |
msgid ""
|
642 |
"<strong>WP Google Maps Gold add-on:</strong> We did not detect a compatible "
|
@@ -653,7 +494,7 @@ msgid ""
|
|
653 |
"in order to use the Gold add-on."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: ../../wp-google-maps-gold/includes/class.live-tracker.php:
|
657 |
msgid "Location Tracking"
|
658 |
msgstr ""
|
659 |
|
@@ -674,13 +515,11 @@ msgid ""
|
|
674 |
msgstr ""
|
675 |
|
676 |
#: ../../wp-google-maps-gold/legacy-core.php:66
|
677 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4342 ../legacy-core.php:724
|
678 |
#, fuzzy
|
679 |
msgid "settings"
|
680 |
msgstr "Настройки"
|
681 |
|
682 |
#: ../../wp-google-maps-gold/legacy-core.php:67
|
683 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4343 ../legacy-core.php:725
|
684 |
#, php-format
|
685 |
msgid ""
|
686 |
"Your Google Maps API key has been successfully saved. This API key can be "
|
@@ -689,17 +528,15 @@ msgstr ""
|
|
689 |
|
690 |
#: ../../wp-google-maps-gold/legacy-core.php:568
|
691 |
#: ../../wp-google-maps-gold/legacy-core.php:707
|
692 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4609
|
693 |
msgid "Geocode was not successful for the following reason"
|
694 |
msgstr "Геокодирането не беше успешно по следната причина"
|
695 |
|
696 |
#: ../../wp-google-maps-gold/legacy-core.php:1059
|
697 |
#: ../../wp-google-maps-gold/legacy-core.php:1221
|
698 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
699 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
700 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
701 |
-
#: ../../wp-google-maps-pro/
|
702 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5826
|
703 |
msgid "More details"
|
704 |
msgstr "Повече подробности"
|
705 |
|
@@ -708,20 +545,20 @@ msgid "Advanced Map Settings"
|
|
708 |
msgstr "Допълнителни картови настройки"
|
709 |
|
710 |
#: ../../wp-google-maps-gold/legacy-core.php:1486
|
711 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
712 |
msgid "Enable Mass Marker Support"
|
713 |
msgstr "Включи Мулти маркерна подръжка"
|
714 |
|
715 |
#: ../../wp-google-maps-gold/legacy-core.php:1496
|
716 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
717 |
-
#: ../legacy-core.php:
|
718 |
#, fuzzy
|
719 |
msgid "Save"
|
720 |
msgstr "Запиши карта"
|
721 |
|
722 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
723 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
724 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:
|
725 |
msgid ""
|
726 |
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
727 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
@@ -729,212 +566,209 @@ msgstr ""
|
|
729 |
"Неочаквана грешка възникна по време на API заявката.</p> <p><a href=\"?\" "
|
730 |
"onclick=\"document.location.reload(); return false;\">Опитай пак</a>"
|
731 |
|
732 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
733 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
734 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:
|
735 |
msgid "An unknown error occurred"
|
736 |
msgstr "Възникна неочаквана грешка"
|
737 |
|
738 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
739 |
-
#:
|
740 |
msgid "Your settings have been saved."
|
741 |
msgstr "Твоите настройки бяха запазени."
|
742 |
|
743 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
744 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
745 |
#, fuzzy
|
746 |
msgid "Marker Clustering"
|
747 |
msgstr "Списък маркери"
|
748 |
|
749 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
750 |
-
#:
|
751 |
-
#:
|
752 |
-
#: ../html/settings-page.html.php:25 ../includes/legacy/settings-page.php:480
|
753 |
-
#: ../legacy-core.php:3437
|
754 |
msgid "Advanced Settings"
|
755 |
msgstr "Допълнителни настройки"
|
756 |
|
757 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
758 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
759 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
760 |
msgid "Real Time Location Tracking"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
764 |
msgid ""
|
765 |
"Track your location via our app and plot your current location on a map, "
|
766 |
"publicly or privately."
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
770 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:46
|
771 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
772 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
773 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
774 |
#, fuzzy
|
775 |
msgid "Create Map"
|
776 |
msgstr "Създавай твоя карта"
|
777 |
|
778 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
779 |
#, php-format
|
780 |
msgid "Location as at %1$s"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
784 |
msgid "Successfully accepted the device. Thank you"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
788 |
msgid "Device has been removed. Thank you"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
792 |
#, fuzzy
|
793 |
msgid "Marker Data Cleared."
|
794 |
msgstr "Marker данни локация"
|
795 |
|
796 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
797 |
msgid "A new device needs your approval to enable real time location tracking."
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
801 |
msgid "Device ID:"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
805 |
#, php-format
|
806 |
msgid "To accept this device, Please follow this link: %1$s"
|
807 |
msgstr ""
|
808 |
|
809 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
810 |
msgid "To reject the device, simply ignore this email."
|
811 |
msgstr ""
|
812 |
|
813 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
814 |
msgid ""
|
815 |
"A new device needs your approval to enable real time location tracking - WP "
|
816 |
"Google Maps"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
820 |
msgid "No devices"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
824 |
msgid "Meters (This is an approximate value)"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
828 |
#, fuzzy
|
829 |
#| msgid "Marker Listing Settings"
|
830 |
msgid "Marker Clustering - Advanced Settings"
|
831 |
msgstr "настройки по маркерите списък"
|
832 |
|
833 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
834 |
msgid "Changing these settings is only suggested for experienced users."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
838 |
#, fuzzy
|
839 |
#| msgid "Enable Advanced Styling"
|
840 |
msgid "Enable Advanced Options"
|
841 |
msgstr "Включи допълнителен стил"
|
842 |
|
843 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
844 |
#, fuzzy
|
845 |
#| msgid "show options"
|
846 |
msgid "Options"
|
847 |
msgstr "покажи опции"
|
848 |
|
849 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
850 |
msgid "Grid Size"
|
851 |
msgstr ""
|
852 |
|
853 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
854 |
#, fuzzy
|
855 |
#| msgid "Maximum Zoom Level"
|
856 |
msgid "Max Zoom"
|
857 |
msgstr "Максимален зум нивоl"
|
858 |
|
859 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
860 |
msgid "Minimum Cluster Size"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
864 |
#, fuzzy
|
865 |
msgid "Cluster Font Color"
|
866 |
msgstr "Цвят на линк"
|
867 |
|
868 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
869 |
msgid "Cluster Font Size"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
873 |
msgid "Zoom On Click"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
877 |
msgid "Cluster Icons"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
881 |
msgid "Level 1"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
885 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
886 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
887 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
888 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
889 |
msgid "Change"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
893 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
894 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
895 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
896 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
897 |
-
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:
|
898 |
#: ../../wp-google-maps-pro/includes/custom-fields/class.custom-field-filter-widget.php:128
|
899 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7513
|
900 |
msgid "Reset"
|
901 |
msgstr "Ресет"
|
902 |
|
903 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
904 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
905 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
906 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
907 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
908 |
-
#:
|
909 |
-
#:
|
910 |
-
#: ../
|
911 |
msgid "Width"
|
912 |
msgstr "Широчина"
|
913 |
|
914 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
915 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
916 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
917 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
918 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
919 |
-
#:
|
920 |
-
#:
|
921 |
-
#: ../
|
922 |
msgid "Height"
|
923 |
msgstr "Височина"
|
924 |
|
925 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
926 |
msgid "Level 2"
|
927 |
msgstr ""
|
928 |
|
929 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
930 |
msgid "Level 3"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
934 |
msgid "Level 4"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: ../../wp-google-maps-gold/legacy-core.php:
|
938 |
msgid "Level 5"
|
939 |
msgstr ""
|
940 |
|
@@ -984,25 +818,22 @@ msgid "Assigned Category"
|
|
984 |
msgstr "Зачислен до"
|
985 |
|
986 |
#: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:97
|
987 |
-
#: ../../wp-google-maps-pro/
|
988 |
-
#: ../../wp-google-maps-pro/includes/
|
989 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
990 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:343
|
991 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:71
|
992 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:111
|
993 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:256
|
994 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:286
|
995 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
996 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
997 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
998 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
999 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
1000 |
-
#:
|
1001 |
-
#:
|
1002 |
-
#:
|
1003 |
-
#: ../html/settings-page.html.php:
|
1004 |
-
#: ../legacy-core.php:3515 ../legacy-core.php:3889 ../legacy-core.php:4170
|
1005 |
-
#: ../legacy-core.php:4226
|
1006 |
msgid "None"
|
1007 |
msgstr "без"
|
1008 |
|
@@ -1021,7 +852,7 @@ msgid "should you wish to assign these markers to a category"
|
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:119
|
1024 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1025 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:60
|
1026 |
#, fuzzy
|
1027 |
msgid "Upload"
|
@@ -1046,7 +877,7 @@ msgstr "Твоя CSV файл бе успешно импортиран"
|
|
1046 |
msgid "map here"
|
1047 |
msgstr "тук"
|
1048 |
|
1049 |
-
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:
|
1050 |
msgid ""
|
1051 |
"<strong>WP Google Maps Gold Add-on:</strong> You are running PHP version 5.2 "
|
1052 |
"or below, which is no longer supported by WP Google Maps and WP Google Maps "
|
@@ -1054,7 +885,7 @@ msgid ""
|
|
1054 |
"host if you are unsure how to switch PHP versions."
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:
|
1058 |
msgid ""
|
1059 |
"<strong>WP Google Maps Gold Add-on:</strong> This add-on requires WP Google "
|
1060 |
"Maps 7.0 or above. Please update WP Google Maps to use the Gold add-on. You "
|
@@ -1062,28 +893,14 @@ msgid ""
|
|
1062 |
"and clicking \"Check Again\"."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:
|
1066 |
-
#: ../wpGoogleMaps.php:
|
1067 |
msgid ""
|
1068 |
"<strong>WP Google Maps:</strong> This plugin requires the WordPress REST "
|
1069 |
"API, which does not appear to be present on this installation. Please update "
|
1070 |
"WordPress to version 4.7 or above."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: ../../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:1
|
1074 |
-
msgid "<iframe frameborder='0' width='0' height='0'/>"
|
1075 |
-
msgstr ""
|
1076 |
-
|
1077 |
-
#: ../../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:3
|
1078 |
-
#, fuzzy
|
1079 |
-
#| msgid "Description"
|
1080 |
-
msgid "<script>"
|
1081 |
-
msgstr "Описание"
|
1082 |
-
|
1083 |
-
#: ../../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:3
|
1084 |
-
msgid "<div>"
|
1085 |
-
msgstr ""
|
1086 |
-
|
1087 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:3
|
1088 |
#, fuzzy
|
1089 |
#| msgid "Add Marker"
|
@@ -1104,45 +921,49 @@ msgid "Quick Create"
|
|
1104 |
msgstr ""
|
1105 |
|
1106 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:29
|
1107 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1108 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:190
|
1109 |
-
#: ../../wp-google-maps-pro/
|
1110 |
-
#: ../../wp-google-maps-pro/
|
1111 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
1112 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:140
|
1113 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1114 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1115 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:141
|
1116 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:
|
1117 |
-
#:
|
1118 |
-
#:
|
1119 |
-
#:
|
1120 |
-
#:
|
1121 |
-
#: ../
|
1122 |
-
#: ../
|
1123 |
-
#: ../
|
|
|
|
|
|
|
|
|
1124 |
#: ../includes/tables/class.admin-marker-datatable.php:36
|
1125 |
-
#: ../includes/tables/class.marker-datatable.php:20 ../legacy-core.php:
|
1126 |
-
#: ../legacy-core.php:3103 ../legacy-core.php:3910 ../legacy-core.php:4242
|
1127 |
-
#: ../legacy-core.php:4753 ../legacy-core.php:4772
|
1128 |
msgid "Title"
|
1129 |
msgstr "Заглавие"
|
1130 |
|
1131 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:32
|
1132 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:
|
1133 |
-
#:
|
|
|
|
|
1134 |
#: ../includes/tables/class.admin-marker-datatable.php:38
|
1135 |
-
#: ../includes/tables/class.marker-datatable.php:22 ../legacy-core.php:
|
1136 |
-
#: ../legacy-core.php:3911 ../legacy-core.php:4755 ../legacy-core.php:4774
|
1137 |
msgid "Address"
|
1138 |
msgstr "Адрес"
|
1139 |
|
1140 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:35
|
1141 |
-
#: ../../wp-google-maps-pro/
|
1142 |
-
#: ../../wp-google-maps-pro/includes/page.
|
1143 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
|
|
1144 |
#: ../includes/tables/class.admin-marker-datatable.php:35
|
1145 |
-
#: ../legacy-core.php:
|
1146 |
msgid "Icon"
|
1147 |
msgstr "Икона"
|
1148 |
|
@@ -1152,6 +973,94 @@ msgstr "Икона"
|
|
1152 |
msgid "Leave blank for the default"
|
1153 |
msgstr "Остави празно за без ограничения."
|
1154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1155 |
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:2
|
1156 |
#, fuzzy
|
1157 |
#| msgid "Directions"
|
@@ -1172,84 +1081,76 @@ msgstr ""
|
|
1172 |
msgid "Enable Directions"
|
1173 |
msgstr "Включи упътвания?"
|
1174 |
|
1175 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1176 |
#, fuzzy
|
1177 |
#| msgid "Directions Box Width"
|
1178 |
msgid "Directions Box Style"
|
1179 |
msgstr "Упътвания таб широчина"
|
1180 |
|
1181 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1182 |
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:148
|
1183 |
-
#:
|
1184 |
-
#:
|
1185 |
-
#:
|
1186 |
-
#: ../../wp-google-maps-pro/legacy-core.php:8593
|
1187 |
-
#: ../html/settings-page.html.php:106 ../html/theme-panel.html.php:14
|
1188 |
-
#: ../includes/legacy/settings-page.php:256
|
1189 |
msgid "Default"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1193 |
-
#:
|
1194 |
-
#:
|
1195 |
-
#:
|
1196 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2194
|
1197 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2236
|
1198 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5690
|
1199 |
-
#: ../html/settings-page.html.php:109 ../includes/legacy/settings-page.php:257
|
1200 |
-
#: ../legacy-core.php:3618 ../legacy-core.php:3659
|
1201 |
msgid "Modern"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1205 |
-
#: ../
|
1206 |
msgid "Directions Box Open by Default?"
|
1207 |
msgstr "Упътвания включени по подразбиране?"
|
1208 |
|
1209 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1210 |
-
#: ../
|
1211 |
msgid "Yes, on the left"
|
1212 |
msgstr "Да, отляво"
|
1213 |
|
1214 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1215 |
-
#: ../
|
1216 |
msgid "Yes, on the right"
|
1217 |
msgstr "Да, отдясно"
|
1218 |
|
1219 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1220 |
-
#: ../
|
1221 |
msgid "Yes, above"
|
1222 |
msgstr "Да, отгоре"
|
1223 |
|
1224 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1225 |
-
#: ../
|
1226 |
msgid "Yes, below"
|
1227 |
msgstr "Да, отдолу"
|
1228 |
|
1229 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1230 |
-
#: ../
|
1231 |
msgid "Directions Box Width"
|
1232 |
msgstr "Упътвания таб широчина"
|
1233 |
|
1234 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1235 |
msgid "%"
|
1236 |
msgstr "%"
|
1237 |
|
1238 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1239 |
msgid "px"
|
1240 |
msgstr "px"
|
1241 |
|
1242 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1243 |
msgid "Default 'To' address"
|
1244 |
msgstr "по подразбиране 'до' адрес"
|
1245 |
|
1246 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1247 |
#, fuzzy
|
1248 |
#| msgid "Default 'To' address"
|
1249 |
msgid "Default 'From' address"
|
1250 |
msgstr "по подразбиране 'до' адрес"
|
1251 |
|
1252 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1253 |
#, fuzzy
|
1254 |
#| msgid "Directions"
|
1255 |
msgid "Directions behaviour"
|
@@ -1261,65 +1162,70 @@ msgstr "Упътвания"
|
|
1261 |
msgid "Display directions on the page"
|
1262 |
msgstr "Упътвания таб широчина"
|
1263 |
|
1264 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1265 |
msgid "External"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1269 |
msgid "Open Google / Apple maps in a new tab"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1273 |
#, fuzzy
|
1274 |
#| msgid "Satellite"
|
1275 |
msgid "Intelligent"
|
1276 |
msgstr "Сателит"
|
1277 |
|
1278 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1279 |
msgid ""
|
1280 |
"Display directions on the page on desktop devices, open Google / Apple maps "
|
1281 |
"mobile app on mobile devices"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1285 |
#, fuzzy
|
1286 |
#| msgid "WP Google Maps Support"
|
1287 |
msgid "Force Google Maps mobile app"
|
1288 |
msgstr "WP Google Maps Support"
|
1289 |
|
1290 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1291 |
msgid "Force iOS devices to use the Google Maps mobile app for directions"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1295 |
msgid "Origin icon picker"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1299 |
#, fuzzy
|
1300 |
#| msgid "Retina Icon Width"
|
1301 |
msgid "Destination Icon Picker"
|
1302 |
msgstr "Retina Icon Широчина"
|
1303 |
|
1304 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1305 |
#, fuzzy
|
1306 |
#| msgid "Directions"
|
1307 |
msgid "Directions route color"
|
1308 |
msgstr "Упътвания"
|
1309 |
|
1310 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1311 |
#, fuzzy
|
1312 |
#| msgid "Directions Box Width"
|
1313 |
msgid "Directions route weight"
|
1314 |
msgstr "Упътвания таб широчина"
|
1315 |
|
1316 |
-
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:
|
1317 |
#, fuzzy
|
1318 |
#| msgid "Directions Box Width"
|
1319 |
msgid "Directions route opacity"
|
1320 |
msgstr "Упътвания таб широчина"
|
1321 |
|
|
|
|
|
|
|
|
|
1322 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:2
|
|
|
1323 |
msgid "Get Directions"
|
1324 |
msgstr "Вземи упътвания"
|
1325 |
|
@@ -1390,14 +1296,14 @@ msgid "Go"
|
|
1390 |
msgstr "Отиди"
|
1391 |
|
1392 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:148
|
1393 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1394 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1395 |
msgid "Print directions"
|
1396 |
msgstr "Принт упътвания"
|
1397 |
|
1398 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:156
|
1399 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1400 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1401 |
msgid "Reset directions"
|
1402 |
msgstr "Ресет упътвания"
|
1403 |
|
@@ -1427,31 +1333,31 @@ msgstr "Ползвай Google Maps API"
|
|
1427 |
|
1428 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:33
|
1429 |
#: ../html/google-maps-api-settings.html.php:14
|
1430 |
-
#: ../html/settings-page.html.php:
|
1431 |
msgid "Where required"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:38
|
1435 |
#: ../html/google-maps-api-settings.html.php:19
|
1436 |
-
#: ../html/settings-page.html.php:
|
1437 |
msgid "Always"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:43
|
1441 |
#: ../html/google-maps-api-settings.html.php:24
|
1442 |
-
#: ../html/settings-page.html.php:
|
1443 |
msgid "Only Front End"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:48
|
1447 |
#: ../html/google-maps-api-settings.html.php:29
|
1448 |
-
#: ../html/settings-page.html.php:
|
1449 |
msgid "Only Back End"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:53
|
1453 |
#: ../html/google-maps-api-settings.html.php:34
|
1454 |
-
#: ../html/settings-page.html.php:
|
1455 |
msgid "Never"
|
1456 |
msgstr ""
|
1457 |
|
@@ -1465,7 +1371,7 @@ msgstr "Ползвай Google Maps API"
|
|
1465 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:72
|
1466 |
#: ../html/google-maps-api-settings.html.php:45
|
1467 |
#: ../html/google-maps-api-settings.html.php:53
|
1468 |
-
#: ../html/settings-page.html.php:
|
1469 |
msgid "Page IDs"
|
1470 |
msgstr ""
|
1471 |
|
@@ -1475,6 +1381,37 @@ msgstr ""
|
|
1475 |
msgid "Always exclude Google Maps API on pages:"
|
1476 |
msgstr "Ползвай Google Maps API"
|
1477 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1478 |
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:4
|
1479 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:4
|
1480 |
#, fuzzy
|
@@ -1488,7 +1425,7 @@ msgstr ""
|
|
1488 |
|
1489 |
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:16
|
1490 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:18
|
1491 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:
|
1492 |
#, fuzzy
|
1493 |
#| msgid "Pic URL"
|
1494 |
msgid "URL"
|
@@ -1503,78 +1440,86 @@ msgstr ""
|
|
1503 |
msgid "Bulk JPEG"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1507 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:33
|
1508 |
msgid ""
|
1509 |
"If using a Google Sheet URL, the sheet must be public or have link sharing "
|
1510 |
"turned on."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1514 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1515 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1516 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
|
|
1517 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:38
|
1518 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:91
|
1519 |
-
#: ../../wp-google-maps-pro/
|
1520 |
-
#: ../../wp-google-maps-pro/
|
|
|
|
|
|
|
|
|
|
|
1521 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:108
|
1522 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:173
|
1523 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1524 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1525 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:115
|
1526 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:174
|
1527 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
1528 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
1529 |
#, fuzzy
|
1530 |
#| msgid "Support"
|
1531 |
msgid "Import"
|
1532 |
msgstr "Съпорт"
|
1533 |
|
1534 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1535 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:50
|
1536 |
#, fuzzy
|
1537 |
#| msgid "Select"
|
1538 |
msgid "Select File"
|
1539 |
msgstr "Избери"
|
1540 |
|
1541 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1542 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:55
|
1543 |
#, fuzzy
|
1544 |
#| msgid "Upload File"
|
1545 |
msgid "Max upload size"
|
1546 |
msgstr "качи файл"
|
1547 |
|
1548 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1549 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:78
|
1550 |
msgid "Import Uploads"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
#: ../../wp-google-maps-pro/
|
1558 |
-
|
1559 |
-
|
1560 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:293
|
1561 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:937
|
1562 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:497
|
1563 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:510
|
1564 |
-
msgid "Delete"
|
1565 |
-
msgstr "Изтриване"
|
1566 |
|
1567 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1568 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:120
|
1569 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
1570 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
|
1571 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1572 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
|
1573 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
1574 |
msgid "Schedule"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1578 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:123
|
1579 |
msgid ""
|
1580 |
"Imports can be scheduled by url or uploaded file. To schedule an import, "
|
@@ -1582,313 +1527,216 @@ msgid ""
|
|
1582 |
"listed on this page and can be edited or deleted from here."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1586 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:131
|
1587 |
msgid "URL / Filename"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1591 |
-
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:146
|
1592 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:678
|
1593 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:301
|
1594 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:391
|
1595 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:292
|
1596 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:882
|
1597 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:935
|
1598 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:496
|
1599 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:509
|
1600 |
-
#: ../../wp-google-maps-pro/legacy-core.php:285
|
1601 |
-
#: ../../wp-google-maps-pro/legacy-core.php:336
|
1602 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7713
|
1603 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7717
|
1604 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7915
|
1605 |
-
#: ../base/includes/wp-google-maps-polygons.php:466
|
1606 |
-
#: ../base/includes/wp-google-maps-polylines.php:441 ../legacy-core.php:3064
|
1607 |
-
#: ../legacy-core.php:3068 ../legacy-core.php:5508 ../legacy-core.php:5559
|
1608 |
-
msgid "Edit"
|
1609 |
-
msgstr "Промени"
|
1610 |
-
|
1611 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:170
|
1612 |
#, fuzzy
|
1613 |
#| msgid "View"
|
1614 |
msgid "View Log"
|
1615 |
msgstr "Виж"
|
1616 |
|
1617 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1618 |
msgid "View Response"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1622 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:172
|
1623 |
#, fuzzy
|
1624 |
msgid "Export Data"
|
1625 |
msgstr "Име на картата"
|
1626 |
|
1627 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1628 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:175
|
1629 |
msgid ""
|
1630 |
"Select which maps and map data you'd like to export. Click the Export button "
|
1631 |
"to download a JSON file of the exported maps and their data."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1635 |
-
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:187
|
1636 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:243
|
1637 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:457
|
1638 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:139
|
1639 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:221
|
1640 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:140
|
1641 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:741
|
1642 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:913
|
1643 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:471
|
1644 |
-
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:484
|
1645 |
-
#: ../../wp-google-maps-pro/legacy-core.php:267
|
1646 |
-
#: ../../wp-google-maps-pro/legacy-core.php:318
|
1647 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2267
|
1648 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5729
|
1649 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7693
|
1650 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7894
|
1651 |
-
#: ../base/includes/wp-google-maps-polygons.php:438
|
1652 |
-
#: ../base/includes/wp-google-maps-polylines.php:413
|
1653 |
-
#: ../includes/tables/class.admin-marker-datatable.php:34
|
1654 |
-
#: ../legacy-core.php:3041 ../legacy-core.php:3100 ../legacy-core.php:3909
|
1655 |
-
#: ../legacy-core.php:4408 ../legacy-core.php:4751 ../legacy-core.php:5490
|
1656 |
-
#: ../legacy-core.php:5541
|
1657 |
-
msgid "ID"
|
1658 |
-
msgstr "ID"
|
1659 |
-
|
1660 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:207
|
1661 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:199
|
1662 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
1663 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
|
1664 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1665 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1666 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
|
|
|
1667 |
#: ../includes/tables/class.admin-marker-datatable.php:25
|
1668 |
#, fuzzy
|
1669 |
#| msgid "Select"
|
1670 |
msgid "Select All"
|
1671 |
msgstr "Избери"
|
1672 |
|
1673 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1674 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:202
|
1675 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
1676 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
|
1677 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1678 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1679 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
|
1680 |
#, fuzzy
|
1681 |
#| msgid "Select"
|
1682 |
msgid "Select None"
|
1683 |
msgstr "Избери"
|
1684 |
|
1685 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1686 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:215
|
1687 |
-
#: ../../wp-google-maps-pro/includes/
|
1688 |
-
#:
|
|
|
1689 |
msgid "Categories"
|
1690 |
msgstr "Категории"
|
1691 |
|
1692 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1693 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:221
|
1694 |
-
#: ../../wp-google-maps-pro/includes/
|
1695 |
-
#: ../../wp-google-maps-pro/
|
|
|
1696 |
#, fuzzy
|
1697 |
#| msgid "Custom Marker"
|
1698 |
msgid "Custom Fields"
|
1699 |
msgstr "Къстъм маркери"
|
1700 |
|
1701 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1702 |
#, fuzzy
|
1703 |
msgid "Ratings"
|
1704 |
msgstr "Настройки"
|
1705 |
|
1706 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1707 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:227
|
1708 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1709 |
-
#:
|
1710 |
-
#: ../legacy-core.php:4155
|
1711 |
msgid "Markers"
|
1712 |
msgstr "Маркери"
|
1713 |
|
1714 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1715 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:233
|
1716 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1717 |
-
#:
|
1718 |
-
#: ../
|
1719 |
-
#: ../includes/compat/backwards_compat_v6.php:60 ../legacy-core.php:4149
|
1720 |
msgid "Circles"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1724 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:239
|
1725 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1726 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:122
|
1727 |
-
#:
|
1728 |
-
#: ../
|
1729 |
-
#: ../
|
1730 |
msgid "Polygons"
|
1731 |
msgstr "Полигони"
|
1732 |
|
1733 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1734 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:245
|
1735 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1736 |
-
#:
|
1737 |
-
#: ../
|
1738 |
-
#: ../
|
1739 |
msgid "Polylines"
|
1740 |
msgstr "Полиноми"
|
1741 |
|
1742 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1743 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:251
|
1744 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1745 |
-
#:
|
1746 |
-
#: ../includes/compat/backwards_compat_v6.php:61
|
1747 |
msgid "Rectangles"
|
1748 |
msgstr ""
|
1749 |
|
1750 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1751 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:257
|
1752 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
1753 |
#, fuzzy
|
1754 |
msgid "Heatmap Datasets"
|
1755 |
msgstr "Запиши категория"
|
1756 |
|
1757 |
-
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:
|
1758 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:262
|
1759 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
1760 |
#, fuzzy
|
1761 |
#| msgid "Support"
|
1762 |
msgid "Export"
|
1763 |
msgstr "Съпорт"
|
1764 |
|
1765 |
-
#: ../../wp-google-maps-pro/html/import-export/import-
|
1766 |
-
|
1767 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:303
|
1768 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:393
|
1769 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:294
|
1770 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1033
|
1771 |
-
msgid "No schedule found"
|
1772 |
msgstr ""
|
1773 |
|
1774 |
-
#: ../../wp-google-maps-pro/html/import-export/import-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
msgid "Next Scheduled Run"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: ../../wp-google-maps-pro/html/import-export/import-
|
1783 |
-
|
1784 |
-
|
|
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: ../../wp-google-maps-pro/html/
|
|
|
1788 |
#, fuzzy
|
1789 |
-
|
1790 |
-
|
1791 |
-
msgstr "Добави маркер"
|
1792 |
-
|
1793 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:24
|
1794 |
-
#: ../legacy-core.php:4159 ../legacy-core.php:4217 ../legacy-core.php:4218
|
1795 |
-
#: ../legacy-core.php:4243
|
1796 |
-
msgid "Address/GPS"
|
1797 |
-
msgstr "Адрес/GPS"
|
1798 |
|
1799 |
-
#: ../../wp-google-maps-pro/html/
|
1800 |
-
msgid "
|
|
|
|
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: ../../wp-google-maps-pro/html/
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7245
|
1808 |
-
#: ../base/includes/wp-google-maps-polygons.php:138
|
1809 |
-
#: ../includes/tables/class.admin-marker-datatable.php:39
|
1810 |
-
#: ../includes/tables/class.marker-datatable.php:23 ../legacy-core.php:3912
|
1811 |
-
#: ../legacy-core.php:4247 ../legacy-core.php:4756 ../legacy-core.php:4775
|
1812 |
-
msgid "Description"
|
1813 |
-
msgstr "Описание"
|
1814 |
|
1815 |
-
#: ../../wp-google-maps-pro/html/
|
1816 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: ../../wp-google-maps-pro/html/
|
1820 |
-
#:
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
#: ../../wp-google-maps-pro/
|
1825 |
-
#:
|
1826 |
-
msgid "
|
1827 |
-
msgstr "Къстъм маркери"
|
1828 |
-
|
1829 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:100
|
1830 |
-
msgid "This is a retina ready marker"
|
1831 |
-
msgstr "Това е retina маркер"
|
1832 |
-
|
1833 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:110
|
1834 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:131
|
1835 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:742
|
1836 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:914
|
1837 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2271
|
1838 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7487
|
1839 |
-
#: ../includes/tables/class.admin-marker-datatable.php:37
|
1840 |
-
#: ../includes/tables/class.marker-datatable.php:21 ../legacy-core.php:1964
|
1841 |
-
#: ../legacy-core.php:3913 ../legacy-core.php:4264 ../legacy-core.php:4754
|
1842 |
-
#: ../legacy-core.php:4773
|
1843 |
-
msgid "Category"
|
1844 |
-
msgstr "Категория"
|
1845 |
-
|
1846 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:119
|
1847 |
-
#: ../legacy-core.php:4167 ../legacy-core.php:4223
|
1848 |
-
msgid "Animation"
|
1849 |
-
msgstr "Анимация"
|
1850 |
-
|
1851 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:130
|
1852 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1609 ../legacy-core.php:4171
|
1853 |
-
#: ../legacy-core.php:4227
|
1854 |
-
msgid "Bounce"
|
1855 |
-
msgstr "Боунс"
|
1856 |
-
|
1857 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:135
|
1858 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1610 ../legacy-core.php:4172
|
1859 |
-
#: ../legacy-core.php:4228
|
1860 |
-
msgid "Drop"
|
1861 |
-
msgstr "Дроп"
|
1862 |
-
|
1863 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:144
|
1864 |
-
#: ../legacy-core.php:4179 ../legacy-core.php:4234
|
1865 |
-
msgid "InfoWindow open by default"
|
1866 |
-
msgstr "Инфопрозорец отворен по дифолт"
|
1867 |
-
|
1868 |
-
#: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:164
|
1869 |
-
#: ../../wp-google-maps-pro/legacy-core.php:8653
|
1870 |
-
msgid "Display on front end"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: ../../wp-google-maps-pro/html/
|
1874 |
-
#:
|
1875 |
-
msgid "
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: ../../wp-google-maps-pro/html/
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
#: ../../wp-google-maps-pro/
|
1885 |
-
|
1886 |
-
|
1887 |
-
msgid "Add Marker"
|
1888 |
-
msgstr "Добави маркер"
|
1889 |
|
1890 |
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:11
|
1891 |
-
#:
|
1892 |
#, fuzzy
|
1893 |
msgid "Marker Filtering"
|
1894 |
msgstr "Списък маркери"
|
@@ -1897,36 +1745,23 @@ msgstr "Списък маркери"
|
|
1897 |
msgid "Enable custom field filtering on"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:
|
1901 |
-
#, php-format
|
1902 |
msgid ""
|
1903 |
-
"You have no custom fields to filter on.
|
1904 |
-
"
|
1905 |
-
msgstr ""
|
1906 |
-
|
1907 |
-
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:43
|
1908 |
-
msgid "Toggle filter"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: ../../wp-google-maps-pro/html/marker-
|
1912 |
-
|
1913 |
-
|
1914 |
-
msgstr "Позволи избор на категории"
|
1915 |
-
|
1916 |
-
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:67
|
1917 |
-
msgid "You must choose a widget type for this field to enable filtering on it"
|
1918 |
-
msgstr ""
|
1919 |
|
1920 |
-
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:
|
1921 |
#: ../../wp-google-maps-pro/includes/page.categories.php:148
|
1922 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
1923 |
-
#: ../../wp-google-maps-pro/legacy-core.php:8670 ../legacy-core.php:3846
|
1924 |
-
#: ../legacy-core.php:4250 ../legacy-core.php:4254
|
1925 |
msgid "Upload Image"
|
1926 |
msgstr "качи снимка"
|
1927 |
|
1928 |
-
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:
|
1929 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1602
|
1930 |
#, fuzzy
|
1931 |
msgid "Marker Library"
|
1932 |
msgstr "Категории маркери"
|
@@ -1934,23 +1769,26 @@ msgstr "Категории маркери"
|
|
1934 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/basic-table-item.html.php:25
|
1935 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/carousel-item.html.php:18
|
1936 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/grid-item.html.php:8
|
1937 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
1938 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
1939 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1940 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1941 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
1942 |
-
#: ../../wp-google-maps-pro/
|
1943 |
-
#:
|
1944 |
msgid "Directions"
|
1945 |
msgstr "Упътвания"
|
1946 |
|
1947 |
-
#: ../../wp-google-maps-pro/html/
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
#:
|
1952 |
-
msgid "
|
1953 |
-
|
|
|
|
|
|
|
1954 |
|
1955 |
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:89
|
1956 |
#, fuzzy
|
@@ -1958,18 +1796,22 @@ msgstr "Радиус"
|
|
1958 |
msgid "Advanced Custom Fields"
|
1959 |
msgstr "Специални опции"
|
1960 |
|
1961 |
-
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:
|
1962 |
-
|
1963 |
-
|
|
|
|
|
|
|
|
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:
|
1967 |
#, php-format
|
1968 |
msgid "%d marker(s) found."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:28
|
1972 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
1973 |
msgid "Security check failed."
|
1974 |
msgstr ""
|
1975 |
|
@@ -1981,12 +1823,21 @@ msgstr ""
|
|
1981 |
msgid "Class must be an instance of \\WPGMZA\\Integration\\MarkerSource"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:
|
1985 |
msgid "Toolset"
|
1986 |
msgstr ""
|
1987 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1988 |
#: ../../wp-google-maps-pro/includes/class.category-tree-native.php:21
|
1989 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
1990 |
#: ../../wp-google-maps-pro/includes/page.categories.php:546
|
1991 |
msgid "All"
|
1992 |
msgstr "Всички"
|
@@ -1997,400 +1848,506 @@ msgstr "Всички"
|
|
1997 |
msgid "All Categories"
|
1998 |
msgstr "Категории"
|
1999 |
|
2000 |
-
#: ../../wp-google-maps-pro/includes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2001 |
msgid ""
|
2002 |
"<strong>WP Google Maps:</strong> Fusion Tables are deprecated and will be "
|
2003 |
"turned off as of December the 3rd, 2019. Google Maps will no longer support "
|
2004 |
"Fusion Tables from this date forward."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: ../../wp-google-maps-pro/includes/class.pro-
|
2008 |
-
#: ../../wp-google-maps-pro/
|
2009 |
-
#: ../../wp-google-maps-pro/
|
2010 |
-
#:
|
2011 |
-
|
2012 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013 |
|
2014 |
-
#: ../../wp-google-maps-pro/includes/class.pro-store-locator.php:
|
2015 |
-
#: ../../wp-google-maps-pro/legacy-core.php:842
|
2016 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7414
|
2017 |
msgid "Title / Description:"
|
2018 |
msgstr "Заглавие / Описание:"
|
2019 |
|
2020 |
-
#: ../../wp-google-maps-pro/includes/class.pro-store-locator.php:87
|
2021 |
-
#: ../../wp-google-maps-pro/legacy-core.php:837
|
2022 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7417 ../legacy-core.php:1926
|
2023 |
-
#: ../legacy-core.php:3169
|
2024 |
-
msgid "No results found in this location. Please try again."
|
2025 |
-
msgstr ""
|
2026 |
-
|
2027 |
#: ../../wp-google-maps-pro/includes/custom-field-filter-widgets/class.date.php:23
|
2028 |
#: ../../wp-google-maps-pro/includes/custom-field-filter-widgets/class.time.php:24
|
2029 |
msgid "to"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2033 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2034 |
msgid "Value"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2038 |
#, fuzzy
|
2039 |
#| msgid "WP Google Maps Error log"
|
2040 |
msgid "WP Google Maps - Custom Fields"
|
2041 |
msgstr "WP Google Maps Error log"
|
2042 |
|
2043 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
|
|
|
|
|
|
|
|
2044 |
msgid "Attributes"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2048 |
#, fuzzy
|
2049 |
#| msgid "Filter by"
|
2050 |
msgid "Filter Type"
|
2051 |
msgstr "Филтър по"
|
2052 |
|
2053 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2054 |
-
#:
|
2055 |
-
#: ../html/settings-page.html.php:10 ../includes/legacy/settings-page.php:154
|
2056 |
msgid "InfoWindows"
|
2057 |
msgstr "Инфопрозорци"
|
2058 |
|
2059 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2060 |
#, fuzzy
|
2061 |
#| msgid "Marker Listing"
|
2062 |
msgid "Marker Listings"
|
2063 |
msgstr "Списък маркери"
|
2064 |
|
2065 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2066 |
#, fuzzy
|
2067 |
#| msgid "Action"
|
2068 |
msgid "Actions"
|
2069 |
msgstr "Действие"
|
2070 |
|
2071 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2072 |
msgid "Text"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2076 |
-
#:
|
2077 |
msgid "Dropdown"
|
2078 |
msgstr "Дропдаун"
|
2079 |
|
2080 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2081 |
-
#:
|
2082 |
msgid "Checkboxes"
|
2083 |
msgstr "Чекбоксове"
|
2084 |
|
2085 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2086 |
msgid "Time Range"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2090 |
msgid "Date Range"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:
|
2094 |
#, fuzzy
|
2095 |
#| msgid "Adding"
|
2096 |
msgid "Add"
|
2097 |
msgstr "Добавяне"
|
2098 |
|
|
|
2099 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:61
|
2100 |
msgid "Failed to geocode address"
|
2101 |
msgstr ""
|
2102 |
|
|
|
2103 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:62
|
2104 |
msgid "No address specified for geocoding"
|
2105 |
msgstr ""
|
2106 |
|
|
|
2107 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:63
|
2108 |
msgid "No address or coordinates specified"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2112 |
-
msgid "
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2116 |
-
|
2117 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:72
|
2118 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:29
|
2119 |
-
msgid "Error: Malformed options."
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2123 |
-
msgid ""
|
2124 |
-
"We couldn't establish what kind of data you are trying to import (is the "
|
2125 |
-
"header row missing?)"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2129 |
-
|
2130 |
-
msgid "
|
2131 |
-
|
|
|
|
|
2132 |
|
2133 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2134 |
-
|
2135 |
-
msgid "
|
2136 |
-
msgstr "
|
2137 |
|
2138 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2139 |
-
|
2140 |
-
msgid "
|
2141 |
-
|
|
|
|
|
2142 |
|
2143 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2144 |
-
|
|
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2148 |
#, fuzzy
|
2149 |
-
|
2150 |
-
|
2151 |
-
msgstr "Данни полигон"
|
2152 |
|
2153 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
2154 |
#, fuzzy
|
2155 |
-
|
2156 |
-
|
2157 |
-
msgstr "Полином данни"
|
2158 |
-
|
2159 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:425
|
2160 |
-
msgid "Rectangle data found."
|
2161 |
-
msgstr ""
|
2162 |
-
|
2163 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:428
|
2164 |
-
msgid "Heatmap data found."
|
2165 |
-
msgstr ""
|
2166 |
|
2167 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2168 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
2169 |
msgid "Find Addresses or Latitude and Longitude when missing"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
2173 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:124
|
2174 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2175 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:125
|
2176 |
msgid "Requires Google Maps Geocoding API to be enabled."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
2180 |
msgid "Use map ID's specified in file"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2184 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:126
|
2185 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2186 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:127
|
2187 |
msgid "Apply import data to"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2191 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:130
|
2192 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2193 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:131
|
2194 |
msgid "No maps available for import to."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2198 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2199 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2200 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:215
|
2201 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:134
|
2202 |
-
msgid "Replace map data"
|
2203 |
-
msgstr ""
|
2204 |
-
|
2205 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:483
|
2206 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:152
|
2207 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:234
|
2208 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:153
|
2209 |
-
msgid "Delete import file after import"
|
2210 |
-
msgstr ""
|
2211 |
-
|
2212 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:487
|
2213 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:156
|
2214 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2215 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:157
|
2216 |
#, fuzzy
|
2217 |
#| msgid "Advanced Options"
|
2218 |
msgid "Scheduling Options"
|
2219 |
msgstr "Специални опции"
|
2220 |
|
2221 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2222 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:157
|
2223 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2224 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:158
|
2225 |
#, fuzzy
|
2226 |
msgid "Start Date"
|
2227 |
msgstr "Запиши категория"
|
2228 |
|
2229 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2230 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:161
|
2231 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2232 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:162
|
2233 |
msgid "Interval"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2237 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
|
2238 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2239 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
|
2240 |
msgid "Update Schedule"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2244 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:175
|
2245 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2246 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:176
|
2247 |
-
#:
|
2248 |
-
#:
|
2249 |
-
#:
|
2250 |
-
#: ../
|
2251 |
-
#: ../
|
2252 |
-
#: ../
|
2253 |
-
#: ../
|
2254 |
-
#: ../legacy
|
2255 |
#: ../lib/codecabin/deactivate-feedback-form.php:44
|
2256 |
msgid "Cancel"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2260 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:213
|
2261 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2262 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:205
|
2263 |
msgid ""
|
2264 |
"Please select at least one map to import to, or deselect the \"Apply import "
|
2265 |
"data to\" option."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2269 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:231
|
2270 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2271 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:222
|
2272 |
-
#: ../includes/class.strings.php:
|
2273 |
msgid "Importing, this may take a moment..."
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2277 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:245
|
2278 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2279 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:236
|
2280 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2281 |
-
#: ../includes/class.strings.php:
|
2282 |
msgid "Import completed."
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
2286 |
msgid ""
|
2287 |
"The schedule must target an existing map, or use map ID's specified in the "
|
2288 |
"file."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2292 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:275
|
2293 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2294 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:266
|
2295 |
msgid "Please enter a start date."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2299 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:278
|
2300 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2301 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:269
|
2302 |
msgid "Scheduling, this may take a moment..."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
|
|
|
|
2306 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:295
|
2307 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2308 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:286
|
2309 |
msgid "Scheduling completed."
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2313 |
-
|
|
|
|
|
|
|
|
|
|
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
|
|
|
|
|
|
|
|
2317 |
msgid ""
|
2318 |
-
"
|
2319 |
-
"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2323 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2327 |
-
|
2328 |
-
|
2329 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2333 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2337 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2338 |
msgid "New Imported Circle"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2342 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2343 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:
|
2344 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:
|
2345 |
msgid "New Imported Polygon"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2349 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:517
|
2350 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:555
|
2351 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2352 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:
|
2353 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:
|
2354 |
#, fuzzy
|
2355 |
#| msgid "Add a New Polyline"
|
2356 |
msgid "New Imported Polyline"
|
2357 |
msgstr "Добави нов полином"
|
2358 |
|
2359 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2360 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2361 |
msgid "New Imported Rectangle"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:
|
2365 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2366 |
msgid "New Imported Dataset"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2370 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2371 |
-
msgid "
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2375 |
-
msgid "Error
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2376 |
msgstr ""
|
2377 |
|
|
|
2378 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:90
|
2379 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2380 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:97
|
2381 |
msgid "Error: Empty file data."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2385 |
#, fuzzy
|
2386 |
-
msgid "
|
2387 |
-
|
|
|
2388 |
|
2389 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-
|
2390 |
-
msgid "
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2394 |
msgid "Way Points"
|
2395 |
msgstr ""
|
2396 |
|
@@ -2424,39 +2381,41 @@ msgstr "Изтрий маркер"
|
|
2424 |
msgid "Error parsing JSON: "
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
2428 |
msgid "Error: File contains no maps."
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2432 |
msgid "No maps available for import."
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2436 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
2437 |
#, fuzzy
|
2438 |
msgid "Map Data"
|
2439 |
msgstr "Име на картата"
|
2440 |
|
2441 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2442 |
msgid "No maps will be imported with this option, only map data."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2446 |
msgid "Please select at least one map to import."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2450 |
-
msgid "New Imported Map"
|
2451 |
-
msgstr ""
|
2452 |
-
|
2453 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:684
|
2454 |
#, fuzzy
|
2455 |
#| msgid "Add New Category"
|
2456 |
msgid "New Imported Category"
|
2457 |
msgstr "Добави нова категория"
|
2458 |
|
2459 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:
|
2460 |
#, php-format
|
2461 |
msgid "Failed to geocode \"%s\""
|
2462 |
msgstr ""
|
@@ -2486,18 +2445,18 @@ msgstr ""
|
|
2486 |
msgid "Error: Unable to load file."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:
|
2490 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:
|
2491 |
msgid "Error: Malformed options. Bad id."
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:
|
2495 |
msgid ""
|
2496 |
"Time limit threshold reached. Please speak to your host to increase your PHP "
|
2497 |
"execution time limit, or break your data into smaller parts"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:
|
2501 |
#, php-format
|
2502 |
msgid ""
|
2503 |
"HTTP referrer restrictions on your API key forbid geocoding from this "
|
@@ -2507,267 +2466,302 @@ msgid ""
|
|
2507 |
"temporarily. We detected this servers IP as %s."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2511 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
2512 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
2513 |
-
#:
|
2514 |
-
#: ../includes/
|
|
|
2515 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
2516 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
2517 |
-
#: ../legacy-core.php:2659
|
2518 |
msgid "Maps"
|
2519 |
msgstr "Карти"
|
2520 |
|
2521 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2522 |
msgid "You don't have permission to upload files."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2526 |
msgid "No file upload or failed security check."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2530 |
msgid "Unable to add file to database."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2534 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2535 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2536 |
msgid "No file specified or failed security check."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2540 |
msgid "Deletion not allowed. File is not a valid WP Google Maps import upload."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2544 |
msgid "No file, URL or integration specified."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2548 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2549 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2550 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2551 |
msgid ""
|
2552 |
"Importing not allowed. File is not a valid WP Google Maps import upload."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2556 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2557 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2558 |
#, fuzzy
|
2559 |
#| msgid "CSV import failed"
|
2560 |
msgid "Unable to import file."
|
2561 |
msgstr "CSV импорт неуспешен"
|
2562 |
|
2563 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2564 |
#, fuzzy
|
2565 |
#| msgid "Last"
|
2566 |
msgid "Last Run"
|
2567 |
msgstr "Последен"
|
2568 |
|
2569 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
|
|
|
|
|
|
|
|
2570 |
msgid "Once Weekly"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2574 |
msgid "Once Monthly"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2578 |
msgid "Unable to schedule import."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2582 |
msgid "No scheduled import specified or failed security check."
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2586 |
msgid "Scheduled import not found."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2590 |
msgid "Unable to remove scheduled import."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2594 |
msgid "Please select a file to upload."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2598 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2599 |
msgid "Back to Import Data"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2603 |
#, fuzzy
|
2604 |
#| msgid "Are you sure you want to delete this marker:"
|
2605 |
msgid "Are you sure you wish to delete this file?"
|
2606 |
msgstr "Сигурен ли си, че искаш да изтриеш този маркер:"
|
2607 |
|
2608 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2609 |
msgid "File deleted."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2613 |
msgid "Please enter a URL to import from."
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2617 |
msgid "Loading import options..."
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2621 |
#, fuzzy
|
2622 |
#| msgid "Are you sure you want to delete the map"
|
2623 |
msgid "Are you sure you wish to delete this scheduled import?"
|
2624 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
2625 |
|
2626 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2627 |
msgid "Scheduled import deleted."
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2631 |
msgid "Please select at least one map to export."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2635 |
msgid "Accepts"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:
|
2639 |
msgid "Next schedule run"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: ../../wp-google-maps-pro/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2643 |
msgid "Header 1 should be 'id', not"
|
2644 |
msgstr "Хедър 1 трябва да бъде 'id', не"
|
2645 |
|
2646 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2647 |
msgid "Header 2 should be 'map_id', not"
|
2648 |
msgstr "хедър 2 трябва да бъде 'map_id', не"
|
2649 |
|
2650 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2651 |
msgid "Header 3 should be 'address', not"
|
2652 |
msgstr "Хедър 3 трябва да бъде 'address', не"
|
2653 |
|
2654 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2655 |
msgid "Header 4 should be 'description', not"
|
2656 |
msgstr "Хедър 4 трябва да бъде 'description', не"
|
2657 |
|
2658 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2659 |
msgid "Header 5 should be 'pic', not"
|
2660 |
msgstr "Хедър 5 трябва да бъде 'pic', не"
|
2661 |
|
2662 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2663 |
msgid "Header 6 should be 'link', not"
|
2664 |
msgstr "Хедър 6 трябва да бъде 'link', не"
|
2665 |
|
2666 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2667 |
msgid "Header 7 should be 'icon', not"
|
2668 |
msgstr "Хедър 7 трябва да бъде 'icon', не"
|
2669 |
|
2670 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2671 |
msgid "Header 8 should be 'lat', not"
|
2672 |
msgstr "Хедър 9 трябва да бъде 'lng', не"
|
2673 |
|
2674 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2675 |
msgid "Header 9 should be 'lng', not"
|
2676 |
msgstr "Хедър 9 трябва да бъде 'lng', не"
|
2677 |
|
2678 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2679 |
msgid "Header 10 should be 'anim', not"
|
2680 |
msgstr "Хедър 10 трябва да бъде 'anim', не"
|
2681 |
|
2682 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2683 |
msgid "Header 11 should be 'title', not"
|
2684 |
msgstr "Хедър 11 трябва да бъде 'title', не"
|
2685 |
|
2686 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2687 |
msgid "Header 12 should be 'infoopen', not"
|
2688 |
msgstr "Хедър 12 трябва да бъде 'infoopen', не"
|
2689 |
|
2690 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2691 |
msgid "Header 13 should be 'category', not"
|
2692 |
msgstr "Хедър 13 трябва да бъде 'category', не"
|
2693 |
|
2694 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2695 |
msgid "Header 14 should be 'approved', not"
|
2696 |
msgstr "Хедър 14 трябва да бъде 'approved', не"
|
2697 |
|
2698 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2699 |
msgid "Header 15 should be 'retina', not"
|
2700 |
msgstr "Хедър 15 трябва да бъде 'retina', не"
|
2701 |
|
2702 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2703 |
msgid "CSV import failed"
|
2704 |
msgstr "CSV импорт неуспешен"
|
2705 |
|
2706 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2707 |
#, php-format
|
2708 |
msgid "Cannot import line %d as the LAT and/or LNG is not defined."
|
2709 |
msgstr ""
|
2710 |
|
2711 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2712 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2713 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2714 |
-
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:
|
2715 |
msgid "Your CSV file has been successfully imported"
|
2716 |
msgstr "Твоя CSV файл бе успешно импортиран"
|
2717 |
|
2718 |
-
#: ../../wp-google-maps-pro/includes/
|
2719 |
-
|
2720 |
-
|
2721 |
-
|
2722 |
-
|
2723 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2724 |
#: ../includes/tables/class.admin-marker-datatable.php:41
|
2725 |
-
#: ../
|
2726 |
msgid "Link"
|
2727 |
msgstr "Линк"
|
2728 |
|
2729 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:
|
2730 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.basic-table.php:
|
2731 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.carousel.php:
|
2732 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.grid.php:
|
2733 |
#, fuzzy
|
2734 |
#| msgid "More details"
|
2735 |
msgid "More Details"
|
2736 |
msgstr "Повече подробности"
|
2737 |
|
2738 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:
|
2739 |
-
#:
|
2740 |
-
#:
|
2741 |
-
#: ../legacy-core.php:3700
|
2742 |
#, fuzzy
|
2743 |
#| msgid "1mi"
|
2744 |
msgid "mi"
|
2745 |
msgstr "1 миля"
|
2746 |
|
2747 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:
|
2748 |
-
#:
|
2749 |
-
#:
|
2750 |
-
#: ../legacy-core.php:3700
|
2751 |
#, fuzzy
|
2752 |
#| msgid "1km"
|
2753 |
msgid "km"
|
2754 |
msgstr "1 км"
|
2755 |
|
2756 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:
|
2757 |
-
#: ../includes/class.strings.php:
|
2758 |
#, fuzzy
|
2759 |
#| msgid "My location"
|
2760 |
msgid "from your location"
|
2761 |
msgstr "Моето местоположение"
|
2762 |
|
2763 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:
|
2764 |
-
#: ../includes/class.strings.php:
|
2765 |
#, fuzzy
|
2766 |
#| msgid "Show User's Location?"
|
2767 |
msgid "from searched location"
|
2768 |
msgstr "Покажи позиция на потребител?"
|
2769 |
|
2770 |
-
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:
|
2771 |
msgid "from unknown location"
|
2772 |
msgstr ""
|
2773 |
|
@@ -2781,9 +2775,11 @@ msgid "Add New Category"
|
|
2781 |
msgstr "Добави нова категория"
|
2782 |
|
2783 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2784 |
-
#: ../
|
2785 |
-
#: ../
|
2786 |
-
#: ../
|
|
|
|
|
2787 |
msgid "Pro Version"
|
2788 |
msgstr "Pro версия"
|
2789 |
|
@@ -2792,17 +2788,17 @@ msgid "Create marker categories"
|
|
2792 |
msgstr "Създай маркер категории"
|
2793 |
|
2794 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2795 |
-
#: ../legacy-core.php:
|
2796 |
msgid "with the"
|
2797 |
msgstr "с"
|
2798 |
|
2799 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2800 |
-
#: ../legacy-core.php:
|
2801 |
msgid "of WP Google Maps for only"
|
2802 |
msgstr "от WP Google Maps само за"
|
2803 |
|
2804 |
#: ../../wp-google-maps-pro/includes/page.categories.php:26
|
2805 |
-
#: ../legacy-core.php:
|
2806 |
msgid "Problems with the plugin? See the troubleshooting manual."
|
2807 |
msgstr "Проблеми с плъгина? Виж документацията за отстраняване на проблемите."
|
2808 |
|
@@ -2818,208 +2814,183 @@ msgstr "Изтрий категорията си"
|
|
2818 |
msgid "Are you sure you want to delete the category"
|
2819 |
msgstr "Сигурен ли сте, че искате да изтриете категорията?"
|
2820 |
|
2821 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2822 |
msgid "Add a Marker Category"
|
2823 |
msgstr "Добави маркер категория"
|
2824 |
|
2825 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2826 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2827 |
msgid "Category Name"
|
2828 |
msgstr "Име на категория"
|
2829 |
|
2830 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2831 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2832 |
msgid "Category Marker"
|
2833 |
msgstr "Категория маркер"
|
2834 |
|
2835 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2836 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2837 |
#, fuzzy
|
2838 |
#| msgid "Category Name"
|
2839 |
msgid "Category Image:"
|
2840 |
msgstr "Име на категория"
|
2841 |
|
2842 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2843 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2844 |
msgid "Enter URL"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
#: ../../wp-google-maps-pro/includes/page.categories.php:157
|
2848 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:328
|
2849 |
-
msgid "Retina Ready"
|
2850 |
-
msgstr "Retina Ready"
|
2851 |
-
|
2852 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:158
|
2853 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:329
|
2854 |
-
msgid "This marker is a retina-ready marker"
|
2855 |
-
msgstr "Този маркер е retina-ready"
|
2856 |
-
|
2857 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:167
|
2858 |
#, fuzzy
|
2859 |
msgid "Parent Category"
|
2860 |
msgstr "Категории маркери"
|
2861 |
|
2862 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2863 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2864 |
msgid "Optional"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2868 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2869 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:745
|
2870 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5726
|
2871 |
-
msgid "Priority"
|
2872 |
-
msgstr ""
|
2873 |
-
|
2874 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:203
|
2875 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:385
|
2876 |
msgid "Assigned to "
|
2877 |
msgstr "Зачислен до"
|
2878 |
|
2879 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2880 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2881 |
msgid "Save Category"
|
2882 |
msgstr "Запиши категория"
|
2883 |
|
2884 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2885 |
#, fuzzy
|
2886 |
msgid "Edit a Marker Category"
|
2887 |
msgstr "Добави маркер категория"
|
2888 |
|
2889 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2890 |
#, fuzzy
|
2891 |
msgid "Parent Category:"
|
2892 |
msgstr "Категории маркери"
|
2893 |
|
2894 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2895 |
msgid "Your category has been created."
|
2896 |
msgstr "Твоята категория беше създадена."
|
2897 |
|
2898 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2899 |
msgid "Your category has been saved."
|
2900 |
msgstr "Твоята категория беше записана."
|
2901 |
|
2902 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2903 |
-
msgid "
|
2904 |
-
msgstr "
|
2905 |
|
2906 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:
|
2907 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:917
|
2908 |
msgid "Linked maps"
|
2909 |
msgstr "Линкнати карти"
|
2910 |
|
2911 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:876
|
2912 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:923
|
2913 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7709 ../legacy-core.php:3058
|
2914 |
-
msgid "Trash"
|
2915 |
-
msgstr "Боклук"
|
2916 |
-
|
2917 |
-
#: ../../wp-google-maps-pro/includes/page.categories.php:916
|
2918 |
-
msgid "Parent"
|
2919 |
-
msgstr ""
|
2920 |
-
|
2921 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:32
|
2922 |
-
#:
|
2923 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7141
|
2924 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7232
|
2925 |
-
#: ../base/includes/wp-google-maps-polygons.php:38
|
2926 |
msgid "Add a Polygon"
|
2927 |
msgstr "Добави полигон"
|
2928 |
|
2929 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:35
|
2930 |
-
#:
|
2931 |
-
#:
|
2932 |
-
#: ../
|
2933 |
-
#: ../
|
2934 |
-
#: ../
|
2935 |
-
#: ../
|
2936 |
msgid "Line Color"
|
2937 |
msgstr "Цвят на линк"
|
2938 |
|
2939 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:36
|
2940 |
-
#:
|
2941 |
-
#:
|
2942 |
-
#: ../
|
2943 |
-
#: ../
|
|
|
2944 |
msgid "Fill Color"
|
2945 |
msgstr "Запълни с цвят"
|
2946 |
|
2947 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:37
|
2948 |
-
#:
|
2949 |
-
#:
|
2950 |
-
#:
|
2951 |
-
#:
|
2952 |
-
#: ../
|
2953 |
-
#: ../
|
2954 |
-
#: ../
|
2955 |
-
#: ../
|
2956 |
-
#: ../
|
|
|
|
|
|
|
|
|
2957 |
msgid "Opacity"
|
2958 |
msgstr "Непрозрачност"
|
2959 |
|
2960 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:49
|
2961 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:98
|
2962 |
-
#:
|
2963 |
-
#:
|
2964 |
-
#: ../base/includes/wp-google-maps-polygons.php:93
|
2965 |
-
#: ../base/includes/wp-google-maps-polygons.php:193
|
2966 |
msgid "Save Polygon"
|
2967 |
msgstr "Запази полигон"
|
2968 |
|
2969 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:81
|
2970 |
-
#: ../
|
2971 |
msgid "Edit Polygon"
|
2972 |
msgstr "Промяна на полигон."
|
2973 |
|
2974 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:472
|
2975 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
2976 |
msgid "Polygon Data"
|
2977 |
msgstr "Данни полигон"
|
2978 |
|
2979 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:473
|
2980 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:486
|
2981 |
-
#:
|
2982 |
-
#:
|
2983 |
-
#:
|
2984 |
-
#:
|
2985 |
-
#: ../
|
2986 |
-
#: ../
|
|
|
|
|
|
|
2987 |
#: ../includes/tables/class.admin-marker-datatable.php:43
|
2988 |
-
#: ../
|
2989 |
-
#: ../
|
|
|
2990 |
msgid "Action"
|
2991 |
msgstr "Действие"
|
2992 |
|
2993 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:497
|
2994 |
-
#: ../
|
2995 |
msgid "Delete this polygon"
|
2996 |
msgstr "Изтрий този полигон"
|
2997 |
|
2998 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:25
|
2999 |
-
#:
|
3000 |
-
#: ../base/includes/wp-google-maps-polylines.php:31
|
3001 |
msgid "Add a Polyline"
|
3002 |
msgstr "Добави полином"
|
3003 |
|
3004 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:42
|
3005 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:90
|
3006 |
-
#: ../
|
3007 |
-
#: ../
|
3008 |
msgid "Save Polyline"
|
3009 |
msgstr "Запиши полином"
|
3010 |
|
3011 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:73
|
3012 |
-
#: ../
|
3013 |
msgid "Edit Polyline"
|
3014 |
msgstr "Промени полином"
|
3015 |
|
3016 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:485
|
3017 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3018 |
msgid "Polyline Data"
|
3019 |
msgstr "Полином данни"
|
3020 |
|
3021 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:510
|
3022 |
-
#: ../
|
3023 |
msgid "Delete this polyline"
|
3024 |
msgstr "Изтрий този полином"
|
3025 |
|
@@ -3027,144 +2998,132 @@ msgstr "Изтрий този полином"
|
|
3027 |
msgid "Select a Map Type (beta)"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3031 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3032 |
-
#:
|
3033 |
-
#:
|
3034 |
-
#:
|
3035 |
-
#: ../base/classes/WPGM_templates.php:48 ../base/includes/welcome.php:43
|
3036 |
-
#: ../html/settings-page.html.php:20 ../includes/legacy/settings-page.php:156
|
3037 |
-
#: ../includes/legacy/settings-page.php:467 ../legacy-core.php:3436
|
3038 |
msgid "Store Locator"
|
3039 |
msgstr "Намирач на магазини"
|
3040 |
|
3041 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3042 |
#, fuzzy
|
3043 |
msgid "Show distance in:"
|
3044 |
msgstr "Покажи разстояния в"
|
3045 |
|
3046 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3047 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1563 ../legacy-core.php:3689
|
3048 |
msgid "Miles"
|
3049 |
msgstr "Мили"
|
3050 |
|
3051 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3052 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1563 ../legacy-core.php:3689
|
3053 |
msgid "Kilometers"
|
3054 |
msgstr "Километри"
|
3055 |
|
3056 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3057 |
#, fuzzy
|
3058 |
msgid "Show bouncing icon:"
|
3059 |
msgstr "Покажи подскачаща икона"
|
3060 |
|
3061 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3062 |
#, fuzzy
|
3063 |
msgid "Hide markers until search is done:"
|
3064 |
msgstr "Скрий всички маркери докато не се направи търсенето"
|
3065 |
|
3066 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3067 |
#, fuzzy
|
3068 |
msgid "Default 'To' Address:"
|
3069 |
msgstr "по подразбиране 'до' адрес"
|
3070 |
|
3071 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3072 |
#, fuzzy
|
3073 |
msgid "Enter Address"
|
3074 |
msgstr "Адрес"
|
3075 |
|
3076 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3077 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3078 |
-
#:
|
3079 |
-
#:
|
3080 |
-
#: ../html/settings-page.html.php:15 ../includes/legacy/settings-page.php:155
|
3081 |
msgid "Marker Listing"
|
3082 |
msgstr "Списък маркери"
|
3083 |
|
3084 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3085 |
-
#:
|
3086 |
msgid "Marker Listing Style"
|
3087 |
msgstr "Стилове на маркерите"
|
3088 |
|
3089 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3090 |
#, fuzzy
|
3091 |
msgid "Basic Table"
|
3092 |
msgstr "Основна таблица"
|
3093 |
|
3094 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3095 |
#, fuzzy
|
3096 |
msgid "Basic List"
|
3097 |
msgstr "Основен списък"
|
3098 |
|
3099 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3100 |
#, fuzzy
|
3101 |
msgid "Advanced Table"
|
3102 |
msgstr "Допълнителна таблица"
|
3103 |
|
3104 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3105 |
-
#:
|
3106 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2190
|
3107 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2230
|
3108 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7330 ../legacy-core.php:3892
|
3109 |
-
#: ../legacy-core.php:3972
|
3110 |
msgid "Carousel"
|
3111 |
msgstr "Въртележка"
|
3112 |
|
3113 |
-
#: ../../wp-google-maps-pro/includes/page.wizard.php:
|
3114 |
msgid "Blank Map"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: ../../wp-google-maps-pro/includes/tables/class.pro-admin-marker-datatable.php:
|
3118 |
-
#: ../
|
3119 |
msgid "Approve this marker"
|
3120 |
msgstr "Одобри този маркер"
|
3121 |
|
3122 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:210
|
3123 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3124 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3125 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3126 |
-
#:
|
3127 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5554
|
3128 |
-
#: ../includes/legacy/settings-page.php:163
|
3129 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:102
|
3130 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3131 |
msgid "Map Settings"
|
3132 |
msgstr "Настройки карта"
|
3133 |
|
3134 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:213
|
3135 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3136 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3137 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3138 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
3139 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3140 |
#, fuzzy
|
3141 |
#| msgid "Maps"
|
3142 |
msgid "Map"
|
3143 |
msgstr "Карти"
|
3144 |
|
3145 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:228
|
3146 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3147 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3148 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3149 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:112
|
3150 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3151 |
msgid "Go to Map Editor"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:233
|
3155 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3156 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3157 |
msgid "Mashup IDs"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:246
|
3161 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3162 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3163 |
msgid "Reset Mashup IDs"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:251
|
3167 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3168 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3169 |
#, fuzzy
|
3170 |
#| msgid "Your Markers"
|
@@ -3172,19 +3131,19 @@ msgid "Focused Marker"
|
|
3172 |
msgstr "Твоите маркери"
|
3173 |
|
3174 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:262
|
3175 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3176 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3177 |
msgid "Override Zoom"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:276
|
3181 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3182 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3183 |
msgid "Reset Override Zoom"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:281
|
3187 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3188 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3189 |
#, fuzzy
|
3190 |
#| msgid "Save Category"
|
@@ -3192,37 +3151,20 @@ msgid "Initial Category"
|
|
3192 |
msgstr "Запиши категория"
|
3193 |
|
3194 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:299
|
3195 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3196 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3197 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3198 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:124
|
3199 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3200 |
#, fuzzy
|
3201 |
#| msgid "Documentation"
|
3202 |
msgid "View Documentation"
|
3203 |
msgstr "Документация"
|
3204 |
|
3205 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3206 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6817
|
3207 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3208 |
-
#: ../../wp-google-maps-pro/legacy-core.php:110
|
3209 |
-
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2089
|
3210 |
-
#: ../base/classes/widget_module.class.php:14
|
3211 |
-
#: ../includes/class.auto-loader.php:193
|
3212 |
-
#: ../includes/class.maps-engine-dialog.php:166
|
3213 |
-
#: ../includes/class.plugin.php:484
|
3214 |
-
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:43
|
3215 |
-
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:140
|
3216 |
-
#: ../js/v8/wp-google-maps.combined.js:6967
|
3217 |
-
#: ../js/v8/wp-google-maps.combined.js:7064 ../js/v8/wp-google-maps.min.js:1
|
3218 |
-
#: ../wpGoogleMaps.php:1337 ../wpGoogleMaps.php:1376
|
3219 |
-
msgid "WP Google Maps"
|
3220 |
-
msgstr "WP Google Maps"
|
3221 |
-
|
3222 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6818
|
3223 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3224 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:141
|
3225 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3226 |
msgid ""
|
3227 |
"The easiest to use Google Maps plugin! Create custom Google Maps with high "
|
3228 |
"quality markers containing locations, descriptions, images and links. Add "
|
@@ -3230,19 +3172,19 @@ msgid ""
|
|
3230 |
"with the supplied shortcode. No fuss."
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3234 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3235 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
3236 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3237 |
#, fuzzy
|
3238 |
#| msgid "WP Google Maps"
|
3239 |
msgid "Google"
|
3240 |
msgstr "WP Google Maps"
|
3241 |
|
3242 |
-
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:
|
3243 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3244 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:155
|
3245 |
-
#: ../js/v8/wp-google-maps.combined.js:
|
3246 |
msgid "Your map will appear here on your websites front end"
|
3247 |
msgstr ""
|
3248 |
|
@@ -3261,2814 +3203,3384 @@ msgid ""
|
|
3261 |
"Gold features with the OpenLayers engine."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3265 |
msgid ""
|
3266 |
"The Pro add-on cannot be registered due to a fatal error. This is usually "
|
3267 |
"due to missing files. Please re-install the Pro add-on. Technical details "
|
3268 |
"are as follows: "
|
3269 |
msgstr ""
|
3270 |
|
3271 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3272 |
-
#, fuzzy
|
3273 |
-
#| msgid "Delete this marker"
|
3274 |
-
msgid "Delete this circle"
|
3275 |
-
msgstr "Изтрий този маркер"
|
3276 |
-
|
3277 |
-
#: ../../wp-google-maps-pro/legacy-core.php:342 ../legacy-core.php:5565
|
3278 |
-
#, fuzzy
|
3279 |
-
msgid "Delete this rectangle"
|
3280 |
-
msgstr "Изтрий този маркер"
|
3281 |
-
|
3282 |
-
#: ../../wp-google-maps-pro/legacy-core.php:407
|
3283 |
msgid ""
|
3284 |
"<strong>WP Google Maps Pro:</strong> Experiencing issues? We strongly "
|
3285 |
"recommend that you update WP Google Maps (Basic) to Version 8.0.0 in the "
|
3286 |
"plugins menu"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3290 |
-
|
3291 |
-
|
|
|
|
|
|
|
|
|
3292 |
|
3293 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3294 |
-
msgid "
|
3295 |
-
msgstr "
|
3296 |
|
3297 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3298 |
-
msgid ""
|
3299 |
-
"
|
3300 |
-
"a>. Your current Gold version is not compatible with the current Pro version."
|
3301 |
-
msgstr ""
|
3302 |
-
"Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
|
3303 |
-
"\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
|
3304 |
|
3305 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3306 |
-
|
3307 |
-
|
|
|
|
|
3308 |
|
3309 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3310 |
-
|
3311 |
-
|
3312 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7333 ../legacy-core.php:3890
|
3313 |
-
msgid "Basic table"
|
3314 |
-
msgstr "Основна таблица"
|
3315 |
|
3316 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3317 |
-
|
3318 |
-
|
3319 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7332
|
3320 |
-
msgid "Basic list"
|
3321 |
-
msgstr "Основен списък"
|
3322 |
|
3323 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3324 |
-
#:
|
3325 |
-
#:
|
3326 |
-
|
3327 |
-
|
3328 |
-
msgstr "Допълнителна таблица"
|
3329 |
|
3330 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3331 |
-
#:
|
3332 |
-
#:
|
3333 |
-
|
3334 |
-
|
3335 |
-
msgid "Default Infowindow"
|
3336 |
-
msgstr "Дифолт инфо прозорец"
|
3337 |
|
3338 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3339 |
-
|
3340 |
-
|
3341 |
-
|
3342 |
-
|
3343 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3344 |
|
3345 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3346 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2056
|
3347 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5862
|
3348 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5908
|
3349 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7338
|
3350 |
#, fuzzy
|
3351 |
-
msgid "
|
3352 |
-
msgstr "
|
3353 |
|
3354 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3355 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2063
|
3356 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5864
|
3357 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5915
|
3358 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7339
|
3359 |
#, fuzzy
|
3360 |
-
msgid "
|
3361 |
-
msgstr "
|
3362 |
|
3363 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3364 |
-
|
3365 |
-
|
|
|
3366 |
|
3367 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3368 |
-
msgid "
|
3369 |
-
msgstr "
|
3370 |
|
3371 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3372 |
-
|
3373 |
-
|
|
|
3374 |
|
3375 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3376 |
-
|
|
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3380 |
#, fuzzy
|
3381 |
-
msgid "
|
3382 |
-
msgstr "
|
3383 |
|
3384 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3385 |
-
|
3386 |
-
|
3387 |
-
|
|
|
|
|
3388 |
|
3389 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3390 |
-
#:
|
3391 |
-
|
3392 |
-
|
|
|
|
|
3393 |
|
3394 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3395 |
-
|
3396 |
-
msgid "
|
3397 |
-
msgstr "
|
3398 |
|
3399 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3400 |
-
msgid "
|
3401 |
-
|
|
|
3402 |
|
3403 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3404 |
-
msgid "
|
3405 |
-
msgstr "
|
3406 |
|
3407 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3408 |
-
|
3409 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3410 |
|
3411 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3412 |
-
msgid "
|
3413 |
-
msgstr "
|
3414 |
|
3415 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3416 |
-
|
3417 |
-
|
|
|
3418 |
|
3419 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3420 |
-
#, fuzzy
|
3421 |
-
msgid "
|
3422 |
-
msgstr "
|
3423 |
|
3424 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3425 |
-
#, fuzzy, php-format
|
3426 |
msgid ""
|
3427 |
-
"
|
3428 |
-
"
|
3429 |
msgstr ""
|
3430 |
-
"Препоръчваме да оставите височината в пискели. Според темата, използвайки "
|
3431 |
-
"проценти за височината може да счупи темата ви."
|
3432 |
|
3433 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3434 |
-
msgid "
|
3435 |
-
msgstr "
|
3436 |
|
3437 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3438 |
-
msgid "
|
3439 |
-
msgstr "
|
3440 |
|
3441 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3442 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1420 ../legacy-core.php:3600
|
3443 |
-
#: ../legacy-core.php:3627
|
3444 |
#, fuzzy
|
3445 |
-
#| msgid "
|
3446 |
-
msgid "
|
3447 |
-
msgstr "
|
3448 |
|
3449 |
-
#: ../../wp-google-maps-pro/legacy-core.php:
|
3450 |
-
|
3451 |
-
|
3452 |
-
|
3453 |
-
#:
|
3454 |
-
|
|
|
|
|
|
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: ../../wp-google-maps-pro/
|
3458 |
#, php-format
|
3459 |
msgid ""
|
3460 |
-
"
|
3461 |
-
"
|
3462 |
-
msgstr ""
|
3463 |
-
|
3464 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1435
|
3465 |
-
#, fuzzy
|
3466 |
-
#| msgid "Search"
|
3467 |
-
msgid "Search Area"
|
3468 |
-
msgstr "Търси"
|
3469 |
-
|
3470 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1445
|
3471 |
-
#, fuzzy
|
3472 |
-
#| msgid "Radius"
|
3473 |
-
msgid "Radial"
|
3474 |
-
msgstr "Радиус"
|
3475 |
-
|
3476 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1449
|
3477 |
-
msgid "Allows the user to select a radius from a predefined list"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: ../../wp-google-maps-pro/
|
3481 |
-
msgid "
|
|
|
|
|
|
|
|
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: ../../wp-google-maps-pro/
|
3485 |
-
|
|
|
|
|
|
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: ../../wp-google-maps-pro/
|
3489 |
-
|
3490 |
-
|
3491 |
-
|
3492 |
-
|
|
|
|
|
3493 |
|
3494 |
-
#: ../../wp-google-maps-pro/
|
3495 |
-
|
3496 |
-
|
3497 |
-
|
3498 |
-
|
|
|
3499 |
|
3500 |
-
#: ../../wp-google-maps-pro/
|
3501 |
-
|
3502 |
-
|
3503 |
-
|
3504 |
-
|
|
|
3505 |
|
3506 |
-
#: ../../wp-google-maps-pro/
|
3507 |
-
|
3508 |
-
|
|
|
|
|
|
|
3509 |
|
3510 |
-
#: ../../wp-google-maps-pro/
|
3511 |
-
#,
|
3512 |
-
msgid "
|
3513 |
-
|
|
|
|
|
|
|
3514 |
|
3515 |
-
#: ../../wp-google-maps-
|
3516 |
-
|
3517 |
-
|
|
|
3518 |
|
3519 |
-
#: ../../wp-google-maps-
|
3520 |
-
|
3521 |
-
|
|
|
3522 |
|
3523 |
-
#: ../../wp-google-maps-
|
3524 |
-
|
3525 |
-
|
|
|
3526 |
|
3527 |
-
#: ../../wp-google-maps-
|
3528 |
#, fuzzy
|
3529 |
-
msgid "
|
3530 |
-
msgstr "
|
|
|
|
|
|
|
|
|
3531 |
|
3532 |
-
#: ../../wp-google-maps-
|
3533 |
-
|
3534 |
-
msgid "Below Map"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#: ../../wp-google-maps-
|
3538 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2258
|
3539 |
#, fuzzy
|
3540 |
-
msgid "
|
3541 |
-
msgstr "
|
3542 |
|
3543 |
-
#: ../../wp-google-maps-
|
3544 |
-
|
3545 |
-
|
|
|
3546 |
|
3547 |
-
#: ../../wp-google-maps-
|
3548 |
-
|
3549 |
-
|
|
|
3550 |
|
3551 |
-
#: ../../wp-google-maps-
|
3552 |
-
|
|
|
|
|
|
|
|
|
|
|
3553 |
msgstr ""
|
3554 |
|
3555 |
-
#: ../../wp-google-maps-
|
|
|
|
|
|
|
|
|
|
|
3556 |
#, fuzzy
|
3557 |
-
msgid "
|
3558 |
-
msgstr "
|
3559 |
|
3560 |
-
#: ../../wp-google-maps-
|
3561 |
-
#: ../../wp-google-maps-
|
|
|
3562 |
#, fuzzy
|
3563 |
-
msgid "
|
3564 |
-
msgstr "
|
3565 |
|
3566 |
-
#: ../../wp-google-maps-
|
3567 |
#, fuzzy
|
3568 |
-
|
3569 |
-
|
3570 |
-
msgstr "Списък маркери"
|
3571 |
|
3572 |
-
#: ../../wp-google-maps-
|
3573 |
-
|
3574 |
-
|
|
|
|
|
3575 |
|
3576 |
-
#: ../../wp-google-maps-
|
3577 |
-
|
3578 |
-
|
|
|
3579 |
|
3580 |
-
#: ../../wp-google-maps-
|
3581 |
#, fuzzy
|
3582 |
-
|
3583 |
-
|
3584 |
-
msgstr "по подразбиране 'до' адрес"
|
3585 |
|
3586 |
-
#: ../../wp-google-maps-
|
3587 |
-
|
3588 |
-
|
|
|
|
|
3589 |
|
3590 |
-
#: ../../wp-google-maps-
|
3591 |
-
|
3592 |
-
|
|
|
|
|
|
|
3593 |
|
3594 |
-
#: ../../wp-google-maps-
|
3595 |
-
msgid "
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: ../../wp-google-maps-
|
3599 |
-
|
3600 |
-
|
3601 |
-
|
3602 |
-
|
3603 |
-
|
3604 |
-
msgstr "Цвят на линия"
|
3605 |
-
|
3606 |
-
#: ../../wp-google-maps-pro/legacy-core.php:1672
|
3607 |
-
msgid "Line opacity"
|
3608 |
-
msgstr "Линия непрозрачност"
|
3609 |
|
3610 |
-
#: ../../wp-google-maps-
|
3611 |
-
#: ../../wp-google-maps-
|
3612 |
-
|
3613 |
-
|
|
|
3614 |
|
3615 |
-
#: ../../wp-google-maps-
|
3616 |
-
|
3617 |
-
|
|
|
3618 |
|
3619 |
-
#: ../../wp-google-maps-
|
3620 |
-
|
3621 |
-
|
|
|
3622 |
|
3623 |
-
#: ../../wp-google-maps-
|
3624 |
-
msgid "
|
3625 |
-
msgstr "
|
3626 |
|
3627 |
-
#: ../../wp-google-maps-
|
3628 |
-
msgid "
|
3629 |
-
msgstr "
|
3630 |
|
3631 |
-
#: ../../wp-google-maps-
|
3632 |
#, fuzzy
|
3633 |
-
|
3634 |
-
|
3635 |
-
msgstr "Допълнителни настройки"
|
3636 |
|
3637 |
-
#: ../../wp-google-maps-
|
3638 |
-
msgid "
|
3639 |
-
msgstr "
|
3640 |
|
3641 |
-
#: ../../wp-google-maps-
|
3642 |
-
|
3643 |
-
|
|
|
3644 |
|
3645 |
-
#: ../../wp-google-maps-
|
3646 |
-
|
3647 |
-
|
3648 |
-
msgid "Roadmap"
|
3649 |
-
msgstr "Пътна карта"
|
3650 |
|
3651 |
-
#: ../../wp-google-maps-
|
3652 |
-
|
3653 |
-
|
3654 |
-
|
3655 |
-
msgstr "Сателит"
|
3656 |
|
3657 |
-
#: ../../wp-google-maps-
|
3658 |
-
|
3659 |
-
|
3660 |
-
|
3661 |
-
msgstr "Хибрид"
|
3662 |
|
3663 |
-
#: ../../wp-google-maps-
|
3664 |
-
|
3665 |
-
|
3666 |
-
|
3667 |
-
msgstr "Терен"
|
3668 |
|
3669 |
-
#: ../../wp-google-maps-
|
3670 |
-
|
3671 |
-
|
|
|
3672 |
|
3673 |
-
#: ../../wp-google-maps-
|
3674 |
-
|
3675 |
-
|
|
|
3676 |
|
3677 |
-
#: ../../wp-google-maps-
|
3678 |
-
|
3679 |
-
msgid "
|
3680 |
-
msgstr "
|
3681 |
|
3682 |
-
#: ../../wp-google-maps-
|
3683 |
-
|
3684 |
-
|
|
|
|
|
3685 |
|
3686 |
-
#: ../../wp-google-maps-
|
3687 |
-
|
3688 |
-
|
|
|
|
|
3689 |
|
3690 |
-
#: ../../wp-google-maps-
|
3691 |
-
msgid "
|
3692 |
msgstr ""
|
3693 |
|
3694 |
-
#: ../../wp-google-maps-
|
3695 |
-
|
|
|
|
|
|
|
3696 |
msgstr ""
|
|
|
|
|
3697 |
|
3698 |
-
#: ../../wp-google-maps-
|
3699 |
-
|
3700 |
-
|
|
|
3701 |
|
3702 |
-
#: ../../wp-google-maps-
|
3703 |
-
|
3704 |
-
|
|
|
3705 |
|
3706 |
-
#: ../../wp-google-maps-
|
3707 |
-
msgid "
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: ../../wp-google-maps-
|
3711 |
#, fuzzy
|
3712 |
-
|
3713 |
-
|
3714 |
-
msgstr "Покажи разстояния в"
|
3715 |
|
3716 |
-
#: ../../wp-google-maps-
|
3717 |
-
msgid ""
|
3718 |
-
"This feature will use the users location (where available) or the searched "
|
3719 |
-
"address when a store locator search is performed."
|
3720 |
msgstr ""
|
3721 |
|
3722 |
-
#: ../../wp-google-maps-
|
3723 |
-
msgid "
|
3724 |
-
msgstr "
|
3725 |
|
3726 |
-
#: ../../wp-google-maps-
|
3727 |
-
msgid "
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: ../../wp-google-maps-
|
3731 |
-
msgid "
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: ../../wp-google-maps-
|
3735 |
-
|
|
|
|
|
|
|
3736 |
msgstr ""
|
3737 |
|
3738 |
-
#: ../../wp-google-maps-
|
3739 |
-
|
3740 |
-
msgid "
|
3741 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3742 |
|
3743 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3744 |
#, fuzzy
|
3745 |
-
msgid "
|
3746 |
-
msgstr "
|
3747 |
|
3748 |
-
#:
|
3749 |
-
msgid "
|
3750 |
-
msgstr "
|
3751 |
|
3752 |
-
#:
|
3753 |
-
msgid "
|
3754 |
-
msgstr "
|
3755 |
|
3756 |
-
#:
|
3757 |
-
msgid "
|
3758 |
-
msgstr "
|
3759 |
|
3760 |
-
#:
|
3761 |
-
msgid "
|
3762 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3763 |
|
3764 |
-
#:
|
3765 |
#, fuzzy
|
3766 |
-
|
3767 |
-
|
3768 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3769 |
|
3770 |
-
#:
|
3771 |
-
|
3772 |
-
|
|
|
|
|
3773 |
|
3774 |
-
#:
|
3775 |
-
msgid "
|
3776 |
-
msgstr "
|
3777 |
|
3778 |
-
#:
|
3779 |
-
msgid "
|
3780 |
-
msgstr "
|
3781 |
|
3782 |
-
#:
|
3783 |
-
msgid "
|
3784 |
-
msgstr "
|
3785 |
|
3786 |
-
#:
|
3787 |
msgid ""
|
3788 |
-
"
|
3789 |
-
"
|
3790 |
-
"api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
3791 |
-
"maps-api.html</a>"
|
3792 |
msgstr ""
|
3793 |
-
"Чете данни директно от твоята Fusion таблица. За повече информация, виж <a "
|
3794 |
-
"href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
|
3795 |
-
"api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
3796 |
-
"maps-api.html</a>"
|
3797 |
|
3798 |
-
#:
|
3799 |
#, fuzzy
|
3800 |
-
#| msgid "
|
3801 |
-
|
3802 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3803 |
|
3804 |
-
#:
|
3805 |
#, fuzzy
|
3806 |
-
#| msgid "
|
3807 |
-
msgid "
|
3808 |
-
msgstr "
|
3809 |
-
|
3810 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2036
|
3811 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5887
|
3812 |
-
msgid "Infowindow Style"
|
3813 |
-
msgstr "Стил на инфопрозорец"
|
3814 |
|
3815 |
-
#:
|
3816 |
#, fuzzy
|
3817 |
-
msgid "
|
3818 |
-
|
3819 |
-
|
3820 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2087
|
3821 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5939
|
3822 |
-
msgid "Your selection:"
|
3823 |
-
msgstr "Твоя избор:"
|
3824 |
|
3825 |
-
#:
|
3826 |
#, fuzzy
|
3827 |
-
msgid "
|
3828 |
-
|
|
|
3829 |
|
3830 |
-
#:
|
3831 |
-
|
3832 |
-
|
3833 |
-
msgstr "Цвят на линк"
|
3834 |
|
3835 |
-
#:
|
3836 |
-
|
3837 |
-
|
3838 |
-
msgstr "Цвят на линк"
|
3839 |
|
3840 |
-
#:
|
3841 |
#, fuzzy
|
3842 |
-
msgid "
|
3843 |
-
msgstr "
|
3844 |
-
|
3845 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2174
|
3846 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2206
|
3847 |
-
#: ../../wp-google-maps-pro/legacy-core.php:7331
|
3848 |
-
msgid "No marker listing"
|
3849 |
-
msgstr "Без маркер списък"
|
3850 |
|
3851 |
-
#:
|
3852 |
#, fuzzy
|
3853 |
-
msgid "
|
3854 |
-
|
|
|
3855 |
|
3856 |
-
#:
|
3857 |
-
msgid "
|
3858 |
-
msgstr "
|
3859 |
|
3860 |
-
#:
|
3861 |
#, fuzzy
|
3862 |
-
#| msgid "
|
3863 |
-
|
3864 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3865 |
|
3866 |
-
#:
|
3867 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#:
|
3871 |
#, fuzzy
|
3872 |
-
msgid "
|
3873 |
-
msgstr "
|
3874 |
-
|
3875 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2281 ../legacy-core.php:3916
|
3876 |
-
msgid "Ascending"
|
3877 |
-
msgstr "низходящ"
|
3878 |
-
|
3879 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2282 ../legacy-core.php:3917
|
3880 |
-
msgid "Descending"
|
3881 |
-
msgstr "възходящ"
|
3882 |
-
|
3883 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2293 ../legacy-core.php:3929
|
3884 |
-
msgid "Move list inside map"
|
3885 |
-
msgstr "Премести списъка вътре в картата"
|
3886 |
|
3887 |
-
#:
|
3888 |
-
|
3889 |
-
|
|
|
|
|
3890 |
|
3891 |
-
#:
|
3892 |
-
|
3893 |
-
|
|
|
3894 |
|
3895 |
-
#:
|
3896 |
-
|
3897 |
-
|
|
|
3898 |
|
3899 |
-
#:
|
3900 |
-
msgid "
|
3901 |
-
msgstr "
|
3902 |
|
3903 |
-
#:
|
3904 |
-
msgid "
|
3905 |
-
msgstr "
|
3906 |
|
3907 |
-
#:
|
3908 |
-
|
3909 |
-
|
|
|
|
|
3910 |
|
3911 |
-
#:
|
3912 |
-
msgid "
|
3913 |
-
msgstr "
|
3914 |
|
3915 |
-
#:
|
3916 |
-
msgid "
|
3917 |
-
msgstr "
|
3918 |
|
3919 |
-
#:
|
3920 |
-
msgid "
|
3921 |
-
msgstr "
|
3922 |
|
3923 |
-
#:
|
3924 |
-
msgid "
|
3925 |
-
msgstr "
|
3926 |
|
3927 |
-
#:
|
3928 |
-
msgid "
|
3929 |
-
msgstr "
|
3930 |
|
3931 |
-
#:
|
3932 |
-
msgid "
|
3933 |
-
msgstr "
|
3934 |
|
3935 |
-
#:
|
3936 |
-
msgid "
|
3937 |
-
msgstr "
|
3938 |
|
3939 |
-
#:
|
3940 |
-
msgid "
|
3941 |
-
msgstr "
|
3942 |
|
3943 |
-
#:
|
3944 |
-
|
3945 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3946 |
|
3947 |
-
#:
|
3948 |
-
msgid "
|
3949 |
-
msgstr "
|
3950 |
|
3951 |
-
#:
|
3952 |
-
|
3953 |
-
|
|
|
|
|
3954 |
|
3955 |
-
#:
|
3956 |
-
msgid "
|
3957 |
-
msgstr "
|
3958 |
|
3959 |
-
#:
|
3960 |
-
|
3961 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3962 |
|
3963 |
-
#:
|
3964 |
-
|
3965 |
-
|
|
|
|
|
3966 |
|
3967 |
-
#:
|
3968 |
-
|
3969 |
-
|
3970 |
-
|
3971 |
-
"
|
3972 |
-
msgstr ""
|
3973 |
-
"Съвет: Ползвай мишката си за да смениш вида на картата. Когато си \"\n"
|
3974 |
-
"\"позициониран на желаното място, натисни \"запиши карта\" за да ти се "
|
3975 |
-
"запазят \"\n"
|
3976 |
-
"\"настройките.\""
|
3977 |
|
3978 |
-
#:
|
3979 |
-
#: ../
|
3980 |
-
|
3981 |
-
|
|
|
3982 |
|
3983 |
-
#:
|
3984 |
-
|
3985 |
-
|
|
|
|
|
3986 |
|
3987 |
-
#:
|
3988 |
-
msgid "
|
3989 |
-
msgstr "
|
3990 |
|
3991 |
-
#:
|
3992 |
-
|
3993 |
-
|
3994 |
-
msgstr "Добави маркер"
|
3995 |
|
3996 |
-
#:
|
3997 |
-
#:
|
3998 |
-
|
3999 |
-
|
4000 |
-
#: ../legacy-core.php:4298
|
4001 |
-
#, fuzzy
|
4002 |
-
#| msgid "Add a marker"
|
4003 |
-
msgid "Add a Circle"
|
4004 |
-
msgstr "Добави маркер"
|
4005 |
|
4006 |
-
#:
|
4007 |
-
|
4008 |
-
|
4009 |
-
#: ../includes/compat/backwards_compat_v6.php:75 ../legacy-core.php:4304
|
4010 |
-
#: ../legacy-core.php:4306
|
4011 |
-
#, fuzzy
|
4012 |
-
msgid "Add a Rectangle"
|
4013 |
-
msgstr "Добави маркер"
|
4014 |
|
4015 |
-
#:
|
4016 |
-
msgid "
|
4017 |
-
msgstr "
|
4018 |
|
4019 |
-
#:
|
4020 |
#, fuzzy
|
4021 |
#| msgid ""
|
4022 |
-
#| "
|
4023 |
-
#| "
|
4024 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4025 |
msgstr ""
|
4026 |
-
"\"WP Google Maps те насърчава да ползваш невероятните икони създадени от "
|
4027 |
-
"Nicolas Mollet's Maps Icons Collection"
|
4028 |
-
|
4029 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2824
|
4030 |
-
#: ../../wp-google-maps-pro/legacy-core.php:2848
|
4031 |
-
#, fuzzy
|
4032 |
-
msgid ""
|
4033 |
-
"The map ID you have entered does not exist. Please enter a map ID that "
|
4034 |
-
"exists."
|
4035 |
-
msgstr "Тази директория не същестува. Моля, създайте я."
|
4036 |
|
4037 |
-
#:
|
4038 |
-
msgid "
|
4039 |
-
msgstr "
|
4040 |
|
4041 |
-
#:
|
4042 |
-
msgid "
|
4043 |
-
msgstr "
|
4044 |
|
4045 |
-
#:
|
4046 |
-
|
4047 |
-
|
4048 |
-
msgid "Fetching directions..."
|
4049 |
-
msgstr "Изтегляне на упътвания..."
|
4050 |
|
4051 |
-
#:
|
4052 |
-
|
4053 |
-
|
|
|
|
|
4054 |
|
4055 |
-
#:
|
4056 |
-
msgid "
|
|
|
|
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#:
|
4060 |
-
|
4061 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
4062 |
|
4063 |
-
#:
|
4064 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4065 |
msgstr ""
|
|
|
|
|
|
|
|
|
4066 |
|
4067 |
-
#:
|
4068 |
-
msgid "
|
4069 |
-
msgstr ""
|
4070 |
|
4071 |
-
#:
|
4072 |
-
msgid "
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#:
|
4076 |
-
msgid "
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#:
|
4080 |
-
msgid "
|
4081 |
msgstr ""
|
4082 |
|
4083 |
-
#:
|
4084 |
#, fuzzy
|
4085 |
-
#| msgid "
|
4086 |
-
msgid "
|
4087 |
-
msgstr "
|
4088 |
|
4089 |
-
#:
|
4090 |
-
msgid "
|
4091 |
-
msgstr ""
|
4092 |
|
4093 |
-
#:
|
4094 |
-
msgid "
|
4095 |
-
msgstr "
|
4096 |
|
4097 |
-
#:
|
4098 |
-
|
4099 |
-
|
4100 |
-
msgid "km away"
|
4101 |
-
msgstr "km разстояние"
|
4102 |
|
4103 |
-
#:
|
4104 |
-
|
4105 |
-
|
4106 |
-
msgid "miles away"
|
4107 |
-
msgstr "мили разстояние"
|
4108 |
|
4109 |
-
#:
|
4110 |
-
msgid "
|
4111 |
-
msgstr "
|
4112 |
|
4113 |
-
#:
|
4114 |
-
|
4115 |
-
|
4116 |
-
msgstr "Моля, докажи че си човек кликайки горния чекбокс."
|
4117 |
|
4118 |
-
#:
|
4119 |
-
msgid "
|
4120 |
-
msgstr "
|
4121 |
|
4122 |
-
#:
|
4123 |
#, fuzzy
|
4124 |
-
msgid "
|
4125 |
-
|
|
|
4126 |
|
4127 |
-
#:
|
4128 |
#, fuzzy
|
4129 |
-
msgid "
|
4130 |
-
|
|
|
4131 |
|
4132 |
-
#:
|
4133 |
-
|
4134 |
-
|
4135 |
-
msgstr "Изтегли всички данни за маркери в CSV файл."
|
4136 |
|
4137 |
-
#:
|
4138 |
-
msgid "
|
4139 |
-
msgstr "
|
4140 |
|
4141 |
-
#:
|
4142 |
-
|
4143 |
-
|
4144 |
-
msgstr "Marker данни локация"
|
4145 |
|
4146 |
-
#:
|
4147 |
-
|
4148 |
-
msgid "
|
4149 |
-
|
|
|
4150 |
|
4151 |
-
#:
|
4152 |
#, fuzzy
|
4153 |
-
msgid "
|
4154 |
-
|
|
|
4155 |
|
4156 |
-
#:
|
4157 |
-
|
4158 |
-
|
4159 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4825
|
4160 |
-
msgid "Replace existing data with data in file"
|
4161 |
-
msgstr "Замени сегашните данни с данните от файла"
|
4162 |
|
4163 |
-
#:
|
4164 |
-
|
4165 |
-
|
4166 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4828
|
4167 |
-
msgid "Upload File"
|
4168 |
-
msgstr "качи файл"
|
4169 |
|
4170 |
-
#:
|
4171 |
-
|
4172 |
-
msgid "
|
4173 |
-
msgstr "
|
4174 |
|
4175 |
-
#:
|
4176 |
-
|
4177 |
-
"
|
4178 |
-
msgstr "
|
4179 |
|
4180 |
-
#:
|
4181 |
-
|
4182 |
-
|
|
|
4183 |
|
4184 |
-
#:
|
|
|
4185 |
#, fuzzy
|
4186 |
-
msgid ""
|
4187 |
-
"
|
4188 |
-
"href='https://developers.google.com/maps/documentation/geocoding/"
|
4189 |
-
"#Limits'>Geocoding Documentation</a>"
|
4190 |
-
msgstr ""
|
4191 |
-
"Ще ти трябва Google Maps Geocode API key за да работи това. Виж https://"
|
4192 |
-
"developers.google.com/maps/documentation/geocoding/#Limits"
|
4193 |
-
|
4194 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4789
|
4195 |
-
msgid "There is a 0.12second delay between each request"
|
4196 |
-
msgstr "Има 0.12 секунди закъснение между всяка заявка"
|
4197 |
|
4198 |
-
#:
|
|
|
4199 |
#, fuzzy
|
4200 |
-
msgid "
|
4201 |
-
msgstr "
|
4202 |
|
4203 |
-
#:
|
4204 |
#, fuzzy
|
4205 |
-
msgid "
|
4206 |
-
msgstr "
|
4207 |
-
|
4208 |
-
#: ../../wp-google-maps-pro/legacy-core.php:4842
|
4209 |
-
msgid ""
|
4210 |
-
"Delete all markers with matching coordinates, address, title, link and "
|
4211 |
-
"description"
|
4212 |
-
msgstr ""
|
4213 |
|
4214 |
-
#:
|
4215 |
-
|
4216 |
-
|
|
|
4217 |
|
4218 |
-
#:
|
4219 |
-
|
4220 |
-
|
|
|
4221 |
|
4222 |
-
#:
|
4223 |
-
|
4224 |
-
|
|
|
4225 |
|
4226 |
-
#:
|
4227 |
-
|
4228 |
-
|
|
|
4229 |
|
4230 |
-
#:
|
4231 |
-
|
4232 |
-
|
4233 |
-
|
4234 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4235 |
|
4236 |
-
#:
|
4237 |
-
msgid ""
|
4238 |
-
"
|
4239 |
-
"way."
|
4240 |
-
msgstr "Започваш ли? Поразгледай някои статии за начално запознаване."
|
4241 |
|
4242 |
-
#:
|
4243 |
-
msgid "
|
4244 |
-
msgstr "
|
4245 |
|
4246 |
-
#:
|
4247 |
-
msgid "
|
4248 |
-
msgstr "
|
4249 |
|
4250 |
-
#:
|
4251 |
-
|
4252 |
-
|
|
|
4253 |
|
4254 |
-
#:
|
4255 |
-
msgid "
|
4256 |
-
msgstr "
|
4257 |
|
4258 |
-
#:
|
4259 |
-
|
4260 |
-
|
|
|
|
|
4261 |
|
4262 |
-
#:
|
4263 |
-
msgid "
|
4264 |
-
msgstr "
|
4265 |
|
4266 |
-
#:
|
4267 |
-
|
4268 |
-
|
|
|
4269 |
|
4270 |
-
#:
|
4271 |
-
msgid ""
|
4272 |
-
|
4273 |
-
"to time, run into conflicts with the thousands of themes and other plugins "
|
4274 |
-
"on the market."
|
4275 |
-
msgstr ""
|
4276 |
-
"WP Google Maps hasима широк спектър от екстри които може да доведат до "
|
4277 |
-
"конфликти от време на време, влизат в конфликти със стотици теме и други "
|
4278 |
-
"плъгини плъгини на пазара."
|
4279 |
|
4280 |
-
#:
|
4281 |
-
msgid "
|
4282 |
-
msgstr "
|
4283 |
|
4284 |
-
#:
|
4285 |
-
msgid "
|
4286 |
-
msgstr "
|
4287 |
|
4288 |
-
#:
|
4289 |
-
msgid "
|
4290 |
-
msgstr "
|
4291 |
|
4292 |
-
#:
|
4293 |
-
msgid "
|
4294 |
-
msgstr "
|
4295 |
|
4296 |
-
#:
|
4297 |
-
|
4298 |
-
|
4299 |
-
msgstr "Съпорт"
|
4300 |
|
4301 |
-
#:
|
4302 |
-
msgid "
|
4303 |
-
msgstr "
|
4304 |
|
4305 |
-
#:
|
4306 |
-
|
4307 |
-
|
|
|
|
|
4308 |
|
4309 |
-
#:
|
4310 |
-
msgid "
|
4311 |
-
msgstr "
|
4312 |
|
4313 |
-
#:
|
4314 |
-
|
4315 |
-
|
4316 |
-
msgstr "WP Google Map настройки"
|
4317 |
|
4318 |
-
#:
|
4319 |
-
|
4320 |
-
|
4321 |
-
msgid "Advanced"
|
4322 |
-
msgstr "Напреднал"
|
4323 |
|
4324 |
-
#:
|
4325 |
-
msgid "
|
4326 |
-
msgstr "
|
4327 |
|
4328 |
-
#:
|
4329 |
-
|
4330 |
-
|
4331 |
-
msgstr "Запиши настройките"
|
4332 |
|
4333 |
-
#:
|
4334 |
-
msgid "
|
4335 |
-
msgstr "
|
4336 |
|
4337 |
-
#:
|
4338 |
-
msgid "
|
4339 |
-
msgstr "
|
4340 |
|
4341 |
-
#:
|
4342 |
-
msgid ""
|
4343 |
-
"
|
4344 |
-
"ensure that you have uploaded activated the plugin."
|
4345 |
-
msgstr ""
|
4346 |
-
"за включване на тази екстра. <br /><br />Ако вече сте поръчали, моля убедете "
|
4347 |
-
"се че сте ъплоуднали и активирали този плъгин"
|
4348 |
|
4349 |
-
#:
|
4350 |
-
|
4351 |
-
|
4352 |
-
msgstr "настройки по маркерите списък"
|
4353 |
|
4354 |
-
#:
|
4355 |
-
|
4356 |
-
msgid ""
|
4357 |
-
"Changing these settings will alter the way the marker list appears on your "
|
4358 |
-
"website."
|
4359 |
msgstr ""
|
4360 |
-
"Променяйки тези настройки ще се отразят на това как излизат в твоя сайт."
|
4361 |
|
4362 |
-
#:
|
4363 |
-
|
4364 |
-
|
4365 |
-
msgstr "Напреднали маркерни списъци"
|
4366 |
|
4367 |
-
#:
|
4368 |
-
msgid "
|
4369 |
-
msgstr "
|
4370 |
|
4371 |
-
#:
|
4372 |
-
|
4373 |
-
|
4374 |
-
msgstr "Настройки колона"
|
4375 |
|
4376 |
-
#:
|
4377 |
-
|
4378 |
-
|
4379 |
-
msgstr "Скрий иконата за колоната"
|
4380 |
|
4381 |
-
#:
|
4382 |
#, fuzzy
|
4383 |
-
#| msgid "
|
4384 |
-
msgid "
|
4385 |
-
msgstr "
|
4386 |
-
|
4387 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5186
|
4388 |
-
#: ../includes/legacy/settings-page.php:420
|
4389 |
-
msgid "Hide the Title column"
|
4390 |
-
msgstr "Скрий колона заглавие"
|
4391 |
|
4392 |
-
#:
|
4393 |
-
|
4394 |
-
|
4395 |
-
msgstr "Скрий колона адрес"
|
4396 |
|
4397 |
-
#:
|
4398 |
-
|
4399 |
-
|
4400 |
-
msgstr "Скрий колона категория"
|
4401 |
|
4402 |
-
#:
|
4403 |
-
|
4404 |
-
|
4405 |
-
msgstr "Скрий колона описание"
|
4406 |
|
4407 |
-
#:
|
4408 |
-
msgid "
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#:
|
4412 |
-
msgid "
|
4413 |
-
msgstr "
|
4414 |
|
4415 |
-
#:
|
4416 |
-
|
4417 |
-
|
4418 |
-
msgstr "Въртележка маркер списъци"
|
4419 |
|
4420 |
-
#:
|
4421 |
-
|
4422 |
-
|
4423 |
-
msgstr "Избор на тема"
|
4424 |
|
4425 |
-
#:
|
4426 |
-
|
4427 |
-
|
4428 |
-
msgstr "Небе"
|
4429 |
|
4430 |
-
#:
|
4431 |
-
|
4432 |
-
|
4433 |
-
msgstr "Слънце"
|
4434 |
|
4435 |
-
#:
|
4436 |
-
|
4437 |
-
|
4438 |
-
msgstr "Земя"
|
4439 |
|
4440 |
-
#:
|
4441 |
-
|
4442 |
-
msgid "
|
4443 |
-
|
|
|
4444 |
|
4445 |
-
#:
|
4446 |
-
|
4447 |
-
|
4448 |
-
msgstr "Розововиолетова"
|
4449 |
|
4450 |
-
#:
|
4451 |
-
|
4452 |
-
|
4453 |
-
msgstr "Бяла"
|
4454 |
|
4455 |
-
#:
|
4456 |
-
|
4457 |
-
|
4458 |
-
msgstr "Черна"
|
4459 |
|
4460 |
-
#:
|
4461 |
-
|
4462 |
-
msgid "Carousel settings"
|
|
|
4463 |
msgstr "Настройка въртележка"
|
4464 |
|
4465 |
-
#:
|
4466 |
-
|
4467 |
-
msgid "
|
4468 |
-
|
4469 |
-
|
4470 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5229
|
4471 |
-
#: ../includes/legacy/settings-page.php:449
|
4472 |
-
msgid "Hide the Title"
|
4473 |
-
msgstr "Скрий заглавие"
|
4474 |
-
|
4475 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5230
|
4476 |
-
#: ../includes/legacy/settings-page.php:450
|
4477 |
-
msgid "Hide the Marker Icon"
|
4478 |
-
msgstr "Скрий иконата на маркера"
|
4479 |
|
4480 |
-
#:
|
4481 |
-
|
4482 |
-
msgid "
|
4483 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4484 |
|
4485 |
-
#:
|
4486 |
-
|
4487 |
-
|
4488 |
-
|
|
|
4489 |
|
4490 |
-
#:
|
4491 |
-
|
4492 |
-
msgid "
|
4493 |
-
msgstr "
|
4494 |
|
4495 |
-
#:
|
4496 |
-
|
4497 |
-
|
4498 |
-
msgstr "Скрий линка упътвания"
|
4499 |
|
4500 |
-
#:
|
4501 |
-
|
4502 |
-
msgid "
|
4503 |
-
|
|
|
4504 |
|
4505 |
-
#:
|
4506 |
-
|
4507 |
-
|
4508 |
-
|
|
|
4509 |
|
4510 |
-
#:
|
4511 |
-
|
4512 |
-
msgid "
|
4513 |
-
|
|
|
4514 |
|
4515 |
-
#:
|
4516 |
-
|
4517 |
-
|
4518 |
-
|
|
|
4519 |
|
4520 |
-
#:
|
4521 |
-
|
4522 |
-
|
4523 |
-
msgstr "Неща"
|
4524 |
|
4525 |
-
#:
|
4526 |
-
msgid "
|
|
|
|
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#:
|
4530 |
-
msgid "
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#:
|
4534 |
-
|
4535 |
-
|
4536 |
-
msgstr "Автоплей след x милисекунди (1000 = 1 секунда)"
|
4537 |
|
4538 |
-
#:
|
4539 |
-
|
4540 |
-
|
4541 |
-
|
4542 |
-
#: ../includes/legacy/settings-page.php:545
|
4543 |
-
msgid "You can use the following"
|
4544 |
-
msgstr "Може да ползваш следните"
|
4545 |
|
4546 |
-
#:
|
4547 |
-
|
4548 |
-
|
4549 |
-
|
|
|
4550 |
|
4551 |
-
#:
|
4552 |
-
|
4553 |
-
msgid "
|
4554 |
-
|
|
|
4555 |
|
4556 |
-
#:
|
4557 |
-
#: ../includes/legacy/settings-page.php:122
|
4558 |
msgid ""
|
4559 |
-
"
|
4560 |
-
"
|
|
|
4561 |
msgstr ""
|
4562 |
-
"- Плъгинът няма права на писане в тази директория. Моля, CHMOD тази "
|
4563 |
-
"директория до 755 или 777, или смени и мястото."
|
4564 |
|
4565 |
-
#:
|
4566 |
-
#: ../includes/legacy/settings-page.php:486
|
4567 |
#, fuzzy
|
4568 |
-
msgid "
|
4569 |
-
|
|
|
4570 |
|
4571 |
-
#:
|
4572 |
-
#: ../includes/legacy/settings-page.php:495
|
4573 |
msgid ""
|
4574 |
-
"
|
4575 |
-
"
|
4576 |
-
"href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
|
4577 |
-
"target='_BLANK'>documentation</a> provides a full guide on how to obtain "
|
4578 |
-
"this. "
|
4579 |
msgstr ""
|
4580 |
|
4581 |
-
#:
|
4582 |
-
msgid "
|
4583 |
msgstr ""
|
4584 |
|
4585 |
-
#:
|
4586 |
msgid ""
|
4587 |
-
"
|
4588 |
-
"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#:
|
4592 |
-
|
4593 |
-
msgid ""
|
4594 |
-
"We suggest that you change the two fields below ONLY if you are experiencing "
|
4595 |
-
"issues when trying to save the marker XML files."
|
4596 |
msgstr ""
|
4597 |
-
"Предлагаме да променяш двете полета долу САМО ако си с опит проблеми когато "
|
4598 |
-
"опиташ да запишеш XML files."
|
4599 |
-
|
4600 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5337
|
4601 |
-
#: ../html/settings-page.html.php:431 ../includes/legacy/settings-page.php:505
|
4602 |
-
msgid "Pull marker data from"
|
4603 |
-
msgstr "Дръпни маркер данни от"
|
4604 |
|
4605 |
-
#:
|
4606 |
-
|
4607 |
-
msgid "
|
4608 |
-
|
|
|
4609 |
|
4610 |
-
#:
|
4611 |
-
|
4612 |
-
msgid "
|
4613 |
-
msgstr "
|
4614 |
|
4615 |
-
#:
|
4616 |
-
|
4617 |
-
|
|
|
|
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#:
|
4621 |
-
#: ../html/settings-page.html.php:527 ../includes/legacy/settings-page.php:525
|
4622 |
msgid ""
|
4623 |
-
"
|
4624 |
-
"
|
4625 |
-
"uses REST caching or a CDN."
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#:
|
4629 |
-
msgid "
|
4630 |
-
msgstr ""
|
4631 |
|
4632 |
-
#:
|
4633 |
-
|
4634 |
-
|
|
|
|
|
4635 |
msgstr ""
|
|
|
|
|
|
|
|
|
4636 |
|
4637 |
-
#:
|
4638 |
-
|
4639 |
-
msgid ""
|
4640 |
-
"
|
4641 |
-
"
|
4642 |
-
|
|
|
|
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#:
|
4646 |
-
|
4647 |
-
msgid "
|
4648 |
-
|
|
|
4649 |
|
4650 |
-
#:
|
4651 |
-
|
4652 |
-
|
4653 |
-
|
4654 |
-
|
4655 |
-
msgid "Currently using"
|
4656 |
-
msgstr "В момента ползва"
|
4657 |
|
4658 |
-
#:
|
4659 |
-
|
4660 |
-
msgid "
|
4661 |
-
|
|
|
4662 |
|
4663 |
-
#:
|
4664 |
-
#: ../html/settings-page.html.php:491 ../includes/legacy/settings-page.php:565
|
4665 |
#, fuzzy
|
4666 |
-
|
4667 |
-
|
4668 |
-
msgstr "Къстъм CSS"
|
4669 |
|
4670 |
-
#:
|
4671 |
-
|
4672 |
-
|
4673 |
-
msgid "
|
4674 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4675 |
|
4676 |
-
#:
|
4677 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5405
|
4678 |
-
#: ../html/settings-page.html.php:502 ../includes/legacy/settings-page.php:574
|
4679 |
#, fuzzy
|
4680 |
-
|
4681 |
-
|
4682 |
-
msgstr "Къстъм CSS"
|
4683 |
-
|
4684 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5410
|
4685 |
-
#: ../html/settings-page.html.php:549 ../includes/legacy/settings-page.php:582
|
4686 |
-
msgid "Developer Mode"
|
4687 |
-
msgstr ""
|
4688 |
|
4689 |
-
#:
|
4690 |
-
msgid ""
|
4691 |
-
"Always rebuilds combined script files, does not load combined and minified "
|
4692 |
-
"scripts. Returns SQL queries on REST responses for some routes."
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#:
|
4696 |
-
msgid ""
|
4697 |
-
"Enabling this setting causes poor performance and may cause issues which may "
|
4698 |
-
"necessitate re-installing WP Google Maps - Pro add-on. Please only enable "
|
4699 |
-
"this setting if you are a developer intending to debug or work on the plugin."
|
4700 |
msgstr ""
|
4701 |
|
4702 |
-
#:
|
4703 |
-
|
4704 |
-
msgid "
|
4705 |
-
|
|
|
4706 |
|
4707 |
-
#:
|
4708 |
-
|
4709 |
-
msgid "
|
4710 |
-
|
|
|
4711 |
|
4712 |
-
#:
|
4713 |
-
#: ../html/settings-page.html.php:54 ../includes/legacy/settings-page.php:193
|
4714 |
#, fuzzy
|
4715 |
-
#| msgid "
|
4716 |
-
msgid "
|
4717 |
-
msgstr "
|
4718 |
|
4719 |
-
#:
|
4720 |
-
|
4721 |
-
|
4722 |
-
msgstr "Изключи StreetView"
|
4723 |
|
4724 |
-
#:
|
4725 |
-
#: ../html/
|
4726 |
-
|
4727 |
-
|
|
|
|
|
|
|
4728 |
|
4729 |
-
#:
|
4730 |
-
|
4731 |
-
|
4732 |
-
msgstr "Изключи Pan контрол"
|
4733 |
|
4734 |
-
#:
|
4735 |
-
#: ../html/
|
4736 |
-
|
4737 |
-
|
|
|
|
|
4738 |
|
4739 |
-
#:
|
4740 |
-
#: ../html/
|
4741 |
-
|
4742 |
-
|
|
|
4743 |
|
4744 |
-
#:
|
4745 |
-
|
4746 |
-
|
4747 |
-
|
|
|
|
|
|
|
4748 |
|
4749 |
-
#:
|
4750 |
-
#: ../html/
|
4751 |
-
msgid "
|
4752 |
-
msgstr "
|
4753 |
|
4754 |
-
#:
|
4755 |
-
|
4756 |
-
|
4757 |
-
msgstr ""
|
4758 |
|
4759 |
-
#:
|
4760 |
-
|
4761 |
-
|
|
|
|
|
4762 |
msgstr ""
|
4763 |
|
4764 |
-
#:
|
4765 |
-
|
4766 |
-
msgid "
|
|
|
|
|
4767 |
msgstr ""
|
4768 |
|
4769 |
-
#:
|
4770 |
-
|
4771 |
-
|
|
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#:
|
4775 |
-
#: ../html/settings-page.html.php:350 ../includes/legacy/settings-page.php:381
|
4776 |
-
msgid "Open Marker InfoWindows by"
|
4777 |
-
msgstr "Отвори маркер инфопрозорец по"
|
4778 |
-
|
4779 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5700
|
4780 |
-
#: ../html/settings-page.html.php:354 ../legacy-core.php:4352
|
4781 |
-
#: ../legacy-core.php:4358 ../legacy-core.php:4364
|
4782 |
-
msgid "Click"
|
4783 |
-
msgstr "Клик"
|
4784 |
-
|
4785 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5705
|
4786 |
#, fuzzy
|
4787 |
-
#| msgid "
|
4788 |
-
|
4789 |
-
|
4790 |
-
|
4791 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5707
|
4792 |
-
msgid "OR"
|
4793 |
-
msgstr "ИЛИ"
|
4794 |
-
|
4795 |
-
#: ../../wp-google-maps-pro/legacy-core.php:5707
|
4796 |
-
msgid "Example: Show the marker if it belongs to Cat A _OR_ Cat B."
|
4797 |
msgstr ""
|
|
|
|
|
4798 |
|
4799 |
-
#:
|
4800 |
-
msgid "
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#:
|
4804 |
-
msgid "
|
4805 |
msgstr ""
|
4806 |
|
4807 |
-
#:
|
4808 |
-
msgid "
|
4809 |
-
msgstr "
|
4810 |
|
4811 |
-
#:
|
4812 |
-
|
4813 |
-
|
4814 |
-
|
4815 |
-
msgstr "Подреди маркерите по"
|
4816 |
|
4817 |
-
#:
|
4818 |
-
|
|
|
4819 |
msgstr ""
|
4820 |
|
4821 |
-
#:
|
4822 |
-
|
4823 |
-
|
4824 |
-
msgid "Enable Category Count"
|
4825 |
-
msgstr "Запиши категория"
|
4826 |
|
4827 |
-
#:
|
4828 |
-
|
4829 |
-
|
4830 |
-
msgstr "Опции отстраняване на проблеми"
|
4831 |
|
4832 |
-
#:
|
4833 |
-
|
4834 |
-
msgid ""
|
4835 |
-
"Do not load the Google Maps API (Only check this if your theme loads the "
|
4836 |
-
"Google Maps API by default)"
|
4837 |
msgstr ""
|
4838 |
|
4839 |
-
#:
|
4840 |
-
|
4841 |
-
|
|
|
4842 |
msgstr ""
|
4843 |
|
4844 |
-
#:
|
4845 |
-
|
4846 |
-
|
4847 |
-
msgstr "Най-ниско ниво на достъп до редакция на картата"
|
4848 |
|
4849 |
-
#:
|
4850 |
-
msgid "
|
4851 |
-
msgstr "
|
4852 |
|
4853 |
-
#:
|
4854 |
-
|
4855 |
-
|
|
|
|
|
4856 |
|
4857 |
-
#:
|
4858 |
-
|
4859 |
-
msgid "Greedy Gesture Handling"
|
4860 |
msgstr ""
|
4861 |
|
4862 |
-
#:
|
4863 |
-
|
4864 |
-
|
4865 |
-
"Removes the need to use two fingers to move the map on mobile devices, "
|
4866 |
-
"removes 'Use ctrl + scroll to zoom the map'"
|
4867 |
-
msgstr ""
|
4868 |
|
4869 |
-
#:
|
4870 |
-
|
4871 |
-
|
4872 |
-
#, fuzzy
|
4873 |
-
msgid "No Global Setting"
|
4874 |
-
msgstr "Основни настройки"
|
4875 |
|
4876 |
-
#:
|
4877 |
-
msgid "
|
4878 |
-
msgstr "
|
4879 |
|
4880 |
-
#:
|
4881 |
-
|
4882 |
-
|
4883 |
-
msgid "Modern InfoWindow"
|
4884 |
-
msgstr "Модерен инфо прозорец"
|
4885 |
|
4886 |
-
#:
|
4887 |
-
msgid "
|
4888 |
-
msgstr "
|
4889 |
|
4890 |
-
#:
|
4891 |
-
|
4892 |
-
|
|
|
4893 |
|
4894 |
-
#:
|
4895 |
-
|
4896 |
-
|
|
|
|
|
4897 |
|
4898 |
-
#:
|
4899 |
-
msgid "
|
4900 |
msgstr ""
|
4901 |
-
"не може да е празно - max Широчина ще бъде ограничена до max Инфопрозорец "
|
4902 |
-
"Широчина)"
|
4903 |
|
4904 |
-
#:
|
4905 |
-
msgid "
|
4906 |
-
msgstr "
|
4907 |
|
4908 |
-
#:
|
4909 |
msgid ""
|
4910 |
-
"
|
4911 |
-
"
|
4912 |
msgstr ""
|
4913 |
-
"(не може да е празни - оставяйки и двете Широчина и Височина празно ще върне "
|
4914 |
-
"до пълния размер на картинките които са ползвани)"
|
4915 |
|
4916 |
-
#:
|
4917 |
-
msgid "
|
4918 |
-
msgstr "
|
4919 |
|
4920 |
-
#:
|
4921 |
-
|
4922 |
-
|
|
|
4923 |
|
4924 |
-
#:
|
4925 |
-
|
4926 |
-
|
|
|
4927 |
|
4928 |
-
#:
|
4929 |
-
|
4930 |
-
|
|
|
4931 |
|
4932 |
-
#:
|
4933 |
-
|
4934 |
-
|
|
|
|
|
4935 |
|
4936 |
-
#:
|
4937 |
-
|
4938 |
-
|
|
|
|
|
4939 |
|
4940 |
-
#:
|
4941 |
-
|
4942 |
-
|
|
|
|
|
4943 |
|
4944 |
-
#:
|
4945 |
-
#: ../
|
4946 |
-
|
4947 |
-
|
4948 |
-
|
4949 |
-
msgstr "Инфопрозорци"
|
4950 |
|
4951 |
-
#:
|
4952 |
-
#: ../html/settings-page.html.php:387 ../includes/legacy/settings-page.php:470
|
4953 |
#, fuzzy
|
4954 |
-
#| msgid "
|
4955 |
-
msgid "
|
4956 |
-
msgstr "
|
4957 |
|
4958 |
-
#:
|
4959 |
-
|
4960 |
-
msgid "Use a comma to separate values, eg: 1, 5, 10, 50, 100"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#:
|
4964 |
-
|
4965 |
-
#: ../legacy-core.php:2449 ../legacy-core.php:2499 ../legacy-core.php:2547
|
4966 |
-
#: ../legacy-core.php:2597
|
4967 |
-
msgid "You do not have permission to perform this function"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
-
#:
|
4971 |
-
msgid "
|
4972 |
-
|
|
|
|
|
4973 |
|
4974 |
-
#:
|
4975 |
-
|
4976 |
-
|
4977 |
-
msgid "You cannot save a blank polygon"
|
4978 |
-
msgstr "не може да запишеш празен полигон"
|
4979 |
|
4980 |
-
#:
|
4981 |
-
|
4982 |
-
|
|
|
|
|
4983 |
|
4984 |
-
#:
|
4985 |
-
|
4986 |
-
|
|
|
|
|
4987 |
|
4988 |
-
#:
|
4989 |
-
|
4990 |
-
|
4991 |
-
msgid "
|
4992 |
-
|
|
|
4993 |
|
4994 |
-
#:
|
4995 |
-
msgid "
|
4996 |
-
|
|
|
|
|
4997 |
|
4998 |
-
#:
|
4999 |
-
msgid "
|
5000 |
-
msgstr "
|
5001 |
|
5002 |
-
#:
|
5003 |
#, fuzzy
|
5004 |
-
msgid "
|
5005 |
-
|
|
|
5006 |
|
5007 |
-
#:
|
5008 |
#, fuzzy
|
5009 |
-
msgid "
|
5010 |
-
|
|
|
|
|
5011 |
|
5012 |
-
#:
|
5013 |
-
#:
|
5014 |
-
|
5015 |
-
|
5016 |
-
msgid "Line Opacity"
|
5017 |
-
msgstr "Непрозрачност на линията"
|
5018 |
|
5019 |
-
#:
|
5020 |
-
|
5021 |
-
|
5022 |
-
#: ../base/includes/wp-google-maps-polygons.php:156
|
5023 |
-
msgid "On Hover Line Color"
|
5024 |
-
msgstr "При ховър цвят на линията"
|
5025 |
|
5026 |
-
#:
|
5027 |
-
#:
|
5028 |
-
|
5029 |
-
|
5030 |
-
msgid "On Hover Fill Color"
|
5031 |
-
msgstr "При ховър запълни цвят"
|
5032 |
|
5033 |
-
#:
|
5034 |
-
|
5035 |
-
|
5036 |
-
|
5037 |
-
|
5038 |
-
|
|
|
|
|
|
|
|
|
5039 |
|
5040 |
-
#:
|
5041 |
-
|
5042 |
-
|
5043 |
-
|
5044 |
-
|
|
|
|
|
5045 |
|
5046 |
-
#:
|
5047 |
-
|
5048 |
-
|
5049 |
-
msgid "Click on a vertex to remove it."
|
5050 |
-
msgstr "Кликни на връх за да премахнеш."
|
5051 |
|
5052 |
-
#:
|
5053 |
-
|
5054 |
-
|
5055 |
-
msgid "Drag a vertex to move it."
|
5056 |
-
msgstr "Извлачи връх за да преместиш."
|
5057 |
|
5058 |
-
#:
|
5059 |
-
#: ../base/includes/wp-google-maps-polygons.php:165
|
5060 |
#, fuzzy
|
5061 |
-
#| msgid "
|
5062 |
-
msgid "
|
5063 |
-
msgstr "
|
5064 |
|
5065 |
-
#:
|
5066 |
-
|
5067 |
-
|
5068 |
-
|
5069 |
-
|
5070 |
msgstr ""
|
5071 |
|
5072 |
-
#:
|
5073 |
-
msgid "
|
|
|
|
|
5074 |
msgstr ""
|
5075 |
|
5076 |
-
#:
|
5077 |
-
msgid "
|
5078 |
-
msgstr "
|
5079 |
|
5080 |
-
#:
|
5081 |
-
|
5082 |
-
|
|
|
|
|
|
|
5083 |
|
5084 |
-
#:
|
|
|
5085 |
#, fuzzy
|
5086 |
-
msgid "
|
5087 |
-
|
|
|
5088 |
|
5089 |
-
#:
|
5090 |
-
msgid "
|
5091 |
-
msgstr "
|
5092 |
|
5093 |
-
#:
|
5094 |
#, fuzzy
|
5095 |
-
msgid "
|
5096 |
-
|
|
|
5097 |
|
5098 |
-
#:
|
5099 |
-
msgid "
|
5100 |
-
msgstr ""
|
5101 |
|
5102 |
-
#:
|
5103 |
-
|
5104 |
-
|
5105 |
-
msgstr ""
|
5106 |
|
5107 |
-
#:
|
5108 |
-
|
5109 |
-
|
5110 |
-
|
5111 |
-
|
|
|
|
|
5112 |
|
5113 |
-
#:
|
5114 |
-
#: ../../wp-google-maps-pro/legacy-core.php:8630
|
5115 |
#, fuzzy
|
5116 |
-
msgid "
|
5117 |
-
|
|
|
5118 |
|
5119 |
-
#:
|
5120 |
-
msgid "
|
5121 |
-
msgstr ""
|
5122 |
|
5123 |
-
#:
|
5124 |
-
msgid "
|
5125 |
-
msgstr ""
|
5126 |
|
5127 |
-
#:
|
5128 |
-
|
5129 |
-
|
5130 |
-
msgid "ignore if you want to use the normal marker"
|
5131 |
-
msgstr "игнорирай ако искаш да ползваш дифолт маркера"
|
5132 |
|
5133 |
-
#:
|
5134 |
-
msgid ""
|
5135 |
-
"<strong>WP Google Maps:</strong> The plugin and Pro add-on did not load in "
|
5136 |
-
"the correct order. Please ensure you use the correct folder names for the "
|
5137 |
-
"plugin and Pro add-on, which are /wp-google-maps and /wp-google-maps-pro "
|
5138 |
-
"respectively."
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#:
|
5142 |
-
|
5143 |
-
msgid ""
|
5144 |
-
"<strong>WP Google Maps:</strong> This plugin does not support PHP version "
|
5145 |
-
"5.2 or below. Please use your cPanel or contact your host to switch version."
|
5146 |
msgstr ""
|
5147 |
|
5148 |
-
#:
|
5149 |
-
|
5150 |
-
msgid ""
|
5151 |
-
"<strong>WP Google Maps:</strong> This plugin uses the DOMDocument class, "
|
5152 |
-
"which is unavailable on this server. Please contact your host to request "
|
5153 |
-
"they enable this library."
|
5154 |
msgstr ""
|
5155 |
|
5156 |
-
#:
|
5157 |
msgid ""
|
5158 |
-
"<strong>
|
5159 |
-
"
|
5160 |
-
"recommend you switch to more up to date version of PHP."
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#:
|
5164 |
msgid ""
|
5165 |
-
"
|
5166 |
-
"
|
5167 |
-
"follows: "
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#:
|
5171 |
-
msgid "
|
5172 |
msgstr ""
|
5173 |
|
5174 |
-
#:
|
5175 |
-
|
5176 |
-
|
5177 |
-
|
5178 |
-
|
5179 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:322
|
5180 |
-
#, fuzzy
|
5181 |
-
msgid "Enable Visitor Generated Markers?"
|
5182 |
-
msgstr "Посетител генерирал маркери"
|
5183 |
-
|
5184 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:331
|
5185 |
-
#, fuzzy
|
5186 |
-
msgid "Who can add markers?"
|
5187 |
-
msgstr "Специални маркери"
|
5188 |
-
|
5189 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:334
|
5190 |
-
msgid "Everyone"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#:
|
5194 |
-
msgid "
|
|
|
|
|
|
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#:
|
5198 |
-
#, fuzzy
|
5199 |
-
msgid "Allow users to add a description?"
|
5200 |
-
msgstr "Позволи на потребителите да филтрират по категория?"
|
5201 |
-
|
5202 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:349
|
5203 |
#, fuzzy
|
5204 |
-
msgid "Allow
|
5205 |
-
|
|
|
5206 |
|
5207 |
-
#:
|
5208 |
-
|
5209 |
-
|
5210 |
-
msgstr "Позволи на потребителите да филтрират по категория?"
|
5211 |
|
5212 |
-
#:
|
5213 |
-
|
5214 |
-
|
5215 |
-
msgstr "Позволи на потребителите да филтрират по категория?"
|
5216 |
|
5217 |
-
#:
|
5218 |
-
msgid "
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#:
|
5222 |
-
msgid "
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#:
|
5226 |
-
|
5227 |
-
|
5228 |
-
msgid "Add your own marker"
|
5229 |
-
msgstr "Добави маркер"
|
5230 |
|
5231 |
-
#:
|
5232 |
-
|
5233 |
-
|
5234 |
-
#, fuzzy
|
5235 |
-
msgid "Marker Title"
|
5236 |
-
msgstr "Маркер Latitude"
|
5237 |
|
5238 |
-
#:
|
5239 |
#, fuzzy
|
5240 |
-
msgid "
|
5241 |
-
|
|
|
|
|
|
|
|
|
5242 |
|
5243 |
-
#:
|
5244 |
-
|
5245 |
-
|
5246 |
-
|
5247 |
-
msgstr "
|
5248 |
|
5249 |
-
#:
|
5250 |
-
|
5251 |
-
|
5252 |
-
msgstr "Адрес"
|
5253 |
|
5254 |
-
#:
|
5255 |
-
|
5256 |
-
|
5257 |
-
msgid "Or click on the map and drag to add a marker"
|
5258 |
-
msgstr "Кликни на картата за да въведеш връх."
|
5259 |
|
5260 |
-
#:
|
5261 |
-
|
5262 |
-
|
5263 |
-
msgid "Marker Description"
|
5264 |
-
msgstr "Описание"
|
5265 |
|
5266 |
-
#:
|
5267 |
-
|
5268 |
-
|
5269 |
-
#| msgid "Marker Listing"
|
5270 |
-
msgid "Marker Link"
|
5271 |
-
msgstr "Списък маркери"
|
5272 |
|
5273 |
-
#:
|
5274 |
-
msgid "
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#:
|
5278 |
-
|
5279 |
-
|
5280 |
-
#: ../legacy-core.php:4757
|
5281 |
-
msgid "Image"
|
5282 |
-
msgstr "Снимка"
|
5283 |
|
5284 |
-
#:
|
5285 |
-
|
5286 |
-
|
5287 |
-
msgid "Marker Category"
|
5288 |
-
msgstr "Категории маркери"
|
5289 |
|
5290 |
-
#:
|
5291 |
-
|
5292 |
-
|
5293 |
-
msgstr "Адрес"
|
5294 |
|
5295 |
-
#:
|
5296 |
-
msgid "
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#:
|
5300 |
-
msgid "
|
5301 |
msgstr ""
|
5302 |
|
5303 |
-
#:
|
5304 |
#, fuzzy
|
5305 |
-
msgid "
|
5306 |
-
|
5307 |
-
|
5308 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:762 ../legacy-core.php:4189
|
5309 |
-
msgid "Adding"
|
5310 |
-
msgstr "Добавяне"
|
5311 |
|
5312 |
-
#:
|
5313 |
-
|
5314 |
-
msgid "A new marker has been submitted for your map (%s)"
|
5315 |
msgstr ""
|
5316 |
|
5317 |
-
#:
|
5318 |
-
msgid "
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#:
|
5322 |
-
|
5323 |
-
msgid "Map: %s"
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#:
|
5327 |
-
|
5328 |
-
msgid "Marker title: %s"
|
5329 |
-
msgstr "Маркер Latitude"
|
5330 |
-
|
5331 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:952
|
5332 |
-
#, fuzzy, php-format
|
5333 |
-
msgid "Marker address: %s"
|
5334 |
-
msgstr "Адрес"
|
5335 |
-
|
5336 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:953
|
5337 |
-
#, fuzzy, php-format
|
5338 |
-
msgid "Marker description: %s"
|
5339 |
-
msgstr "Описание"
|
5340 |
-
|
5341 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:954
|
5342 |
-
#, fuzzy, php-format
|
5343 |
-
msgid "Marker category: %s"
|
5344 |
-
msgstr "Категории маркери"
|
5345 |
-
|
5346 |
-
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:957
|
5347 |
-
#, php-format
|
5348 |
-
msgid "To edit or view the marker, please click the following link: %s"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#:
|
5352 |
-
|
5353 |
-
msgid ""
|
5354 |
-
"To approve, edit or delete the marker, please click the following link: %s"
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#:
|
5358 |
-
|
5359 |
-
|
5360 |
-
msgid "Your marker is pending approval."
|
5361 |
-
msgstr "Благодаря. Твоят маркер чака одобрение."
|
5362 |
|
5363 |
-
#:
|
5364 |
-
msgid "
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#:
|
5368 |
-
|
5369 |
-
msgid ""
|
5370 |
-
"Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
|
5371 |
-
"version 5.50 to allow for these settings"
|
5372 |
msgstr ""
|
5373 |
-
"Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
|
5374 |
-
"\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
|
5375 |
|
5376 |
-
#:
|
5377 |
-
|
5378 |
-
|
5379 |
-
msgstr "Посетителски настройки за генерирани маркери"
|
5380 |
|
5381 |
-
#:
|
5382 |
-
|
5383 |
-
|
5384 |
-
msgstr "Посетителски настройки за генерирани маркери"
|
5385 |
|
5386 |
-
#:
|
5387 |
-
msgid "
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#:
|
5391 |
-
|
5392 |
-
|
5393 |
-
msgstr "Посетител генерирал маркери"
|
5394 |
|
5395 |
-
#:
|
5396 |
-
msgid "
|
|
|
|
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#:
|
5400 |
-
msgid "
|
5401 |
msgstr ""
|
5402 |
|
5403 |
-
#:
|
5404 |
-
msgid "
|
5405 |
msgstr ""
|
5406 |
|
5407 |
-
#:
|
5408 |
-
msgid "
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#:
|
5412 |
-
msgid ""
|
5413 |
-
"If you collect personally identifying information through your Visitor "
|
5414 |
-
"Generated Markers form, you should check this box to require the user to "
|
5415 |
-
"consent to the GDPR notice before submitting their marker."
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: ../
|
5419 |
-
msgid "
|
5420 |
-
msgstr "
|
5421 |
|
5422 |
-
#: ../
|
5423 |
msgid ""
|
5424 |
-
"
|
|
|
5425 |
msgstr ""
|
5426 |
-
"Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
|
5427 |
-
|
5428 |
-
#: ../base/classes/WPGM_templates.php:44
|
5429 |
-
msgid "What's new?"
|
5430 |
-
msgstr "Какво ново?"
|
5431 |
|
5432 |
-
#: ../
|
5433 |
-
msgid "
|
5434 |
-
msgstr "
|
5435 |
|
5436 |
-
#: ../
|
5437 |
-
msgid "
|
5438 |
-
msgstr "
|
5439 |
|
5440 |
-
#: ../
|
5441 |
-
|
5442 |
-
|
|
|
|
|
5443 |
|
5444 |
-
#: ../
|
5445 |
-
msgid "
|
5446 |
-
msgstr "
|
5447 |
|
5448 |
-
#: ../
|
5449 |
-
msgid "
|
5450 |
-
msgstr "
|
5451 |
|
5452 |
-
#: ../
|
5453 |
-
msgid "
|
5454 |
-
msgstr "
|
5455 |
|
5456 |
-
#: ../
|
5457 |
-
msgid "
|
5458 |
-
msgstr "
|
5459 |
|
5460 |
-
#: ../
|
5461 |
-
msgid "
|
5462 |
-
msgstr "
|
5463 |
|
5464 |
-
#: ../
|
5465 |
-
|
5466 |
-
|
5467 |
-
msgstr "Друго"
|
5468 |
|
5469 |
-
#: ../
|
5470 |
-
msgid "
|
5471 |
-
|
|
|
|
|
|
|
5472 |
|
5473 |
-
#: ../
|
5474 |
-
msgid "
|
5475 |
-
msgstr "
|
5476 |
|
5477 |
-
#: ../
|
5478 |
-
msgid "
|
5479 |
-
|
|
|
|
|
5480 |
|
5481 |
-
#: ../
|
5482 |
-
|
5483 |
-
|
|
|
5484 |
|
5485 |
-
#: ../
|
5486 |
-
msgid ""
|
5487 |
-
"
|
5488 |
-
"step."
|
5489 |
-
msgstr "преди да почнеш. Ако си напреданал, може да прескочиш"
|
5490 |
|
5491 |
-
#: ../
|
5492 |
-
msgid "
|
5493 |
-
msgstr "
|
5494 |
|
5495 |
-
#: ../
|
5496 |
-
msgid "
|
5497 |
-
msgstr "
|
5498 |
|
5499 |
-
#: ../
|
5500 |
-
msgid "
|
5501 |
-
msgstr "
|
|
|
|
|
5502 |
|
5503 |
-
#: ../
|
5504 |
-
msgid "
|
5505 |
-
msgstr "
|
5506 |
|
5507 |
-
#: ../
|
5508 |
-
msgid "
|
5509 |
-
|
|
|
|
|
|
|
|
|
5510 |
|
5511 |
-
#: ../
|
5512 |
-
msgid "
|
5513 |
-
msgstr "
|
5514 |
|
5515 |
-
#: ../
|
5516 |
-
msgid "
|
5517 |
-
msgstr "
|
5518 |
|
5519 |
-
#: ../
|
5520 |
-
|
5521 |
-
|
|
|
|
|
5522 |
|
5523 |
-
#: ../
|
5524 |
-
|
5525 |
-
|
5526 |
-
msgstr "OK! Да почваме"
|
5527 |
|
5528 |
-
#: ../
|
5529 |
-
msgid "
|
5530 |
-
msgstr "
|
5531 |
|
5532 |
-
#: ../
|
5533 |
-
msgid "
|
5534 |
-
msgstr "
|
5535 |
|
5536 |
-
#: ../
|
5537 |
-
|
5538 |
-
|
5539 |
-
msgstr "Нов в WP Google Maps?"
|
5540 |
|
5541 |
-
#: ../
|
5542 |
-
msgid ""
|
5543 |
-
"Thank you for updating! WP Google Maps helps you build amazing maps through "
|
5544 |
-
"a simple interface and powerful functionality along with world class support."
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: ../
|
5548 |
#, fuzzy
|
5549 |
-
msgid "
|
5550 |
-
|
|
|
5551 |
|
5552 |
-
#: ../
|
5553 |
-
msgid "
|
|
|
|
|
5554 |
msgstr ""
|
5555 |
|
5556 |
-
#: ../
|
5557 |
-
msgid "
|
5558 |
-
msgstr ""
|
5559 |
|
5560 |
-
#: ../
|
5561 |
-
msgid "
|
|
|
|
|
5562 |
msgstr ""
|
|
|
5563 |
|
5564 |
-
#: ../
|
5565 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5566 |
msgstr ""
|
|
|
|
|
|
|
|
|
5567 |
|
5568 |
-
#: ../
|
5569 |
-
msgid "
|
5570 |
-
msgstr ""
|
5571 |
|
5572 |
-
#: ../
|
5573 |
-
msgid "
|
5574 |
-
msgstr ""
|
5575 |
|
5576 |
-
#: ../
|
5577 |
-
msgid "
|
5578 |
msgstr ""
|
5579 |
|
5580 |
-
#: ../
|
|
|
|
|
|
|
|
|
5581 |
#, fuzzy
|
5582 |
-
msgid "
|
5583 |
-
|
|
|
5584 |
|
5585 |
-
#: ../
|
5586 |
-
msgid "
|
5587 |
-
msgstr ""
|
5588 |
|
5589 |
-
#: ../
|
5590 |
-
msgid "
|
5591 |
-
msgstr ""
|
5592 |
|
5593 |
-
#: ../
|
5594 |
-
msgid "
|
5595 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
5596 |
|
5597 |
-
#: ../
|
5598 |
-
|
5599 |
-
#: ../base/includes/full-screen-module.php:90
|
5600 |
-
msgid "Full screen"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: ../
|
5604 |
-
|
5605 |
-
#: ../base/includes/full-screen-module.php:91
|
5606 |
-
msgid "Close full screen"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: ../
|
5610 |
-
|
5611 |
-
|
5612 |
-
msgid "Enable Full Screen Option"
|
5613 |
-
msgstr "Включи упътвания?"
|
5614 |
|
5615 |
-
#: ../
|
5616 |
-
msgid "
|
5617 |
-
msgstr ""
|
5618 |
|
5619 |
-
#: ../
|
5620 |
-
msgid "
|
5621 |
-
msgstr ""
|
5622 |
|
5623 |
-
#: ../
|
5624 |
-
|
5625 |
-
|
5626 |
-
#| "Amazing maps. Simple interface. Powerful functionality. World Class "
|
5627 |
-
#| "Support."
|
5628 |
-
msgid ""
|
5629 |
-
"Build amazing maps through a simple interface and powerful functionality "
|
5630 |
-
"along with world class support."
|
5631 |
-
msgstr ""
|
5632 |
-
"Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
|
5633 |
|
5634 |
-
#: ../
|
5635 |
-
msgid "
|
5636 |
-
msgstr ""
|
5637 |
|
5638 |
-
#: ../
|
5639 |
-
|
5640 |
-
|
5641 |
-
msgstr "Списък маркери"
|
5642 |
|
5643 |
-
#: ../
|
5644 |
-
|
5645 |
-
|
5646 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5647 |
|
5648 |
-
#: ../
|
5649 |
-
msgid ""
|
5650 |
-
"Select from various <a href='http://wpgmaps.com/map-themes/' "
|
5651 |
-
"target='_BLANK'>map themes</a>, or make your own."
|
5652 |
msgstr ""
|
5653 |
|
5654 |
-
#: ../
|
5655 |
-
msgid "
|
5656 |
-
msgstr ""
|
5657 |
|
5658 |
-
#: ../
|
5659 |
-
msgid "
|
5660 |
-
msgstr ""
|
5661 |
|
5662 |
-
#: ../
|
5663 |
-
msgid "
|
5664 |
-
msgstr ""
|
5665 |
|
5666 |
-
#: ../
|
5667 |
-
|
5668 |
-
|
5669 |
-
msgstr "Съпорт"
|
5670 |
|
5671 |
-
#: ../
|
5672 |
-
|
5673 |
-
|
5674 |
-
#: ../base/includes/wp-google-maps-polygons.php:72
|
5675 |
-
#: ../base/includes/wp-google-maps-polygons.php:135
|
5676 |
-
#: ../base/includes/wp-google-maps-polygons.php:138
|
5677 |
-
#: ../base/includes/wp-google-maps-polygons.php:156
|
5678 |
-
#: ../base/includes/wp-google-maps-polygons.php:159
|
5679 |
-
#: ../base/includes/wp-google-maps-polygons.php:162
|
5680 |
-
msgid "Pro version only"
|
5681 |
-
msgstr "Pro версия само"
|
5682 |
|
5683 |
-
#: ../
|
5684 |
-
|
5685 |
-
|
5686 |
-
msgid "Get the Pro add-on"
|
5687 |
-
msgstr "Вземи Pro add-on"
|
5688 |
|
5689 |
-
#: ../
|
5690 |
-
|
5691 |
-
|
5692 |
-
msgstr "Дебелина на линия"
|
5693 |
|
5694 |
-
#: ../
|
5695 |
#, fuzzy
|
5696 |
-
#| msgid "
|
5697 |
-
msgid "
|
5698 |
-
msgstr "
|
5699 |
|
5700 |
-
#: ../html/
|
5701 |
-
|
5702 |
-
|
5703 |
-
msgstr ""
|
5704 |
|
5705 |
-
#: ../html/
|
5706 |
-
msgid ""
|
5707 |
-
"
|
5708 |
-
"Agreeing to the notice will set this cookie."
|
5709 |
-
msgstr ""
|
5710 |
|
5711 |
-
#: ../html/
|
5712 |
-
msgid ""
|
5713 |
-
"
|
5714 |
-
|
5715 |
-
|
5716 |
-
"
|
5717 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5718 |
msgstr ""
|
5719 |
|
5720 |
-
#: ../html/
|
5721 |
#, fuzzy
|
5722 |
-
#| msgid "
|
5723 |
-
msgid "
|
5724 |
-
msgstr "
|
5725 |
|
5726 |
-
#: ../html/
|
5727 |
-
|
5728 |
-
|
|
|
|
|
5729 |
|
5730 |
-
#: ../html/
|
5731 |
-
msgid ""
|
5732 |
-
|
5733 |
-
"being processed. Loading the Google Maps API stores some user information, "
|
5734 |
-
"such as IP Addresses. WP Google Maps endeavours to uphold the spirit of data "
|
5735 |
-
"protection as per the GDPR. Enable this to option to prevent the Maps API "
|
5736 |
-
"from loading, until a user has consented to it."
|
5737 |
-
msgstr ""
|
5738 |
|
5739 |
-
#: ../html/
|
5740 |
-
msgid "
|
5741 |
msgstr ""
|
5742 |
|
5743 |
-
#: ../html/
|
5744 |
-
msgid "
|
5745 |
msgstr ""
|
5746 |
|
5747 |
-
#: ../html/
|
5748 |
-
msgid ""
|
5749 |
-
"
|
5750 |
-
"box."
|
5751 |
-
msgstr ""
|
5752 |
|
5753 |
-
#: ../html/
|
5754 |
#, fuzzy
|
5755 |
-
#| msgid "
|
5756 |
-
msgid "
|
5757 |
-
msgstr "
|
5758 |
|
5759 |
-
#: ../html/
|
5760 |
-
msgid "
|
5761 |
msgstr ""
|
5762 |
|
5763 |
-
#: ../html/
|
5764 |
-
msgid "
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: ../html/
|
5768 |
-
|
5769 |
-
|
|
|
5770 |
|
5771 |
-
#: ../html/
|
5772 |
msgid ""
|
5773 |
-
"
|
5774 |
-
"
|
5775 |
-
|
5776 |
-
|
5777 |
-
|
5778 |
-
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: ../html/
|
5782 |
-
msgid ""
|
5783 |
-
"For more information about WPGM and GDPR compliance, please refer to our <a "
|
5784 |
-
"href=\"https://www.wpgmaps.com/gdpr/\">GDPR information page</a> and our <a "
|
5785 |
-
"href=\"https://www.wpgmaps.com/privacy-policy/\">Privacy Policy</a>"
|
5786 |
msgstr ""
|
5787 |
|
5788 |
-
#: ../html/
|
5789 |
msgid ""
|
5790 |
-
"
|
5791 |
-
"
|
5792 |
-
"I agree for my personal data, provided via map API calls, to be processed by "
|
5793 |
-
"the API provider, for the purposes of geocoding (converting addresses to "
|
5794 |
-
"coordinates), reverse geocoding and generating directions.\n"
|
5795 |
-
"\n"
|
5796 |
-
"Some visual components of WP Google Maps use 3rd party libraries which are "
|
5797 |
-
"loaded over the network. At present the libraries are Google Maps, Open "
|
5798 |
-
"Street Map, jQuery DataTables and FontAwesome. When loading resources over a "
|
5799 |
-
"network, the 3rd party server will receive your IP address and User Agent "
|
5800 |
-
"string amongst other details. Please refer to the Privacy Policy of the "
|
5801 |
-
"respective libraries for details on how they use data and the process to "
|
5802 |
-
"exercise your rights under the GDPR regulations.\n"
|
5803 |
-
"\n"
|
5804 |
-
"WP Google Maps uses jQuery DataTables to display sortable, searchable "
|
5805 |
-
"tables, such as that seen in the Advanced Marker Listing and on the Map Edit "
|
5806 |
-
"Page. jQuery DataTables in certain circumstances uses a cookie to save and "
|
5807 |
-
"later recall the \"state\" of a given table - that is, the search term, sort "
|
5808 |
-
"column and order and current page. This data is help in local storage and "
|
5809 |
-
"retained until this is cleared manually. No libraries used by WP Google Maps "
|
5810 |
-
"transmit this information.\n"
|
5811 |
-
"\n"
|
5812 |
-
"Please <a href=\"https://developers.google.com/maps/terms\">see here</a> and "
|
5813 |
-
"<a href=\"https://maps.google.com/help/terms_maps.html\">here</a> for "
|
5814 |
-
"Google's terms. Please also see <a href=\"https://policies.google.com/"
|
5815 |
-
"privacy?hl=en-GB&gl=uk\">Google's Privacy Policy</a>. We do not send the "
|
5816 |
-
"API provider any personally identifying information, or information that "
|
5817 |
-
"could uniquely identify your device.\n"
|
5818 |
-
"\n"
|
5819 |
-
"Where this notice is displayed in place of a map, agreeing to this notice "
|
5820 |
-
"will store a cookie recording your agreement so you are not prompted again."
|
5821 |
msgstr ""
|
5822 |
|
5823 |
-
#: ../html/
|
5824 |
-
msgid "
|
5825 |
msgstr ""
|
5826 |
|
5827 |
-
#: ../html/
|
5828 |
msgid ""
|
5829 |
-
"
|
5830 |
-
|
5831 |
-
|
5832 |
-
#: ../html/google-maps-api-error-dialog.html.php:84
|
5833 |
-
msgid "This dialog is only visible to administrators"
|
5834 |
msgstr ""
|
5835 |
|
5836 |
-
#: ../html/
|
5837 |
-
msgid "
|
5838 |
msgstr ""
|
5839 |
|
5840 |
-
#: ../html/
|
5841 |
-
msgid "
|
|
|
|
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: ../html/
|
5845 |
-
msgid "
|
5846 |
-
msgstr ""
|
5847 |
|
5848 |
-
#: ../html/
|
5849 |
-
msgid "
|
|
|
|
|
5850 |
msgstr ""
|
|
|
|
|
5851 |
|
5852 |
-
#: ../html/
|
5853 |
-
msgid "
|
5854 |
-
msgstr ""
|
5855 |
|
5856 |
-
#: ../html/
|
5857 |
-
|
5858 |
-
|
5859 |
-
"
|
5860 |
-
msgstr ""
|
5861 |
|
5862 |
-
#: ../html/
|
5863 |
-
msgid "
|
5864 |
msgstr ""
|
5865 |
|
5866 |
-
#: ../html/settings-page.html.php:
|
5867 |
-
msgid "
|
5868 |
-
msgstr ""
|
5869 |
|
5870 |
-
#: ../html/settings-page.html.php:
|
5871 |
-
|
5872 |
-
|
5873 |
-
#| msgid "Enable Layers"
|
5874 |
-
msgid "OpenLayers"
|
5875 |
-
msgstr "Включи слоеве"
|
5876 |
|
5877 |
-
#: ../html/settings-page.html.php:
|
5878 |
-
|
5879 |
-
|
5880 |
-
#| msgid "WP Google Maps"
|
5881 |
-
msgid "Google Maps"
|
5882 |
-
msgstr "WP Google Maps"
|
5883 |
|
5884 |
-
#: ../html/settings-page.html.php:
|
5885 |
-
msgid "
|
5886 |
-
msgstr ""
|
5887 |
|
5888 |
-
#: ../html/settings-page.html.php:
|
5889 |
#, fuzzy
|
5890 |
-
msgid ""
|
5891 |
-
"
|
5892 |
-
"
|
5893 |
-
msgstr ""
|
5894 |
-
"Презапис сегашното jQuery с версия 1.8.3 (Отметни това ако получаваш jQuery "
|
5895 |
-
"свързани грешки)"
|
5896 |
|
5897 |
-
#: ../html/settings-page.html.php:
|
5898 |
-
msgid "
|
5899 |
-
msgstr ""
|
5900 |
|
5901 |
-
#: ../html/settings-page.html.php:
|
5902 |
-
|
5903 |
-
|
|
|
|
|
5904 |
|
5905 |
-
#: ../html/settings-page.html.php:
|
5906 |
-
|
5907 |
-
|
|
|
|
|
5908 |
|
5909 |
-
#: ../html/settings-page.html.php:
|
5910 |
-
msgid "
|
5911 |
msgstr ""
|
5912 |
|
5913 |
-
#: ../html/settings-page.html.php:
|
5914 |
-
msgid "
|
5915 |
msgstr ""
|
5916 |
|
5917 |
-
#: ../html/settings-page.html.php:
|
5918 |
-
msgid "
|
5919 |
msgstr ""
|
5920 |
|
5921 |
-
#: ../html/settings-page.html.php:
|
5922 |
-
msgid "
|
5923 |
msgstr ""
|
5924 |
|
5925 |
-
#: ../html/settings-page.html.php:
|
5926 |
-
msgid "
|
|
|
|
|
5927 |
msgstr ""
|
5928 |
|
5929 |
-
#: ../html/settings-page.html.php:
|
5930 |
-
msgid "
|
5931 |
msgstr ""
|
5932 |
|
5933 |
-
#: ../html/settings-page.html.php:
|
5934 |
-
msgid "
|
|
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: ../html/settings-page.html.php:
|
5938 |
#, fuzzy
|
5939 |
-
#| msgid "
|
5940 |
-
msgid "
|
5941 |
-
msgstr "
|
5942 |
|
5943 |
-
#: ../html/settings-page.html.php:
|
5944 |
-
msgid "
|
5945 |
msgstr ""
|
5946 |
|
5947 |
-
#: ../html/settings-page.html.php:
|
5948 |
-
|
5949 |
-
|
|
|
|
|
5950 |
|
5951 |
-
#: ../html/settings-page.html.php:
|
5952 |
-
msgid "
|
5953 |
msgstr ""
|
5954 |
|
5955 |
-
#: ../html/settings-page.html.php:
|
5956 |
-
msgid "
|
|
|
|
|
|
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: ../html/settings-page.html.php:
|
5960 |
-
msgid "
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: ../html/settings-page.html.php:
|
5964 |
-
msgid "
|
|
|
|
|
|
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: ../html/settings-page.html.php:
|
5968 |
-
msgid "
|
5969 |
msgstr ""
|
5970 |
|
5971 |
-
#: ../html/settings-page.html.php:
|
5972 |
-
msgid "
|
|
|
|
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: ../html/settings-page.html.php:
|
5976 |
-
msgid "
|
5977 |
msgstr ""
|
5978 |
|
5979 |
-
#: ../html/settings-page.html.php:
|
5980 |
-
msgid "
|
|
|
|
|
|
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: ../html/settings-page.html.php:
|
5984 |
-
msgid "
|
5985 |
msgstr ""
|
5986 |
|
5987 |
-
#: ../html/settings-page.html.php:
|
5988 |
-
msgid "
|
|
|
|
|
5989 |
msgstr ""
|
5990 |
|
5991 |
-
#: ../html/settings-page.html.php:
|
5992 |
-
msgid "
|
5993 |
-
msgstr ""
|
5994 |
|
5995 |
-
#: ../html/
|
5996 |
#, fuzzy
|
5997 |
-
#| msgid "
|
5998 |
-
msgid "
|
5999 |
-
msgstr "
|
6000 |
|
6001 |
-
#: ../html/
|
6002 |
-
msgid "
|
6003 |
-
msgstr ""
|
6004 |
|
6005 |
-
#: ../html/
|
6006 |
-
msgid "
|
6007 |
-
msgstr ""
|
6008 |
|
6009 |
-
#: ../html/
|
6010 |
-
msgid "
|
6011 |
-
|
|
|
|
|
6012 |
|
6013 |
-
#: ../html/
|
6014 |
-
msgid "
|
6015 |
-
msgstr ""
|
6016 |
|
6017 |
-
#: ../html/
|
6018 |
-
msgid ""
|
6019 |
-
"
|
6020 |
-
"$39.99 once off. Support and updates included forever."
|
6021 |
-
msgstr ""
|
6022 |
|
6023 |
-
#: ../html/
|
6024 |
-
msgid "
|
6025 |
-
msgstr ""
|
6026 |
|
6027 |
-
#: ../html/
|
6028 |
-
|
6029 |
-
|
6030 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6031 |
|
6032 |
-
#: ../html/
|
6033 |
msgid ""
|
6034 |
-
"
|
6035 |
-
"
|
6036 |
-
"
|
6037 |
-
"target='_BLANK'>documentation</a> provides a full guide on how to obtain "
|
6038 |
-
"this."
|
6039 |
msgstr ""
|
|
|
|
|
|
|
6040 |
|
6041 |
-
#: ../html/
|
6042 |
-
msgid "
|
6043 |
-
msgstr "
|
6044 |
|
6045 |
-
#: ../html/
|
6046 |
-
|
6047 |
-
|
6048 |
-
msgid "Other Caching"
|
6049 |
-
msgstr "Други настройки"
|
6050 |
|
6051 |
-
#: ../html/
|
6052 |
-
msgid "
|
6053 |
-
msgstr ""
|
6054 |
|
6055 |
-
#: ../html/
|
6056 |
-
msgid "
|
6057 |
-
msgstr ""
|
6058 |
|
6059 |
-
#: ../html/
|
6060 |
-
|
6061 |
-
|
6062 |
-
|
6063 |
-
msgstr "Настройки карта"
|
6064 |
|
6065 |
-
#: ../html/
|
6066 |
-
msgid ""
|
6067 |
-
"
|
6068 |
-
|
6069 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6070 |
msgstr ""
|
6071 |
|
|
|
|
|
|
|
|
|
6072 |
#: ../html/theme-panel.html.php:5
|
6073 |
#, fuzzy
|
6074 |
#| msgid "Theme selection"
|
@@ -6123,81 +6635,94 @@ msgid "Night Mode"
|
|
6123 |
msgstr "Вдясно горе"
|
6124 |
|
6125 |
#: ../html/theme-panel.html.php:235
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6126 |
msgid "Theme Editor"
|
6127 |
msgstr ""
|
6128 |
|
6129 |
-
#: ../html/theme-panel.html.php:
|
6130 |
msgid "Customise Theme"
|
6131 |
msgstr ""
|
6132 |
|
6133 |
-
#: ../html/theme-panel.html.php:
|
6134 |
msgid "Open Theme Editor"
|
6135 |
msgstr ""
|
6136 |
|
6137 |
-
#: ../html/theme-panel.html.php:
|
|
|
|
|
|
|
|
|
6138 |
msgid "Feature"
|
6139 |
msgstr ""
|
6140 |
|
6141 |
-
#: ../html/theme-panel.html.php:
|
6142 |
msgid "Visibility"
|
6143 |
msgstr ""
|
6144 |
|
6145 |
-
#: ../html/theme-panel.html.php:
|
6146 |
msgid "Inherit"
|
6147 |
msgstr ""
|
6148 |
|
6149 |
-
#: ../html/theme-panel.html.php:
|
6150 |
msgid "Off"
|
6151 |
msgstr ""
|
6152 |
|
6153 |
-
#: ../html/theme-panel.html.php:
|
6154 |
msgid "Simplified"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
-
#: ../html/theme-panel.html.php:
|
6158 |
msgid "On"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: ../html/theme-panel.html.php:
|
6162 |
msgid "Label"
|
6163 |
msgstr ""
|
6164 |
|
6165 |
-
#: ../html/theme-panel.html.php:
|
6166 |
#, fuzzy
|
6167 |
#| msgid "Height"
|
6168 |
msgid "Weight"
|
6169 |
msgstr "Височина"
|
6170 |
|
6171 |
-
#: ../html/theme-panel.html.php:
|
6172 |
msgid "Gamma"
|
6173 |
msgstr ""
|
6174 |
|
6175 |
-
#: ../html/theme-panel.html.php:
|
6176 |
#, fuzzy
|
6177 |
msgid "Saturation"
|
6178 |
msgstr "Marker данни локация"
|
6179 |
|
6180 |
-
#: ../html/theme-panel.html.php:
|
6181 |
#, fuzzy
|
6182 |
#| msgid "Line Thickness"
|
6183 |
msgid "Lightness"
|
6184 |
msgstr "Дебелина на линия"
|
6185 |
|
6186 |
-
#: ../html/theme-panel.html.php:
|
6187 |
-
#: ../legacy
|
|
|
|
|
6188 |
#, fuzzy
|
6189 |
msgid "Color"
|
6190 |
msgstr "Цвят на линк"
|
6191 |
|
6192 |
-
#: ../html/theme-panel.html.php:
|
6193 |
msgid "Hue"
|
6194 |
msgstr ""
|
6195 |
|
6196 |
-
#: ../html/theme-panel.html.php:
|
6197 |
msgid "Invert Lightness"
|
6198 |
msgstr ""
|
6199 |
|
6200 |
-
#: ../html/theme-panel.html.php:
|
6201 |
#, fuzzy
|
6202 |
#| msgid "Themes"
|
6203 |
msgid "Theme Data"
|
@@ -6207,13 +6732,166 @@ msgstr "Теми"
|
|
6207 |
msgid "Tile Server URL:"
|
6208 |
msgstr ""
|
6209 |
|
6210 |
-
#: ../
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6211 |
msgid ""
|
6212 |
"The plugins autoloader failed to register one or more modules. This is "
|
6213 |
"usually due to missing files. Please re-install the plugin and any relevant "
|
6214 |
"add-ons. Technical details are as follows: "
|
6215 |
msgstr ""
|
6216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6217 |
#: ../includes/class.gdpr-compliance.php:38
|
6218 |
msgid ""
|
6219 |
"<p>\n"
|
@@ -6259,24 +6937,30 @@ msgid ""
|
|
6259 |
"</p>"
|
6260 |
msgstr ""
|
6261 |
|
6262 |
-
#: ../includes/class.gdpr-compliance.php:
|
6263 |
msgid ""
|
6264 |
"In light of recent EU GDPR regulation, we strongly recommend reviewing the "
|
6265 |
"<a target=\"_blank\" href=\"https://www.wpgmaps.com/privacy-policy\">WP "
|
6266 |
"Google Maps Privacy Policy</a>"
|
6267 |
msgstr ""
|
6268 |
|
6269 |
-
#: ../includes/class.gdpr-compliance.php:
|
6270 |
msgid "I agree"
|
6271 |
msgstr ""
|
6272 |
|
6273 |
-
#: ../includes/class.map.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
6274 |
#, fuzzy
|
6275 |
#| msgid "WP Google Maps"
|
6276 |
msgid "WP Google Maps:"
|
6277 |
msgstr "WP Google Maps"
|
6278 |
|
6279 |
-
#: ../includes/class.map.php:
|
6280 |
#, php-format
|
6281 |
msgid ""
|
6282 |
"The plugin couldn't find the directory %s, which is the directory your "
|
@@ -6284,67 +6968,69 @@ msgid ""
|
|
6284 |
"exists, and that you assign file permissions of 755 to this directory."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6288 |
msgid "Choose a maps engine"
|
6289 |
msgstr ""
|
6290 |
|
6291 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6292 |
#, fuzzy
|
6293 |
#| msgid "Google API Key (Required)"
|
6294 |
msgid "No API keys required"
|
6295 |
msgstr "Google API Key (задължително)"
|
6296 |
|
6297 |
#: ../includes/class.maps-engine-dialog.php:86
|
6298 |
-
msgid "Limited functionality"
|
6299 |
-
msgstr ""
|
6300 |
-
|
6301 |
-
#: ../includes/class.maps-engine-dialog.php:94
|
6302 |
msgid "Use OpenLayers"
|
6303 |
msgstr ""
|
6304 |
|
6305 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6306 |
msgid "Full functionality"
|
6307 |
msgstr ""
|
6308 |
|
6309 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6310 |
#, fuzzy
|
6311 |
#| msgid "Google API Key (Required)"
|
6312 |
msgid "API Key required"
|
6313 |
msgstr "Google API Key (задължително)"
|
6314 |
|
6315 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6316 |
#, fuzzy
|
6317 |
#| msgid "Use Google Maps API"
|
6318 |
msgid "Use Google Maps"
|
6319 |
msgstr "Ползвай Google Maps API"
|
6320 |
|
6321 |
-
#: ../includes/class.maps-engine-dialog.php:
|
6322 |
#, fuzzy
|
6323 |
#| msgid "Select"
|
6324 |
msgid "Select Engine"
|
6325 |
msgstr "Избери"
|
6326 |
|
6327 |
-
#: ../includes/class.
|
|
|
|
|
|
|
|
|
|
|
|
|
6328 |
msgid ""
|
6329 |
"<strong>WP Google Maps:</strong> Cannot find the specified XML folder. This "
|
6330 |
"has been switched back to the Database method in Maps -> Settings -> Advanced"
|
6331 |
msgstr ""
|
6332 |
|
6333 |
-
#: ../includes/class.plugin.php:
|
6334 |
msgid ""
|
6335 |
"<strong>WP Google Maps:</strong> Execution time limit was reached whilst "
|
6336 |
"generating XML cache. This has been switched back to the Database method in "
|
6337 |
"Maps -> Settings -> Advanced"
|
6338 |
msgstr ""
|
6339 |
|
6340 |
-
#: ../includes/class.plugin.php:
|
6341 |
msgid ""
|
6342 |
"<strong>WP Google Maps:</strong> Allowed memory size was reached whilst "
|
6343 |
"generating XML cache. This has been switched back to the Database method in "
|
6344 |
"Maps -> Settings -> Advanced"
|
6345 |
msgstr ""
|
6346 |
|
6347 |
-
#: ../includes/class.plugin.php:
|
6348 |
msgid ""
|
6349 |
"The plugin cannot initialise due to a fatal error. This is usually due to "
|
6350 |
"missing files or incompatible software. Please re-install the plugin and any "
|
@@ -6352,13 +7038,7 @@ msgid ""
|
|
6352 |
"details are as follows: "
|
6353 |
msgstr ""
|
6354 |
|
6355 |
-
#: ../includes/class.
|
6356 |
-
#, fuzzy, php-format
|
6357 |
-
#| msgid "Approve this marker"
|
6358 |
-
msgid "Removed %s markers"
|
6359 |
-
msgstr "Одобри този маркер"
|
6360 |
-
|
6361 |
-
#: ../includes/class.script-loader.php:424
|
6362 |
msgid ""
|
6363 |
"\n"
|
6364 |
"\t\t\t\t\t\t\t<p>\n"
|
@@ -6376,6 +7056,14 @@ msgid ""
|
|
6376 |
"\t\t\t\t\t\t\t"
|
6377 |
msgstr ""
|
6378 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6379 |
#: ../includes/class.strings.php:21
|
6380 |
msgid ""
|
6381 |
"Many browsers are no longer allowing geolocation from unsecured origins. You "
|
@@ -6393,822 +7081,560 @@ msgid ""
|
|
6393 |
"Please check your settings."
|
6394 |
msgstr ""
|
6395 |
|
6396 |
-
#: ../includes/class.strings.php:
|
|
|
6397 |
msgid ""
|
6398 |
"You have not entered a <b>Google Maps API Key</b>.<br /><br />Please go to "
|
6399 |
-
"the your admin area, then Maps, then Settings, then the Advanced tab to "
|
6400 |
-
"enter your Google Maps API key
|
6401 |
-
"Layers engine to avoid getting an API key."
|
6402 |
msgstr ""
|
6403 |
|
6404 |
-
#: ../includes/class.strings.php:
|
6405 |
msgid "API Dashboard"
|
6406 |
msgstr ""
|
6407 |
|
6408 |
-
#: ../includes/class.strings.php:
|
6409 |
msgid "Verify Project"
|
6410 |
msgstr ""
|
6411 |
|
6412 |
-
#: ../includes/class.strings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6413 |
#, fuzzy
|
6414 |
#| msgid "Hide the Address"
|
6415 |
msgid "Failed to get address"
|
6416 |
msgstr "Скрий адреса"
|
6417 |
|
6418 |
-
#: ../includes/class.strings.php:
|
6419 |
#, php-format
|
6420 |
msgid "Failed to create marker %d - this marker cannot be placed on the map."
|
6421 |
msgstr ""
|
6422 |
|
6423 |
-
#: ../includes/class.strings.php:
|
6424 |
#, fuzzy
|
6425 |
#| msgid "My location"
|
6426 |
msgid "My Location"
|
6427 |
msgstr "Моето местоположение"
|
6428 |
|
6429 |
-
#: ../includes/class.strings.php:
|
6430 |
#, fuzzy
|
6431 |
#| msgid "Hide the address field"
|
6432 |
msgid "No address specified"
|
6433 |
msgstr "Скрий поле адрес"
|
6434 |
|
6435 |
-
#: ../includes/class.strings.php:
|
|
|
|
|
|
|
|
|
6436 |
msgid "Save Marker"
|
6437 |
msgstr "Запиши маркер"
|
6438 |
|
6439 |
-
#: ../includes/class.strings.php:
|
6440 |
#, fuzzy
|
6441 |
#| msgid "Please explain"
|
6442 |
msgid "Please Wait..."
|
6443 |
msgstr "Моля, опиши"
|
6444 |
|
6445 |
-
#: ../includes/class.strings.php:
|
6446 |
-
msgid "
|
6447 |
-
|
6448 |
-
|
6449 |
-
|
6450 |
-
|
6451 |
msgstr ""
|
6452 |
|
6453 |
-
#: ../includes/class.strings.php:
|
6454 |
msgid "Geocode failed due to technical reasons"
|
6455 |
msgstr ""
|
6456 |
|
6457 |
-
#: ../includes/class.strings.php:
|
6458 |
msgid "You must check the GDPR consent box to continue"
|
6459 |
msgstr ""
|
6460 |
|
6461 |
-
#: ../includes/class.strings.php:
|
6462 |
msgid "No GPS coordinates found"
|
6463 |
msgstr ""
|
6464 |
|
6465 |
-
#: ../includes/class.strings.php:
|
6466 |
msgid "Unknown directions service status"
|
6467 |
msgstr ""
|
6468 |
|
6469 |
-
#: ../includes/class.strings.php:
|
6470 |
#, fuzzy
|
6471 |
msgid "Please fill out both the \"from\" and \"to\" fields"
|
6472 |
msgstr "оля, попълни и двете полета 'от' и 'до'"
|
6473 |
|
6474 |
-
#: ../includes/class.strings.php:
|
6475 |
msgid "No picture found"
|
6476 |
msgstr ""
|
6477 |
|
6478 |
-
#: ../includes/class.strings.php:
|
6479 |
#, fuzzy
|
6480 |
#| msgid "Are you sure you want to delete the map"
|
6481 |
msgid "Are you sure you want to overwrite the existing theme data?"
|
6482 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
6483 |
|
6484 |
-
#: ../includes/class.strings.php:
|
6485 |
#, fuzzy
|
6486 |
#| msgid "Upload File"
|
6487 |
msgid "Upload Complete"
|
6488 |
msgstr "качи файл"
|
6489 |
|
6490 |
-
#: ../includes/class.strings.php:
|
6491 |
#, fuzzy
|
6492 |
#| msgid "Upload File"
|
6493 |
msgid "Uploading file"
|
6494 |
msgstr "качи файл"
|
6495 |
|
6496 |
-
#: ../includes/class.strings.php:
|
6497 |
#, fuzzy
|
6498 |
#| msgid "WP Google Maps Error log"
|
6499 |
msgid "WP Google Maps - Bulk JPEG Upload"
|
6500 |
msgstr "WP Google Maps Error log"
|
6501 |
|
6502 |
-
#: ../includes/class.strings.php:
|
6503 |
msgid "Requires WP Google Maps - Gold add-on 5.0.0 or above"
|
6504 |
msgstr ""
|
6505 |
|
6506 |
-
#: ../includes/class.strings.php:
|
6507 |
msgid ""
|
6508 |
"This operation is not reversable. We recommend you take a backup before "
|
6509 |
"proceeding. Would you like to continue?"
|
6510 |
msgstr ""
|
6511 |
|
6512 |
-
#: ../includes/class.strings.php:
|
6513 |
msgid "Invalid theme data"
|
6514 |
msgstr ""
|
6515 |
|
6516 |
-
#: ../includes/class.strings.php:
|
6517 |
msgid ""
|
6518 |
"Duplicate custom field names, please ensure you only add unique custom field "
|
6519 |
"names."
|
6520 |
msgstr ""
|
6521 |
|
6522 |
-
#: ../includes/class.strings.php:
|
6523 |
msgid "Some interactions are disabled."
|
6524 |
msgstr ""
|
6525 |
|
6526 |
-
#: ../includes/class.strings.php:
|
6527 |
msgid "Interactions Enabled"
|
6528 |
msgstr ""
|
6529 |
|
6530 |
-
#: ../includes/class.strings.php:
|
6531 |
#, fuzzy
|
6532 |
#| msgid "Enable Directions?"
|
6533 |
msgid "Re-Enable Interactions"
|
6534 |
msgstr "Включи упътвания?"
|
6535 |
|
6536 |
-
#: ../includes/class.strings.php:
|
6537 |
msgid "Use two fingers to move the map"
|
6538 |
msgstr ""
|
6539 |
|
6540 |
-
#: ../includes/class.strings.php:
|
6541 |
msgid "Use ctrl + scroll to zoom the map"
|
6542 |
msgstr ""
|
6543 |
|
6544 |
-
#: ../includes/class.strings.php:
|
6545 |
#, fuzzy
|
6546 |
#| msgid "Geocode was not successful for the following reason"
|
6547 |
msgid "Geocode was not successful for the following reason: "
|
6548 |
msgstr "Геокодирането не беше успешно по следната причина"
|
6549 |
|
6550 |
-
#: ../includes/class.strings.php:
|
6551 |
msgid ""
|
6552 |
"Geocoding this address failed. Please check you have enabled the Geocoding "
|
6553 |
"API for your Google Maps API project."
|
6554 |
msgstr ""
|
6555 |
|
6556 |
-
#: ../includes/
|
6557 |
-
#, fuzzy
|
6558 |
-
msgid "Enable Usage Tracking"
|
6559 |
-
msgstr "Включи на страници"
|
6560 |
-
|
6561 |
-
#: ../includes/legacy/settings-page.php:361
|
6562 |
-
msgid ""
|
6563 |
-
"Allow us to anonymously track how you use your maps and we will send you a "
|
6564 |
-
"15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
|
6565 |
-
"the administrator's email address)"
|
6566 |
-
msgstr ""
|
6567 |
-
|
6568 |
-
#: ../includes/legacy/settings-page.php:378
|
6569 |
-
msgid "Marker InfoWindow Settings"
|
6570 |
-
msgstr "Marker Инфопрозорец Настройки"
|
6571 |
-
|
6572 |
-
#: ../includes/legacy/settings-page.php:584
|
6573 |
-
msgid ""
|
6574 |
-
"Always rebuilds combined script files, does not load combined and minified "
|
6575 |
-
"scripts"
|
6576 |
-
msgstr ""
|
6577 |
-
|
6578 |
-
#: ../includes/tables/class.admin-marker-datatable.php:26
|
6579 |
-
#, fuzzy
|
6580 |
-
#| msgid "Delete"
|
6581 |
-
msgid "Bulk Delete"
|
6582 |
-
msgstr "Изтриване"
|
6583 |
-
|
6584 |
-
#: ../includes/tables/class.admin-marker-datatable.php:33
|
6585 |
-
#: ../legacy-core.php:4750
|
6586 |
-
#, fuzzy
|
6587 |
-
#| msgid "Markers"
|
6588 |
-
msgid "Mark"
|
6589 |
-
msgstr "Маркери"
|
6590 |
-
|
6591 |
-
#: ../includes/tables/class.admin-marker-datatable.php:57
|
6592 |
-
#: ../legacy-core.php:4727
|
6593 |
#, fuzzy
|
6594 |
-
msgid "
|
6595 |
-
|
6596 |
-
|
6597 |
-
#: ../includes/tables/class.admin-marker-datatable.php:65
|
6598 |
-
#: ../legacy-core.php:4731
|
6599 |
-
msgid "Delete this marker"
|
6600 |
-
msgstr "Изтрий този маркер"
|
6601 |
-
|
6602 |
-
#: ../legacy-core.php:145
|
6603 |
-
msgid ""
|
6604 |
-
"<strong>WP Google Maps:</strong> The Pro add-on is not compatible with this "
|
6605 |
-
"version of WP Google Maps. Please update your Pro addon to 5.24 or above"
|
6606 |
-
msgstr ""
|
6607 |
-
|
6608 |
-
#: ../legacy-core.php:242
|
6609 |
-
msgid "My first map"
|
6610 |
-
msgstr "Моята първа карта"
|
6611 |
-
|
6612 |
-
#: ../legacy-core.php:524
|
6613 |
-
msgid "Map Editor"
|
6614 |
-
msgstr ""
|
6615 |
|
6616 |
-
#: ../
|
6617 |
#, fuzzy
|
6618 |
-
#| msgid "
|
6619 |
-
msgid "
|
6620 |
-
msgstr "Pro версия"
|
6621 |
-
|
6622 |
-
#: ../legacy-core.php:552
|
6623 |
-
msgid ""
|
6624 |
-
"<strong>WP Google Maps cannot find the directory it uses to save marker data "
|
6625 |
-
"to. Please confirm that <em>"
|
6626 |
-
msgstr ""
|
6627 |
-
"<strong>WP Google Maps не може да намери директорията която е за запис на "
|
6628 |
-
"маркер данни. Моля, потвърди <em>"
|
6629 |
-
|
6630 |
-
#: ../legacy-core.php:552
|
6631 |
-
msgid ""
|
6632 |
-
"</em>exists. Please also ensure that you assign file permissions of 755 (or "
|
6633 |
-
"777) to this directory."
|
6634 |
-
msgstr ""
|
6635 |
-
"</em>съществува. Моля, също се убедете че разрешението 755 (или 777) на тази "
|
6636 |
-
"директория."
|
6637 |
-
|
6638 |
-
#: ../legacy-core.php:566
|
6639 |
-
msgid ""
|
6640 |
-
"Timthumb does not have 'write' permission for the cache directory. Please "
|
6641 |
-
"enable 'write' permissions (755 or 777) for "
|
6642 |
-
msgstr ""
|
6643 |
-
"Timthumb няма 'write' права за кеш да директорията. Моля включи 'write' "
|
6644 |
-
"права (755 или 777) за"
|
6645 |
-
|
6646 |
-
#: ../legacy-core.php:568
|
6647 |
-
msgid "in order for images to show up while using Timthumb. Please see "
|
6648 |
-
msgstr "за да се покажат картинките с Timthumb. Моля, виж"
|
6649 |
-
|
6650 |
-
#: ../legacy-core.php:570 ../legacy-core.php:4937
|
6651 |
-
msgid "this page"
|
6652 |
-
msgstr "тази страница"
|
6653 |
-
|
6654 |
-
#: ../legacy-core.php:572
|
6655 |
-
msgid ""
|
6656 |
-
"for help on how to do it. Alternatively, you can disable the use of Timthumb "
|
6657 |
-
"in Maps->Settings"
|
6658 |
-
msgstr ""
|
6659 |
-
"за помощ как да го направиш. или пък може да Изключи ползването на Timthumb "
|
6660 |
-
"в Карти->Настройки"
|
6661 |
-
|
6662 |
-
#: ../legacy-core.php:1569
|
6663 |
-
msgid "Error: The map ID"
|
6664 |
-
msgstr "Error: The map ID"
|
6665 |
-
|
6666 |
-
#: ../legacy-core.php:1569
|
6667 |
-
msgid "does not exist"
|
6668 |
-
msgstr "не съществува"
|
6669 |
-
|
6670 |
-
#: ../legacy-core.php:2710 ../legacy-core.php:2856
|
6671 |
-
msgid "Experiencing problems with the plugin?"
|
6672 |
-
msgstr "Имаш проблеми с плъгина?"
|
6673 |
-
|
6674 |
-
#: ../legacy-core.php:2710 ../legacy-core.php:2856
|
6675 |
-
msgid "See the troubleshooting manual."
|
6676 |
-
msgstr "Виж документацията по отстраняване на проблемите."
|
6677 |
-
|
6678 |
-
#: ../legacy-core.php:2710
|
6679 |
-
msgid "Or ask a question on our "
|
6680 |
-
msgstr "Или задай въпрос в нашия"
|
6681 |
-
|
6682 |
-
#: ../legacy-core.php:2710
|
6683 |
-
msgid "Support forum."
|
6684 |
-
msgstr "Форум за съпорт."
|
6685 |
-
|
6686 |
-
#: ../legacy-core.php:2733
|
6687 |
-
msgid "Delete your map"
|
6688 |
-
msgstr "Изтрий картата си"
|
6689 |
-
|
6690 |
-
#: ../legacy-core.php:2733
|
6691 |
-
msgid "Are you sure you want to delete the map"
|
6692 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
6693 |
|
6694 |
-
#: ../
|
6695 |
-
msgid "There was a problem duplicating the map."
|
6696 |
-
msgstr "Имаше проблем с дупликата на тази карта."
|
6697 |
-
|
6698 |
-
#: ../legacy-core.php:2865
|
6699 |
-
msgid "There was a problem deleting the marker."
|
6700 |
-
msgstr "Имаше проблем с триенето на маркер"
|
6701 |
-
|
6702 |
-
#: ../legacy-core.php:2869
|
6703 |
-
msgid "Delete Marker"
|
6704 |
-
msgstr "Изтрий маркер"
|
6705 |
-
|
6706 |
-
#: ../legacy-core.php:2869
|
6707 |
-
msgid "Are you sure you want to delete this marker:"
|
6708 |
-
msgstr "Сигурен ли си, че искаш да изтриеш този маркер:"
|
6709 |
-
|
6710 |
-
#: ../legacy-core.php:2953
|
6711 |
-
#, php-format
|
6712 |
-
msgid ""
|
6713 |
-
"<h3>We need your love!</h3><p>If you are enjoying our plugin, please "
|
6714 |
-
"consider <a href=\"%1$s\" target=\"_blank\" class=\"button-border button-"
|
6715 |
-
"border__green\">reviewing WP Google Maps</a>. It would mean the world to us! "
|
6716 |
-
"If you are experiencing issues with the plugin, please <a href=\"%2$s\" "
|
6717 |
-
"target=\"_blank\" class=\"button-border button-border__green\">contact us</"
|
6718 |
-
"a> and we will help you as soon as humanly possible!</p>"
|
6719 |
-
msgstr ""
|
6720 |
-
|
6721 |
-
#: ../legacy-core.php:2958
|
6722 |
-
msgid "We will not nag you again, promise!"
|
6723 |
-
msgstr ""
|
6724 |
-
|
6725 |
-
#: ../legacy-core.php:2958
|
6726 |
-
msgid "Close"
|
6727 |
-
msgstr ""
|
6728 |
-
|
6729 |
-
#: ../legacy-core.php:2978 ../legacy-core.php:2999
|
6730 |
-
msgid "My Maps"
|
6731 |
-
msgstr "Моите карти"
|
6732 |
-
|
6733 |
-
#: ../legacy-core.php:2978 ../legacy-core.php:3081
|
6734 |
-
msgid "Add New"
|
6735 |
-
msgstr "Добави нова"
|
6736 |
-
|
6737 |
-
#: ../legacy-core.php:2978
|
6738 |
-
msgid "Wizard"
|
6739 |
-
msgstr ""
|
6740 |
-
|
6741 |
-
#: ../legacy-core.php:2990 ../legacy-core.php:3012
|
6742 |
#, php-format
|
6743 |
msgid ""
|
6744 |
-
"
|
6745 |
-
"plugin. Should you be experiencing issues with your maps displaying, please "
|
6746 |
-
"update Avada to version 3.9.4 or go to <a href='%s'>settings page</a> and "
|
6747 |
-
"check the highlighted checkbox."
|
6748 |
-
msgstr ""
|
6749 |
-
|
6750 |
-
#: ../legacy-core.php:3000
|
6751 |
-
msgid "Create unlimited maps"
|
6752 |
-
msgstr "Създай ънлимитед карти"
|
6753 |
-
|
6754 |
-
#: ../legacy-core.php:3000
|
6755 |
-
msgid "once off!"
|
6756 |
-
msgstr ""
|
6757 |
-
|
6758 |
-
#: ../legacy-core.php:3081
|
6759 |
-
msgid "My Markers"
|
6760 |
-
msgstr "Моите маркери"
|
6761 |
-
|
6762 |
-
#: ../legacy-core.php:3102
|
6763 |
-
msgid "Linked to"
|
6764 |
-
msgstr "Линкнати до"
|
6765 |
-
|
6766 |
-
#: ../legacy-core.php:3105
|
6767 |
-
msgid "GPS"
|
6768 |
-
msgstr "GPS"
|
6769 |
-
|
6770 |
-
#: ../legacy-core.php:3106
|
6771 |
-
msgid "Pic"
|
6772 |
-
msgstr "Pic"
|
6773 |
-
|
6774 |
-
#: ../legacy-core.php:3259
|
6775 |
-
msgid ""
|
6776 |
-
"Add custom icons, titles, descriptions, pictures and links to your markers "
|
6777 |
-
"with the"
|
6778 |
-
msgstr ""
|
6779 |
-
"Добави къстъм икони, заглавия, описание, картинки и линкове към твоите "
|
6780 |
-
"маркери"
|
6781 |
-
|
6782 |
-
#: ../legacy-core.php:3259 ../legacy-core.php:3260 ../legacy-core.php:4358
|
6783 |
-
#: ../legacy-core.php:4364
|
6784 |
-
msgid "Pro Edition"
|
6785 |
-
msgstr "Pro едишън"
|
6786 |
-
|
6787 |
-
#: ../legacy-core.php:3259
|
6788 |
-
msgid "of this plugin for just"
|
6789 |
-
msgstr "на този пъгин само за"
|
6790 |
-
|
6791 |
-
#: ../legacy-core.php:3260
|
6792 |
-
msgid "Purchase the Pro Edition"
|
6793 |
-
msgstr "Поръчай Pro Edition"
|
6794 |
-
|
6795 |
-
#: ../legacy-core.php:3260
|
6796 |
-
msgid "of WP Google Maps and save your markers to a CSV file!"
|
6797 |
-
msgstr "на WP Google Maps и записвай своите маркери в CSV файл!"
|
6798 |
-
|
6799 |
-
#: ../legacy-core.php:3360
|
6800 |
-
msgid "Please note"
|
6801 |
-
msgstr "Моля да се има предвид"
|
6802 |
-
|
6803 |
-
#: ../legacy-core.php:3360
|
6804 |
-
msgid ""
|
6805 |
-
"We've noticed that you are using W3 Total Cache and that you have CDN "
|
6806 |
-
"enabled.<br /><br />In order for the markers to show up on your map, you "
|
6807 |
-
"need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to the "
|
6808 |
-
"'<strong>rejected files</strong>' list in the <a href='admin.php?"
|
6809 |
-
"page=w3tc_cdn#advanced'>CDN settings page</a> of W3 Total Cache"
|
6810 |
-
msgstr ""
|
6811 |
-
"Забелязваме, че използваш W3 Total Cache aи имаш CDN включено.<br /><br />За "
|
6812 |
-
"да може да се показват маркерите на твоята карта, ти трябва да добавиш "
|
6813 |
-
"'<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' към "
|
6814 |
-
"'<strong>rejected files</strong>' списъка в <a href='admin.php?"
|
6815 |
-
"page=w3tc_cdn#advanced'>CDN Настройки страница</a> of W3 Total Cache"
|
6816 |
-
|
6817 |
-
#: ../legacy-core.php:3427
|
6818 |
-
msgid "Create your Map"
|
6819 |
-
msgstr "Създавай твоя карта"
|
6820 |
-
|
6821 |
-
#: ../legacy-core.php:3439
|
6822 |
-
msgid "Pro Upgrade"
|
6823 |
-
msgstr "Pro ъпгрейд"
|
6824 |
-
|
6825 |
-
#: ../legacy-core.php:3528
|
6826 |
-
msgid "Themes can only be used with the Roadmap and Terrain map types."
|
6827 |
msgstr ""
|
6828 |
|
6829 |
-
#: ../
|
6830 |
-
|
6831 |
-
|
6832 |
-
|
6833 |
-
|
6834 |
-
|
6835 |
-
msgstr "Query стринг"
|
6836 |
-
|
6837 |
-
#: ../legacy-core.php:3734
|
6838 |
-
msgid "Show bouncing icon"
|
6839 |
-
msgstr "Покажи подскачаща икона"
|
6840 |
-
|
6841 |
-
#: ../legacy-core.php:3751
|
6842 |
-
msgid "Enable Bicycle Layer?"
|
6843 |
-
msgstr "Включи слой колоездене?"
|
6844 |
-
|
6845 |
-
#: ../legacy-core.php:3760
|
6846 |
-
msgid "Enable Traffic Layer?"
|
6847 |
-
msgstr "Включи слой трафик?"
|
6848 |
-
|
6849 |
-
#: ../legacy-core.php:3771
|
6850 |
-
msgid "Enable Public Transport Layer?"
|
6851 |
-
msgstr "Включи слой градски транспорт?"
|
6852 |
-
|
6853 |
-
#: ../legacy-core.php:3782
|
6854 |
-
msgid "Maximum Zoom Level"
|
6855 |
-
msgstr "Максимален зум нивоl"
|
6856 |
-
|
6857 |
-
#: ../legacy-core.php:3811
|
6858 |
-
msgid "Show Points of Interest?"
|
6859 |
-
msgstr ""
|
6860 |
|
6861 |
-
#: ../
|
6862 |
-
|
6863 |
-
|
6864 |
-
|
6865 |
-
|
6866 |
-
#| "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99 once "
|
6867 |
-
#| "off</a>. Support and updates included forever."
|
6868 |
-
msgid ""
|
6869 |
-
"Get the rest of these advanced features with the Pro version for only <a "
|
6870 |
-
"href=\"%s\" target=\"_BLANK\">$39.99 once off</a>. Support and updates "
|
6871 |
-
"included forever."
|
6872 |
-
msgstr ""
|
6873 |
-
"Вземи още от тези екстри с Pro версията само за <a href=\\\"http://www."
|
6874 |
-
"wpgmaps.com/purchase-professional-version/?"
|
6875 |
-
"utm_source=plugin&utm_medium=link&utm_campaign=advanced\\\">$39.99 "
|
6876 |
-
"еднократно</a>. Съпорт и ъпдейт завинаги"
|
6877 |
|
6878 |
-
#: ../
|
6879 |
-
|
6880 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6881 |
|
6882 |
-
#: ../
|
6883 |
-
|
6884 |
-
|
|
|
|
|
6885 |
|
6886 |
-
#: ../
|
6887 |
-
msgid "
|
6888 |
-
msgstr "
|
6889 |
|
6890 |
-
#: ../
|
6891 |
-
msgid "
|
6892 |
-
msgstr "
|
6893 |
|
6894 |
-
#: ../
|
6895 |
-
msgid "
|
6896 |
-
msgstr "
|
6897 |
|
6898 |
-
#: ../
|
6899 |
-
|
6900 |
-
|
|
|
|
|
6901 |
|
6902 |
-
#: ../
|
6903 |
-
|
6904 |
-
|
|
|
|
|
|
|
6905 |
|
6906 |
-
#: ../
|
6907 |
-
|
6908 |
-
|
|
|
|
|
6909 |
|
6910 |
-
#: ../
|
6911 |
-
msgid "
|
6912 |
-
msgstr "
|
6913 |
|
6914 |
-
#: ../
|
6915 |
-
msgid "
|
6916 |
-
msgstr "
|
6917 |
|
6918 |
-
#: ../
|
6919 |
-
|
6920 |
-
|
6921 |
-
"We've spent over %d years upgrading our plugin to ensure that it is the most "
|
6922 |
-
"user-friendly and comprehensive map plugin in the WordPress directory. Enjoy "
|
6923 |
-
"the peace of mind knowing that you are getting a truly premium product for "
|
6924 |
-
"all your mapping requirements. Did we also mention that we have fantastic "
|
6925 |
-
"support?"
|
6926 |
-
msgstr ""
|
6927 |
|
6928 |
-
#: ../
|
|
|
6929 |
#, fuzzy
|
6930 |
-
|
6931 |
-
|
6932 |
-
msgstr "Създай къстъм пътища или очертания с полиномите"
|
6933 |
|
6934 |
-
#: ../
|
6935 |
-
|
6936 |
-
|
6937 |
-
#| "Add custom icons, titles, descriptions, pictures and links to your "
|
6938 |
-
#| "markers with the"
|
6939 |
-
msgid ""
|
6940 |
-
"Add titles, descriptions, HTML, images, animations and custom icons to your "
|
6941 |
-
"markers."
|
6942 |
-
msgstr ""
|
6943 |
-
"Добави къстъм икони, заглавия, описание, картинки и линкове към твоите "
|
6944 |
-
"маркери"
|
6945 |
|
6946 |
-
#: ../
|
6947 |
-
msgid ""
|
6948 |
-
"
|
6949 |
-
"location as the starting point or allow them to type in an address."
|
6950 |
-
msgstr ""
|
6951 |
|
6952 |
-
#: ../
|
|
|
6953 |
#, fuzzy
|
6954 |
-
msgid "
|
6955 |
-
msgstr "
|
6956 |
|
6957 |
-
#: ../
|
6958 |
-
|
6959 |
-
|
|
|
6960 |
|
6961 |
-
#: ../
|
|
|
6962 |
#, fuzzy
|
6963 |
-
#| msgid "
|
6964 |
-
msgid "
|
6965 |
-
msgstr "
|
6966 |
|
6967 |
-
#: ../
|
6968 |
-
|
6969 |
-
|
6970 |
-
|
|
|
|
|
|
|
|
|
|
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: ../
|
6974 |
-
|
6975 |
-
|
6976 |
-
msgid "Advanced options"
|
6977 |
-
msgstr "Специални опции"
|
6978 |
|
6979 |
-
#: ../
|
6980 |
-
|
6981 |
-
"
|
6982 |
-
"
|
6983 |
-
msgstr ""
|
6984 |
|
6985 |
-
#: ../
|
6986 |
-
msgid "
|
6987 |
-
msgstr ""
|
6988 |
|
6989 |
-
#: ../
|
6990 |
-
msgid ""
|
6991 |
-
"
|
6992 |
-
"quantities of markers at once."
|
6993 |
-
msgstr ""
|
6994 |
|
6995 |
-
#: ../
|
6996 |
-
|
6997 |
-
|
|
|
6998 |
|
6999 |
-
#: ../
|
7000 |
-
msgid "
|
7001 |
-
msgstr ""
|
7002 |
|
7003 |
-
#: ../
|
7004 |
-
|
7005 |
-
|
7006 |
-
msgstr "Полином данни"
|
7007 |
|
7008 |
-
#: ../
|
7009 |
msgid ""
|
7010 |
-
"
|
7011 |
-
"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: ../legacy
|
7015 |
#, fuzzy
|
7016 |
-
#| msgid "
|
7017 |
-
msgid "
|
7018 |
-
msgstr "
|
7019 |
|
7020 |
-
#: ../legacy
|
|
|
7021 |
msgid ""
|
7022 |
-
"
|
7023 |
-
"\" href=\"http://wordpress.org/support/view/plugin-reviews/wp-google-maps?"
|
7024 |
-
"filter=5\">Read what some of our users think of our support</a>."
|
7025 |
msgstr ""
|
7026 |
|
7027 |
-
#: ../legacy
|
7028 |
#, fuzzy
|
7029 |
-
#| msgid "
|
7030 |
-
msgid "
|
7031 |
-
msgstr "
|
7032 |
|
7033 |
-
#: ../legacy
|
7034 |
-
|
7035 |
-
|
7036 |
-
|
7037 |
-
|
|
|
7038 |
|
7039 |
-
#: ../legacy
|
7040 |
-
|
7041 |
-
|
|
|
|
|
|
|
7042 |
|
7043 |
-
#: ../legacy
|
7044 |
-
msgid ""
|
7045 |
-
"Once you're a pro user, you'll receive free updates and support forever! "
|
7046 |
-
"You'll also receive amazing specials on any future plugins we release."
|
7047 |
msgstr ""
|
7048 |
|
7049 |
-
#: ../legacy
|
7050 |
-
msgid "
|
7051 |
msgstr ""
|
7052 |
|
7053 |
-
#: ../legacy
|
7054 |
#, fuzzy
|
7055 |
-
#| msgid "
|
7056 |
-
msgid "
|
7057 |
-
msgstr "
|
7058 |
-
|
7059 |
-
#: ../legacy-core.php:4118
|
7060 |
-
msgid ""
|
7061 |
-
"Have a sales question? Contact Nick on <a href=\\\"mailto:nick@wpgmaps.com\\"
|
7062 |
-
"\">nick@wpgmaps.com</a> or use our <a href=\\\"http://www.wpgmaps.com/"
|
7063 |
-
"contact-us/\\\" target=\\\"_BLANK\\\">contact form</a>."
|
7064 |
-
msgstr ""
|
7065 |
|
7066 |
-
#: ../legacy
|
7067 |
-
msgid ""
|
7068 |
-
"Need help? <a href=\\\"https://www.wpgmaps.com/forums/\\\" target=\\\"_BLANK"
|
7069 |
-
"\\\">Ask a question on our support forum</a>."
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: ../legacy
|
7073 |
-
|
7074 |
-
|
|
|
|
|
7075 |
|
7076 |
-
#: ../legacy
|
7077 |
-
|
7078 |
-
|
|
|
|
|
|
|
7079 |
|
7080 |
-
#: ../legacy
|
7081 |
-
|
7082 |
-
|
|
|
|
|
|
|
7083 |
|
7084 |
-
#: ../legacy
|
7085 |
-
msgid "
|
7086 |
-
msgstr "
|
7087 |
|
7088 |
-
#: ../legacy
|
7089 |
-
msgid "
|
7090 |
-
msgstr "
|
7091 |
|
7092 |
-
#: ../legacy
|
7093 |
-
|
7094 |
-
|
|
|
|
|
7095 |
|
7096 |
-
#: ../legacy
|
7097 |
-
|
7098 |
-
|
|
|
7099 |
|
7100 |
-
#: ../
|
7101 |
-
|
7102 |
-
|
|
|
7103 |
|
7104 |
-
#: ../
|
7105 |
-
|
7106 |
-
|
|
|
|
|
|
|
7107 |
|
7108 |
-
#: ../
|
7109 |
-
msgid "
|
7110 |
-
msgstr ""
|
7111 |
|
7112 |
-
#: ../
|
7113 |
-
|
7114 |
-
|
|
|
|
|
7115 |
|
7116 |
-
#: ../legacy-core.php:
|
7117 |
-
msgid "
|
7118 |
msgstr ""
|
7119 |
|
7120 |
-
#: ../legacy-core.php:
|
7121 |
-
#, fuzzy
|
7122 |
-
msgid "with the Pro version."
|
7123 |
-
msgstr "с Pro версия"
|
7124 |
-
|
7125 |
-
#: ../legacy-core.php:4313
|
7126 |
#, fuzzy
|
7127 |
-
msgid "
|
7128 |
-
|
|
|
7129 |
|
7130 |
-
#: ../legacy-core.php:
|
7131 |
-
msgid "
|
7132 |
-
|
|
|
|
|
|
|
|
|
7133 |
|
7134 |
-
#: ../legacy-core.php:
|
7135 |
msgid ""
|
7136 |
-
"
|
7137 |
-
"
|
7138 |
-
"disable all plugins one by one and see if this problem persists."
|
7139 |
msgstr ""
|
7140 |
-
"
|
7141 |
-
"
|
7142 |
-
"плъгини един по един и виж дали проблема остава."
|
7143 |
|
7144 |
-
#: ../legacy-core.php:
|
7145 |
-
msgid "
|
7146 |
-
msgstr "
|
7147 |
|
7148 |
-
#: ../legacy-core.php:
|
7149 |
-
msgid "
|
7150 |
-
msgstr "
|
7151 |
|
7152 |
-
#: ../legacy-core.php:
|
7153 |
-
msgid "
|
7154 |
-
msgstr "
|
7155 |
|
7156 |
-
#: ../legacy-core.php:
|
7157 |
-
msgid "
|
7158 |
-
msgstr "
|
7159 |
|
7160 |
-
#: ../legacy-core.php:
|
7161 |
-
msgid "
|
7162 |
-
msgstr "
|
7163 |
|
7164 |
-
#: ../legacy-core.php:
|
|
|
7165 |
msgid ""
|
7166 |
-
"
|
7167 |
-
"
|
7168 |
-
|
7169 |
-
"
|
7170 |
-
|
7171 |
|
7172 |
-
#: ../legacy-core.php:
|
7173 |
-
msgid "
|
7174 |
-
msgstr "
|
7175 |
|
7176 |
-
#: ../legacy-core.php:
|
7177 |
-
msgid ""
|
7178 |
-
"
|
7179 |
-
"Please <a href='https://wordpress.org/support/plugin/wp-google-maps/"
|
7180 |
-
"reviews/'>rate us on WordPress.org</a>"
|
7181 |
-
msgstr ""
|
7182 |
|
7183 |
-
#: ../legacy-core.php:
|
7184 |
-
|
7185 |
-
|
7186 |
-
msgid "WP Google Maps is a product of <img src='"
|
7187 |
-
msgstr "WP Google Maps Error log"
|
7188 |
|
7189 |
-
#: ../legacy-core.php:
|
7190 |
-
msgid ""
|
7191 |
-
|
7192 |
-
"target='_blank'>Privacy Policy</a> for information on Data Processing"
|
7193 |
-
msgstr ""
|
7194 |
|
7195 |
-
#: ../legacy-core.php:
|
7196 |
msgid "Edit Marker Location"
|
7197 |
msgstr "Промяна маркер локация"
|
7198 |
|
7199 |
-
#: ../legacy-core.php:
|
7200 |
msgid "Marker Latitude"
|
7201 |
msgstr "Маркер Latitude"
|
7202 |
|
7203 |
-
#: ../legacy-core.php:
|
7204 |
msgid "Marker Longitude"
|
7205 |
msgstr "Маркер Longitude"
|
7206 |
|
7207 |
-
#: ../legacy-core.php:
|
7208 |
msgid "Save Marker Location"
|
7209 |
msgstr "Запиши маркер позиция"
|
7210 |
|
7211 |
-
#: ../legacy-core.php:
|
7212 |
msgid ""
|
7213 |
"Tip: Use your mouse to change the location of the marker. Simply click and "
|
7214 |
"drag it to your desired location."
|
@@ -7216,7 +7642,11 @@ msgstr ""
|
|
7216 |
"Съвет: Използвай твоята мишла за да смениш позицията на маркера. Просто "
|
7217 |
"кликни и извлачи до желаната позиция."
|
7218 |
|
7219 |
-
#: ../legacy-core.php:
|
|
|
|
|
|
|
|
|
7220 |
msgid ""
|
7221 |
"This is normally caused by a conflict with another plugin or a JavaScript "
|
7222 |
"error that is preventing our plugin's Javascript from executing. Please try "
|
@@ -7230,29 +7660,29 @@ msgstr ""
|
|
7230 |
"остава \n"
|
7231 |
"свържи се с nick@wpgmaps.com за съпорт.\""
|
7232 |
|
7233 |
-
#: ../legacy-core.php:
|
7234 |
-
msgid "View this link"
|
7235 |
-
msgstr "Виж този линк"
|
7236 |
-
|
7237 |
-
#: ../legacy-core.php:4726
|
7238 |
-
msgid "Edit this marker"
|
7239 |
-
msgstr "Промени този маркер"
|
7240 |
-
|
7241 |
-
#: ../legacy-core.php:4933
|
7242 |
msgid ""
|
7243 |
"The plugin directory does not have 'write' permissions. Please enable "
|
7244 |
"'write' permissions (755) for "
|
7245 |
msgstr "Плъгин директорията няма 'write' права. Включи 'write' права (755) за "
|
7246 |
|
7247 |
-
#: ../legacy-core.php:
|
7248 |
msgid "in order for this plugin to work! Please see "
|
7249 |
msgstr "за да работи този плъгин! Моля, виж"
|
7250 |
|
7251 |
-
#: ../legacy-core.php:
|
|
|
|
|
|
|
|
|
7252 |
msgid "for help on how to do it."
|
7253 |
msgstr "за помощ как се прави."
|
7254 |
|
7255 |
-
#: ../legacy-core.php:
|
|
|
|
|
|
|
|
|
7256 |
msgid ""
|
7257 |
"WP Google Maps does not have write permission to the marker location "
|
7258 |
"directory. This is required to store marker data. Please CHMOD the folder "
|
@@ -7260,7 +7690,7 @@ msgstr ""
|
|
7260 |
"WP Google Maps няма права на запис за локации на маркерите директория. Това "
|
7261 |
"е задължително за да запази маркер данните. Моля CHMOD директория"
|
7262 |
|
7263 |
-
#: ../legacy-core.php:
|
7264 |
msgid ""
|
7265 |
" to 755 or 777, or change the directory in the Maps->Settings page. (Current "
|
7266 |
"file permissions are "
|
@@ -7268,155 +7698,74 @@ msgstr ""
|
|
7268 |
"на 755 или 777, или смени директорията в Карти->Настройки страница. "
|
7269 |
"(Сегашните файл премишънии са"
|
7270 |
|
7271 |
-
#: ../legacy-core.php:
|
7272 |
msgid "United States of America"
|
7273 |
msgstr ""
|
7274 |
|
7275 |
-
#: ../legacy-core.php:
|
7276 |
#, fuzzy
|
7277 |
msgid "View the instruction video"
|
7278 |
msgstr "Скрий линка упътвания"
|
7279 |
|
7280 |
-
#: ../legacy-core.php:
|
7281 |
#, fuzzy
|
7282 |
msgid "Read the documentation"
|
7283 |
msgstr "Трябва ти помощ? Прочети документацията."
|
7284 |
|
7285 |
-
#: ../legacy-core.php:
|
7286 |
msgid "Important Notification"
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: ../legacy-core.php:
|
7290 |
msgid "You can read more about that here."
|
7291 |
msgstr ""
|
7292 |
|
7293 |
-
#: ../legacy-core.php:
|
7294 |
msgid "*ALL* Google Maps now require an API key to function."
|
7295 |
msgstr ""
|
7296 |
|
7297 |
-
#: ../legacy-core.php:
|
7298 |
msgid "Before creating a map please follow these steps:"
|
7299 |
msgstr ""
|
7300 |
|
7301 |
-
#: ../legacy-core.php:
|
7302 |
msgid "Create an API key now"
|
7303 |
msgstr ""
|
7304 |
|
7305 |
-
#: ../legacy-core.php:
|
7306 |
msgid "Paste your API key here and press save:"
|
7307 |
msgstr ""
|
7308 |
|
7309 |
-
#: ../legacy-core.php:
|
7310 |
#, fuzzy
|
7311 |
msgid "paste your Google Maps JavaScript API Key here"
|
7312 |
msgstr "Google API Key (задължително)"
|
7313 |
|
7314 |
-
#: ../legacy-core.php:
|
7315 |
msgid ""
|
7316 |
"<strong>Alternatively, please switch to the OpenLayers map engine</strong> "
|
7317 |
"on the maps settings page"
|
7318 |
msgstr ""
|
7319 |
|
7320 |
-
#: ../legacy-core.php:
|
7321 |
#, php-format
|
7322 |
msgid "Need help? %s or %s."
|
7323 |
msgstr ""
|
7324 |
|
7325 |
-
#: ../legacy-core.php:
|
7326 |
#, php-format
|
7327 |
msgid ""
|
7328 |
"One or more markers have been added or changed, please <a href='%s' "
|
7329 |
"class='button'>clear your cache.</a>"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
-
#: ../legacy-core.php:
|
7333 |
#, php-format
|
7334 |
msgid ""
|
7335 |
"We have detected that you are using %s on your website. Please <a href='%s' "
|
7336 |
"class='button'>clear your cache</a> to ensure that your map is updated."
|
7337 |
msgstr ""
|
7338 |
|
7339 |
-
#: ../legacy-core.php:5640
|
7340 |
-
#, fuzzy
|
7341 |
-
#| msgid "Add Marker"
|
7342 |
-
msgid "Add circle"
|
7343 |
-
msgstr "Добави маркер"
|
7344 |
-
|
7345 |
-
#: ../legacy-core.php:5683 ../legacy-core.php:5807
|
7346 |
-
msgid ""
|
7347 |
-
"Please note your circle may be too small to be visible at this zoom level"
|
7348 |
-
msgstr ""
|
7349 |
-
|
7350 |
-
#: ../legacy-core.php:5692
|
7351 |
-
#, fuzzy
|
7352 |
-
#| msgid "Click on the map to insert a vertex."
|
7353 |
-
msgid "Click on the map to insert a circle."
|
7354 |
-
msgstr "Кликни на картата за да въведеш връх."
|
7355 |
-
|
7356 |
-
#: ../legacy-core.php:5693 ../legacy-core.php:5816
|
7357 |
-
#, fuzzy
|
7358 |
-
#| msgid "Click on a vertex to remove it."
|
7359 |
-
msgid "Click or drag the circle to move it."
|
7360 |
-
msgstr "Кликни на връх за да премахнеш."
|
7361 |
-
|
7362 |
-
#: ../legacy-core.php:5698 ../legacy-core.php:5821
|
7363 |
-
#, fuzzy
|
7364 |
-
#| msgid "Save Marker"
|
7365 |
-
msgid "Save Circle"
|
7366 |
-
msgstr "Запиши маркер"
|
7367 |
-
|
7368 |
-
#: ../legacy-core.php:5732
|
7369 |
-
msgid "Invalid circle ID"
|
7370 |
-
msgstr ""
|
7371 |
-
|
7372 |
-
#: ../legacy-core.php:5746
|
7373 |
-
msgid "Edit circle"
|
7374 |
-
msgstr ""
|
7375 |
-
|
7376 |
-
#: ../legacy-core.php:5894
|
7377 |
-
msgid "Add rectangle"
|
7378 |
-
msgstr ""
|
7379 |
-
|
7380 |
-
#: ../legacy-core.php:5931
|
7381 |
-
#, fuzzy
|
7382 |
-
#| msgid "Click on the map to insert a vertex."
|
7383 |
-
msgid "Click on the map to insert a rectangle."
|
7384 |
-
msgstr "Кликни на картата за да въведеш връх."
|
7385 |
-
|
7386 |
-
#: ../legacy-core.php:5932 ../legacy-core.php:6039
|
7387 |
-
#, fuzzy
|
7388 |
-
#| msgid "Click on a vertex to remove it."
|
7389 |
-
msgid "Click or drag the rectangle to move it."
|
7390 |
-
msgstr "Кликни на връх за да премахнеш."
|
7391 |
-
|
7392 |
-
#: ../legacy-core.php:5937 ../legacy-core.php:6044
|
7393 |
-
#, fuzzy
|
7394 |
-
#| msgid "Save Settings"
|
7395 |
-
msgid "Save rectangle"
|
7396 |
-
msgstr "Запиши настройките"
|
7397 |
-
|
7398 |
-
#: ../legacy-core.php:5969
|
7399 |
-
msgid "Invalid rectangle ID"
|
7400 |
-
msgstr ""
|
7401 |
-
|
7402 |
-
#: ../legacy-core.php:5988
|
7403 |
-
msgid "Edit rectangle"
|
7404 |
-
msgstr ""
|
7405 |
-
|
7406 |
-
#: ../legacy-core.php:6022
|
7407 |
-
#, fuzzy
|
7408 |
-
#| msgid "Show distance in"
|
7409 |
-
msgid "Show Rectangle"
|
7410 |
-
msgstr "Покажи разстояния в"
|
7411 |
-
|
7412 |
-
#: ../legacy-core.php:6287
|
7413 |
-
#, php-format
|
7414 |
-
msgid ""
|
7415 |
-
"Please ensure you <a href=\"%s\">enter a Google Maps API key</a> to continue "
|
7416 |
-
"using Google Maps. Alternatively, swap over to Open Layers by clicking <a id="
|
7417 |
-
"\"wpgm-swap-to-open-layers\" href=\"%s\">here</a>."
|
7418 |
-
msgstr ""
|
7419 |
-
|
7420 |
#: ../lib/codecabin/deactivate-feedback-form.php:36
|
7421 |
#, fuzzy
|
7422 |
#| msgid "Feedback"
|
@@ -7481,20 +7830,394 @@ msgstr ""
|
|
7481 |
msgid "It's a temporary deactivation, I'm troubleshooting"
|
7482 |
msgstr ""
|
7483 |
|
7484 |
-
#: ../wpGoogleMaps.php:
|
|
|
7485 |
msgid ""
|
7486 |
-
"
|
7487 |
-
"
|
7488 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: ../wpGoogleMaps.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
7492 |
msgid ""
|
7493 |
"The plugin failed to load due to a fatal error. This is usually due to "
|
7494 |
"missing files, or incompatible software. Please re-install the plugin. We "
|
7495 |
"recommend you use PHP 5.6 or above. Technical details are as follows: "
|
7496 |
msgstr ""
|
7497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7498 |
#, fuzzy
|
7499 |
#~ msgid "Enable Location Tracking"
|
7500 |
#~ msgstr "Включи намирач на магазини"
|
@@ -7608,9 +8331,6 @@ msgstr ""
|
|
7608 |
#~ "Нещо не е ок? Вероятно нещо от по долу информацията може да даде човек "
|
7609 |
#~ "какво не е наред грешно. Ако ли не пиши на nick@wpgmaps.com за помощ!"
|
7610 |
|
7611 |
-
#~ msgid "Resize Images with Timthumb"
|
7612 |
-
#~ msgstr "Рисайз картинки с Timthumb"
|
7613 |
-
|
7614 |
#, fuzzy
|
7615 |
#~ msgid "Google Maps API Key (optional)"
|
7616 |
#~ msgstr "Google API Key (задължително)"
|
@@ -7618,9 +8338,6 @@ msgstr ""
|
|
7618 |
#~ msgid "Image Thumbnails"
|
7619 |
#~ msgstr "Снимки умалени"
|
7620 |
|
7621 |
-
#~ msgid "Do not use TimThumb"
|
7622 |
-
#~ msgstr "Не ползвай TimThumb"
|
7623 |
-
|
7624 |
#~ msgid ""
|
7625 |
#~ "(Timthumb support will be discontinued in the next pro version release. "
|
7626 |
#~ "Please check this box and make the necessary changes to your images using "
|
@@ -7700,24 +8417,9 @@ msgstr ""
|
|
7700 |
#~ msgid "Could not save XML file"
|
7701 |
#~ msgstr "Не може да запише XML file"
|
7702 |
|
7703 |
-
#~ msgid "Thank you for your feedback!"
|
7704 |
-
#~ msgstr "Благодаря за фийдбека!"
|
7705 |
-
|
7706 |
#~ msgid "There was a problem deleting the map."
|
7707 |
#~ msgstr "Имаше проблем с изтриването на тази карта."
|
7708 |
|
7709 |
-
#~ msgid ""
|
7710 |
-
#~ "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
7711 |
-
#~ "professional-version/?"
|
7712 |
-
#~ "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
7713 |
-
#~ "version for only $39.99 once off</a>. Support and updates included "
|
7714 |
-
#~ "forever."
|
7715 |
-
#~ msgstr ""
|
7716 |
-
#~ "Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
7717 |
-
#~ "professional-version/"
|
7718 |
-
#~ "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro "
|
7719 |
-
#~ "версия for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
7720 |
-
|
7721 |
#~ msgid ""
|
7722 |
#~ "There are too many markers to make use of the live edit function. The "
|
7723 |
#~ "maximum amount for this functionality is 5000 markers. Anything more than "
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpgmaps\n"
|
4 |
+
"POT-Creation-Date: 2022-03-02 12:20+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-03-02 12:20+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: \n"
|
8 |
"Language: en\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.0.4\n"
|
13 |
"X-Poedit-Basepath: .\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
|
45 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:27
|
46 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:79
|
47 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:139
|
48 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:181
|
49 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:244
|
50 |
#: ../../wp-google-maps-gold/legacy-core.php:1489
|
51 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1747
|
52 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2188
|
53 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2202
|
54 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2442
|
55 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2483
|
|
|
|
|
|
|
56 |
#: ../../wp-google-maps-pro/includes/page.categories.php:37
|
57 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:357
|
58 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:375
|
59 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:384
|
60 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:393
|
61 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:403
|
62 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:412
|
63 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1025
|
64 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1099
|
65 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1118
|
66 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1137
|
67 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1156
|
68 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1177
|
69 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1883
|
70 |
+
#: ../html/map-edit-page/marker-panel.html.php:165
|
71 |
+
#: ../html/map-edit-page/marker-panel.html.php:180
|
72 |
+
#: ../includes/class.strings.php:81
|
73 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1208
|
74 |
+
#: ../legacy-core.php:932
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
msgid "Yes"
|
76 |
msgstr "Да"
|
77 |
|
79 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:28
|
80 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:80
|
81 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:140
|
82 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:182
|
83 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:245
|
84 |
#: ../../wp-google-maps-gold/legacy-core.php:1490
|
85 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1748
|
86 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2188
|
87 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2202
|
88 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2442
|
89 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2483
|
90 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:66
|
|
|
|
|
|
|
91 |
#: ../../wp-google-maps-pro/includes/page.categories.php:37
|
92 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:358
|
93 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:376
|
94 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:385
|
95 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:394
|
96 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:402
|
97 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:411
|
98 |
+
#: ../html/map-edit-page/map-edit-page.html.php:260
|
99 |
+
#: ../html/map-edit-page/map-edit-page.html.php:270
|
100 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1026
|
101 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1100
|
102 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1119
|
103 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1138
|
104 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1157
|
105 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1178
|
106 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1884
|
107 |
+
#: ../html/map-edit-page/marker-panel.html.php:160
|
108 |
+
#: ../html/map-edit-page/marker-panel.html.php:185
|
109 |
+
#: ../includes/class.strings.php:82
|
110 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1208
|
111 |
+
#: ../legacy-core.php:932
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
msgid "No"
|
113 |
msgstr "Не"
|
114 |
|
127 |
msgstr ""
|
128 |
|
129 |
#: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:64
|
130 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:135
|
131 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:286
|
132 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:355
|
133 |
+
#: ../html/map-edit-page/circle-panel.html.php:51
|
134 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:34
|
135 |
+
#: ../html/map-edit-page/polygon-panel.html.php:54
|
136 |
+
#: ../html/map-edit-page/polyline-panel.html.php:54
|
137 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:47
|
138 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:93
|
139 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:180
|
140 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:491
|
141 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:627
|
142 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:725
|
143 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1007
|
144 |
+
#: ../includes/legacy/functions.circle.php:50
|
145 |
+
#: ../includes/legacy/functions.circle.php:158
|
146 |
+
#: ../includes/legacy/functions.circle.php:291
|
147 |
+
#: ../includes/legacy/functions.rectangle.php:50
|
148 |
+
#: ../includes/legacy/functions.rectangle.php:146
|
149 |
+
#: ../includes/legacy/functions.rectangle.php:260
|
150 |
+
#: ../includes/tables/class.circle-datatable.php:21
|
151 |
+
#: ../includes/tables/class.heatmap-datatable.php:21
|
152 |
+
#: ../includes/tables/class.polygon-datatable.php:21
|
153 |
+
#: ../includes/tables/class.polyline-datatable.php:21
|
154 |
+
#: ../includes/tables/class.rectangle-datatable.php:21
|
155 |
msgid "Name"
|
156 |
msgstr "Име"
|
157 |
|
171 |
msgid "Approved"
|
172 |
msgstr ""
|
173 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:5
|
175 |
#: ../../wp-google-maps-gold/includes/class.marker-rating.php:207
|
176 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:5
|
177 |
#, fuzzy
|
178 |
#| msgid "Marker Listing"
|
179 |
msgid "Marker Ratings"
|
180 |
msgstr "Списък маркери"
|
181 |
|
182 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:12
|
183 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:12
|
184 |
msgid "Minimum Rating"
|
185 |
msgstr ""
|
186 |
|
187 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:21
|
188 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:21
|
189 |
msgid "Maximum Rating"
|
190 |
msgstr ""
|
191 |
|
192 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:30
|
193 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:30
|
194 |
msgid ""
|
195 |
"Please note that changing these settings will not scale ratings which have "
|
196 |
"already been recorded."
|
197 |
msgstr ""
|
198 |
|
199 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:34
|
200 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:34
|
201 |
msgid ""
|
202 |
"We recommend that you do not modify the maximum and minimum settings after "
|
203 |
"you begin accepting ratings."
|
204 |
msgstr ""
|
205 |
|
206 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:41
|
207 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:41
|
208 |
#, fuzzy
|
209 |
#| msgid "Carousel settings"
|
210 |
msgid "Example range settings:"
|
211 |
msgstr "Настройка въртележка"
|
212 |
|
213 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:46
|
214 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:46
|
215 |
msgid "1 - 5 :- Traditional One to Five Stars"
|
216 |
msgstr ""
|
217 |
|
218 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:51
|
219 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:51
|
220 |
msgid "0 - 100 :- Percentage Rating"
|
221 |
msgstr ""
|
222 |
|
223 |
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:56
|
224 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:56
|
225 |
msgid "0 - 1 :- Like / Dislike, or Upvote / Downvote"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:71
|
229 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:68
|
230 |
msgid "Rating Step"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:80
|
234 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:77
|
235 |
msgid "The \"Stars\" widget style does not currently support \"Step\""
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:88
|
239 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:84
|
240 |
#, fuzzy
|
241 |
#| msgid "Save Style Settings"
|
242 |
msgid "Example step settings:"
|
243 |
msgstr "Запиши настройки на стил"
|
244 |
|
245 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:93
|
246 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:89
|
247 |
msgid "0.01 :- Allow decimal / floating point ratings"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:98
|
251 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:94
|
252 |
msgid "1 :- Whole number ratings only"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:103
|
256 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:99
|
257 |
msgid "5 :- Round to nearest five (eg for percentage ratings)"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:115
|
261 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:110
|
262 |
msgid "Widget Style"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:137
|
266 |
msgid "Bar rating gradient colours:"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:145
|
270 |
msgid "Start -"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:151
|
274 |
msgid "End -"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:177
|
278 |
msgid "Background color:"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:190
|
282 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:157
|
283 |
msgid "Tampering Countermeasures"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:199
|
287 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:165
|
288 |
#, fuzzy
|
289 |
#| msgid "Basic list"
|
290 |
msgid "Basic Only"
|
291 |
msgstr "Основен списък"
|
292 |
|
293 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:204
|
294 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:170
|
295 |
msgid ""
|
296 |
"Uses basic client side countermeasures. This is easily circumvented by "
|
297 |
"anyone with technical knowledge, and is vulnerable to bots."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:208
|
301 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:174
|
302 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:194
|
303 |
msgid ""
|
304 |
"This method is not reliable for preventing tampering, and is not recommended "
|
305 |
"for use cases where reliability is imperative."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:219
|
309 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:205
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Require Account"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:224
|
314 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:210
|
315 |
msgid ""
|
316 |
"This method uses the same countermeasures as Basic Only, however it does "
|
317 |
"require that in order to leave a rating, the user must be logged in."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:228
|
321 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:214
|
322 |
msgid ""
|
323 |
"This method requires login and associates ratings with a users account. You "
|
324 |
"can compliment this by using security methods (eg 3rd party plugins) to "
|
326 |
msgstr ""
|
327 |
|
328 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:2
|
329 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2183
|
330 |
#, fuzzy
|
331 |
msgid "Near-Vicinity Marker Control Settings"
|
332 |
msgstr "Посетителски настройки за генерирани маркери"
|
341 |
msgstr ""
|
342 |
|
343 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:14
|
344 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2186
|
345 |
msgid "Enable Near-Vicinity Marker Control"
|
346 |
msgstr ""
|
347 |
|
348 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:36
|
349 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2193
|
350 |
msgid "Near-Vicinity Affected Radius"
|
351 |
msgstr ""
|
352 |
|
371 |
msgstr "Категория маркер"
|
372 |
|
373 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:100
|
374 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:211
|
375 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2228
|
376 |
msgid "Near-Vicinity Shape"
|
377 |
msgstr ""
|
378 |
|
379 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:106
|
380 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:225
|
381 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2230
|
382 |
msgid "Circle"
|
383 |
msgstr ""
|
384 |
|
385 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:109
|
386 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:224
|
387 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2230
|
388 |
msgid "Spiral"
|
389 |
msgstr ""
|
390 |
|
397 |
msgstr ""
|
398 |
|
399 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:118
|
400 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1634
|
|
|
|
|
401 |
msgid "Grid"
|
402 |
msgstr ""
|
403 |
|
414 |
msgstr "Анимация"
|
415 |
|
416 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:160
|
417 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:202
|
418 |
msgid "Seconds"
|
419 |
msgstr ""
|
420 |
|
421 |
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:169
|
422 |
#, fuzzy
|
423 |
#| msgid "Animation"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
msgid "Stagger Animation"
|
425 |
msgstr "Анимация"
|
426 |
|
427 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:190
|
428 |
msgid "Stagger Interval"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:232
|
432 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2200
|
433 |
msgid "Near-Vicinity Hide Lines"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:252
|
437 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2207
|
438 |
#, fuzzy
|
439 |
#| msgid "On Hover Line Color"
|
440 |
msgid "Near-Vicinity Line Color"
|
441 |
msgstr "При ховър цвят на линията"
|
442 |
|
443 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:265
|
444 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2214
|
445 |
#, fuzzy
|
446 |
#| msgid "Line Opacity"
|
447 |
msgid "Near-Vicinity Line Opacity"
|
448 |
msgstr "Непрозрачност на линията"
|
449 |
|
450 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:276
|
451 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2216
|
452 |
msgid "Value between 0.1 and 1.0"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:282
|
456 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2221
|
457 |
#, fuzzy
|
458 |
#| msgid "Line Thickness"
|
459 |
msgid "Near-Vicinity Line Thinkness"
|
460 |
msgstr "Дебелина на линия"
|
461 |
|
462 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:292
|
463 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2223
|
464 |
msgid "Value between 1 and 50"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:299
|
468 |
+
#, fuzzy
|
469 |
+
#| msgid "Upload File"
|
470 |
+
msgid "Maximum group size"
|
471 |
+
msgstr "качи файл"
|
472 |
+
|
473 |
+
#: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:314
|
474 |
+
msgid ""
|
475 |
+
"We recommend using a group size no larger than the maximum number of "
|
476 |
+
"overlapping markers you anticipate, and that you do not use a higher number "
|
477 |
+
"than necessary. Setting this too high may result in unnecessarily increased "
|
478 |
+
"load times."
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
#: ../../wp-google-maps-gold/includes/class.add-on.php:90
|
482 |
msgid ""
|
483 |
"<strong>WP Google Maps Gold add-on:</strong> We did not detect a compatible "
|
494 |
"in order to use the Gold add-on."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: ../../wp-google-maps-gold/includes/class.live-tracker.php:37
|
498 |
msgid "Location Tracking"
|
499 |
msgstr ""
|
500 |
|
515 |
msgstr ""
|
516 |
|
517 |
#: ../../wp-google-maps-gold/legacy-core.php:66
|
|
|
518 |
#, fuzzy
|
519 |
msgid "settings"
|
520 |
msgstr "Настройки"
|
521 |
|
522 |
#: ../../wp-google-maps-gold/legacy-core.php:67
|
|
|
523 |
#, php-format
|
524 |
msgid ""
|
525 |
"Your Google Maps API key has been successfully saved. This API key can be "
|
528 |
|
529 |
#: ../../wp-google-maps-gold/legacy-core.php:568
|
530 |
#: ../../wp-google-maps-gold/legacy-core.php:707
|
|
|
531 |
msgid "Geocode was not successful for the following reason"
|
532 |
msgstr "Геокодирането не беше успешно по следната причина"
|
533 |
|
534 |
#: ../../wp-google-maps-gold/legacy-core.php:1059
|
535 |
#: ../../wp-google-maps-gold/legacy-core.php:1221
|
536 |
+
#: ../../wp-google-maps-pro/legacy-core.php:645
|
537 |
+
#: ../../wp-google-maps-pro/legacy-core.php:668
|
538 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1415
|
539 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2477
|
|
|
540 |
msgid "More details"
|
541 |
msgstr "Повече подробности"
|
542 |
|
545 |
msgstr "Допълнителни картови настройки"
|
546 |
|
547 |
#: ../../wp-google-maps-gold/legacy-core.php:1486
|
548 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1744
|
549 |
msgid "Enable Mass Marker Support"
|
550 |
msgstr "Включи Мулти маркерна подръжка"
|
551 |
|
552 |
#: ../../wp-google-maps-gold/legacy-core.php:1496
|
553 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:431
|
554 |
+
#: ../legacy-core.php:1633
|
555 |
#, fuzzy
|
556 |
msgid "Save"
|
557 |
msgstr "Запиши карта"
|
558 |
|
559 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1576
|
560 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1756
|
561 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1222
|
562 |
msgid ""
|
563 |
"An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
|
564 |
"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
566 |
"Неочаквана грешка възникна по време на API заявката.</p> <p><a href=\"?\" "
|
567 |
"onclick=\"document.location.reload(); return false;\">Опитай пак</a>"
|
568 |
|
569 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1581
|
570 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1763
|
571 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1227
|
572 |
msgid "An unknown error occurred"
|
573 |
msgstr "Възникна неочаквана грешка"
|
574 |
|
575 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1644
|
576 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1947
|
577 |
msgid "Your settings have been saved."
|
578 |
msgstr "Твоите настройки бяха запазени."
|
579 |
|
580 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1719
|
581 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2368
|
582 |
#, fuzzy
|
583 |
msgid "Marker Clustering"
|
584 |
msgstr "Списък маркери"
|
585 |
|
586 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1750
|
587 |
+
#: ../html/map-edit-page/map-edit-page.html.php:73
|
588 |
+
#: ../html/settings-page.html.php:39
|
|
|
|
|
589 |
msgid "Advanced Settings"
|
590 |
msgstr "Допълнителни настройки"
|
591 |
|
592 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1780
|
593 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1783
|
594 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1786
|
595 |
msgid "Real Time Location Tracking"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1791
|
599 |
msgid ""
|
600 |
"Track your location via our app and plot your current location on a map, "
|
601 |
"publicly or privately."
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1800
|
605 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:46
|
606 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:222
|
607 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:262
|
608 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:306
|
609 |
#, fuzzy
|
610 |
msgid "Create Map"
|
611 |
msgstr "Създавай твоя карта"
|
612 |
|
613 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1845
|
614 |
#, php-format
|
615 |
msgid "Location as at %1$s"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1927
|
619 |
msgid "Successfully accepted the device. Thank you"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1968
|
623 |
msgid "Device has been removed. Thank you"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: ../../wp-google-maps-gold/legacy-core.php:1989
|
627 |
#, fuzzy
|
628 |
msgid "Marker Data Cleared."
|
629 |
msgstr "Marker данни локация"
|
630 |
|
631 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2026
|
632 |
msgid "A new device needs your approval to enable real time location tracking."
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2027
|
636 |
msgid "Device ID:"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2028
|
640 |
#, php-format
|
641 |
msgid "To accept this device, Please follow this link: %1$s"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2034
|
645 |
msgid "To reject the device, simply ignore this email."
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2035
|
649 |
msgid ""
|
650 |
"A new device needs your approval to enable real time location tracking - WP "
|
651 |
"Google Maps"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2164
|
655 |
msgid "No devices"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2195
|
659 |
msgid "Meters (This is an approximate value)"
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2432
|
663 |
#, fuzzy
|
664 |
#| msgid "Marker Listing Settings"
|
665 |
msgid "Marker Clustering - Advanced Settings"
|
666 |
msgstr "настройки по маркерите списък"
|
667 |
|
668 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2433
|
669 |
msgid "Changing these settings is only suggested for experienced users."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2438
|
673 |
#, fuzzy
|
674 |
#| msgid "Enable Advanced Styling"
|
675 |
msgid "Enable Advanced Options"
|
676 |
msgstr "Включи допълнителен стил"
|
677 |
|
678 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2449
|
679 |
#, fuzzy
|
680 |
#| msgid "show options"
|
681 |
msgid "Options"
|
682 |
msgstr "покажи опции"
|
683 |
|
684 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2454
|
685 |
msgid "Grid Size"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2459
|
689 |
#, fuzzy
|
690 |
#| msgid "Maximum Zoom Level"
|
691 |
msgid "Max Zoom"
|
692 |
msgstr "Максимален зум нивоl"
|
693 |
|
694 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2464
|
695 |
msgid "Minimum Cluster Size"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2469
|
699 |
#, fuzzy
|
700 |
msgid "Cluster Font Color"
|
701 |
msgstr "Цвят на линк"
|
702 |
|
703 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2474
|
704 |
msgid "Cluster Font Size"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2479
|
708 |
msgid "Zoom On Click"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2490
|
712 |
msgid "Cluster Icons"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2497
|
716 |
msgid "Level 1"
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2498
|
720 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2507
|
721 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2516
|
722 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2525
|
723 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2534
|
724 |
msgid "Change"
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2498
|
728 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2507
|
729 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2516
|
730 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2525
|
731 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2534
|
732 |
+
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:31
|
733 |
#: ../../wp-google-maps-pro/includes/custom-fields/class.custom-field-filter-widget.php:128
|
|
|
734 |
msgid "Reset"
|
735 |
msgstr "Ресет"
|
736 |
|
737 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2501
|
738 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2510
|
739 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2519
|
740 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2528
|
741 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2537
|
742 |
+
#: ../html/map-edit-page/map-edit-page.html.php:188
|
743 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1332
|
744 |
+
#: ../includes/tables/class.admin-map-datatable.php:35
|
745 |
msgid "Width"
|
746 |
msgstr "Широчина"
|
747 |
|
748 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2501
|
749 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2510
|
750 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2519
|
751 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2528
|
752 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2537
|
753 |
+
#: ../html/map-edit-page/map-edit-page.html.php:211
|
754 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1333
|
755 |
+
#: ../includes/tables/class.admin-map-datatable.php:36
|
756 |
msgid "Height"
|
757 |
msgstr "Височина"
|
758 |
|
759 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2506
|
760 |
msgid "Level 2"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2515
|
764 |
msgid "Level 3"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2524
|
768 |
msgid "Level 4"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: ../../wp-google-maps-gold/legacy-core.php:2533
|
772 |
msgid "Level 5"
|
773 |
msgstr ""
|
774 |
|
818 |
msgstr "Зачислен до"
|
819 |
|
820 |
#: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:97
|
821 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:373
|
822 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:160
|
823 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:329
|
|
|
824 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:71
|
825 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:111
|
826 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:256
|
827 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:286
|
828 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23186
|
829 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23226
|
830 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23371
|
831 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23401
|
832 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
833 |
+
#: ../html/map-edit-page/map-edit-page.html.php:637
|
834 |
+
#: ../html/map-edit-page/map-edit-page.html.php:907
|
835 |
+
#: ../html/map-edit-page/marker-panel.html.php:139
|
836 |
+
#: ../html/settings-page.html.php:274
|
|
|
|
|
837 |
msgid "None"
|
838 |
msgstr "без"
|
839 |
|
852 |
msgstr ""
|
853 |
|
854 |
#: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:119
|
855 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:68
|
856 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:60
|
857 |
#, fuzzy
|
858 |
msgid "Upload"
|
877 |
msgid "map here"
|
878 |
msgstr "тук"
|
879 |
|
880 |
+
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:397
|
881 |
msgid ""
|
882 |
"<strong>WP Google Maps Gold Add-on:</strong> You are running PHP version 5.2 "
|
883 |
"or below, which is no longer supported by WP Google Maps and WP Google Maps "
|
885 |
"host if you are unsure how to switch PHP versions."
|
886 |
msgstr ""
|
887 |
|
888 |
+
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:410
|
889 |
msgid ""
|
890 |
"<strong>WP Google Maps Gold Add-on:</strong> This add-on requires WP Google "
|
891 |
"Maps 7.0 or above. Please update WP Google Maps to use the Gold add-on. You "
|
893 |
"and clicking \"Check Again\"."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: ../../wp-google-maps-gold/wp-google-maps-gold.php:438 ../legacy-core.php:37
|
897 |
+
#: ../wpGoogleMaps.php:1589
|
898 |
msgid ""
|
899 |
"<strong>WP Google Maps:</strong> This plugin requires the WordPress REST "
|
900 |
"API, which does not appear to be present on this installation. Please update "
|
901 |
"WordPress to version 4.7 or above."
|
902 |
msgstr ""
|
903 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
904 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:3
|
905 |
#, fuzzy
|
906 |
#| msgid "Add Marker"
|
921 |
msgstr ""
|
922 |
|
923 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:29
|
924 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:232
|
925 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:190
|
926 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:325
|
927 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:460
|
928 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:485
|
929 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:140
|
930 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:168
|
931 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:226
|
932 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:141
|
933 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:133
|
934 |
+
#: ../base/classes/widget_module.class.php:69
|
935 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1679
|
936 |
+
#: ../html/map-edit-page/marker-panel.html.php:56
|
937 |
+
#: ../html/map-edit-page/marker-panel.html.php:59
|
938 |
+
#: ../html/map-edit-page/polygon-panel.html.php:63
|
939 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:96
|
940 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:183
|
941 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1331
|
942 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1506
|
943 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1525
|
944 |
+
#: ../includes/tables/class.admin-map-datatable.php:34
|
945 |
#: ../includes/tables/class.admin-marker-datatable.php:36
|
946 |
+
#: ../includes/tables/class.marker-datatable.php:20 ../legacy-core.php:1129
|
|
|
|
|
947 |
msgid "Title"
|
948 |
msgstr "Заглавие"
|
949 |
|
950 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:32
|
951 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:139
|
952 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1684
|
953 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1508
|
954 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1527
|
955 |
#: ../includes/tables/class.admin-marker-datatable.php:38
|
956 |
+
#: ../includes/tables/class.marker-datatable.php:22 ../legacy-core.php:1130
|
|
|
957 |
msgid "Address"
|
958 |
msgstr "Адрес"
|
959 |
|
960 |
#: ../../wp-google-maps-pro/html/add-map-dialog.html.php:35
|
961 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:16
|
962 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:291
|
963 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:803
|
964 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1505
|
965 |
#: ../includes/tables/class.admin-marker-datatable.php:35
|
966 |
+
#: ../legacy-core.php:1127
|
967 |
msgid "Icon"
|
968 |
msgstr "Икона"
|
969 |
|
973 |
msgid "Leave blank for the default"
|
974 |
msgstr "Остави празно за без ограничения."
|
975 |
|
976 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:6
|
977 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:229
|
978 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:187
|
979 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:281
|
980 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:324
|
981 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:459
|
982 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:484
|
983 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:139
|
984 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:225
|
985 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:140
|
986 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:801
|
987 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:471
|
988 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:484
|
989 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1674
|
990 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:490
|
991 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1006
|
992 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1330
|
993 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1504
|
994 |
+
#: ../includes/legacy/functions.circle.php:290
|
995 |
+
#: ../includes/legacy/functions.rectangle.php:259
|
996 |
+
#: ../includes/tables/class.admin-map-datatable.php:33
|
997 |
+
#: ../includes/tables/class.admin-marker-datatable.php:34
|
998 |
+
#: ../includes/tables/class.circle-datatable.php:20
|
999 |
+
#: ../includes/tables/class.heatmap-datatable.php:20
|
1000 |
+
#: ../includes/tables/class.polygon-datatable.php:20
|
1001 |
+
#: ../includes/tables/class.polyline-datatable.php:20
|
1002 |
+
#: ../includes/tables/class.rectangle-datatable.php:20 ../legacy-core.php:1126
|
1003 |
+
#: ../legacy-core.php:1178
|
1004 |
+
msgid "ID"
|
1005 |
+
msgstr "ID"
|
1006 |
+
|
1007 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:11
|
1008 |
+
#: ../../wp-google-maps-pro/html/pro-store-locator.html.php:10
|
1009 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:136
|
1010 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:802
|
1011 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1694
|
1012 |
+
#: ../html/map-edit-page/marker-panel.html.php:129
|
1013 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1507
|
1014 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1526
|
1015 |
+
#: ../includes/tables/class.admin-marker-datatable.php:37
|
1016 |
+
#: ../includes/tables/class.marker-datatable.php:21
|
1017 |
+
msgid "Category"
|
1018 |
+
msgstr "Категория"
|
1019 |
+
|
1020 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:21
|
1021 |
+
#, fuzzy
|
1022 |
+
#| msgid "Linked maps"
|
1023 |
+
msgid "Linked Maps"
|
1024 |
+
msgstr "Линкнати карти"
|
1025 |
+
|
1026 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:26
|
1027 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:182
|
1028 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:365
|
1029 |
+
msgid "Priority"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:46
|
1033 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:197
|
1034 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:146
|
1035 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:533
|
1036 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:680
|
1037 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:673
|
1038 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:301
|
1039 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:395
|
1040 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:292
|
1041 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:770
|
1042 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:823
|
1043 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:496
|
1044 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:509
|
1045 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:520
|
1046 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1034
|
1047 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1353
|
1048 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1357
|
1049 |
+
#: ../includes/legacy/functions.circle.php:310
|
1050 |
+
#: ../includes/legacy/functions.rectangle.php:279
|
1051 |
+
#: ../includes/tables/class.admin-map-datatable.php:96
|
1052 |
+
#: ../includes/tables/class.admin-map-datatable.php:117
|
1053 |
+
msgid "Edit"
|
1054 |
+
msgstr "Промени"
|
1055 |
+
|
1056 |
+
#: ../../wp-google-maps-pro/html/category-table.html.php:52
|
1057 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:764
|
1058 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:811
|
1059 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1347
|
1060 |
+
#: ../includes/tables/class.admin-map-datatable.php:102
|
1061 |
+
msgid "Trash"
|
1062 |
+
msgstr "Боклук"
|
1063 |
+
|
1064 |
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:2
|
1065 |
#, fuzzy
|
1066 |
#| msgid "Directions"
|
1081 |
msgid "Enable Directions"
|
1082 |
msgstr "Включи упътвания?"
|
1083 |
|
1084 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:31
|
1085 |
#, fuzzy
|
1086 |
#| msgid "Directions Box Width"
|
1087 |
msgid "Directions Box Style"
|
1088 |
msgstr "Упътвания таб широчина"
|
1089 |
|
1090 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:42
|
1091 |
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:148
|
1092 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:50
|
1093 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1959
|
1094 |
+
#: ../html/theme-panel.html.php:14
|
|
|
|
|
|
|
1095 |
msgid "Default"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:50
|
1099 |
+
#: ../html/map-edit-page/map-edit-page.html.php:342
|
1100 |
+
#: ../html/map-edit-page/map-edit-page.html.php:463
|
1101 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1620
|
|
|
|
|
|
|
|
|
|
|
1102 |
msgid "Modern"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:60
|
1106 |
+
#: ../html/map-edit-page/map-edit-page.html.php:266
|
1107 |
msgid "Directions Box Open by Default?"
|
1108 |
msgstr "Упътвания включени по подразбиране?"
|
1109 |
|
1110 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:71
|
1111 |
+
#: ../html/map-edit-page/map-edit-page.html.php:271
|
1112 |
msgid "Yes, on the left"
|
1113 |
msgstr "Да, отляво"
|
1114 |
|
1115 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:76
|
1116 |
+
#: ../html/map-edit-page/map-edit-page.html.php:272
|
1117 |
msgid "Yes, on the right"
|
1118 |
msgstr "Да, отдясно"
|
1119 |
|
1120 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:81
|
1121 |
+
#: ../html/map-edit-page/map-edit-page.html.php:273
|
1122 |
msgid "Yes, above"
|
1123 |
msgstr "Да, отгоре"
|
1124 |
|
1125 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:86
|
1126 |
+
#: ../html/map-edit-page/map-edit-page.html.php:274
|
1127 |
msgid "Yes, below"
|
1128 |
msgstr "Да, отдолу"
|
1129 |
|
1130 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:95
|
1131 |
+
#: ../html/map-edit-page/map-edit-page.html.php:280
|
1132 |
msgid "Directions Box Width"
|
1133 |
msgstr "Упътвания таб широчина"
|
1134 |
|
1135 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:108
|
1136 |
msgid "%"
|
1137 |
msgstr "%"
|
1138 |
|
1139 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:113
|
1140 |
msgid "px"
|
1141 |
msgstr "px"
|
1142 |
|
1143 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:123
|
1144 |
msgid "Default 'To' address"
|
1145 |
msgstr "по подразбиране 'до' адрес"
|
1146 |
|
1147 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:132
|
1148 |
#, fuzzy
|
1149 |
#| msgid "Default 'To' address"
|
1150 |
msgid "Default 'From' address"
|
1151 |
msgstr "по подразбиране 'до' адрес"
|
1152 |
|
1153 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:141
|
1154 |
#, fuzzy
|
1155 |
#| msgid "Directions"
|
1156 |
msgid "Directions behaviour"
|
1162 |
msgid "Display directions on the page"
|
1163 |
msgstr "Упътвания таб широчина"
|
1164 |
|
1165 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:161
|
1166 |
msgid "External"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:166
|
1170 |
msgid "Open Google / Apple maps in a new tab"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:174
|
1174 |
#, fuzzy
|
1175 |
#| msgid "Satellite"
|
1176 |
msgid "Intelligent"
|
1177 |
msgstr "Сателит"
|
1178 |
|
1179 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:179
|
1180 |
msgid ""
|
1181 |
"Display directions on the page on desktop devices, open Google / Apple maps "
|
1182 |
"mobile app on mobile devices"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:187
|
1186 |
#, fuzzy
|
1187 |
#| msgid "WP Google Maps Support"
|
1188 |
msgid "Force Google Maps mobile app"
|
1189 |
msgstr "WP Google Maps Support"
|
1190 |
|
1191 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:192
|
1192 |
msgid "Force iOS devices to use the Google Maps mobile app for directions"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:204
|
1196 |
msgid "Origin icon picker"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:214
|
1200 |
#, fuzzy
|
1201 |
#| msgid "Retina Icon Width"
|
1202 |
msgid "Destination Icon Picker"
|
1203 |
msgstr "Retina Icon Широчина"
|
1204 |
|
1205 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:223
|
1206 |
#, fuzzy
|
1207 |
#| msgid "Directions"
|
1208 |
msgid "Directions route color"
|
1209 |
msgstr "Упътвания"
|
1210 |
|
1211 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:237
|
1212 |
#, fuzzy
|
1213 |
#| msgid "Directions Box Width"
|
1214 |
msgid "Directions route weight"
|
1215 |
msgstr "Упътвания таб широчина"
|
1216 |
|
1217 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:254
|
1218 |
#, fuzzy
|
1219 |
#| msgid "Directions Box Width"
|
1220 |
msgid "Directions route opacity"
|
1221 |
msgstr "Упътвания таб широчина"
|
1222 |
|
1223 |
+
#: ../../wp-google-maps-pro/html/directions-box-settings.html.php:272
|
1224 |
+
msgid "Fit map bounds to route"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:2
|
1228 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2481
|
1229 |
msgid "Get Directions"
|
1230 |
msgstr "Вземи упътвания"
|
1231 |
|
1296 |
msgstr "Отиди"
|
1297 |
|
1298 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:148
|
1299 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1143
|
1300 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1171
|
1301 |
msgid "Print directions"
|
1302 |
msgstr "Принт упътвания"
|
1303 |
|
1304 |
#: ../../wp-google-maps-pro/html/directions-box.html.php:156
|
1305 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1141
|
1306 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1169
|
1307 |
msgid "Reset directions"
|
1308 |
msgstr "Ресет упътвания"
|
1309 |
|
1333 |
|
1334 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:33
|
1335 |
#: ../html/google-maps-api-settings.html.php:14
|
1336 |
+
#: ../html/settings-page.html.php:445
|
1337 |
msgid "Where required"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:38
|
1341 |
#: ../html/google-maps-api-settings.html.php:19
|
1342 |
+
#: ../html/settings-page.html.php:450
|
1343 |
msgid "Always"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:43
|
1347 |
#: ../html/google-maps-api-settings.html.php:24
|
1348 |
+
#: ../html/settings-page.html.php:455
|
1349 |
msgid "Only Front End"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:48
|
1353 |
#: ../html/google-maps-api-settings.html.php:29
|
1354 |
+
#: ../html/settings-page.html.php:460
|
1355 |
msgid "Only Back End"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:53
|
1359 |
#: ../html/google-maps-api-settings.html.php:34
|
1360 |
+
#: ../html/settings-page.html.php:465
|
1361 |
msgid "Never"
|
1362 |
msgstr ""
|
1363 |
|
1371 |
#: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:72
|
1372 |
#: ../html/google-maps-api-settings.html.php:45
|
1373 |
#: ../html/google-maps-api-settings.html.php:53
|
1374 |
+
#: ../html/settings-page.html.php:473 ../html/settings-page.html.php:478
|
1375 |
msgid "Page IDs"
|
1376 |
msgstr ""
|
1377 |
|
1381 |
msgid "Always exclude Google Maps API on pages:"
|
1382 |
msgstr "Ползвай Google Maps API"
|
1383 |
|
1384 |
+
#: ../../wp-google-maps-pro/html/import-export/backup-item.html.php:3
|
1385 |
+
msgid "Date"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: ../../wp-google-maps-pro/html/import-export/backup-item.html.php:4
|
1389 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1334
|
1390 |
+
#: ../includes/tables/class.admin-map-datatable.php:37
|
1391 |
+
msgid "Type"
|
1392 |
+
msgstr "Вид"
|
1393 |
+
|
1394 |
+
#: ../../wp-google-maps-pro/html/import-export/backup-item.html.php:6
|
1395 |
+
msgid "Download"
|
1396 |
+
msgstr ""
|
1397 |
+
|
1398 |
+
#: ../../wp-google-maps-pro/html/import-export/backup-item.html.php:7
|
1399 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:97
|
1400 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:200
|
1401 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:94
|
1402 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:149
|
1403 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:534
|
1404 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:681
|
1405 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:674
|
1406 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:302
|
1407 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:396
|
1408 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:293
|
1409 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:964
|
1410 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:497
|
1411 |
+
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:510
|
1412 |
+
msgid "Delete"
|
1413 |
+
msgstr "Изтриване"
|
1414 |
+
|
1415 |
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:4
|
1416 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:4
|
1417 |
#, fuzzy
|
1425 |
|
1426 |
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:16
|
1427 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:18
|
1428 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:653
|
1429 |
#, fuzzy
|
1430 |
#| msgid "Pic URL"
|
1431 |
msgid "URL"
|
1440 |
msgid "Bulk JPEG"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:31
|
1444 |
+
#, fuzzy
|
1445 |
+
#| msgid "Basic table"
|
1446 |
+
msgid "Airtable"
|
1447 |
+
msgstr "Основна таблица"
|
1448 |
+
|
1449 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:41
|
1450 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:33
|
1451 |
msgid ""
|
1452 |
"If using a Google Sheet URL, the sheet must be public or have link sharing "
|
1453 |
"turned on."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:46
|
1457 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:94
|
1458 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:117
|
1459 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:143
|
1460 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:151
|
1461 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:38
|
1462 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:91
|
1463 |
+
#: ../../wp-google-maps-pro/html/import-export/integration-import-options-panel.html.php:2
|
1464 |
+
#: ../../wp-google-maps-pro/html/import-export/integration-import-options-panel.html.php:19
|
1465 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:286
|
1466 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:359
|
1467 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:403
|
1468 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:506
|
1469 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:539
|
1470 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:108
|
1471 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:173
|
1472 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:154
|
1473 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:259
|
1474 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:115
|
1475 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:174
|
1476 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:618
|
1477 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:963
|
1478 |
#, fuzzy
|
1479 |
#| msgid "Support"
|
1480 |
msgid "Import"
|
1481 |
msgstr "Съпорт"
|
1482 |
|
1483 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:58
|
1484 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:50
|
1485 |
#, fuzzy
|
1486 |
#| msgid "Select"
|
1487 |
msgid "Select File"
|
1488 |
msgstr "Избери"
|
1489 |
|
1490 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:63
|
1491 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:55
|
1492 |
#, fuzzy
|
1493 |
#| msgid "Upload File"
|
1494 |
msgid "Max upload size"
|
1495 |
msgstr "качи файл"
|
1496 |
|
1497 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:79
|
1498 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:78
|
1499 |
msgid "Import Uploads"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:128
|
1503 |
+
msgid "Link to Airtable"
|
1504 |
+
msgstr ""
|
1505 |
+
|
1506 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:137
|
1507 |
+
msgid "Airtable API Key"
|
1508 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
|
1510 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:169
|
1511 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:120
|
1512 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:360
|
1513 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:507
|
1514 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:540
|
1515 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
|
1516 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:260
|
1517 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
|
1518 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:619
|
1519 |
msgid "Schedule"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:172
|
1523 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:123
|
1524 |
msgid ""
|
1525 |
"Imports can be scheduled by url or uploaded file. To schedule an import, "
|
1527 |
"listed on this page and can be edited or deleted from here."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:180
|
1531 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:131
|
1532 |
msgid "URL / Filename"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:203
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1536 |
#, fuzzy
|
1537 |
#| msgid "View"
|
1538 |
msgid "View Log"
|
1539 |
msgstr "Виж"
|
1540 |
|
1541 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:206
|
1542 |
msgid "View Response"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:218
|
1546 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:172
|
1547 |
#, fuzzy
|
1548 |
msgid "Export Data"
|
1549 |
msgstr "Име на картата"
|
1550 |
|
1551 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:221
|
1552 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:175
|
1553 |
msgid ""
|
1554 |
"Select which maps and map data you'd like to export. Click the Export button "
|
1555 |
"to download a JSON file of the exported maps and their data."
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:240
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1559 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:199
|
1560 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:332
|
1561 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:467
|
1562 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:494
|
1563 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
|
1564 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:179
|
1565 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:233
|
1566 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
|
1567 |
+
#: ../includes/tables/class.admin-map-datatable.php:22
|
1568 |
#: ../includes/tables/class.admin-marker-datatable.php:25
|
1569 |
#, fuzzy
|
1570 |
#| msgid "Select"
|
1571 |
msgid "Select All"
|
1572 |
msgstr "Избери"
|
1573 |
|
1574 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:243
|
1575 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:202
|
1576 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:332
|
1577 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:467
|
1578 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:495
|
1579 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
|
1580 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:179
|
1581 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:233
|
1582 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
|
1583 |
#, fuzzy
|
1584 |
#| msgid "Select"
|
1585 |
msgid "Select None"
|
1586 |
msgstr "Избери"
|
1587 |
|
1588 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:255
|
1589 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:215
|
1590 |
+
#: ../../wp-google-maps-pro/includes/class.pro-admin-ui.php:33
|
1591 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:185
|
1592 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1135
|
1593 |
msgid "Categories"
|
1594 |
msgstr "Категории"
|
1595 |
|
1596 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:261
|
1597 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:221
|
1598 |
+
#: ../../wp-google-maps-pro/includes/class.pro-admin-ui.php:43
|
1599 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:186
|
1600 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1153
|
1601 |
#, fuzzy
|
1602 |
#| msgid "Custom Marker"
|
1603 |
msgid "Custom Fields"
|
1604 |
msgstr "Къстъм маркери"
|
1605 |
|
1606 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:274
|
1607 |
#, fuzzy
|
1608 |
msgid "Ratings"
|
1609 |
msgstr "Настройки"
|
1610 |
|
1611 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:285
|
1612 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:227
|
1613 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:187
|
1614 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2287
|
|
|
1615 |
msgid "Markers"
|
1616 |
msgstr "Маркери"
|
1617 |
|
1618 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:291
|
1619 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:233
|
1620 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:188
|
1621 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2319
|
1622 |
+
#: ../html/welcome.html.php:92 ../includes/compat/backwards_compat_v6.php:60
|
|
|
1623 |
msgid "Circles"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:297
|
1627 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:239
|
1628 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:189
|
1629 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:122
|
1630 |
+
#: ../base/classes/WPGM_templates.php:53
|
1631 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2301
|
1632 |
+
#: ../html/welcome.html.php:92
|
1633 |
msgid "Polygons"
|
1634 |
msgstr "Полигони"
|
1635 |
|
1636 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:303
|
1637 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:245
|
1638 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:190
|
1639 |
+
#: ../base/classes/WPGM_templates.php:58
|
1640 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2307
|
1641 |
+
#: ../html/welcome.html.php:92
|
1642 |
msgid "Polylines"
|
1643 |
msgstr "Полиноми"
|
1644 |
|
1645 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:309
|
1646 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:251
|
1647 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:191
|
1648 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2325
|
1649 |
+
#: ../includes/compat/backwards_compat_v6.php:61
|
1650 |
msgid "Rectangles"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:315
|
1654 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:257
|
1655 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:192
|
1656 |
#, fuzzy
|
1657 |
msgid "Heatmap Datasets"
|
1658 |
msgstr "Запиши категория"
|
1659 |
|
1660 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:320
|
1661 |
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:262
|
1662 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:620
|
1663 |
#, fuzzy
|
1664 |
#| msgid "Support"
|
1665 |
msgid "Export"
|
1666 |
msgstr "Съпорт"
|
1667 |
|
1668 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:327
|
1669 |
+
msgid "Backups (Beta)"
|
|
|
|
|
|
|
|
|
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:335
|
1673 |
+
msgid ""
|
1674 |
+
"WP Google Maps will automatically backup your data before an update is "
|
1675 |
+
"installed and when an import is performed. Manual backups can also be "
|
1676 |
+
"generated below."
|
|
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:337
|
1680 |
+
msgid ""
|
1681 |
+
"Automated backups will be removed when new backups of the same type are "
|
1682 |
+
"generated. Manual backups will not be removed by the backup module."
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:339
|
1686 |
+
#: ../html/settings-page.html.php:1492
|
1687 |
#, fuzzy
|
1688 |
+
msgid "Important Note"
|
1689 |
+
msgstr "Име на картата"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1690 |
|
1691 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:339
|
1692 |
+
msgid ""
|
1693 |
+
"This feature is in early beta and data backups cannot be guaranteed as they "
|
1694 |
+
"are dependent on file write access on your server"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: ../../wp-google-maps-pro/html/import-export/import-export.html.php:347
|
1698 |
+
#, fuzzy
|
1699 |
+
msgid "Create Backup"
|
1700 |
+
msgstr "Създавай твоя карта"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
|
1702 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:153
|
1703 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:535
|
1704 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:682
|
1705 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:675
|
1706 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:303
|
1707 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:397
|
1708 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:294
|
1709 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1060
|
1710 |
+
msgid "No schedule found"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:155
|
1714 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:536
|
1715 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:683
|
1716 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:676
|
1717 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:304
|
1718 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:398
|
1719 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:295
|
1720 |
+
msgid "Next Scheduled Run"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:180
|
1724 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1085
|
1725 |
+
msgid "No maps available for export."
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: ../../wp-google-maps-pro/html/import-export/integration-import-options-panel.html.php:10
|
1729 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:475
|
1730 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:482
|
1731 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:477
|
1732 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:133
|
1733 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:219
|
1734 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:134
|
1735 |
+
msgid "Replace map data"
|
1736 |
+
msgstr ""
|
|
|
|
|
1737 |
|
1738 |
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:11
|
1739 |
+
#: ../html/map-edit-page/map-edit-page.html.php:87
|
1740 |
#, fuzzy
|
1741 |
msgid "Marker Filtering"
|
1742 |
msgstr "Списък маркери"
|
1745 |
msgid "Enable custom field filtering on"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:22
|
|
|
1749 |
msgid ""
|
1750 |
+
"You have no custom fields to filter on. Please add some in order to add "
|
1751 |
+
"custom field filters."
|
|
|
|
|
|
|
|
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:14
|
1755 |
+
msgid "Retina Ready"
|
1756 |
+
msgstr "Retina Ready"
|
|
|
|
|
|
|
|
|
|
|
1757 |
|
1758 |
+
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:21
|
1759 |
#: ../../wp-google-maps-pro/includes/page.categories.php:148
|
1760 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:316
|
|
|
|
|
1761 |
msgid "Upload Image"
|
1762 |
msgstr "качи снимка"
|
1763 |
|
1764 |
+
#: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:26
|
|
|
1765 |
#, fuzzy
|
1766 |
msgid "Marker Library"
|
1767 |
msgstr "Категории маркери"
|
1769 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/basic-table-item.html.php:25
|
1770 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/carousel-item.html.php:18
|
1771 |
#: ../../wp-google-maps-pro/html/marker-listings/legacy/grid-item.html.php:8
|
1772 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:239
|
1773 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:242
|
1774 |
+
#: ../../wp-google-maps-pro/legacy-core.php:691
|
1775 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1071
|
1776 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1423
|
1777 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2480
|
1778 |
+
#: ../html/map-edit-page/map-edit-page.html.php:59
|
1779 |
msgid "Directions"
|
1780 |
msgstr "Упътвания"
|
1781 |
|
1782 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:185
|
1783 |
+
msgid "Anti-Spam"
|
1784 |
+
msgstr ""
|
1785 |
+
|
1786 |
+
#: ../../wp-google-maps-pro/html/marker-rating-settings.html.php:190
|
1787 |
+
msgid ""
|
1788 |
+
"Uses anti-spam countermeasures and basic server side countermeasures. This "
|
1789 |
+
"can be circumvented with human interaction, but is significantly less "
|
1790 |
+
"vulnerable to bots."
|
1791 |
+
msgstr ""
|
1792 |
|
1793 |
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:89
|
1794 |
#, fuzzy
|
1796 |
msgid "Advanced Custom Fields"
|
1797 |
msgstr "Специални опции"
|
1798 |
|
1799 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:97
|
1800 |
+
msgid "ACF plugin"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:100
|
1804 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:231
|
1805 |
+
msgid " missing)"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:116
|
1809 |
#, php-format
|
1810 |
msgid "%d marker(s) found."
|
1811 |
msgstr ""
|
1812 |
|
1813 |
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:28
|
1814 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:235
|
1815 |
msgid "Security check failed."
|
1816 |
msgstr ""
|
1817 |
|
1823 |
msgid "Class must be an instance of \\WPGMZA\\Integration\\MarkerSource"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:220
|
1827 |
msgid "Toolset"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
+
#: ../../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:228
|
1831 |
+
msgid "Toolset plugin"
|
1832 |
+
msgstr ""
|
1833 |
+
|
1834 |
+
#: ../../wp-google-maps-pro/includes/class.category-table.php:68
|
1835 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:727
|
1836 |
+
msgid "All maps"
|
1837 |
+
msgstr "Всички карти"
|
1838 |
+
|
1839 |
#: ../../wp-google-maps-pro/includes/class.category-tree-native.php:21
|
1840 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:464
|
1841 |
#: ../../wp-google-maps-pro/includes/page.categories.php:546
|
1842 |
msgid "All"
|
1843 |
msgstr "Всички"
|
1848 |
msgid "All Categories"
|
1849 |
msgstr "Категории"
|
1850 |
|
1851 |
+
#: ../../wp-google-maps-pro/includes/class.marker-filtering-tab.php:41
|
1852 |
+
msgid "Toggle filter"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: ../../wp-google-maps-pro/includes/class.marker-filtering-tab.php:45
|
1856 |
+
#, fuzzy
|
1857 |
+
msgid "No widget type selected"
|
1858 |
+
msgstr "Позволи избор на категории"
|
1859 |
+
|
1860 |
+
#: ../../wp-google-maps-pro/includes/class.marker-filtering-tab.php:71
|
1861 |
+
msgid "You must choose a widget type for this field to enable filtering on it"
|
1862 |
+
msgstr ""
|
1863 |
+
|
1864 |
+
#: ../../wp-google-maps-pro/includes/class.pro-admin-ui.php:23
|
1865 |
+
#: ../html/theme-panel.html.php:405
|
1866 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1142
|
1867 |
+
msgid "Advanced"
|
1868 |
+
msgstr "Напреднал"
|
1869 |
+
|
1870 |
+
#: ../../wp-google-maps-pro/includes/class.pro-map.php:100
|
1871 |
msgid ""
|
1872 |
"<strong>WP Google Maps:</strong> Fusion Tables are deprecated and will be "
|
1873 |
"turned off as of December the 3rd, 2019. Google Maps will no longer support "
|
1874 |
"Fusion Tables from this date forward."
|
1875 |
msgstr ""
|
1876 |
|
1877 |
+
#: ../../wp-google-maps-pro/includes/class.pro-plugin.php:54
|
1878 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9067
|
1879 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9164
|
1880 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
1881 |
+
#: ../../wp-google-maps-pro/legacy-core.php:115
|
1882 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2154
|
1883 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2438
|
1884 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2498
|
1885 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2515
|
1886 |
+
#: ../base/classes/widget_module.class.php:14
|
1887 |
+
#: ../html/map-edit-page/map-edit-page.html.php:4
|
1888 |
+
#: ../includes/class.auto-loader.php:222
|
1889 |
+
#: ../includes/class.maps-engine-dialog.php:158
|
1890 |
+
#: ../includes/class.plugin.php:973
|
1891 |
+
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:43
|
1892 |
+
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:140
|
1893 |
+
#: ../js/v8/wp-google-maps.combined.js:9334
|
1894 |
+
#: ../js/v8/wp-google-maps.combined.js:9431 ../js/v8/wp-google-maps.min.js:1
|
1895 |
+
#: ../wpGoogleMaps.php:1609 ../wpGoogleMaps.php:1713
|
1896 |
+
msgid "WP Google Maps"
|
1897 |
+
msgstr "WP Google Maps"
|
1898 |
|
1899 |
+
#: ../../wp-google-maps-pro/includes/class.pro-store-locator.php:129
|
|
|
|
|
1900 |
msgid "Title / Description:"
|
1901 |
msgstr "Заглавие / Описание:"
|
1902 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1903 |
#: ../../wp-google-maps-pro/includes/custom-field-filter-widgets/class.date.php:23
|
1904 |
#: ../../wp-google-maps-pro/includes/custom-field-filter-widgets/class.time.php:24
|
1905 |
msgid "to"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:142
|
1909 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:361
|
1910 |
msgid "Value"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:267
|
1914 |
#, fuzzy
|
1915 |
#| msgid "WP Google Maps Error log"
|
1916 |
msgid "WP Google Maps - Custom Fields"
|
1917 |
msgstr "WP Google Maps Error log"
|
1918 |
|
1919 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:276
|
1920 |
+
msgid "Order"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:296
|
1924 |
msgid "Attributes"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:301
|
1928 |
#, fuzzy
|
1929 |
#| msgid "Filter by"
|
1930 |
msgid "Filter Type"
|
1931 |
msgstr "Филтър по"
|
1932 |
|
1933 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:306
|
1934 |
+
#: ../html/settings-page.html.php:24
|
|
|
1935 |
msgid "InfoWindows"
|
1936 |
msgstr "Инфопрозорци"
|
1937 |
|
1938 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:311
|
1939 |
#, fuzzy
|
1940 |
#| msgid "Marker Listing"
|
1941 |
msgid "Marker Listings"
|
1942 |
msgstr "Списък маркери"
|
1943 |
|
1944 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:316
|
1945 |
#, fuzzy
|
1946 |
#| msgid "Action"
|
1947 |
msgid "Actions"
|
1948 |
msgstr "Действие"
|
1949 |
|
1950 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:378
|
1951 |
msgid "Text"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:383
|
1955 |
+
#: ../html/settings-page.html.php:234
|
1956 |
msgid "Dropdown"
|
1957 |
msgstr "Дропдаун"
|
1958 |
|
1959 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:388
|
1960 |
+
#: ../html/settings-page.html.php:240
|
1961 |
msgid "Checkboxes"
|
1962 |
msgstr "Чекбоксове"
|
1963 |
|
1964 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:393
|
1965 |
msgid "Time Range"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:398
|
1969 |
msgid "Date Range"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:418
|
1973 |
#, fuzzy
|
1974 |
#| msgid "Adding"
|
1975 |
msgid "Add"
|
1976 |
msgstr "Добавяне"
|
1977 |
|
1978 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:17
|
1979 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:61
|
1980 |
msgid "Failed to geocode address"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:18
|
1984 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:62
|
1985 |
msgid "No address specified for geocoding"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:19
|
1989 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:63
|
1990 |
msgid "No address or coordinates specified"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:39
|
1994 |
+
msgid "Error parsing Airtable: "
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:46
|
1998 |
+
msgid "Error: Invalid Airtable structure."
|
|
|
|
|
|
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:62
|
2002 |
+
msgid "Error: No Airtable data."
|
|
|
|
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:175
|
2006 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1058
|
2007 |
+
msgid ""
|
2008 |
+
"No latitude supplied, \"Find latitude\" not selected. Marker will have zero "
|
2009 |
+
"latitude"
|
2010 |
+
msgstr ""
|
2011 |
|
2012 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:182
|
2013 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1065
|
2014 |
+
msgid "Invalid latitude, supplied value is not numeric"
|
2015 |
+
msgstr ""
|
2016 |
|
2017 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:191
|
2018 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1076
|
2019 |
+
msgid ""
|
2020 |
+
"No longitude supplied, \"Find longitude\" not selected. Marker will have "
|
2021 |
+
"zero longitude"
|
2022 |
+
msgstr ""
|
2023 |
|
2024 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:196
|
2025 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1083
|
2026 |
+
msgid "Invalid longitude, supplied value is not numeric"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:289
|
2030 |
#, fuzzy
|
2031 |
+
msgid "Import Airtables"
|
2032 |
+
msgstr "Име на картата"
|
|
|
2033 |
|
2034 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:295
|
2035 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:415
|
2036 |
#, fuzzy
|
2037 |
+
msgid "Marker data found."
|
2038 |
+
msgstr "Marker данни локация"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2039 |
|
2040 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:303
|
2041 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:438
|
2042 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:205
|
2043 |
msgid "Find Addresses or Latitude and Longitude when missing"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:304
|
2047 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:439
|
2048 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:124
|
2049 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:207
|
2050 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:125
|
2051 |
msgid "Requires Google Maps Geocoding API to be enabled."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:309
|
2055 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:444
|
2056 |
msgid "Use map ID's specified in file"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:312
|
2060 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:447
|
2061 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:460
|
2062 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:126
|
2063 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:210
|
2064 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:127
|
2065 |
msgid "Apply import data to"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:316
|
2069 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:451
|
2070 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:468
|
2071 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:130
|
2072 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:216
|
2073 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:131
|
2074 |
msgid "No maps available for import to."
|
2075 |
msgstr ""
|
2076 |
|
2077 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:342
|
2078 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:489
|
2079 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:514
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2080 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:156
|
2081 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:242
|
2082 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:157
|
2083 |
#, fuzzy
|
2084 |
#| msgid "Advanced Options"
|
2085 |
msgid "Scheduling Options"
|
2086 |
msgstr "Специални опции"
|
2087 |
|
2088 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:343
|
2089 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:490
|
2090 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:516
|
2091 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:157
|
2092 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:243
|
2093 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:158
|
2094 |
#, fuzzy
|
2095 |
msgid "Start Date"
|
2096 |
msgstr "Запиши категория"
|
2097 |
|
2098 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:347
|
2099 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:494
|
2100 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:522
|
2101 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:161
|
2102 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:247
|
2103 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:162
|
2104 |
msgid "Interval"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:360
|
2108 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:507
|
2109 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:540
|
2110 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
|
2111 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:260
|
2112 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
|
2113 |
msgid "Update Schedule"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:361
|
2117 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:508
|
2118 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:541
|
2119 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:175
|
2120 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:261
|
2121 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:176
|
2122 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:141
|
2123 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:241
|
2124 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:677
|
2125 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:787
|
2126 |
+
#: ../includes/legacy/functions.circle.php:99
|
2127 |
+
#: ../includes/legacy/functions.circle.php:221
|
2128 |
+
#: ../includes/legacy/functions.rectangle.php:84
|
2129 |
+
#: ../includes/legacy/functions.rectangle.php:192
|
2130 |
#: ../lib/codecabin/deactivate-feedback-form.php:44
|
2131 |
msgid "Cancel"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:392
|
2135 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:539
|
2136 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:571
|
2137 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:213
|
2138 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:308
|
2139 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:205
|
2140 |
msgid ""
|
2141 |
"Please select at least one map to import to, or deselect the \"Apply import "
|
2142 |
"data to\" option."
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:418
|
2146 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:565
|
2147 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:598
|
2148 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:231
|
2149 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:325
|
2150 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:222
|
2151 |
+
#: ../includes/class.strings.php:53
|
2152 |
msgid "Importing, this may take a moment..."
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:464
|
2156 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:611
|
2157 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:614
|
2158 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:245
|
2159 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:339
|
2160 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:236
|
2161 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:524
|
2162 |
+
#: ../includes/class.strings.php:52
|
2163 |
msgid "Import completed."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:503
|
2167 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:650
|
2168 |
msgid ""
|
2169 |
"The schedule must target an existing map, or use map ID's specified in the "
|
2170 |
"file."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:507
|
2174 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:654
|
2175 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:647
|
2176 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:275
|
2177 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:369
|
2178 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:266
|
2179 |
msgid "Please enter a start date."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:510
|
2183 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:657
|
2184 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:650
|
2185 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:278
|
2186 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:372
|
2187 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:269
|
2188 |
msgid "Scheduling, this may take a moment..."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:527
|
2192 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:674
|
2193 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:667
|
2194 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:295
|
2195 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:389
|
2196 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:286
|
2197 |
msgid "Scheduling completed."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-airtables.php:581
|
2201 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:169
|
2202 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:402
|
2203 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:29
|
2204 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:72
|
2205 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:29
|
2206 |
+
msgid "Error: Malformed options."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:146
|
2210 |
+
msgid " on row(s) "
|
2211 |
+
msgstr ""
|
2212 |
+
|
2213 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:384
|
2214 |
msgid ""
|
2215 |
+
"We couldn't establish what kind of data you are trying to import (is the "
|
2216 |
+
"header row missing?)"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:406
|
2220 |
+
#, fuzzy
|
2221 |
+
msgid "CSV Data"
|
2222 |
+
msgstr "Име на картата"
|
2223 |
+
|
2224 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:412
|
2225 |
+
#, fuzzy
|
2226 |
+
msgid "Map data found."
|
2227 |
+
msgstr "Име на картата"
|
2228 |
+
|
2229 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:418
|
2230 |
+
msgid "Circle data found."
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:421
|
2234 |
+
#, fuzzy
|
2235 |
+
#| msgid "Polygon Data"
|
2236 |
+
msgid "Polygon data found."
|
2237 |
+
msgstr "Данни полигон"
|
2238 |
+
|
2239 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:424
|
2240 |
+
#, fuzzy
|
2241 |
+
#| msgid "Polyline Data"
|
2242 |
+
msgid "Polyline data found."
|
2243 |
+
msgstr "Полином данни"
|
2244 |
+
|
2245 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:427
|
2246 |
+
msgid "Rectangle data found."
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:430
|
2250 |
+
msgid "Heatmap data found."
|
2251 |
+
msgstr ""
|
2252 |
+
|
2253 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:485
|
2254 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:508
|
2255 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:152
|
2256 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:238
|
2257 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:153
|
2258 |
+
msgid "Delete import file after import"
|
2259 |
+
msgstr ""
|
2260 |
+
|
2261 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:812
|
2262 |
+
msgid "New CSV Map Import"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1194
|
2266 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:966
|
2267 |
msgid "New Imported Circle"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1239
|
2271 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1013
|
2272 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:688
|
2273 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:803
|
2274 |
msgid "New Imported Polygon"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1286
|
2278 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:517
|
2279 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:555
|
2280 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1062
|
2281 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:587
|
2282 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:648
|
2283 |
#, fuzzy
|
2284 |
#| msgid "Add a New Polyline"
|
2285 |
msgid "New Imported Polyline"
|
2286 |
msgstr "Добави нов полином"
|
2287 |
|
2288 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1324
|
2289 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1101
|
2290 |
msgid "New Imported Rectangle"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1360
|
2294 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1138
|
2295 |
msgid "New Imported Dataset"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:298
|
2299 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:561
|
2300 |
+
msgid "New Imported Map"
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:428
|
2304 |
+
msgid "Error parsing GeoJSON: "
|
2305 |
+
msgstr ""
|
2306 |
+
|
2307 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:432
|
2308 |
+
msgid "GeoJSON does not appear to be valid"
|
2309 |
+
msgstr ""
|
2310 |
+
|
2311 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:436
|
2312 |
+
msgid "GeoJSON has no features"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:440
|
2316 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:90
|
2317 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:136
|
2318 |
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:97
|
2319 |
msgid "Error: Empty file data."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:451
|
2323 |
#, fuzzy
|
2324 |
+
#| msgid "Support"
|
2325 |
+
msgid "Import GeoJSON"
|
2326 |
+
msgstr "Съпорт"
|
2327 |
|
2328 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-geojson.php:463
|
2329 |
+
msgid "Leave this disabled to create a new map with the import"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:72
|
2333 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:64
|
2334 |
+
msgid "Error: Unable to parse file."
|
2335 |
+
msgstr ""
|
2336 |
+
|
2337 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:85
|
2338 |
+
msgid "Error: No tracks or way points found in GPX file."
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:111
|
2342 |
+
#, fuzzy
|
2343 |
+
msgid "GPX Data"
|
2344 |
+
msgstr "Име на картата"
|
2345 |
+
|
2346 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:113
|
2347 |
+
msgid "Tracks"
|
2348 |
+
msgstr ""
|
2349 |
+
|
2350 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:114
|
2351 |
msgid "Way Points"
|
2352 |
msgstr ""
|
2353 |
|
2381 |
msgid "Error parsing JSON: "
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:122
|
2385 |
+
msgid ""
|
2386 |
+
"It looks like you may be trying to import a GeoJSON file, please change the "
|
2387 |
+
"file extension from .json to .geojson"
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:129
|
2391 |
msgid "Error: File contains no maps."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:158
|
2395 |
msgid "No maps available for import."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:183
|
2399 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1538
|
2400 |
#, fuzzy
|
2401 |
msgid "Map Data"
|
2402 |
msgstr "Име на картата"
|
2403 |
|
2404 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:212
|
2405 |
msgid "No maps will be imported with this option, only map data."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:292
|
2409 |
msgid "Please select at least one map to import."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:688
|
|
|
|
|
|
|
|
|
2413 |
#, fuzzy
|
2414 |
#| msgid "Add New Category"
|
2415 |
msgid "New Imported Category"
|
2416 |
msgstr "Добави нова категория"
|
2417 |
|
2418 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:800
|
2419 |
#, php-format
|
2420 |
msgid "Failed to geocode \"%s\""
|
2421 |
msgstr ""
|
2445 |
msgid "Error: Unable to load file."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:135
|
2449 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:143
|
2450 |
msgid "Error: Malformed options. Bad id."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:240
|
2454 |
msgid ""
|
2455 |
"Time limit threshold reached. Please speak to your host to increase your PHP "
|
2456 |
"execution time limit, or break your data into smaller parts"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: ../../wp-google-maps-pro/includes/import-export/class.import.php:415
|
2460 |
#, php-format
|
2461 |
msgid ""
|
2462 |
"HTTP referrer restrictions on your API key forbid geocoding from this "
|
2466 |
"temporarily. We detected this servers IP as %s."
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:33
|
2470 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9168
|
2471 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
2472 |
+
#: ../includes/class.admin-ui.php:34
|
2473 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1124
|
2474 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1129
|
2475 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
2476 |
+
#: ../js/v8/wp-google-maps.combined.js:9435 ../js/v8/wp-google-maps.min.js:1
|
|
|
2477 |
msgid "Maps"
|
2478 |
msgstr "Карти"
|
2479 |
|
2480 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:122
|
2481 |
msgid "You don't have permission to upload files."
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:128
|
2485 |
msgid "No file upload or failed security check."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:169
|
2489 |
msgid "Unable to add file to database."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:182
|
2493 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:358
|
2494 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:710
|
2495 |
msgid "No file specified or failed security check."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:190
|
2499 |
msgid "Deletion not allowed. File is not a valid WP Google Maps import upload."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:244
|
2503 |
msgid "No file, URL or integration specified."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:255
|
2507 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:370
|
2508 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:470
|
2509 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:722
|
2510 |
msgid ""
|
2511 |
"Importing not allowed. File is not a valid WP Google Maps import upload."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:345
|
2515 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:439
|
2516 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:551
|
2517 |
#, fuzzy
|
2518 |
#| msgid "CSV import failed"
|
2519 |
msgid "Unable to import file."
|
2520 |
msgstr "CSV импорт неуспешен"
|
2521 |
|
2522 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:460
|
2523 |
#, fuzzy
|
2524 |
#| msgid "Last"
|
2525 |
msgid "Last Run"
|
2526 |
msgstr "Последен"
|
2527 |
|
2528 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:621
|
2529 |
+
msgid "Backups"
|
2530 |
+
msgstr ""
|
2531 |
+
|
2532 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:637
|
2533 |
msgid "Once Weekly"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:642
|
2537 |
msgid "Once Monthly"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:817
|
2541 |
msgid "Unable to schedule import."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:830
|
2545 |
msgid "No scheduled import specified or failed security check."
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:838
|
2549 |
msgid "Scheduled import not found."
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:855
|
2553 |
msgid "Unable to remove scheduled import."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:962
|
2557 |
msgid "Please select a file to upload."
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:965
|
2561 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:969
|
2562 |
msgid "Back to Import Data"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:966
|
2566 |
#, fuzzy
|
2567 |
#| msgid "Are you sure you want to delete this marker:"
|
2568 |
msgid "Are you sure you wish to delete this file?"
|
2569 |
msgstr "Сигурен ли си, че искаш да изтриеш този маркер:"
|
2570 |
|
2571 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:967
|
2572 |
msgid "File deleted."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:968
|
2576 |
msgid "Please enter a URL to import from."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:970
|
2580 |
msgid "Loading import options..."
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:971
|
2584 |
#, fuzzy
|
2585 |
#| msgid "Are you sure you want to delete the map"
|
2586 |
msgid "Are you sure you wish to delete this scheduled import?"
|
2587 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
2588 |
|
2589 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:972
|
2590 |
msgid "Scheduled import deleted."
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:973
|
2594 |
msgid "Please select at least one map to export."
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:987
|
2598 |
msgid "Accepts"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1062
|
2602 |
msgid "Next schedule run"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1124
|
2606 |
+
#, fuzzy
|
2607 |
+
#| msgid "Delete"
|
2608 |
+
msgid "Backup deleted"
|
2609 |
+
msgstr "Изтриване"
|
2610 |
+
|
2611 |
+
#: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1128
|
2612 |
+
msgid "Backup created"
|
2613 |
+
msgstr ""
|
2614 |
+
|
2615 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:316
|
2616 |
msgid "Header 1 should be 'id', not"
|
2617 |
msgstr "Хедър 1 трябва да бъде 'id', не"
|
2618 |
|
2619 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:317
|
2620 |
msgid "Header 2 should be 'map_id', not"
|
2621 |
msgstr "хедър 2 трябва да бъде 'map_id', не"
|
2622 |
|
2623 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:318
|
2624 |
msgid "Header 3 should be 'address', not"
|
2625 |
msgstr "Хедър 3 трябва да бъде 'address', не"
|
2626 |
|
2627 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:319
|
2628 |
msgid "Header 4 should be 'description', not"
|
2629 |
msgstr "Хедър 4 трябва да бъде 'description', не"
|
2630 |
|
2631 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:320
|
2632 |
msgid "Header 5 should be 'pic', not"
|
2633 |
msgstr "Хедър 5 трябва да бъде 'pic', не"
|
2634 |
|
2635 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:321
|
2636 |
msgid "Header 6 should be 'link', not"
|
2637 |
msgstr "Хедър 6 трябва да бъде 'link', не"
|
2638 |
|
2639 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:322
|
2640 |
msgid "Header 7 should be 'icon', not"
|
2641 |
msgstr "Хедър 7 трябва да бъде 'icon', не"
|
2642 |
|
2643 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:323
|
2644 |
msgid "Header 8 should be 'lat', not"
|
2645 |
msgstr "Хедър 9 трябва да бъде 'lng', не"
|
2646 |
|
2647 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:324
|
2648 |
msgid "Header 9 should be 'lng', not"
|
2649 |
msgstr "Хедър 9 трябва да бъде 'lng', не"
|
2650 |
|
2651 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:325
|
2652 |
msgid "Header 10 should be 'anim', not"
|
2653 |
msgstr "Хедър 10 трябва да бъде 'anim', не"
|
2654 |
|
2655 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:326
|
2656 |
msgid "Header 11 should be 'title', not"
|
2657 |
msgstr "Хедър 11 трябва да бъде 'title', не"
|
2658 |
|
2659 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:327
|
2660 |
msgid "Header 12 should be 'infoopen', not"
|
2661 |
msgstr "Хедър 12 трябва да бъде 'infoopen', не"
|
2662 |
|
2663 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:328
|
2664 |
msgid "Header 13 should be 'category', not"
|
2665 |
msgstr "Хедър 13 трябва да бъде 'category', не"
|
2666 |
|
2667 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:329
|
2668 |
msgid "Header 14 should be 'approved', not"
|
2669 |
msgstr "Хедър 14 трябва да бъде 'approved', не"
|
2670 |
|
2671 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:330
|
2672 |
msgid "Header 15 should be 'retina', not"
|
2673 |
msgstr "Хедър 15 трябва да бъде 'retina', не"
|
2674 |
|
2675 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:332
|
2676 |
msgid "CSV import failed"
|
2677 |
msgstr "CSV импорт неуспешен"
|
2678 |
|
2679 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:404
|
2680 |
#, php-format
|
2681 |
msgid "Cannot import line %d as the LAT and/or LNG is not defined."
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:438
|
2685 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:569
|
2686 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:649
|
2687 |
+
#: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:730
|
2688 |
msgid "Your CSV file has been successfully imported"
|
2689 |
msgstr "Твоя CSV файл бе успешно импортиран"
|
2690 |
|
2691 |
+
#: ../../wp-google-maps-pro/includes/map-edit-page/class.pro-map-edit-page.php:26
|
2692 |
+
#, fuzzy
|
2693 |
+
#| msgid "including Pro & Gold add-ons"
|
2694 |
+
msgid "including Pro & Gold add-ons"
|
2695 |
+
msgstr "включително Pro и Gold добавки"
|
2696 |
+
|
2697 |
+
#: ../../wp-google-maps-pro/includes/map-edit-page/class.pro-map-edit-page.php:28
|
2698 |
+
msgid "including Pro add-on"
|
2699 |
+
msgstr "включително Pro add-on"
|
2700 |
+
|
2701 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:142
|
2702 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1689
|
2703 |
+
#: ../html/map-edit-page/marker-panel.html.php:97
|
2704 |
+
#: ../html/map-edit-page/polygon-panel.html.php:72
|
2705 |
+
#: ../html/map-edit-page/polyline-panel.html.php:63
|
2706 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:186
|
2707 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1509
|
2708 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1528
|
2709 |
+
#: ../includes/tables/class.admin-marker-datatable.php:39
|
2710 |
+
#: ../includes/tables/class.marker-datatable.php:23
|
2711 |
+
#: ../includes/tables/class.polygon-datatable.php:22
|
2712 |
+
msgid "Description"
|
2713 |
+
msgstr "Описание"
|
2714 |
+
|
2715 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:145
|
2716 |
+
#: ../html/map-edit-page/polygon-panel.html.php:81
|
2717 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:99
|
2718 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:189
|
2719 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1511
|
2720 |
#: ../includes/tables/class.admin-marker-datatable.php:41
|
2721 |
+
#: ../includes/tables/class.polygon-datatable.php:23 ../legacy-core.php:1133
|
2722 |
msgid "Link"
|
2723 |
msgstr "Линк"
|
2724 |
|
2725 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:205
|
2726 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.basic-table.php:79
|
2727 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.carousel.php:139
|
2728 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.grid.php:83
|
2729 |
#, fuzzy
|
2730 |
#| msgid "More details"
|
2731 |
msgid "More Details"
|
2732 |
msgstr "Повече подробности"
|
2733 |
|
2734 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:471
|
2735 |
+
#: ../includes/class.store-locator.php:150
|
2736 |
+
#: ../includes/map-edit-page/class.map-edit-page.php:75
|
|
|
2737 |
#, fuzzy
|
2738 |
#| msgid "1mi"
|
2739 |
msgid "mi"
|
2740 |
msgstr "1 миля"
|
2741 |
|
2742 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:476
|
2743 |
+
#: ../includes/class.store-locator.php:143
|
2744 |
+
#: ../includes/map-edit-page/class.map-edit-page.php:75
|
|
|
2745 |
#, fuzzy
|
2746 |
#| msgid "1km"
|
2747 |
msgid "km"
|
2748 |
msgstr "1 км"
|
2749 |
|
2750 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:489
|
2751 |
+
#: ../includes/class.strings.php:78
|
2752 |
#, fuzzy
|
2753 |
#| msgid "My location"
|
2754 |
msgid "from your location"
|
2755 |
msgstr "Моето местоположение"
|
2756 |
|
2757 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:493
|
2758 |
+
#: ../includes/class.strings.php:79
|
2759 |
#, fuzzy
|
2760 |
#| msgid "Show User's Location?"
|
2761 |
msgid "from searched location"
|
2762 |
msgstr "Покажи позиция на потребител?"
|
2763 |
|
2764 |
+
#: ../../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:497
|
2765 |
msgid "from unknown location"
|
2766 |
msgstr ""
|
2767 |
|
2775 |
msgstr "Добави нова категория"
|
2776 |
|
2777 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2778 |
+
#: ../html/map-list-page.html.php:50 ../html/map-list-page.html.php:63
|
2779 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:96
|
2780 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:183
|
2781 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:186
|
2782 |
+
#: ../legacy-core.php:1067
|
2783 |
msgid "Pro Version"
|
2784 |
msgstr "Pro версия"
|
2785 |
|
2788 |
msgstr "Създай маркер категории"
|
2789 |
|
2790 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2791 |
+
#: ../html/map-list-page.html.php:56 ../legacy-core.php:1067
|
2792 |
msgid "with the"
|
2793 |
msgstr "с"
|
2794 |
|
2795 |
#: ../../wp-google-maps-pro/includes/page.categories.php:21
|
2796 |
+
#: ../html/map-list-page.html.php:67 ../legacy-core.php:1067
|
2797 |
msgid "of WP Google Maps for only"
|
2798 |
msgstr "от WP Google Maps само за"
|
2799 |
|
2800 |
#: ../../wp-google-maps-pro/includes/page.categories.php:26
|
2801 |
+
#: ../legacy-core.php:1093 ../legacy-core.php:1105
|
2802 |
msgid "Problems with the plugin? See the troubleshooting manual."
|
2803 |
msgstr "Проблеми с плъгина? Виж документацията за отстраняване на проблемите."
|
2804 |
|
2814 |
msgid "Are you sure you want to delete the category"
|
2815 |
msgstr "Сигурен ли сте, че искате да изтриете категорията?"
|
2816 |
|
2817 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:102
|
2818 |
msgid "Add a Marker Category"
|
2819 |
msgstr "Добави маркер категория"
|
2820 |
|
2821 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:110
|
2822 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:271
|
2823 |
msgid "Category Name"
|
2824 |
msgstr "Име на категория"
|
2825 |
|
2826 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:121
|
2827 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:283
|
2828 |
msgid "Category Marker"
|
2829 |
msgstr "Категория маркер"
|
2830 |
|
2831 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:138
|
2832 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:306
|
2833 |
#, fuzzy
|
2834 |
#| msgid "Category Name"
|
2835 |
msgid "Category Image:"
|
2836 |
msgstr "Име на категория"
|
2837 |
|
2838 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:144
|
2839 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:312
|
2840 |
msgid "Enter URL"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
#: ../../wp-google-maps-pro/includes/page.categories.php:157
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2844 |
#, fuzzy
|
2845 |
msgid "Parent Category"
|
2846 |
msgstr "Категории маркери"
|
2847 |
|
2848 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:157
|
2849 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:356
|
2850 |
msgid "Optional"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:193
|
2854 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:376
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2855 |
msgid "Assigned to "
|
2856 |
msgstr "Зачислен до"
|
2857 |
|
2858 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:206
|
2859 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:390
|
2860 |
msgid "Save Category"
|
2861 |
msgstr "Запиши категория"
|
2862 |
|
2863 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:258
|
2864 |
#, fuzzy
|
2865 |
msgid "Edit a Marker Category"
|
2866 |
msgstr "Добави маркер категория"
|
2867 |
|
2868 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:326
|
2869 |
#, fuzzy
|
2870 |
msgid "Parent Category:"
|
2871 |
msgstr "Категории маркери"
|
2872 |
|
2873 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:522
|
2874 |
msgid "Your category has been created."
|
2875 |
msgstr "Твоята категория беше създадена."
|
2876 |
|
2877 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:627
|
2878 |
msgid "Your category has been saved."
|
2879 |
msgstr "Твоята категория беше записана."
|
2880 |
|
2881 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:804
|
2882 |
+
msgid "Parent"
|
2883 |
+
msgstr ""
|
2884 |
|
2885 |
+
#: ../../wp-google-maps-pro/includes/page.categories.php:805
|
|
|
2886 |
msgid "Linked maps"
|
2887 |
msgstr "Линкнати карти"
|
2888 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2889 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:32
|
2890 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:86
|
|
|
|
|
|
|
2891 |
msgid "Add a Polygon"
|
2892 |
msgstr "Добави полигон"
|
2893 |
|
2894 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:35
|
2895 |
+
#: ../html/map-edit-page/polygon-panel.html.php:90
|
2896 |
+
#: ../html/map-edit-page/polyline-panel.html.php:72
|
2897 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:102
|
2898 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:192
|
2899 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:635
|
2900 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:733
|
2901 |
msgid "Line Color"
|
2902 |
msgstr "Цвят на линк"
|
2903 |
|
2904 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:36
|
2905 |
+
#: ../html/map-edit-page/circle-panel.html.php:71
|
2906 |
+
#: ../html/map-edit-page/polygon-panel.html.php:113
|
2907 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:57
|
2908 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:108
|
2909 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:198
|
2910 |
msgid "Fill Color"
|
2911 |
msgstr "Запълни с цвят"
|
2912 |
|
2913 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:37
|
2914 |
+
#: ../html/map-edit-page/circle-panel.html.php:80
|
2915 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:66
|
2916 |
+
#: ../html/map-edit-page/polygon-panel.html.php:122
|
2917 |
+
#: ../html/map-edit-page/polyline-panel.html.php:81
|
2918 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:66
|
2919 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:111
|
2920 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:201
|
2921 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:643
|
2922 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:741
|
2923 |
+
#: ../includes/legacy/functions.circle.php:66
|
2924 |
+
#: ../includes/legacy/functions.circle.php:189
|
2925 |
+
#: ../includes/legacy/functions.rectangle.php:66
|
2926 |
+
#: ../includes/legacy/functions.rectangle.php:162
|
2927 |
msgid "Opacity"
|
2928 |
msgstr "Непрозрачност"
|
2929 |
|
2930 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:49
|
2931 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:98
|
2932 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:141
|
2933 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:241
|
|
|
|
|
2934 |
msgid "Save Polygon"
|
2935 |
msgstr "Запази полигон"
|
2936 |
|
2937 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:81
|
2938 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:172
|
2939 |
msgid "Edit Polygon"
|
2940 |
msgstr "Промяна на полигон."
|
2941 |
|
2942 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:472
|
2943 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1540
|
2944 |
msgid "Polygon Data"
|
2945 |
msgstr "Данни полигон"
|
2946 |
|
2947 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:473
|
2948 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:486
|
2949 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:492
|
2950 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1008
|
2951 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1335
|
2952 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1512
|
2953 |
+
#: ../includes/legacy/functions.circle.php:292
|
2954 |
+
#: ../includes/legacy/functions.rectangle.php:261
|
2955 |
+
#: ../includes/tables/class.admin-circle-datatable.php:22
|
2956 |
+
#: ../includes/tables/class.admin-heatmap-datatable.php:22
|
2957 |
+
#: ../includes/tables/class.admin-map-datatable.php:38
|
2958 |
#: ../includes/tables/class.admin-marker-datatable.php:43
|
2959 |
+
#: ../includes/tables/class.admin-polygon-datatable.php:22
|
2960 |
+
#: ../includes/tables/class.admin-polyline-datatable.php:22
|
2961 |
+
#: ../includes/tables/class.admin-rectangle-datatable.php:22
|
2962 |
msgid "Action"
|
2963 |
msgstr "Действие"
|
2964 |
|
2965 |
#: ../../wp-google-maps-pro/includes/page.edit-polygon.php:497
|
2966 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:521
|
2967 |
msgid "Delete this polygon"
|
2968 |
msgstr "Изтрий този полигон"
|
2969 |
|
2970 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:25
|
2971 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:620
|
|
|
2972 |
msgid "Add a Polyline"
|
2973 |
msgstr "Добави полином"
|
2974 |
|
2975 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:42
|
2976 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:90
|
2977 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:677
|
2978 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:787
|
2979 |
msgid "Save Polyline"
|
2980 |
msgstr "Запиши полином"
|
2981 |
|
2982 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:73
|
2983 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:717
|
2984 |
msgid "Edit Polyline"
|
2985 |
msgstr "Промени полином"
|
2986 |
|
2987 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:485
|
2988 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1541
|
2989 |
msgid "Polyline Data"
|
2990 |
msgstr "Полином данни"
|
2991 |
|
2992 |
#: ../../wp-google-maps-pro/includes/page.edit-polyline.php:510
|
2993 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1035
|
2994 |
msgid "Delete this polyline"
|
2995 |
msgstr "Изтрий този полином"
|
2996 |
|
2998 |
msgid "Select a Map Type (beta)"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:182
|
3002 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:185
|
3003 |
+
#: ../base/classes/WPGM_templates.php:48
|
3004 |
+
#: ../html/map-edit-page/map-edit-page.html.php:66
|
3005 |
+
#: ../html/settings-page.html.php:34 ../html/welcome.html.php:76
|
|
|
|
|
|
|
3006 |
msgid "Store Locator"
|
3007 |
msgstr "Намирач на магазини"
|
3008 |
|
3009 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:192
|
3010 |
#, fuzzy
|
3011 |
msgid "Show distance in:"
|
3012 |
msgstr "Покажи разстояния в"
|
3013 |
|
3014 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:196
|
|
|
3015 |
msgid "Miles"
|
3016 |
msgstr "Мили"
|
3017 |
|
3018 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:196
|
|
|
3019 |
msgid "Kilometers"
|
3020 |
msgstr "Километри"
|
3021 |
|
3022 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:202
|
3023 |
#, fuzzy
|
3024 |
msgid "Show bouncing icon:"
|
3025 |
msgstr "Покажи подскачаща икона"
|
3026 |
|
3027 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:212
|
3028 |
#, fuzzy
|
3029 |
msgid "Hide markers until search is done:"
|
3030 |
msgstr "Скрий всички маркери докато не се направи търсенето"
|
3031 |
|
3032 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:250
|
3033 |
#, fuzzy
|
3034 |
msgid "Default 'To' Address:"
|
3035 |
msgstr "по подразбиране 'до' адрес"
|
3036 |
|
3037 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:254
|
3038 |
#, fuzzy
|
3039 |
msgid "Enter Address"
|
3040 |
msgstr "Адрес"
|
3041 |
|
3042 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:279
|
3043 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:282
|
3044 |
+
#: ../html/map-edit-page/map-edit-page.html.php:80
|
3045 |
+
#: ../html/settings-page.html.php:29
|
|
|
3046 |
msgid "Marker Listing"
|
3047 |
msgstr "Списък маркери"
|
3048 |
|
3049 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:289
|
3050 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1536
|
3051 |
msgid "Marker Listing Style"
|
3052 |
msgstr "Стилове на маркерите"
|
3053 |
|
3054 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:294
|
3055 |
#, fuzzy
|
3056 |
msgid "Basic Table"
|
3057 |
msgstr "Основна таблица"
|
3058 |
|
3059 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:295
|
3060 |
#, fuzzy
|
3061 |
msgid "Basic List"
|
3062 |
msgstr "Основен списък"
|
3063 |
|
3064 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:296
|
3065 |
#, fuzzy
|
3066 |
msgid "Advanced Table"
|
3067 |
msgstr "Допълнителна таблица"
|
3068 |
|
3069 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:297
|
3070 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1606
|
|
|
|
|
|
|
|
|
3071 |
msgid "Carousel"
|
3072 |
msgstr "Въртележка"
|
3073 |
|
3074 |
+
#: ../../wp-google-maps-pro/includes/page.wizard.php:323
|
3075 |
msgid "Blank Map"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: ../../wp-google-maps-pro/includes/tables/class.pro-admin-marker-datatable.php:33
|
3079 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1482
|
3080 |
msgid "Approve this marker"
|
3081 |
msgstr "Одобри този маркер"
|
3082 |
|
3083 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:210
|
3084 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9126
|
3085 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23325
|
3086 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3087 |
+
#: ../html/map-edit-page/map-edit-page.html.php:103
|
|
|
|
|
3088 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:102
|
3089 |
+
#: ../js/v8/wp-google-maps.combined.js:9393 ../js/v8/wp-google-maps.min.js:1
|
3090 |
msgid "Map Settings"
|
3091 |
msgstr "Настройки карта"
|
3092 |
|
3093 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:213
|
3094 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9168
|
3095 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23328
|
3096 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3097 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
3098 |
+
#: ../js/v8/wp-google-maps.combined.js:9435 ../js/v8/wp-google-maps.min.js:1
|
3099 |
#, fuzzy
|
3100 |
#| msgid "Maps"
|
3101 |
msgid "Map"
|
3102 |
msgstr "Карти"
|
3103 |
|
3104 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:228
|
3105 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9136
|
3106 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23343
|
3107 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3108 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:112
|
3109 |
+
#: ../js/v8/wp-google-maps.combined.js:9403 ../js/v8/wp-google-maps.min.js:1
|
3110 |
msgid "Go to Map Editor"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:233
|
3114 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23348
|
3115 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3116 |
msgid "Mashup IDs"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:246
|
3120 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23361
|
3121 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3122 |
msgid "Reset Mashup IDs"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:251
|
3126 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23366
|
3127 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3128 |
#, fuzzy
|
3129 |
#| msgid "Your Markers"
|
3131 |
msgstr "Твоите маркери"
|
3132 |
|
3133 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:262
|
3134 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23377
|
3135 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3136 |
msgid "Override Zoom"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:276
|
3140 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23391
|
3141 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3142 |
msgid "Reset Override Zoom"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:281
|
3146 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23396
|
3147 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3148 |
#, fuzzy
|
3149 |
#| msgid "Save Category"
|
3151 |
msgstr "Запиши категория"
|
3152 |
|
3153 |
#: ../../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:299
|
3154 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9148
|
3155 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:23414
|
3156 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3157 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:124
|
3158 |
+
#: ../js/v8/wp-google-maps.combined.js:9415 ../js/v8/wp-google-maps.min.js:1
|
3159 |
#, fuzzy
|
3160 |
#| msgid "Documentation"
|
3161 |
msgid "View Documentation"
|
3162 |
msgstr "Документация"
|
3163 |
|
3164 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9165
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3165 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3166 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:141
|
3167 |
+
#: ../js/v8/wp-google-maps.combined.js:9432 ../js/v8/wp-google-maps.min.js:1
|
3168 |
msgid ""
|
3169 |
"The easiest to use Google Maps plugin! Create custom Google Maps with high "
|
3170 |
"quality markers containing locations, descriptions, images and links. Add "
|
3172 |
"with the supplied shortcode. No fuss."
|
3173 |
msgstr ""
|
3174 |
|
3175 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9168
|
3176 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3177 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
|
3178 |
+
#: ../js/v8/wp-google-maps.combined.js:9435 ../js/v8/wp-google-maps.min.js:1
|
3179 |
#, fuzzy
|
3180 |
#| msgid "WP Google Maps"
|
3181 |
msgid "Google"
|
3182 |
msgstr "WP Google Maps"
|
3183 |
|
3184 |
+
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:9179
|
3185 |
#: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
|
3186 |
#: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:155
|
3187 |
+
#: ../js/v8/wp-google-maps.combined.js:9446 ../js/v8/wp-google-maps.min.js:1
|
3188 |
msgid "Your map will appear here on your websites front end"
|
3189 |
msgstr ""
|
3190 |
|
3203 |
"Gold features with the OpenLayers engine."
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: ../../wp-google-maps-pro/legacy-core.php:118
|
3207 |
msgid ""
|
3208 |
"The Pro add-on cannot be registered due to a fatal error. This is usually "
|
3209 |
"due to missing files. Please re-install the Pro add-on. Technical details "
|
3210 |
"are as follows: "
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: ../../wp-google-maps-pro/legacy-core.php:284
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3214 |
msgid ""
|
3215 |
"<strong>WP Google Maps Pro:</strong> Experiencing issues? We strongly "
|
3216 |
"recommend that you update WP Google Maps (Basic) to Version 8.0.0 in the "
|
3217 |
"plugins menu"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: ../../wp-google-maps-pro/legacy-core.php:491
|
3221 |
+
#: ../../wp-google-maps-pro/legacy-core.php:516
|
3222 |
+
#, fuzzy
|
3223 |
+
msgid ""
|
3224 |
+
"The map ID you have entered does not exist. Please enter a map ID that "
|
3225 |
+
"exists."
|
3226 |
+
msgstr "Тази директория не същестува. Моля, създайте я."
|
3227 |
|
3228 |
+
#: ../../wp-google-maps-pro/legacy-core.php:869
|
3229 |
+
msgid "Filter by"
|
3230 |
+
msgstr "Филтър по"
|
3231 |
|
3232 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1067
|
3233 |
+
msgid "Get directions to"
|
3234 |
+
msgstr "Вземи ъпъватния до"
|
|
|
|
|
|
|
|
|
3235 |
|
3236 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1137
|
3237 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1166
|
3238 |
+
#: ../includes/class.strings.php:67
|
3239 |
+
msgid "Fetching directions..."
|
3240 |
+
msgstr "Изтегляне на упътвания..."
|
3241 |
|
3242 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1248
|
3243 |
+
msgid "Thank you. Your marker is awaiting approval."
|
3244 |
+
msgstr "Благодаря. Твоят маркер чака одобрение."
|
|
|
|
|
|
|
3245 |
|
3246 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1419
|
3247 |
+
msgid "Get directions"
|
3248 |
+
msgstr "Вземи упътвания"
|
|
|
|
|
|
|
3249 |
|
3250 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1421
|
3251 |
+
#: ../includes/class.strings.php:49
|
3252 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1694
|
3253 |
+
msgid "km away"
|
3254 |
+
msgstr "km разстояние"
|
|
|
3255 |
|
3256 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1422
|
3257 |
+
#: ../includes/class.strings.php:50
|
3258 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1695
|
3259 |
+
msgid "miles away"
|
3260 |
+
msgstr "мили разстояние"
|
|
|
|
|
3261 |
|
3262 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1426
|
3263 |
+
msgid "Getting your current location address..."
|
3264 |
+
msgstr "Взимане на твоето местоположение ..."
|
3265 |
+
|
3266 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1432
|
3267 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:834
|
3268 |
+
msgid "Please prove that you are human by checking the checkbox above"
|
3269 |
+
msgstr "Моля, докажи че си човек кликайки горния чекбокс."
|
3270 |
+
|
3271 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1510
|
3272 |
+
msgid "Download ALL marker data to a CSV file"
|
3273 |
+
msgstr "Изтегли всички данни за маркери в CSV файл."
|
3274 |
|
3275 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1511
|
|
|
|
|
|
|
|
|
3276 |
#, fuzzy
|
3277 |
+
msgid "Download ALL map data to a CSV file"
|
3278 |
+
msgstr "Изтегли всички данни за маркери в CSV файл."
|
3279 |
|
3280 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1512
|
|
|
|
|
|
|
|
|
3281 |
#, fuzzy
|
3282 |
+
msgid "Download ALL polygon data to a CSV file"
|
3283 |
+
msgstr "Изтегли всички данни за маркери в CSV файл."
|
3284 |
|
3285 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1513
|
3286 |
+
#, fuzzy
|
3287 |
+
msgid "Download ALL polyline data to a CSV file"
|
3288 |
+
msgstr "Изтегли всички данни за маркери в CSV файл."
|
3289 |
|
3290 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1516
|
3291 |
+
msgid "Advanced Options"
|
3292 |
+
msgstr "Специални опции"
|
3293 |
|
3294 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1539
|
3295 |
+
#, fuzzy
|
3296 |
+
msgid "Marker Data"
|
3297 |
+
msgstr "Marker данни локация"
|
3298 |
|
3299 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1542
|
3300 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1631
|
3301 |
+
msgid "Utilities"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1557
|
3305 |
#, fuzzy
|
3306 |
+
msgid "Upload Map CSV File"
|
3307 |
+
msgstr "Качи CSV файл"
|
3308 |
|
3309 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1565
|
3310 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1580
|
3311 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1601
|
3312 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1620
|
3313 |
+
msgid "Replace existing data with data in file"
|
3314 |
+
msgstr "Замени сегашните данни с данните от файла"
|
3315 |
|
3316 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1568
|
3317 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1585
|
3318 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1604
|
3319 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1623
|
3320 |
+
msgid "Upload File"
|
3321 |
+
msgstr "качи файл"
|
3322 |
|
3323 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1576
|
3324 |
+
#, fuzzy
|
3325 |
+
msgid "Upload Marker CSV File"
|
3326 |
+
msgstr "Качи CSV файл"
|
3327 |
|
3328 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1581
|
3329 |
+
msgid ""
|
3330 |
+
"Automatically geocode addresses to GPS co-ordinates if none are supplied"
|
3331 |
+
msgstr "Автоматично геокодиране на адресите до GPS координати ако не са дадени"
|
3332 |
|
3333 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1583
|
3334 |
+
msgid "Google API Key (Required)"
|
3335 |
+
msgstr "Google API Key (задължително)"
|
3336 |
|
3337 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1584
|
3338 |
+
#, fuzzy
|
3339 |
+
msgid ""
|
3340 |
+
"You will need a Google Maps Geocode API key for this to work. See <a "
|
3341 |
+
"href='https://developers.google.com/maps/documentation/geocoding/"
|
3342 |
+
"#Limits'>Geocoding Documentation</a>"
|
3343 |
+
msgstr ""
|
3344 |
+
"Ще ти трябва Google Maps Geocode API key за да работи това. Виж https://"
|
3345 |
+
"developers.google.com/maps/documentation/geocoding/#Limits"
|
3346 |
|
3347 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1584
|
3348 |
+
msgid "There is a 0.12second delay between each request"
|
3349 |
+
msgstr "Има 0.12 секунди закъснение между всяка заявка"
|
3350 |
|
3351 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1593
|
3352 |
+
#, fuzzy
|
3353 |
+
msgid "Upload Polygon CSV File"
|
3354 |
+
msgstr "Качи CSV файл"
|
3355 |
|
3356 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1612
|
3357 |
+
#, fuzzy
|
3358 |
+
msgid "Upload Polyline CSV File"
|
3359 |
+
msgstr "Качи CSV файл"
|
3360 |
|
3361 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1637
|
|
|
3362 |
msgid ""
|
3363 |
+
"Delete all markers with matching coordinates, address, title, link and "
|
3364 |
+
"description"
|
3365 |
msgstr ""
|
|
|
|
|
3366 |
|
3367 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1638
|
3368 |
+
msgid "Remove duplicate markers"
|
3369 |
+
msgstr ""
|
3370 |
|
3371 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1645
|
3372 |
+
msgid "Please update the core plugin to 8.0.4 or above to use utilities."
|
3373 |
+
msgstr ""
|
3374 |
|
3375 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1654
|
|
|
|
|
3376 |
#, fuzzy
|
3377 |
+
#| msgid "Support"
|
3378 |
+
msgid "Import Log"
|
3379 |
+
msgstr "Съпорт"
|
3380 |
|
3381 |
+
#: ../../wp-google-maps-pro/legacy-core.php:1658
|
3382 |
+
msgid "Need help? Read the documentation."
|
3383 |
+
msgstr "Трябва ти помощ? Прочети документацията."
|
3384 |
+
|
3385 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2153
|
3386 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2497
|
3387 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2514
|
3388 |
+
#: ../wpGoogleMaps.php:1608
|
3389 |
+
msgid "Urgent notice"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2156
|
3393 |
#, php-format
|
3394 |
msgid ""
|
3395 |
+
"In order to use WP Google Maps Pro 8.1, you need to <a href=\"%s\">update "
|
3396 |
+
"your basic version</a> to the latest version (8.1*)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2194
|
3400 |
+
msgid ""
|
3401 |
+
"<strong>WP Google Maps:</strong> The plugin and Pro add-on did not load in "
|
3402 |
+
"the correct order. Please ensure you use the correct folder names for the "
|
3403 |
+
"plugin and Pro add-on, which are /wp-google-maps and /wp-google-maps-pro "
|
3404 |
+
"respectively."
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2238
|
3408 |
+
#: ../wpGoogleMaps.php:1557
|
3409 |
+
msgid ""
|
3410 |
+
"<strong>WP Google Maps:</strong> This plugin does not support PHP version "
|
3411 |
+
"5.2 or below. Please use your cPanel or contact your host to switch version."
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2254
|
3415 |
+
#: ../wpGoogleMaps.php:1573
|
3416 |
+
msgid ""
|
3417 |
+
"<strong>WP Google Maps:</strong> This plugin uses the DOMDocument class, "
|
3418 |
+
"which is unavailable on this server. Please contact your host to request "
|
3419 |
+
"they enable this library."
|
3420 |
+
msgstr ""
|
3421 |
|
3422 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2268
|
3423 |
+
msgid ""
|
3424 |
+
"<strong>WP Google Maps:</strong> Due to a known issue with PHP 5.4.45 and "
|
3425 |
+
"JSON serialization, the Pro add-on cannot function correctly. We strongly "
|
3426 |
+
"recommend you switch to more up to date version of PHP."
|
3427 |
+
msgstr ""
|
3428 |
|
3429 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2442
|
3430 |
+
msgid ""
|
3431 |
+
"The Pro add-on cannot be loaded due to a fatal error. This is usually due to "
|
3432 |
+
"missing files. Please re-install the Pro add-on. Technical details are as "
|
3433 |
+
"follows: "
|
3434 |
+
msgstr ""
|
3435 |
|
3436 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2500
|
3437 |
+
#, php-format
|
3438 |
+
msgid ""
|
3439 |
+
"In order to use WP Google Maps Gold with your current Pro version, you need "
|
3440 |
+
"to <a href=\"%s\">update your gold version</a> to the latest version (5.1*)."
|
3441 |
+
msgstr ""
|
3442 |
|
3443 |
+
#: ../../wp-google-maps-pro/wp-google-maps-pro.php:2517
|
3444 |
+
#, php-format
|
3445 |
+
msgid ""
|
3446 |
+
"In order to use WP Google Maps Visitor Generated Markers with your current "
|
3447 |
+
"Pro version, you need to <a href=\"%s\">update your VGM version</a> to the "
|
3448 |
+
"latest version (3.30*)."
|
3449 |
+
msgstr ""
|
3450 |
|
3451 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:296
|
3452 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1246
|
3453 |
+
msgid "VGM"
|
3454 |
+
msgstr ""
|
3455 |
|
3456 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:347
|
3457 |
+
#, fuzzy
|
3458 |
+
msgid "Visitor Generated Markers - Settings"
|
3459 |
+
msgstr "Посетителски настройки за генерирани маркери"
|
3460 |
|
3461 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:354
|
3462 |
+
#, fuzzy
|
3463 |
+
msgid "Enable Visitor Generated Markers?"
|
3464 |
+
msgstr "Посетител генерирал маркери"
|
3465 |
|
3466 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:363
|
3467 |
#, fuzzy
|
3468 |
+
msgid "Who can add markers?"
|
3469 |
+
msgstr "Специални маркери"
|
3470 |
+
|
3471 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:366
|
3472 |
+
msgid "Everyone"
|
3473 |
+
msgstr ""
|
3474 |
|
3475 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:367
|
3476 |
+
msgid "Registered Users"
|
|
|
3477 |
msgstr ""
|
3478 |
|
3479 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:372
|
|
|
3480 |
#, fuzzy
|
3481 |
+
msgid "Allow users to add a description?"
|
3482 |
+
msgstr "Позволи на потребителите да филтрират по категория?"
|
3483 |
|
3484 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:381
|
3485 |
+
#, fuzzy
|
3486 |
+
msgid "Allow users to select a marker category?"
|
3487 |
+
msgstr "Позволи на потребителите да филтрират по категория?"
|
3488 |
|
3489 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:390
|
3490 |
+
#, fuzzy
|
3491 |
+
msgid "Allow users to upload images?"
|
3492 |
+
msgstr "Позволи на потребителите да филтрират по категория?"
|
3493 |
|
3494 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:399
|
3495 |
+
#, fuzzy
|
3496 |
+
msgid "Allow users to add a link to markers?"
|
3497 |
+
msgstr "Позволи на потребителите да филтрират по категория?"
|
3498 |
+
|
3499 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:408
|
3500 |
+
msgid "Zoom in after UGM submission"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:418
|
3504 |
+
msgid "Form Text Overrides"
|
3505 |
+
msgstr ""
|
3506 |
+
|
3507 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:421
|
3508 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:645
|
3509 |
#, fuzzy
|
3510 |
+
msgid "Add your own marker"
|
3511 |
+
msgstr "Добави маркер"
|
3512 |
|
3513 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:425
|
3514 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:646
|
3515 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:647
|
3516 |
#, fuzzy
|
3517 |
+
msgid "Marker Title"
|
3518 |
+
msgstr "Маркер Latitude"
|
3519 |
|
3520 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:429
|
3521 |
#, fuzzy
|
3522 |
+
msgid "Marker Title (Placeholder)"
|
3523 |
+
msgstr "Стилове на маркерите"
|
|
|
3524 |
|
3525 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:433
|
3526 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:648
|
3527 |
+
#, fuzzy
|
3528 |
+
msgid "Marker Address or GPS Location"
|
3529 |
+
msgstr "Marker данни локация"
|
3530 |
|
3531 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:437
|
3532 |
+
#, fuzzy
|
3533 |
+
msgid "Marker Address (Placeholder)"
|
3534 |
+
msgstr "Адрес"
|
3535 |
|
3536 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:441
|
3537 |
#, fuzzy
|
3538 |
+
msgid "Or click on the map and drag to add a marker"
|
3539 |
+
msgstr "Кликни на картата за да въведеш връх."
|
|
|
3540 |
|
3541 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:445
|
3542 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:651
|
3543 |
+
#, fuzzy
|
3544 |
+
msgid "Marker Description"
|
3545 |
+
msgstr "Описание"
|
3546 |
|
3547 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:449
|
3548 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:652
|
3549 |
+
#, fuzzy
|
3550 |
+
#| msgid "Marker Listing"
|
3551 |
+
msgid "Marker Link"
|
3552 |
+
msgstr "Списък маркери"
|
3553 |
|
3554 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:453
|
3555 |
+
msgid "URL (Placeholder)"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:457
|
3559 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:654
|
3560 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1510
|
3561 |
+
#: ../includes/tables/class.admin-marker-datatable.php:40
|
3562 |
+
msgid "Image"
|
3563 |
+
msgstr "Снимка"
|
|
|
|
|
|
|
|
|
|
|
3564 |
|
3565 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:461
|
3566 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:655
|
3567 |
+
#, fuzzy
|
3568 |
+
msgid "Marker Category"
|
3569 |
+
msgstr "Категории маркери"
|
3570 |
|
3571 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:649
|
3572 |
+
#, fuzzy
|
3573 |
+
msgid "Marker Address"
|
3574 |
+
msgstr "Адрес"
|
3575 |
|
3576 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:650
|
3577 |
+
#, fuzzy
|
3578 |
+
msgid "Or right-click on the map and drag to add a marker"
|
3579 |
+
msgstr "Кликни на картата за да въведеш връх."
|
3580 |
|
3581 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:794
|
3582 |
+
msgid "GDPR Agreement"
|
3583 |
+
msgstr ""
|
3584 |
|
3585 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:801
|
3586 |
+
msgid "Please tick this box to prove you are human"
|
3587 |
+
msgstr ""
|
3588 |
|
3589 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:805
|
3590 |
#, fuzzy
|
3591 |
+
msgid "Add marker"
|
3592 |
+
msgstr "Добави маркер"
|
|
|
3593 |
|
3594 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:805
|
3595 |
+
msgid "Adding"
|
3596 |
+
msgstr "Добавяне"
|
3597 |
|
3598 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1030
|
3599 |
+
#, php-format
|
3600 |
+
msgid "A new marker has been submitted for your map (%s)"
|
3601 |
+
msgstr ""
|
3602 |
|
3603 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1031
|
3604 |
+
msgid "A new marker has been submitted for your map"
|
3605 |
+
msgstr ""
|
|
|
|
|
3606 |
|
3607 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1032
|
3608 |
+
#, php-format
|
3609 |
+
msgid "Map: %s"
|
3610 |
+
msgstr ""
|
|
|
3611 |
|
3612 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1033
|
3613 |
+
#, fuzzy, php-format
|
3614 |
+
msgid "Marker title: %s"
|
3615 |
+
msgstr "Маркер Latitude"
|
|
|
3616 |
|
3617 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1034
|
3618 |
+
#, fuzzy, php-format
|
3619 |
+
msgid "Marker address: %s"
|
3620 |
+
msgstr "Адрес"
|
|
|
3621 |
|
3622 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1035
|
3623 |
+
#, fuzzy, php-format
|
3624 |
+
msgid "Marker description: %s"
|
3625 |
+
msgstr "Описание"
|
3626 |
|
3627 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1036
|
3628 |
+
#, fuzzy, php-format
|
3629 |
+
msgid "Marker category: %s"
|
3630 |
+
msgstr "Категории маркери"
|
3631 |
|
3632 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1039
|
3633 |
+
#, php-format
|
3634 |
+
msgid "To edit or view the marker, please click the following link: %s"
|
3635 |
+
msgstr ""
|
3636 |
|
3637 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1041
|
3638 |
+
#, php-format
|
3639 |
+
msgid ""
|
3640 |
+
"To approve, edit or delete the marker, please click the following link: %s"
|
3641 |
+
msgstr ""
|
3642 |
|
3643 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1072
|
3644 |
+
#, fuzzy
|
3645 |
+
#| msgid "Thank you. Your marker is awaiting approval."
|
3646 |
+
msgid "Your marker is pending approval."
|
3647 |
+
msgstr "Благодаря. Твоят маркер чака одобрение."
|
3648 |
|
3649 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1074
|
3650 |
+
msgid "Marker successfully submitted."
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1276
|
3654 |
+
#, fuzzy
|
3655 |
+
msgid ""
|
3656 |
+
"Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
|
3657 |
+
"version 5.50 to allow for these settings"
|
3658 |
msgstr ""
|
3659 |
+
"Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
|
3660 |
+
"\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
|
3661 |
|
3662 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1280
|
3663 |
+
#, fuzzy
|
3664 |
+
msgid "Visitor Generated Marker Settings"
|
3665 |
+
msgstr "Посетителски настройки за генерирани маркери"
|
3666 |
|
3667 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1284
|
3668 |
+
#, fuzzy
|
3669 |
+
msgid "Visitor Marker Input Settings"
|
3670 |
+
msgstr "Посетителски настройки за генерирани маркери"
|
3671 |
|
3672 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1286
|
3673 |
+
msgid "Strip all HTML tags in descriptions and titles"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1287
|
3677 |
#, fuzzy
|
3678 |
+
msgid "Automatically approve visitor generated markers"
|
3679 |
+
msgstr "Посетител генерирал маркери"
|
|
|
3680 |
|
3681 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1288
|
3682 |
+
msgid "Email me whenever there is a new marker"
|
|
|
|
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1288
|
3686 |
+
msgid "Email address:"
|
3687 |
+
msgstr ""
|
3688 |
|
3689 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1293
|
3690 |
+
msgid "Form Style"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1295
|
3694 |
+
msgid "Modern Form Layout (beta)"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1300
|
3698 |
+
#: ../html/gdpr-compliance-settings.html.php:11
|
3699 |
+
#: ../html/settings-page.html.php:44 ../html/settings-page.html.php:1458
|
3700 |
+
#: ../includes/class.gdpr-compliance.php:170
|
3701 |
+
msgid "GDPR Compliance"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1302
|
3705 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1339
|
3706 |
+
msgid "Require consent before user submission"
|
3707 |
+
msgstr ""
|
3708 |
+
|
3709 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1334
|
3710 |
+
msgid "VGM Add-on Compliance"
|
3711 |
+
msgstr ""
|
3712 |
+
|
3713 |
+
#: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1341
|
3714 |
+
msgid ""
|
3715 |
+
"If you collect personally identifying information through your Visitor "
|
3716 |
+
"Generated Markers form, you should check this box to require the user to "
|
3717 |
+
"consent to the GDPR notice before submitting their marker."
|
3718 |
+
msgstr ""
|
3719 |
+
|
3720 |
+
#: ../base/classes/WPGM_templates.php:40
|
3721 |
+
msgid "Welcome to"
|
3722 |
+
msgstr "Добре дошли в"
|
3723 |
+
|
3724 |
+
#: ../base/classes/WPGM_templates.php:42
|
3725 |
+
msgid ""
|
3726 |
+
"Amazing maps. Simple interface. Powerful functionality. World Class Support."
|
3727 |
+
msgstr ""
|
3728 |
+
"Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
|
3729 |
+
|
3730 |
+
#: ../base/classes/WPGM_templates.php:44
|
3731 |
+
msgid "What's new?"
|
3732 |
+
msgstr "Какво ново?"
|
3733 |
+
|
3734 |
+
#: ../base/classes/WPGM_templates.php:49 ../html/welcome.html.php:77
|
3735 |
+
msgid "Let users search for products, branches and stores near them"
|
3736 |
+
msgstr "Нека потребителите да търсят за продукти, магазини около тях."
|
3737 |
+
|
3738 |
+
#: ../base/classes/WPGM_templates.php:54
|
3739 |
+
msgid "Create service areas or coverage maps with polygons"
|
3740 |
+
msgstr "Създай зона на обслужване с помощта на полигоните."
|
3741 |
+
|
3742 |
+
#: ../base/classes/WPGM_templates.php:59
|
3743 |
+
msgid "Create custom routes or outlines using polylines"
|
3744 |
+
msgstr "Създай къстъм пътища или очертания с полиномите"
|
3745 |
+
|
3746 |
+
#: ../base/classes/WPGM_templates.php:74 ../html/welcome.html.php:107
|
3747 |
+
msgid "How did you find out about us?"
|
3748 |
+
msgstr "Как научихте за нас?"
|
3749 |
+
|
3750 |
+
#: ../base/classes/WPGM_templates.php:81 ../html/welcome.html.php:114
|
3751 |
+
msgid "WordPress.org plugin repository"
|
3752 |
+
msgstr "WordPress.org plugin repository"
|
3753 |
+
|
3754 |
+
#: ../base/classes/WPGM_templates.php:82 ../html/welcome.html.php:115
|
3755 |
+
msgid "What search term did you use?"
|
3756 |
+
msgstr "Какво търсехте?"
|
3757 |
+
|
3758 |
+
#: ../base/classes/WPGM_templates.php:86 ../html/welcome.html.php:119
|
3759 |
+
msgid "Google or other search engine"
|
3760 |
+
msgstr "Google или друга търсачка"
|
3761 |
+
|
3762 |
+
#: ../base/classes/WPGM_templates.php:90 ../html/welcome.html.php:123
|
3763 |
+
msgid "Friend recommendation"
|
3764 |
+
msgstr "Препоръка на приятел"
|
3765 |
+
|
3766 |
+
#: ../base/classes/WPGM_templates.php:94 ../html/welcome.html.php:127
|
3767 |
+
#: ../lib/codecabin/deactivate-feedback-form.php:61
|
3768 |
+
msgid "Other"
|
3769 |
+
msgstr "Друго"
|
3770 |
+
|
3771 |
+
#: ../base/classes/WPGM_templates.php:95 ../html/welcome.html.php:128
|
3772 |
+
msgid "Please explain"
|
3773 |
+
msgstr "Моля, опиши"
|
3774 |
+
|
3775 |
+
#: ../base/classes/WPGM_templates.php:117 ../html/welcome.html.php:143
|
3776 |
+
msgid "New to WP Google Maps?"
|
3777 |
+
msgstr "Нов в WP Google Maps?"
|
3778 |
+
|
3779 |
+
#: ../base/classes/WPGM_templates.php:118 ../html/welcome.html.php:144
|
3780 |
+
msgid "You may want to"
|
3781 |
+
msgstr "Може да искате да"
|
3782 |
+
|
3783 |
+
#: ../base/classes/WPGM_templates.php:118 ../html/welcome.html.php:144
|
3784 |
+
msgid "review our documentation"
|
3785 |
+
msgstr "преглед на нашата документация"
|
3786 |
+
|
3787 |
+
#: ../base/classes/WPGM_templates.php:118 ../html/welcome.html.php:144
|
3788 |
+
msgid ""
|
3789 |
+
"before you get started. If you're a tech-savvy individual, you may skip this "
|
3790 |
+
"step."
|
3791 |
+
msgstr "преди да почнеш. Ако си напреданал, може да прескочиш"
|
3792 |
+
|
3793 |
+
#: ../base/classes/WPGM_templates.php:121 ../html/welcome.html.php:149
|
3794 |
+
msgid "Help me!"
|
3795 |
+
msgstr "Помогни ми!"
|
3796 |
+
|
3797 |
+
#: ../base/classes/WPGM_templates.php:122 ../html/welcome.html.php:150
|
3798 |
+
msgid "Visit our"
|
3799 |
+
msgstr "Посети нашия"
|
3800 |
+
|
3801 |
+
#: ../base/classes/WPGM_templates.php:122
|
3802 |
+
msgid "Support Forum"
|
3803 |
+
msgstr "Форум за съпорт"
|
3804 |
+
|
3805 |
+
#: ../base/classes/WPGM_templates.php:122 ../html/welcome.html.php:150
|
3806 |
+
msgid "for quick and friendly help. We'll answer your request within 24hours."
|
3807 |
+
msgstr "за бърз и добър съпорт. Ще отговорим в рамките на 24 часа."
|
3808 |
+
|
3809 |
+
#: ../base/classes/WPGM_templates.php:125 ../html/welcome.html.php:155
|
3810 |
+
msgid "Feedback"
|
3811 |
+
msgstr "Фийдбек"
|
3812 |
+
|
3813 |
+
#: ../base/classes/WPGM_templates.php:126 ../html/welcome.html.php:156
|
3814 |
+
msgid "We need you to help us make this plugin better."
|
3815 |
+
msgstr "Трябва ни помощта ти, за да работи този плъгин по-добре."
|
3816 |
+
|
3817 |
+
#: ../base/classes/WPGM_templates.php:126 ../html/welcome.html.php:156
|
3818 |
+
msgid "Send us your feedback"
|
3819 |
+
msgstr "Изпрати ни твоя фийдбек."
|
3820 |
+
|
3821 |
+
#: ../base/classes/WPGM_templates.php:126 ../html/welcome.html.php:156
|
3822 |
+
msgid "and we'll act on it as soon as humanly possible."
|
3823 |
+
msgstr "и ние ще действаме колкото може по-бързо."
|
3824 |
+
|
3825 |
+
#: ../base/classes/WPGM_templates.php:130 ../html/credits.html.php:160
|
3826 |
+
#: ../html/welcome.html.php:161
|
3827 |
+
msgid "OK! Let's start"
|
3828 |
+
msgstr "OK! Да почваме"
|
3829 |
+
|
3830 |
+
#: ../base/classes/widget_module.class.php:16
|
3831 |
+
msgid "Add your map as a widget"
|
3832 |
+
msgstr "Добави картата си като уиджет"
|
3833 |
+
|
3834 |
+
#: ../base/classes/widget_module.class.php:74
|
3835 |
+
msgid "Select your map:"
|
3836 |
+
msgstr "Избери твоята карта:"
|
3837 |
|
3838 |
+
#: ../html/credits.html.php:6 ../html/welcome.html.php:17
|
3839 |
+
#, fuzzy, php-format
|
3840 |
+
msgid "Welcome to WP Google Maps version %s"
|
3841 |
+
msgstr "Нов в WP Google Maps?"
|
3842 |
+
|
3843 |
+
#: ../html/credits.html.php:11
|
3844 |
+
msgid ""
|
3845 |
+
"Thank you for updating! WP Google Maps helps you build amazing maps through "
|
3846 |
+
"a simple interface and powerful functionality along with world class support."
|
3847 |
+
msgstr ""
|
3848 |
+
|
3849 |
+
#: ../html/credits.html.php:17 ../html/welcome.html.php:28
|
3850 |
#, fuzzy
|
3851 |
+
msgid "Welcome"
|
3852 |
+
msgstr "Добре дошли в"
|
3853 |
|
3854 |
+
#: ../html/credits.html.php:20 ../html/welcome.html.php:29
|
3855 |
+
msgid "Credits"
|
3856 |
+
msgstr ""
|
3857 |
|
3858 |
+
#: ../html/credits.html.php:26
|
3859 |
+
msgid "WP Google Maps is created by an international team of developers."
|
3860 |
+
msgstr ""
|
3861 |
|
3862 |
+
#: ../html/credits.html.php:29
|
3863 |
+
msgid "Project Leaders"
|
3864 |
+
msgstr ""
|
3865 |
|
3866 |
+
#: ../html/credits.html.php:42
|
3867 |
+
msgid "Founder & Lead Developer"
|
3868 |
+
msgstr ""
|
3869 |
+
|
3870 |
+
#: ../html/credits.html.php:54 ../html/credits.html.php:66
|
3871 |
+
msgid "Lead Developer & Support"
|
3872 |
+
msgstr ""
|
3873 |
+
|
3874 |
+
#: ../html/credits.html.php:72
|
3875 |
+
msgid "Contributors"
|
3876 |
+
msgstr ""
|
3877 |
+
|
3878 |
+
#: ../html/credits.html.php:85 ../html/credits.html.php:97
|
3879 |
+
msgid "Support & Developer"
|
3880 |
+
msgstr ""
|
3881 |
|
3882 |
+
#: ../html/credits.html.php:109
|
3883 |
#, fuzzy
|
3884 |
+
msgid "Marketing"
|
3885 |
+
msgstr "Списък маркери"
|
3886 |
+
|
3887 |
+
#: ../html/credits.html.php:123
|
3888 |
+
#, fuzzy
|
3889 |
+
#| msgid "Documentation"
|
3890 |
+
msgid "Documentation Videos"
|
3891 |
+
msgstr "Документация"
|
3892 |
+
|
3893 |
+
#: ../html/credits.html.php:135
|
3894 |
+
msgid "Quality Assurance"
|
3895 |
+
msgstr ""
|
3896 |
+
|
3897 |
+
#: ../html/credits.html.php:147
|
3898 |
+
msgid "Security Analyst"
|
3899 |
+
msgstr ""
|
3900 |
+
|
3901 |
+
#: ../html/credits.html.php:153
|
3902 |
+
msgid "Want to see your name on this page?"
|
3903 |
+
msgstr ""
|
3904 |
+
|
3905 |
+
#: ../html/credits.html.php:155
|
3906 |
+
msgid "Get involved on GitHub."
|
3907 |
+
msgstr ""
|
3908 |
+
|
3909 |
+
#: ../html/footer.html.php:4
|
3910 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1185
|
3911 |
+
#: ../legacy-core.php:919
|
3912 |
+
msgid "Experiencing problems with the plugin?"
|
3913 |
+
msgstr "Имаш проблеми с плъгина?"
|
3914 |
+
|
3915 |
+
#: ../html/footer.html.php:12
|
3916 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1185
|
3917 |
+
#: ../legacy-core.php:919
|
3918 |
+
msgid "See the troubleshooting manual."
|
3919 |
+
msgstr "Виж документацията по отстраняване на проблемите."
|
3920 |
+
|
3921 |
+
#: ../html/footer.html.php:17
|
3922 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1185
|
3923 |
+
msgid "Or ask a question on our "
|
3924 |
+
msgstr "Или задай въпрос в нашия"
|
3925 |
+
|
3926 |
+
#: ../html/footer.html.php:22
|
3927 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1185
|
3928 |
+
msgid "Support forum."
|
3929 |
+
msgstr "Форум за съпорт."
|
3930 |
+
|
3931 |
+
#: ../html/gdpr-compliance-settings.html.php:14
|
3932 |
+
#: ../html/settings-page.html.php:1461
|
3933 |
+
msgid ""
|
3934 |
+
"Our GDPR notice will be displayed whenever the agreement cookie is not set. "
|
3935 |
+
"Agreeing to the notice will set this cookie."
|
3936 |
+
msgstr ""
|
3937 |
+
|
3938 |
+
#: ../html/gdpr-compliance-settings.html.php:19
|
3939 |
+
#: ../html/settings-page.html.php:1466
|
3940 |
+
msgid ""
|
3941 |
+
"Some caching and optimization plugins will continue to serve your map page "
|
3942 |
+
"with the GDPR agreement, disregarding this cookie. In this instance, "
|
3943 |
+
"clicking \"I Agree\" will reload the page and appear to have no effect. To "
|
3944 |
+
"solve this issue, we recommend you exclude your map page from caching and "
|
3945 |
+
"optimization."
|
3946 |
+
msgstr ""
|
3947 |
+
|
3948 |
+
#: ../html/gdpr-compliance-settings.html.php:27
|
3949 |
+
#: ../html/settings-page.html.php:1475
|
3950 |
+
#, fuzzy
|
3951 |
+
#| msgid "General options"
|
3952 |
+
msgid "General Complicance"
|
3953 |
+
msgstr "Общи настройки"
|
3954 |
+
|
3955 |
+
#: ../html/gdpr-compliance-settings.html.php:34
|
3956 |
+
#: ../html/settings-page.html.php:1483
|
3957 |
+
msgid "Require consent before loading Maps API"
|
3958 |
+
msgstr ""
|
3959 |
+
|
3960 |
+
#: ../html/gdpr-compliance-settings.html.php:37
|
3961 |
+
#: ../html/settings-page.html.php:1486
|
3962 |
+
msgid ""
|
3963 |
+
"The GDPR views IP Addresses as Personal Data, which requires consent before "
|
3964 |
+
"being processed. Loading the Google Maps API stores some user information, "
|
3965 |
+
"such as IP Addresses. WP Google Maps endeavours to uphold the spirit of data "
|
3966 |
+
"protection as per the GDPR. Enable this to option to prevent the Maps API "
|
3967 |
+
"from loading, until a user has consented to it."
|
3968 |
+
msgstr ""
|
3969 |
+
|
3970 |
+
#: ../html/gdpr-compliance-settings.html.php:47
|
3971 |
+
#: ../html/settings-page.html.php:1507
|
3972 |
+
msgid "GDPR Consent Notice"
|
3973 |
+
msgstr ""
|
3974 |
+
|
3975 |
+
#: ../html/gdpr-compliance-settings.html.php:53
|
3976 |
+
#: ../html/settings-page.html.php:1514
|
3977 |
+
msgid "GDPR Notice"
|
3978 |
+
msgstr ""
|
3979 |
+
|
3980 |
+
#: ../html/gdpr-compliance-settings.html.php:56
|
3981 |
+
#: ../html/settings-page.html.php:1517
|
3982 |
+
msgid ""
|
3983 |
+
"Users will be asked to accept the notice shown here, in the form of a check "
|
3984 |
+
"box."
|
3985 |
+
msgstr ""
|
3986 |
+
|
3987 |
+
#: ../html/gdpr-compliance-settings.html.php:65
|
3988 |
+
#: ../html/settings-page.html.php:1527
|
3989 |
+
#, fuzzy
|
3990 |
+
#| msgid "Category Name"
|
3991 |
+
msgid "Company Name"
|
3992 |
+
msgstr "Име на категория"
|
3993 |
+
|
3994 |
+
#: ../html/gdpr-compliance-settings.html.php:75
|
3995 |
+
#: ../html/settings-page.html.php:1541
|
3996 |
+
msgid "Retention Purpose(s)"
|
3997 |
+
msgstr ""
|
3998 |
+
|
3999 |
+
#: ../html/gdpr-compliance-settings.html.php:83
|
4000 |
+
#: ../html/settings-page.html.php:1551
|
4001 |
+
msgid "The GDPR regulates that you need to state why you are processing data."
|
4002 |
+
msgstr ""
|
4003 |
+
|
4004 |
+
#: ../html/gdpr-compliance-settings.html.php:92
|
4005 |
+
#: ../html/settings-page.html.php:1562
|
4006 |
+
msgid "Override GDPR Notice"
|
4007 |
+
msgstr ""
|
4008 |
+
|
4009 |
+
#: ../html/gdpr-compliance-settings.html.php:100
|
4010 |
+
#: ../html/settings-page.html.php:1571
|
4011 |
+
msgid ""
|
4012 |
+
"By checking this box, you agree to take sole responsibility for GDPR "
|
4013 |
+
"Compliance with regards to this plugin."
|
4014 |
+
msgstr ""
|
4015 |
+
|
4016 |
+
#: ../html/gdpr-compliance-settings.html.php:109
|
4017 |
+
#: ../html/settings-page.html.php:1579
|
4018 |
+
msgid "Override Text"
|
4019 |
+
msgstr ""
|
4020 |
+
|
4021 |
+
#: ../html/gdpr-compliance-settings.html.php:120
|
4022 |
+
#: ../html/settings-page.html.php:1593
|
4023 |
+
msgid ""
|
4024 |
+
"For more information about WPGM and GDPR compliance, please refer to our <a "
|
4025 |
+
"href=\"https://www.wpgmaps.com/gdpr/\">GDPR information page</a> and our <a "
|
4026 |
+
"href=\"https://www.wpgmaps.com/privacy-policy/\">Privacy Policy</a>"
|
4027 |
+
msgstr ""
|
4028 |
+
|
4029 |
+
#: ../html/gdpr-default-notice.html.php:6
|
4030 |
+
msgid ""
|
4031 |
+
"I agree for my personal data to be processed by {COMPANY_NAME}.\n"
|
4032 |
+
"\t\t\n"
|
4033 |
+
"I agree for my personal data, provided via map API calls, to be processed by "
|
4034 |
+
"the API provider, for the purposes of geocoding (converting addresses to "
|
4035 |
+
"coordinates), reverse geocoding and generating directions.\n"
|
4036 |
+
"\n"
|
4037 |
+
"Some visual components of WP Google Maps use 3rd party libraries which are "
|
4038 |
+
"loaded over the network. At present the libraries are Google Maps, Open "
|
4039 |
+
"Street Map, jQuery DataTables and FontAwesome. When loading resources over a "
|
4040 |
+
"network, the 3rd party server will receive your IP address and User Agent "
|
4041 |
+
"string amongst other details. Please refer to the Privacy Policy of the "
|
4042 |
+
"respective libraries for details on how they use data and the process to "
|
4043 |
+
"exercise your rights under the GDPR regulations.\n"
|
4044 |
+
"\n"
|
4045 |
+
"WP Google Maps uses jQuery DataTables to display sortable, searchable "
|
4046 |
+
"tables, such as that seen in the Advanced Marker Listing and on the Map Edit "
|
4047 |
+
"Page. jQuery DataTables in certain circumstances uses a cookie to save and "
|
4048 |
+
"later recall the \"state\" of a given table - that is, the search term, sort "
|
4049 |
+
"column and order and current page. This data is help in local storage and "
|
4050 |
+
"retained until this is cleared manually. No libraries used by WP Google Maps "
|
4051 |
+
"transmit this information.\n"
|
4052 |
+
"\n"
|
4053 |
+
"Please <a href=\"https://developers.google.com/maps/terms\">see here</a> and "
|
4054 |
+
"<a href=\"https://maps.google.com/help/terms_maps.html\">here</a> for "
|
4055 |
+
"Google's terms. Please also see <a href=\"https://policies.google.com/"
|
4056 |
+
"privacy?hl=en-GB&gl=uk\">Google's Privacy Policy</a>. We do not send the "
|
4057 |
+
"API provider any personally identifying information, or information that "
|
4058 |
+
"could uniquely identify your device.\n"
|
4059 |
+
"\n"
|
4060 |
+
"Where this notice is displayed in place of a map, agreeing to this notice "
|
4061 |
+
"will store a cookie recording your agreement so you are not prompted again."
|
4062 |
+
msgstr ""
|
4063 |
+
|
4064 |
+
#: ../html/google-maps-api-error-dialog.html.php:8
|
4065 |
+
msgid "Maps API Error"
|
4066 |
+
msgstr ""
|
4067 |
+
|
4068 |
+
#: ../html/google-maps-api-error-dialog.html.php:14
|
4069 |
+
msgid ""
|
4070 |
+
"One or more error(s) have occured attempting to initialize the Maps API:"
|
4071 |
+
msgstr ""
|
4072 |
+
|
4073 |
+
#: ../html/google-maps-api-error-dialog.html.php:84
|
4074 |
+
msgid "This dialog is only visible to administrators"
|
4075 |
+
msgstr ""
|
4076 |
+
|
4077 |
+
#: ../html/google-maps-api-error-dialog.html.php:90
|
4078 |
+
msgid "Dismiss"
|
4079 |
+
msgstr ""
|
4080 |
+
|
4081 |
+
#: ../html/google-maps-api-settings.html.php:8
|
4082 |
+
msgid "Load Maps Engine API:"
|
4083 |
+
msgstr ""
|
4084 |
+
|
4085 |
+
#: ../html/google-maps-api-settings.html.php:42
|
4086 |
+
msgid "Always include engine API on pages:"
|
4087 |
+
msgstr ""
|
4088 |
+
|
4089 |
+
#: ../html/google-maps-api-settings.html.php:50
|
4090 |
+
msgid "Always exclude engine API on pages:"
|
4091 |
+
msgstr ""
|
4092 |
+
|
4093 |
+
#: ../html/google-maps-api-settings.html.php:58
|
4094 |
+
msgid "Prevent other plugins and theme loading API:"
|
4095 |
+
msgstr ""
|
4096 |
+
|
4097 |
+
#: ../html/map-edit-page/circle-panel.html.php:7
|
4098 |
+
#, fuzzy
|
4099 |
+
#| msgid "Click on the map to insert a vertex."
|
4100 |
+
msgid "<strong>Click</strong> on the map to set your circles center."
|
4101 |
+
msgstr "Кликни на картата за да въведеш връх."
|
4102 |
+
|
4103 |
+
#: ../html/map-edit-page/circle-panel.html.php:12
|
4104 |
+
msgid "<strong>Move</strong> the mouse to adjust your circles radius."
|
4105 |
+
msgstr ""
|
4106 |
+
|
4107 |
+
#: ../html/map-edit-page/circle-panel.html.php:17
|
4108 |
+
msgid "<strong>Click</strong> a second time to finish drawing your circle."
|
4109 |
+
msgstr ""
|
4110 |
+
|
4111 |
+
#: ../html/map-edit-page/circle-panel.html.php:27
|
4112 |
+
msgid "Use the fields below to edit this circles information."
|
4113 |
+
msgstr ""
|
4114 |
+
|
4115 |
+
#: ../html/map-edit-page/circle-panel.html.php:32
|
4116 |
+
#, fuzzy
|
4117 |
+
#| msgid "Click on a vertex to remove it."
|
4118 |
+
msgid "<strong>Click and drag</strong> the center of the circle to move it."
|
4119 |
+
msgstr "Кликни на връх за да премахнеш."
|
4120 |
+
|
4121 |
+
#: ../html/map-edit-page/circle-panel.html.php:37
|
4122 |
+
msgid ""
|
4123 |
+
"<strong>Click and drag</strong> the edge of the circle to alter it's radius."
|
4124 |
+
msgstr ""
|
4125 |
+
|
4126 |
+
#: ../html/map-edit-page/circle-panel.html.php:61
|
4127 |
+
#, fuzzy
|
4128 |
+
#| msgid "Radius"
|
4129 |
+
msgid "Radius (km)"
|
4130 |
+
msgstr "Радиус"
|
4131 |
+
|
4132 |
+
#: ../html/map-edit-page/circle-panel.html.php:86
|
4133 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:72
|
4134 |
+
#: ../html/map-edit-page/map-edit-page.html.php:770
|
4135 |
+
#: ../html/map-edit-page/polygon-panel.html.php:105
|
4136 |
+
#: ../html/map-edit-page/polygon-panel.html.php:128
|
4137 |
+
#: ../html/map-edit-page/polygon-panel.html.php:160
|
4138 |
+
#: ../html/map-edit-page/polyline-panel.html.php:87
|
4139 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:72
|
4140 |
+
msgid "(0 - 1.0) example: 0.5 for 50%"
|
4141 |
+
msgstr "(0 - 1.0) пример: 0.5 за 50%"
|
4142 |
+
|
4143 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:7
|
4144 |
+
msgid "<strong>Click</strong> on the map to add points to your heatmap."
|
4145 |
+
msgstr ""
|
4146 |
+
|
4147 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:12
|
4148 |
+
msgid ""
|
4149 |
+
"<strong>Click</strong> an existing heatmap point to remove points from the "
|
4150 |
+
"heatmap."
|
4151 |
+
msgstr ""
|
4152 |
+
|
4153 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:17
|
4154 |
+
msgid "<strong>Drag</strong> points on the heatmap to re-position them."
|
4155 |
+
msgstr ""
|
4156 |
+
|
4157 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:22
|
4158 |
+
msgid "<strong>Hold right mouse</strong> to draw points freehand"
|
4159 |
+
msgstr ""
|
4160 |
+
|
4161 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:43
|
4162 |
+
msgid "Gradient"
|
4163 |
+
msgstr ""
|
4164 |
+
|
4165 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:57
|
4166 |
+
#: ../html/theme-panel.html.php:36
|
4167 |
+
msgid "Blue"
|
4168 |
+
msgstr ""
|
4169 |
+
|
4170 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:80
|
4171 |
+
#: ../includes/legacy/functions.circle.php:74
|
4172 |
+
#: ../includes/legacy/functions.circle.php:197
|
4173 |
+
msgid "Radius"
|
4174 |
+
msgstr "Радиус"
|
4175 |
+
|
4176 |
+
#: ../html/map-edit-page/heatmap-panel.html.php:103
|
4177 |
+
#, php-format
|
4178 |
+
msgid ""
|
4179 |
+
"Add dynamic heatmap data with the <a href=\"%s\" target=\"_BLANK\">Pro "
|
4180 |
+
"version</a>. <a href=\"%s\" target=\"_BLANK\">View a demo</a>"
|
4181 |
+
msgstr ""
|
4182 |
+
|
4183 |
+
#: ../html/map-edit-page/map-edit-page.html.php:12
|
4184 |
+
msgid "Create your Map"
|
4185 |
+
msgstr "Създавай твоя карта"
|
4186 |
+
|
4187 |
+
#: ../html/map-edit-page/map-edit-page.html.php:18
|
4188 |
+
#, fuzzy
|
4189 |
+
msgid "New"
|
4190 |
+
msgstr "Добави нова"
|
4191 |
+
|
4192 |
+
#: ../html/map-edit-page/map-edit-page.html.php:24
|
4193 |
+
msgid "Unsaved data will be lost"
|
4194 |
+
msgstr ""
|
4195 |
+
|
4196 |
+
#: ../html/map-edit-page/map-edit-page.html.php:45
|
4197 |
+
#: ../html/settings-page.html.php:19
|
4198 |
+
msgid "General Settings"
|
4199 |
+
msgstr "Основни настройки"
|
4200 |
+
|
4201 |
+
#: ../html/map-edit-page/map-edit-page.html.php:52 ../html/welcome.html.php:85
|
4202 |
+
msgid "Themes"
|
4203 |
+
msgstr "Теми"
|
4204 |
+
|
4205 |
+
#: ../html/map-edit-page/map-edit-page.html.php:94
|
4206 |
+
msgid "Pro Upgrade"
|
4207 |
+
msgstr "Pro ъпгрейд"
|
4208 |
+
|
4209 |
+
#: ../html/map-edit-page/map-edit-page.html.php:143
|
4210 |
+
msgid "Short code"
|
4211 |
+
msgstr "Шорткод"
|
4212 |
+
|
4213 |
+
#: ../html/map-edit-page/map-edit-page.html.php:153
|
4214 |
+
msgid "copy this into your post or page to display the map"
|
4215 |
+
msgstr "копирай това в твоя пост или страница за да покаже картата"
|
4216 |
+
|
4217 |
+
#: ../html/map-edit-page/map-edit-page.html.php:166
|
4218 |
+
msgid "Map Name"
|
4219 |
+
msgstr "Име на картата"
|
4220 |
+
|
4221 |
+
#: ../html/map-edit-page/map-edit-page.html.php:176
|
4222 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1000
|
4223 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1190
|
4224 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1896
|
4225 |
+
msgid "Zoom Level"
|
4226 |
+
msgstr "Зум ниво 1"
|
4227 |
+
|
4228 |
+
#: ../html/map-edit-page/map-edit-page.html.php:202
|
4229 |
+
#, fuzzy, php-format
|
4230 |
+
msgid "Set to 100% for a responsive map"
|
4231 |
+
msgstr "Нагласи на 100 процента за респонсив карта"
|
4232 |
+
|
4233 |
+
#: ../html/map-edit-page/map-edit-page.html.php:225
|
4234 |
+
#, fuzzy, php-format
|
4235 |
+
msgid ""
|
4236 |
+
"We recommend that you leave your height in PX. Depending on your theme, "
|
4237 |
+
"using % for the height may break your map."
|
4238 |
+
msgstr ""
|
4239 |
+
"Препоръчваме да оставите височината в пискели. Според темата, използвайки "
|
4240 |
+
"проценти за височината може да счупи темата ви."
|
4241 |
+
|
4242 |
+
#: ../html/map-edit-page/map-edit-page.html.php:236
|
4243 |
+
#: ../html/ol-feature-unavailable.html.php:9
|
4244 |
+
msgid "Not available while using the OpenLayers engine."
|
4245 |
+
msgstr ""
|
4246 |
+
|
4247 |
+
#: ../html/map-edit-page/map-edit-page.html.php:249
|
4248 |
+
#, fuzzy
|
4249 |
+
#| msgid ""
|
4250 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4251 |
+
#| "professional-version/?"
|
4252 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4253 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4254 |
+
#| "forever."
|
4255 |
+
msgid ""
|
4256 |
+
"<a target=\"_BLANK\" href=\"https://www.wpgmaps.com/purchase-professional-"
|
4257 |
+
"version/?utm_source=plugin&utm_medium=link&utm_campaign=directions"
|
4258 |
+
"\">\n"
|
4259 |
+
"\t\t\t\t\t\tEnable directions</a> with the Pro version for only $39.99 once "
|
4260 |
+
"off. Support and updates included forever"
|
4261 |
+
msgstr ""
|
4262 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4263 |
+
"professional-version/"
|
4264 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4265 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4266 |
+
|
4267 |
+
#: ../html/map-edit-page/map-edit-page.html.php:257
|
4268 |
+
msgid "Enable Directions?"
|
4269 |
+
msgstr "Включи упътвания?"
|
4270 |
+
|
4271 |
+
#: ../html/map-edit-page/map-edit-page.html.php:298
|
4272 |
+
msgid "Enable Store Locator"
|
4273 |
+
msgstr "Включи намирач на магазини"
|
4274 |
+
|
4275 |
+
#: ../html/map-edit-page/map-edit-page.html.php:317
|
4276 |
+
#: ../html/map-edit-page/map-edit-page.html.php:352
|
4277 |
+
#, fuzzy
|
4278 |
+
#| msgid "Store Locator"
|
4279 |
+
msgid "Store Locator Style"
|
4280 |
+
msgstr "Намирач на магазини"
|
4281 |
+
|
4282 |
+
#: ../html/map-edit-page/map-edit-page.html.php:330
|
4283 |
+
#: ../html/map-edit-page/map-edit-page.html.php:452
|
4284 |
+
msgid "Legacy"
|
4285 |
+
msgstr ""
|
4286 |
+
|
4287 |
+
#: ../html/map-edit-page/map-edit-page.html.php:359
|
4288 |
+
#, php-format
|
4289 |
+
msgid ""
|
4290 |
+
"Looking for styling settings? Try our new <a href='%s' target='_blank'>User "
|
4291 |
+
"Interface Style</a> setting."
|
4292 |
+
msgstr ""
|
4293 |
+
|
4294 |
+
#: ../html/map-edit-page/map-edit-page.html.php:370
|
4295 |
+
#, fuzzy
|
4296 |
+
#| msgid "Search"
|
4297 |
+
msgid "Search Area"
|
4298 |
+
msgstr "Търси"
|
4299 |
|
4300 |
+
#: ../html/map-edit-page/map-edit-page.html.php:385
|
4301 |
+
#, fuzzy
|
4302 |
+
#| msgid "Radius"
|
4303 |
+
msgid "Radial"
|
4304 |
+
msgstr "Радиус"
|
4305 |
|
4306 |
+
#: ../html/map-edit-page/map-edit-page.html.php:392
|
4307 |
+
msgid "Allows the user to select a radius from a predefined list"
|
4308 |
+
msgstr ""
|
4309 |
|
4310 |
+
#: ../html/map-edit-page/map-edit-page.html.php:406
|
4311 |
+
msgid "Auto"
|
4312 |
+
msgstr ""
|
4313 |
|
4314 |
+
#: ../html/map-edit-page/map-edit-page.html.php:413
|
4315 |
+
msgid "Intelligently detects the zoom level based on the location entered"
|
4316 |
+
msgstr ""
|
4317 |
|
4318 |
+
#: ../html/map-edit-page/map-edit-page.html.php:421
|
4319 |
msgid ""
|
4320 |
+
"Marker listings will not be filtered based on visible markers. Enable the "
|
4321 |
+
"'Only load markers within viewport (beta)' option for beta filtering support"
|
|
|
|
|
4322 |
msgstr ""
|
|
|
|
|
|
|
|
|
4323 |
|
4324 |
+
#: ../html/map-edit-page/map-edit-page.html.php:432
|
4325 |
#, fuzzy
|
4326 |
+
#| msgid ""
|
4327 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4328 |
+
#| "professional-version/?"
|
4329 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4330 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4331 |
+
#| "forever."
|
4332 |
+
msgid ""
|
4333 |
+
"Enable intelligent, automatic search area with our <a href=\"https://www."
|
4334 |
+
"wpgmaps.com/purchase-professional-version/?utm_source=plugin&"
|
4335 |
+
"utm_medium=link&utm_campaign=store-locator\">Pro add-on</a>"
|
4336 |
+
msgstr ""
|
4337 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4338 |
+
"professional-version/"
|
4339 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4340 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4341 |
|
4342 |
+
#: ../html/map-edit-page/map-edit-page.html.php:439
|
4343 |
#, fuzzy
|
4344 |
+
#| msgid "Radius"
|
4345 |
+
msgid "Radius Style"
|
4346 |
+
msgstr "Радиус"
|
|
|
|
|
|
|
|
|
|
|
4347 |
|
4348 |
+
#: ../html/map-edit-page/map-edit-page.html.php:473
|
4349 |
#, fuzzy
|
4350 |
+
#| msgid "Default 'To' address"
|
4351 |
+
msgid "Default radius"
|
4352 |
+
msgstr "по подразбиране 'до' адрес"
|
|
|
|
|
|
|
|
|
4353 |
|
4354 |
+
#: ../html/map-edit-page/map-edit-page.html.php:483
|
4355 |
#, fuzzy
|
4356 |
+
#| msgid "Maximum Zoom Level"
|
4357 |
+
msgid "Maximum zoom"
|
4358 |
+
msgstr "Максимален зум нивоl"
|
4359 |
|
4360 |
+
#: ../html/map-edit-page/map-edit-page.html.php:496
|
4361 |
+
msgid "Restrict to country"
|
4362 |
+
msgstr "Ограничи до държава"
|
|
|
4363 |
|
4364 |
+
#: ../html/map-edit-page/map-edit-page.html.php:504
|
4365 |
+
msgid "Show distance in"
|
4366 |
+
msgstr "Покажи разстояния в"
|
|
|
4367 |
|
4368 |
+
#: ../html/map-edit-page/map-edit-page.html.php:522
|
4369 |
#, fuzzy
|
4370 |
+
msgid "Store Locator Placement"
|
4371 |
+
msgstr "Документация намирач на магазини"
|
|
|
|
|
|
|
|
|
|
|
|
|
4372 |
|
4373 |
+
#: ../html/map-edit-page/map-edit-page.html.php:542
|
4374 |
#, fuzzy
|
4375 |
+
#| msgid "Show distance in"
|
4376 |
+
msgid "Show distance from search"
|
4377 |
+
msgstr "Покажи разстояния в"
|
4378 |
|
4379 |
+
#: ../html/map-edit-page/map-edit-page.html.php:558
|
4380 |
+
msgid "Allow category selection"
|
4381 |
+
msgstr "Позволи избор на категории"
|
4382 |
|
4383 |
+
#: ../html/map-edit-page/map-edit-page.html.php:574
|
4384 |
#, fuzzy
|
4385 |
+
#| msgid ""
|
4386 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4387 |
+
#| "professional-version/?"
|
4388 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4389 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4390 |
+
#| "forever."
|
4391 |
+
msgid ""
|
4392 |
+
"Enable search by category with our <a href=\"https://www.wpgmaps.com/"
|
4393 |
+
"purchase-professional-version/?utm_source=plugin&utm_medium=link&"
|
4394 |
+
"utm_campaign=store-locator\">Pro add-on</a>"
|
4395 |
+
msgstr ""
|
4396 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4397 |
+
"professional-version/"
|
4398 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4399 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4400 |
+
|
4401 |
+
#: ../html/map-edit-page/map-edit-page.html.php:581
|
4402 |
+
msgid "Allow users to use their location as the starting point"
|
4403 |
+
msgstr "Позволи потребителите да ползват тяхната позиция като стартова точка"
|
4404 |
|
4405 |
+
#: ../html/map-edit-page/map-edit-page.html.php:597
|
4406 |
+
#, fuzzy
|
4407 |
+
#| msgid ""
|
4408 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4409 |
+
#| "professional-version/?"
|
4410 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4411 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4412 |
+
#| "forever."
|
4413 |
+
msgid ""
|
4414 |
+
"Enable user geolocation features with our <a href=\"https://www.wpgmaps.com/"
|
4415 |
+
"purchase-professional-version/?utm_source=plugin&utm_medium=link&"
|
4416 |
+
"utm_campaign=store-locator\">Pro add-on</a>"
|
4417 |
+
msgstr ""
|
4418 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4419 |
+
"professional-version/"
|
4420 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4421 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4422 |
+
|
4423 |
+
#: ../html/map-edit-page/map-edit-page.html.php:604
|
4424 |
+
msgid "Show center point as an icon"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: ../html/map-edit-page/map-edit-page.html.php:622
|
4428 |
#, fuzzy
|
4429 |
+
msgid "Default Icon"
|
4430 |
+
msgstr "Дифолт инфо прозорец"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4431 |
|
4432 |
+
#: ../html/map-edit-page/map-edit-page.html.php:630
|
4433 |
+
#, fuzzy
|
4434 |
+
#| msgid "Marker Listing"
|
4435 |
+
msgid "Marker animation"
|
4436 |
+
msgstr "Списък маркери"
|
4437 |
|
4438 |
+
#: ../html/map-edit-page/map-edit-page.html.php:642
|
4439 |
+
#: ../html/map-edit-page/marker-panel.html.php:144
|
4440 |
+
msgid "Bounce"
|
4441 |
+
msgstr "Боунс"
|
4442 |
|
4443 |
+
#: ../html/map-edit-page/map-edit-page.html.php:647
|
4444 |
+
#: ../html/map-edit-page/marker-panel.html.php:149
|
4445 |
+
msgid "Drop"
|
4446 |
+
msgstr "Дроп"
|
4447 |
|
4448 |
+
#: ../html/map-edit-page/map-edit-page.html.php:656
|
4449 |
+
msgid "Hide all markers until a search is done"
|
4450 |
+
msgstr "Скрий всички маркери докато не се направи търсенето"
|
4451 |
|
4452 |
+
#: ../html/map-edit-page/map-edit-page.html.php:672
|
4453 |
+
msgid "Query String"
|
4454 |
+
msgstr "Куери стринг"
|
4455 |
|
4456 |
+
#: ../html/map-edit-page/map-edit-page.html.php:682
|
4457 |
+
#, fuzzy
|
4458 |
+
#| msgid "Default 'To' address"
|
4459 |
+
msgid "Default address"
|
4460 |
+
msgstr "по подразбиране 'до' адрес"
|
4461 |
|
4462 |
+
#: ../html/map-edit-page/map-edit-page.html.php:696
|
4463 |
+
msgid "Enable title search"
|
4464 |
+
msgstr "Включи търсене по заглавие"
|
4465 |
|
4466 |
+
#: ../html/map-edit-page/map-edit-page.html.php:712
|
4467 |
+
msgid "Title search String"
|
4468 |
+
msgstr "Търсене по заглавие стринг"
|
4469 |
|
4470 |
+
#: ../html/map-edit-page/map-edit-page.html.php:725
|
4471 |
+
msgid "Not found message"
|
4472 |
+
msgstr ""
|
4473 |
|
4474 |
+
#: ../html/map-edit-page/map-edit-page.html.php:737
|
4475 |
+
msgid "Style options"
|
4476 |
+
msgstr "Опции стил"
|
4477 |
|
4478 |
+
#: ../html/map-edit-page/map-edit-page.html.php:744
|
4479 |
+
msgid "Line color"
|
4480 |
+
msgstr "Цвят на линия"
|
4481 |
|
4482 |
+
#: ../html/map-edit-page/map-edit-page.html.php:756
|
4483 |
+
msgid "Line opacity"
|
4484 |
+
msgstr "Линия непрозрачност"
|
4485 |
|
4486 |
+
#: ../html/map-edit-page/map-edit-page.html.php:778
|
4487 |
+
msgid "Fill color"
|
4488 |
+
msgstr "Запълни цвят"
|
4489 |
|
4490 |
+
#: ../html/map-edit-page/map-edit-page.html.php:791
|
4491 |
+
msgid "Fill opacity"
|
4492 |
+
msgstr "Запълни непрозрачност"
|
4493 |
|
4494 |
+
#: ../html/map-edit-page/map-edit-page.html.php:807
|
4495 |
+
#, fuzzy
|
4496 |
+
#| msgid ""
|
4497 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4498 |
+
#| "professional-version/?"
|
4499 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4500 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4501 |
+
#| "forever."
|
4502 |
+
msgid ""
|
4503 |
+
"Enable custom styling options with our <a href=\"https://www.wpgmaps.com/"
|
4504 |
+
"purchase-professional-version/?utm_source=plugin&utm_medium=link&"
|
4505 |
+
"utm_campaign=store-locator\">Pro add-on</a>"
|
4506 |
+
msgstr ""
|
4507 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4508 |
+
"professional-version/"
|
4509 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4510 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4511 |
+
|
4512 |
+
#: ../html/map-edit-page/map-edit-page.html.php:814
|
4513 |
+
msgid "View"
|
4514 |
+
msgstr "Виж"
|
4515 |
|
4516 |
+
#: ../html/map-edit-page/map-edit-page.html.php:818
|
4517 |
+
msgid "Store Locator Documentation"
|
4518 |
+
msgstr "Документация намирач на магазини"
|
4519 |
|
4520 |
+
#: ../html/map-edit-page/map-edit-page.html.php:828
|
4521 |
+
#, fuzzy
|
4522 |
+
#| msgid "Advanced Settings"
|
4523 |
+
msgid "Advanced Settings:"
|
4524 |
+
msgstr "Допълнителни настройки"
|
4525 |
|
4526 |
+
#: ../html/map-edit-page/map-edit-page.html.php:835
|
4527 |
+
msgid "Default Marker Image"
|
4528 |
+
msgstr "По подразбиране картинка на маркер"
|
4529 |
|
4530 |
+
#: ../html/map-edit-page/map-edit-page.html.php:842
|
4531 |
+
#, fuzzy
|
4532 |
+
#| msgid ""
|
4533 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4534 |
+
#| "professional-version/?"
|
4535 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4536 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4537 |
+
#| "forever."
|
4538 |
+
msgid ""
|
4539 |
+
"Enable custom marker icons with our <a href=\"https://www.wpgmaps.com/"
|
4540 |
+
"purchase-professional-version/?utm_source=plugin&utm_medium=link&"
|
4541 |
+
"utm_campaign=advanced\">Pro add-on</a>"
|
4542 |
+
msgstr ""
|
4543 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4544 |
+
"professional-version/"
|
4545 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4546 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4547 |
+
|
4548 |
+
#: ../html/map-edit-page/map-edit-page.html.php:850
|
4549 |
+
msgid "Map type"
|
4550 |
+
msgstr "Вид карта"
|
4551 |
|
4552 |
+
#: ../html/map-edit-page/map-edit-page.html.php:857
|
4553 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1342
|
4554 |
+
#: ../includes/tables/class.admin-map-datatable.php:81
|
4555 |
+
msgid "Roadmap"
|
4556 |
+
msgstr "Пътна карта"
|
4557 |
|
4558 |
+
#: ../html/map-edit-page/map-edit-page.html.php:862
|
4559 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1343
|
4560 |
+
#: ../includes/tables/class.admin-map-datatable.php:78
|
4561 |
+
msgid "Satellite"
|
4562 |
+
msgstr "Сателит"
|
|
|
|
|
|
|
|
|
|
|
4563 |
|
4564 |
+
#: ../html/map-edit-page/map-edit-page.html.php:867
|
4565 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1344
|
4566 |
+
#: ../includes/tables/class.admin-map-datatable.php:79
|
4567 |
+
msgid "Hybrid"
|
4568 |
+
msgstr "Хибрид"
|
4569 |
|
4570 |
+
#: ../html/map-edit-page/map-edit-page.html.php:872
|
4571 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1345
|
4572 |
+
#: ../includes/tables/class.admin-map-datatable.php:80
|
4573 |
+
msgid "Terrain"
|
4574 |
+
msgstr "Терен"
|
4575 |
|
4576 |
+
#: ../html/map-edit-page/map-edit-page.html.php:883
|
4577 |
+
msgid "Map Alignment"
|
4578 |
+
msgstr "Подравняване на карта"
|
4579 |
|
4580 |
+
#: ../html/map-edit-page/map-edit-page.html.php:892
|
4581 |
+
msgid "Left"
|
4582 |
+
msgstr "Ляво"
|
|
|
4583 |
|
4584 |
+
#: ../html/map-edit-page/map-edit-page.html.php:897
|
4585 |
+
#: ../includes/legacy/functions.circle.php:166
|
4586 |
+
msgid "Center"
|
4587 |
+
msgstr "Център"
|
|
|
|
|
|
|
|
|
|
|
4588 |
|
4589 |
+
#: ../html/map-edit-page/map-edit-page.html.php:902
|
4590 |
+
msgid "Right"
|
4591 |
+
msgstr "Вдясно"
|
|
|
|
|
|
|
|
|
|
|
4592 |
|
4593 |
+
#: ../html/map-edit-page/map-edit-page.html.php:916
|
4594 |
+
msgid "Show User's Location?"
|
4595 |
+
msgstr "Покажи позиция на потребител?"
|
4596 |
|
4597 |
+
#: ../html/map-edit-page/map-edit-page.html.php:933
|
4598 |
#, fuzzy
|
4599 |
#| msgid ""
|
4600 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4601 |
+
#| "professional-version/?"
|
4602 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4603 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4604 |
+
#| "forever."
|
4605 |
+
msgid ""
|
4606 |
+
"Enable user geolocation features with our <a href=\"https://www.wpgmaps.com/"
|
4607 |
+
"purchase-professional-version/?utm_source=plugin&utm_medium=link&"
|
4608 |
+
"utm_campaign=advanced\">Pro add-on</a>"
|
4609 |
+
msgstr ""
|
4610 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4611 |
+
"professional-version/"
|
4612 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4613 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4614 |
+
|
4615 |
+
#: ../html/map-edit-page/map-edit-page.html.php:940
|
4616 |
+
msgid "Default User Location Icon"
|
4617 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4618 |
|
4619 |
+
#: ../html/map-edit-page/map-edit-page.html.php:948
|
4620 |
+
msgid "Jump to nearest marker on initialization?"
|
4621 |
+
msgstr ""
|
4622 |
|
4623 |
+
#: ../html/map-edit-page/map-edit-page.html.php:965
|
4624 |
+
msgid "Automatically pan to users location?"
|
4625 |
+
msgstr ""
|
4626 |
|
4627 |
+
#: ../html/map-edit-page/map-edit-page.html.php:981
|
4628 |
+
msgid "Override User Location Zoom Level"
|
4629 |
+
msgstr ""
|
|
|
|
|
4630 |
|
4631 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1012
|
4632 |
+
#, fuzzy
|
4633 |
+
#| msgid "Show distance in"
|
4634 |
+
msgid "Show distance from location?"
|
4635 |
+
msgstr "Покажи разстояния в"
|
4636 |
|
4637 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1032
|
4638 |
+
msgid ""
|
4639 |
+
"This feature will use the users location (where available) or the searched "
|
4640 |
+
"address when a store locator search is performed."
|
4641 |
msgstr ""
|
4642 |
|
4643 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1042
|
4644 |
+
#, fuzzy
|
4645 |
+
msgid "Maximum Zoom Out Level"
|
4646 |
+
msgstr "Максимален зум нивоl"
|
4647 |
+
|
4648 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1058
|
4649 |
+
#, fuzzy
|
4650 |
+
msgid "Maximum Zoom In Level"
|
4651 |
+
msgstr "Максимален зум нивоl"
|
4652 |
|
4653 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1077
|
4654 |
+
#, fuzzy, php-format
|
4655 |
+
#| msgid ""
|
4656 |
+
#| "Get the rest of these advanced features with the Pro version for only <a "
|
4657 |
+
#| "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
|
4658 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99 once "
|
4659 |
+
#| "off</a>. Support and updates included forever."
|
4660 |
+
msgid ""
|
4661 |
+
"Get the rest of these advanced features with the Pro version for only <a "
|
4662 |
+
"href=\"%s\" target=\"_BLANK\">$39.99 once off</a>. Support and updates "
|
4663 |
+
"included forever."
|
4664 |
msgstr ""
|
4665 |
+
"Вземи още от тези екстри с Pro версията само за <a href=\\\"http://www."
|
4666 |
+
"wpgmaps.com/purchase-professional-version/?"
|
4667 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=advanced\\\">$39.99 "
|
4668 |
+
"еднократно</a>. Съпорт и ъпдейт завинаги"
|
4669 |
|
4670 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1089
|
4671 |
+
msgid "Click marker opens link"
|
4672 |
+
msgstr "Кликане на маркера отваря линк"
|
4673 |
|
4674 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1108
|
4675 |
+
msgid "Fit map bounds to markers?"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1127
|
4679 |
+
msgid "Fit map bounds to markers after filtering?"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1146
|
4683 |
+
msgid "Hide point of interest"
|
4684 |
msgstr ""
|
4685 |
|
4686 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1166
|
4687 |
#, fuzzy
|
4688 |
+
#| msgid "No marker list"
|
4689 |
+
msgid "Zoom on marker click"
|
4690 |
+
msgstr "Няма списък маркери"
|
4691 |
|
4692 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1203
|
4693 |
+
msgid "Enable Layers"
|
4694 |
+
msgstr "Включи слоеве"
|
4695 |
|
4696 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1216
|
4697 |
+
msgid "Bicycle Layer"
|
4698 |
+
msgstr "Слой колоездач"
|
4699 |
|
4700 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1231
|
4701 |
+
msgid "Traffic Layer"
|
4702 |
+
msgstr "Слой трафик"
|
|
|
|
|
4703 |
|
4704 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1246
|
4705 |
+
msgid "Transit Layer"
|
4706 |
+
msgstr "Слой транзит"
|
|
|
|
|
4707 |
|
4708 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1258
|
4709 |
+
msgid "Close InfoWindow on Map Click"
|
4710 |
+
msgstr ""
|
4711 |
|
4712 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1273
|
4713 |
+
msgid "Disable lightbox for marker images"
|
4714 |
+
msgstr ""
|
|
|
4715 |
|
4716 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1288
|
4717 |
+
msgid "Use Raw JPEG coordinates?"
|
4718 |
+
msgstr ""
|
4719 |
|
4720 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1303
|
4721 |
#, fuzzy
|
4722 |
+
#| msgid "Enable Layers"
|
4723 |
+
msgid "Enable Polygon Labels"
|
4724 |
+
msgstr "Включи слоеве"
|
4725 |
|
4726 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1318
|
4727 |
#, fuzzy
|
4728 |
+
#| msgid "InfoWindows"
|
4729 |
+
msgid "Disable Polygon InfoWindows"
|
4730 |
+
msgstr "Инфопрозорци"
|
4731 |
|
4732 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1333
|
4733 |
+
msgid "KML/GeoRSS URL"
|
4734 |
+
msgstr ""
|
|
|
4735 |
|
4736 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1344
|
4737 |
+
msgid "The KML/GeoRSS layer will over-ride most of your map settings"
|
4738 |
+
msgstr "KML/GeoRSS слой ще препокрие повече от твоите настройки на карти"
|
4739 |
|
4740 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1346
|
4741 |
+
msgid "For multiple sources, separate each one by a comma."
|
4742 |
+
msgstr "За няколко избора, разделете ги със запетая."
|
|
|
4743 |
|
4744 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1355
|
4745 |
+
#, fuzzy
|
4746 |
+
#| msgid "General options"
|
4747 |
+
msgid "Integration"
|
4748 |
+
msgstr "Общи настройки"
|
4749 |
|
4750 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1363
|
4751 |
#, fuzzy
|
4752 |
+
#| msgid "Save Marker Location"
|
4753 |
+
msgid "Enable Marker Ratings"
|
4754 |
+
msgstr "Запиши маркер позиция"
|
4755 |
|
4756 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1378
|
4757 |
+
msgid "Only load markers within viewport (beta)"
|
4758 |
+
msgstr ""
|
|
|
|
|
|
|
4759 |
|
4760 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1387
|
4761 |
+
msgid "This feature may not work as expected with bounds specific settings"
|
4762 |
+
msgstr ""
|
|
|
|
|
|
|
4763 |
|
4764 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1394
|
4765 |
+
#: ../html/settings-page.html.php:548
|
4766 |
+
msgid "Infowindow Style"
|
4767 |
+
msgstr "Стил на инфопрозорец"
|
4768 |
|
4769 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1409
|
4770 |
+
#: ../html/settings-page.html.php:565
|
4771 |
+
msgid "Default Infowindow"
|
4772 |
+
msgstr "Дифолт инфо прозорец"
|
4773 |
|
4774 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1426
|
4775 |
+
#: ../html/settings-page.html.php:582
|
4776 |
+
msgid "Modern Infowindow"
|
4777 |
+
msgstr "Модерен инфо прозорец"
|
4778 |
|
4779 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1443
|
4780 |
+
#: ../html/settings-page.html.php:599
|
4781 |
#, fuzzy
|
4782 |
+
msgid "Modern Plus Infowindow"
|
4783 |
+
msgstr "Модерен инфо прозорец"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4784 |
|
4785 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1460
|
4786 |
+
#: ../html/settings-page.html.php:616
|
4787 |
#, fuzzy
|
4788 |
+
msgid "Circular Infowindow"
|
4789 |
+
msgstr "Дифолт инфо прозорец"
|
4790 |
|
4791 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1479
|
4792 |
#, fuzzy
|
4793 |
+
msgid "Inherit Global Setting"
|
4794 |
+
msgstr "Основни настройки"
|
|
|
|
|
|
|
|
|
|
|
|
|
4795 |
|
4796 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1491
|
4797 |
+
#, fuzzy
|
4798 |
+
msgid "Infowindow Colors"
|
4799 |
+
msgstr "Стил на инфопрозорец"
|
4800 |
|
4801 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1500
|
4802 |
+
#, fuzzy
|
4803 |
+
msgid "Primary Color"
|
4804 |
+
msgstr "Цвят на линк"
|
4805 |
|
4806 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1508
|
4807 |
+
#, fuzzy
|
4808 |
+
msgid "Accent Color"
|
4809 |
+
msgstr "Цвят на линк"
|
4810 |
|
4811 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1516
|
4812 |
+
#, fuzzy
|
4813 |
+
msgid "Text Color"
|
4814 |
+
msgstr "Цвят на линк"
|
4815 |
|
4816 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1529
|
4817 |
+
#, fuzzy
|
4818 |
+
#| msgid ""
|
4819 |
+
#| "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
|
4820 |
+
#| "professional-version/?"
|
4821 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro "
|
4822 |
+
#| "version for only $39.99 once off</a>. Support and updates included "
|
4823 |
+
#| "forever."
|
4824 |
+
msgid ""
|
4825 |
+
"Enable Marker Listing with the <a href=\"https://www.wpgmaps.com/purchase-"
|
4826 |
+
"professional-version/?utm_source=plugin&utm_medium=link&"
|
4827 |
+
"utm_campaign=marker_listing\"target=\"_BLANK\">Pro version for only $39.99 "
|
4828 |
+
"once off</a>. Support and updates included forever."
|
4829 |
+
msgstr ""
|
4830 |
+
"Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
|
4831 |
+
"professional-version/"
|
4832 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
|
4833 |
+
"for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
|
4834 |
+
|
4835 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1549
|
4836 |
+
msgid "No marker listing"
|
4837 |
+
msgstr "Без маркер списък"
|
4838 |
|
4839 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1563
|
4840 |
+
msgid "Basic table"
|
4841 |
+
msgstr "Основна таблица"
|
|
|
|
|
4842 |
|
4843 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1578
|
4844 |
+
msgid "Basic list"
|
4845 |
+
msgstr "Основен списък"
|
4846 |
|
4847 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1592
|
4848 |
+
msgid "Advanced table"
|
4849 |
+
msgstr "Допълнителна таблица"
|
4850 |
|
4851 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1647
|
4852 |
+
#, fuzzy
|
4853 |
+
msgid "Marker Listing Placement"
|
4854 |
+
msgstr "Стилове на маркерите"
|
4855 |
|
4856 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1667
|
4857 |
+
msgid "Order markers by"
|
4858 |
+
msgstr "Подреди маркерите по"
|
4859 |
|
4860 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1699
|
4861 |
+
#, fuzzy
|
4862 |
+
#| msgid "Category Marker"
|
4863 |
+
msgid "Category Priority"
|
4864 |
+
msgstr "Категория маркер"
|
4865 |
|
4866 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1704
|
4867 |
+
msgid "Distance"
|
4868 |
+
msgstr ""
|
4869 |
|
4870 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1709
|
4871 |
+
#, fuzzy
|
4872 |
+
msgid "Rating"
|
4873 |
+
msgstr "Списък маркери"
|
4874 |
|
4875 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1717
|
4876 |
+
msgid "Ascending"
|
4877 |
+
msgstr "низходящ"
|
|
|
|
|
|
|
|
|
|
|
|
|
4878 |
|
4879 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1722
|
4880 |
+
msgid "Descending"
|
4881 |
+
msgstr "възходящ"
|
4882 |
|
4883 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1731
|
4884 |
+
msgid "Move list inside map"
|
4885 |
+
msgstr "Премести списъка вътре в картата"
|
4886 |
|
4887 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1748
|
4888 |
+
msgid "Placement: "
|
4889 |
+
msgstr "Разположение:"
|
4890 |
|
4891 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1754
|
4892 |
+
msgid "Top Left"
|
4893 |
+
msgstr "Горе вляво"
|
4894 |
|
4895 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1759
|
4896 |
+
msgid "Top Center"
|
4897 |
+
msgstr "Горе център"
|
|
|
4898 |
|
4899 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1764
|
4900 |
+
msgid "Top Right"
|
4901 |
+
msgstr "Горе вдясно"
|
4902 |
|
4903 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1769
|
4904 |
+
#, fuzzy
|
4905 |
+
#| msgid "Left Top "
|
4906 |
+
msgid "Left Top"
|
4907 |
+
msgstr "Ляво горе"
|
4908 |
|
4909 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1774
|
4910 |
+
msgid "Left Center"
|
4911 |
+
msgstr "Ляво център"
|
4912 |
|
4913 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1779
|
4914 |
+
msgid "Right Top"
|
4915 |
+
msgstr "Вдясно горе"
|
|
|
4916 |
|
4917 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1784
|
4918 |
+
msgid "Right Center"
|
4919 |
+
msgstr "Дясно център"
|
|
|
|
|
4920 |
|
4921 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1789
|
4922 |
+
msgid "Left Bottom"
|
4923 |
+
msgstr "Ляво долу"
|
4924 |
|
4925 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1794
|
4926 |
+
msgid "Right Bottom"
|
4927 |
+
msgstr "Дясно долу"
|
|
|
4928 |
|
4929 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1799
|
4930 |
+
msgid "Bottom Center"
|
4931 |
+
msgstr "Долу център"
|
4932 |
|
4933 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1804
|
4934 |
+
msgid "Bottom Left"
|
4935 |
+
msgstr "Долу ляво"
|
4936 |
|
4937 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1809
|
4938 |
+
msgid "Bottom Right"
|
4939 |
+
msgstr "Дясно долу"
|
|
|
|
|
|
|
|
|
4940 |
|
4941 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1819
|
4942 |
+
msgid "Container Width: "
|
4943 |
+
msgstr "Широчина на контейнер:"
|
|
|
4944 |
|
4945 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1831
|
4946 |
+
#, php-format
|
4947 |
+
msgid "Set as % or px, eg. 30% or 400px"
|
|
|
|
|
4948 |
msgstr ""
|
|
|
4949 |
|
4950 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1839
|
4951 |
+
msgid "Container Height: "
|
4952 |
+
msgstr "Височина контейнер:"
|
|
|
4953 |
|
4954 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1852
|
4955 |
+
msgid "Filter by Category"
|
4956 |
+
msgstr "Филтър по категория"
|
4957 |
|
4958 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1864
|
4959 |
+
msgid "Allow users to filter by category?"
|
4960 |
+
msgstr "Позволи на потребителите да филтрират по категория?"
|
|
|
4961 |
|
4962 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1872
|
4963 |
+
msgid "Override zoom level on listing click"
|
4964 |
+
msgstr ""
|
|
|
4965 |
|
4966 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1909
|
4967 |
#, fuzzy
|
4968 |
+
#| msgid "Style options"
|
4969 |
+
msgid "DataTable Options"
|
4970 |
+
msgstr "Опции стил"
|
|
|
|
|
|
|
|
|
|
|
4971 |
|
4972 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1916
|
4973 |
+
msgid "No results message"
|
4974 |
+
msgstr ""
|
|
|
4975 |
|
4976 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1932
|
4977 |
+
msgid "Remove search box"
|
4978 |
+
msgstr ""
|
|
|
4979 |
|
4980 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1944
|
4981 |
+
msgid "Remove search box from Marker Listing Table?"
|
4982 |
+
msgstr ""
|
|
|
4983 |
|
4984 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1952
|
4985 |
+
msgid "Select different pagination style"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1964
|
4989 |
+
msgid "Page number buttons only"
|
4990 |
+
msgstr ""
|
4991 |
|
4992 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1969
|
4993 |
+
msgid "Previous and Next buttons only"
|
4994 |
+
msgstr ""
|
|
|
4995 |
|
4996 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1974
|
4997 |
+
msgid "Previous and Next buttons, plus page numbers"
|
4998 |
+
msgstr ""
|
|
|
4999 |
|
5000 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1979
|
5001 |
+
msgid "First, Previous, Next and Last buttons"
|
5002 |
+
msgstr ""
|
|
|
5003 |
|
5004 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1984
|
5005 |
+
msgid "First, Previous, Next and Last buttons, plus page numbers"
|
5006 |
+
msgstr ""
|
|
|
5007 |
|
5008 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1989
|
5009 |
+
msgid "First and Last buttons, plus page numbers"
|
5010 |
+
msgstr ""
|
|
|
5011 |
|
5012 |
+
#: ../html/map-edit-page/map-edit-page.html.php:1998
|
5013 |
+
#, fuzzy
|
5014 |
+
#| msgid "Title search String"
|
5015 |
+
msgid "Change listing table search string"
|
5016 |
+
msgstr "Търсене по заглавие стринг"
|
5017 |
|
5018 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2021
|
5019 |
+
msgid "Example: Showing 1 of 6 to 6 entries"
|
5020 |
+
msgstr ""
|
|
|
5021 |
|
5022 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2029
|
5023 |
+
msgid "Change results string"
|
5024 |
+
msgstr ""
|
|
|
5025 |
|
5026 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2075
|
5027 |
+
msgid "Change entries string"
|
5028 |
+
msgstr ""
|
|
|
5029 |
|
5030 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2087
|
5031 |
+
#, fuzzy
|
5032 |
+
#| msgid "Carousel settings"
|
5033 |
+
msgid "Example: Showing entries"
|
5034 |
msgstr "Настройка въртележка"
|
5035 |
|
5036 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2128
|
5037 |
+
#, fuzzy
|
5038 |
+
#| msgid "Create custom routes or outlines using polylines"
|
5039 |
+
msgid "Create custom markers with detailed info windows"
|
5040 |
+
msgstr "Създай къстъм пътища или очертания с полиномите"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5041 |
|
5042 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2129
|
5043 |
+
#, fuzzy
|
5044 |
+
#| msgid ""
|
5045 |
+
#| "Add custom icons, titles, descriptions, pictures and links to your "
|
5046 |
+
#| "markers with the"
|
5047 |
+
msgid ""
|
5048 |
+
"Add titles, descriptions, HTML, images, animations and custom icons to your "
|
5049 |
+
"markers."
|
5050 |
+
msgstr ""
|
5051 |
+
"Добави къстъм икони, заглавия, описание, картинки и линкове към твоите "
|
5052 |
+
"маркери"
|
5053 |
|
5054 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2138
|
5055 |
+
msgid ""
|
5056 |
+
"Allow your visitors to get directions to your markers. Either use their "
|
5057 |
+
"location as the starting point or allow them to type in an address."
|
5058 |
+
msgstr ""
|
5059 |
|
5060 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2147
|
5061 |
+
#, fuzzy
|
5062 |
+
msgid "Create as many maps as you like."
|
5063 |
+
msgstr "Създай маркер категории"
|
5064 |
|
5065 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2156
|
5066 |
+
msgid "Choose between three methods of listing your markers."
|
5067 |
+
msgstr ""
|
|
|
5068 |
|
5069 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2164
|
5070 |
+
#, fuzzy
|
5071 |
+
#| msgid "Add detailed information to your markers!"
|
5072 |
+
msgid "Add categories to your markers"
|
5073 |
+
msgstr "Добави детайлна информация към твоите маркери!"
|
5074 |
|
5075 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2165
|
5076 |
+
msgid ""
|
5077 |
+
"Create and assign categories to your markers which can then be filtered on "
|
5078 |
+
"your map."
|
5079 |
+
msgstr ""
|
5080 |
|
5081 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2173
|
5082 |
+
#, fuzzy
|
5083 |
+
#| msgid "Advanced Options"
|
5084 |
+
msgid "Advanced options"
|
5085 |
+
msgstr "Специални опции"
|
5086 |
|
5087 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2174
|
5088 |
+
msgid ""
|
5089 |
+
"Enable advanced options such as showing your visitor's location, marker "
|
5090 |
+
"sorting, bicycle layers, traffic layers and more!"
|
5091 |
+
msgstr ""
|
5092 |
|
5093 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2182
|
5094 |
+
msgid "Import / Export"
|
5095 |
+
msgstr ""
|
|
|
5096 |
|
5097 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2183
|
5098 |
+
msgid ""
|
5099 |
+
"Export your markers to a CSV file for quick and easy editing. Import large "
|
5100 |
+
"quantities of markers at once."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2191
|
5104 |
+
msgid "Add KML & Fusion Tables"
|
5105 |
msgstr ""
|
5106 |
|
5107 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2192
|
5108 |
+
msgid "Add your own KML layers or Fusion Table data to your map"
|
5109 |
+
msgstr ""
|
|
|
5110 |
|
5111 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2200
|
5112 |
+
#, fuzzy
|
5113 |
+
msgid "Polygons and Polylines"
|
5114 |
+
msgstr "Полином данни"
|
|
|
|
|
|
|
5115 |
|
5116 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2201
|
5117 |
+
msgid ""
|
5118 |
+
"Add custom polygons and polylines to your map by simply clicking on the map. "
|
5119 |
+
"Perfect for displaying routes and serviced areas."
|
5120 |
+
msgstr ""
|
5121 |
|
5122 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2209
|
5123 |
+
#, fuzzy
|
5124 |
+
#| msgid "Support"
|
5125 |
+
msgid "Amazing Support"
|
5126 |
+
msgstr "Съпорт"
|
5127 |
|
5128 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2210
|
|
|
5129 |
msgid ""
|
5130 |
+
"We pride ourselves on providing quick and amazing support. <a target=\"_BLANK"
|
5131 |
+
"\" href=\"http://wordpress.org/support/view/plugin-reviews/wp-google-maps?"
|
5132 |
+
"filter=5\">Read what some of our users think of our support</a>."
|
5133 |
msgstr ""
|
|
|
|
|
5134 |
|
5135 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2218
|
|
|
5136 |
#, fuzzy
|
5137 |
+
#| msgid "Pro Upgrade"
|
5138 |
+
msgid "Easy Upgrade"
|
5139 |
+
msgstr "Pro ъпгрейд"
|
5140 |
|
5141 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2219
|
|
|
5142 |
msgid ""
|
5143 |
+
"You'll receive a download link immediately. Simply upload and activate the "
|
5144 |
+
"Pro plugin to your WordPress admin area and you're done!"
|
|
|
|
|
|
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2227
|
5148 |
+
msgid "Free updates and support forever"
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2228
|
5152 |
msgid ""
|
5153 |
+
"Once you're a pro user, you'll receive free updates and support forever! "
|
5154 |
+
"You'll also receive amazing specials on any future plugins we release."
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2236
|
5158 |
+
msgid "Get all of this and more for only $39.99 once off"
|
|
|
|
|
|
|
5159 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5160 |
|
5161 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2241
|
5162 |
+
#, fuzzy
|
5163 |
+
#| msgid "Pro Upgrade"
|
5164 |
+
msgid "Upgrade Now"
|
5165 |
+
msgstr "Pro ъпгрейд"
|
5166 |
|
5167 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2247
|
5168 |
+
#, fuzzy
|
5169 |
+
msgid "View the demos"
|
5170 |
+
msgstr "Виж всички документи."
|
5171 |
|
5172 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2252
|
5173 |
+
msgid ""
|
5174 |
+
"Have a sales question? Contact Nick on <a href=\"mailto:nick@wpgmaps.com"
|
5175 |
+
"\">nick@wpgmaps.com</a> or use our <a href=\"https://www.wpgmaps.com/contact-"
|
5176 |
+
"us/\" target=\"_BLANK\">contact form</a>."
|
5177 |
msgstr ""
|
5178 |
|
5179 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2257
|
|
|
5180 |
msgid ""
|
5181 |
+
"Need help? <a href=\"https://www.wpgmaps.com/forums/\" target=\"_BLANK\">Ask "
|
5182 |
+
"a question on our support forum</a>."
|
|
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2267
|
5186 |
+
msgid "Save Map"
|
5187 |
+
msgstr "Запиши карта"
|
5188 |
|
5189 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2272
|
5190 |
+
msgid ""
|
5191 |
+
"Tip: Use your mouse to change the layout of your map. When you have "
|
5192 |
+
"positioned the map to your desired location, press \"Save Map\" to keep your "
|
5193 |
+
"settings."
|
5194 |
msgstr ""
|
5195 |
+
"Съвет: Ползвай мишката си за да смениш вида на картата. Когато си \"\n"
|
5196 |
+
"\"позициониран на желаното място, натисни \"запиши карта\" за да ти се "
|
5197 |
+
"запазят \"\n"
|
5198 |
+
"\"настройките.\""
|
5199 |
|
5200 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2294
|
5201 |
+
#, fuzzy
|
5202 |
+
#| msgid "Advanced markers"
|
5203 |
+
msgid "Advanced Markers"
|
5204 |
+
msgstr "Специални маркери"
|
5205 |
+
|
5206 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2313
|
5207 |
+
msgid "Heatmaps"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2349
|
5211 |
+
#, fuzzy
|
5212 |
+
#| msgid "Add a marker"
|
5213 |
+
msgid "Add a new Marker"
|
5214 |
+
msgstr "Добави маркер"
|
5215 |
|
5216 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2372
|
5217 |
+
#, fuzzy
|
5218 |
+
#| msgid "Add a New Polygon"
|
5219 |
+
msgid "Add a new Polygon"
|
5220 |
+
msgstr "Добави нов полигон"
|
|
|
|
|
5221 |
|
5222 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2393
|
5223 |
+
#, fuzzy
|
5224 |
+
#| msgid "Add a New Polyline"
|
5225 |
+
msgid "Add a new Polyline"
|
5226 |
+
msgstr "Добави нов полином"
|
5227 |
|
5228 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2411
|
|
|
5229 |
#, fuzzy
|
5230 |
+
msgid "Add a new Heatmap"
|
5231 |
+
msgstr "Добави нова категория"
|
|
|
5232 |
|
5233 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2431
|
5234 |
+
#, fuzzy
|
5235 |
+
#| msgid "Add a marker"
|
5236 |
+
msgid "Add a new Circle"
|
5237 |
+
msgstr "Добави маркер"
|
5238 |
+
|
5239 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2451
|
5240 |
+
#, fuzzy
|
5241 |
+
msgid "Add a new Rectangle"
|
5242 |
+
msgstr "Добави маркер"
|
5243 |
+
|
5244 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2467
|
5245 |
+
msgid "Add advanced markers"
|
5246 |
+
msgstr "Добави специални маркери"
|
5247 |
+
|
5248 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2469
|
5249 |
+
msgid "with the Pro version"
|
5250 |
+
msgstr "с Pro версия"
|
5251 |
+
|
5252 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2489
|
5253 |
+
#, php-format
|
5254 |
+
msgid ""
|
5255 |
+
"Please ensure you <a href=\"%s\">enter a Google Maps API key</a> to continue "
|
5256 |
+
"using Google Maps. Alternatively, swap over to Open Layers by clicking <a id="
|
5257 |
+
"\"wpgm-swap-to-open-layers\" href=\"%s\">here</a>."
|
5258 |
+
msgstr ""
|
5259 |
+
|
5260 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2501
|
5261 |
+
msgid "Remember to save your map!"
|
5262 |
+
msgstr "Не забравяй да запишеш картата си!"
|
5263 |
|
5264 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2508
|
|
|
|
|
5265 |
#, fuzzy
|
5266 |
+
msgid "Edit existing Rectangles"
|
5267 |
+
msgstr "Добави маркер"
|
|
|
|
|
|
|
|
|
|
|
|
|
5268 |
|
5269 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2509
|
5270 |
+
msgid "Edit existing Circles"
|
|
|
|
|
5271 |
msgstr ""
|
5272 |
|
5273 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2510
|
5274 |
+
msgid "Edit existing Heatmaps"
|
|
|
|
|
|
|
5275 |
msgstr ""
|
5276 |
|
5277 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2511
|
5278 |
+
#, fuzzy
|
5279 |
+
#| msgid "Edit Polyline"
|
5280 |
+
msgid "Edit existing Polylines"
|
5281 |
+
msgstr "Промени полином"
|
5282 |
|
5283 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2512
|
5284 |
+
#, fuzzy
|
5285 |
+
#| msgid "Edit Polygon"
|
5286 |
+
msgid "Edit existing Polygons"
|
5287 |
+
msgstr "Промяна на полигон."
|
5288 |
|
5289 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2513
|
|
|
5290 |
#, fuzzy
|
5291 |
+
#| msgid "Edit this marker"
|
5292 |
+
msgid "Edit existing Markers"
|
5293 |
+
msgstr "Промени този маркер"
|
5294 |
|
5295 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2532
|
5296 |
+
msgid "Add detailed information to your markers!"
|
5297 |
+
msgstr "Добави детайлна информация към твоите маркери!"
|
|
|
5298 |
|
5299 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2533
|
5300 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2566
|
5301 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2567
|
5302 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2598
|
5303 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2599
|
5304 |
+
msgid "Add custom markers to your map!"
|
5305 |
+
msgstr "Добави къстъм маркери към твоята карта!"
|
5306 |
|
5307 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2542
|
5308 |
+
msgid "Add detailed information to your markers for only"
|
5309 |
+
msgstr "Добави детайлна информация към твоите маркери само за"
|
|
|
5310 |
|
5311 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2546
|
5312 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2579
|
5313 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2610
|
5314 |
+
#: ../html/settings-page.html.php:728
|
5315 |
+
msgid "Click"
|
5316 |
+
msgstr "Клик"
|
5317 |
|
5318 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2553
|
5319 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2585
|
5320 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2616
|
5321 |
+
msgid "here"
|
5322 |
+
msgstr "тук"
|
5323 |
|
5324 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2575
|
5325 |
+
msgid ""
|
5326 |
+
"Add different marker icons, or your own icons to make your map really stand "
|
5327 |
+
"out!"
|
5328 |
+
msgstr ""
|
5329 |
+
"Добави различни икони, или собствени икони за да направиш твоята карта "
|
5330 |
+
"наистина готина!"
|
5331 |
|
5332 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2582
|
5333 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2613
|
5334 |
+
msgid "Pro Edition"
|
5335 |
+
msgstr "Pro едишън"
|
5336 |
|
5337 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2606
|
5338 |
+
msgid "Allow your visitors to get directions to your markers!"
|
5339 |
+
msgstr "Позволи твоите потребители да получат упътвания до твоите маркери!"
|
|
|
5340 |
|
5341 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2628
|
5342 |
+
msgid ""
|
5343 |
+
"Thank you for using <a href='https://www.wpgmaps.com'>WP Google Maps</a>! "
|
5344 |
+
"Please <a href='https://wordpress.org/support/plugin/wp-google-maps/"
|
5345 |
+
"reviews/'>rate us on WordPress.org</a>"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2633
|
5349 |
+
#, php-format
|
5350 |
+
msgid ""
|
5351 |
+
"WP Google Maps is a product of <img src='%s' alt='CODECABIN_' style='height: "
|
5352 |
+
"1em;' class='wpgmze_cc_footer_image'/>"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2639
|
5356 |
+
msgid ""
|
5357 |
+
"Please refer to our <a href='https://www.wpgmaps.com/privacy-policy' "
|
5358 |
+
"target='_blank'>Privacy Policy</a> for information on Data Processing"
|
5359 |
msgstr ""
|
5360 |
|
5361 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2643
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5362 |
#, fuzzy
|
5363 |
+
#| msgid ""
|
5364 |
+
#| "WP Google Maps encourages you to make use of the amazing icons created by "
|
5365 |
+
#| "Nicolas Mollet's Maps Icons Collection"
|
5366 |
+
msgid "WP Google Maps encourages you to make use of the amazing icons at "
|
|
|
|
|
|
|
|
|
|
|
|
|
5367 |
msgstr ""
|
5368 |
+
"\"WP Google Maps те насърчава да ползваш невероятните икони създадени от "
|
5369 |
+
"Nicolas Mollet's Maps Icons Collection"
|
5370 |
|
5371 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2648
|
5372 |
+
msgid "Translating the plugin with"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
+
#: ../html/map-edit-page/map-edit-page.html.php:2649
|
5376 |
+
msgid "WPML"
|
5377 |
msgstr ""
|
5378 |
|
5379 |
+
#: ../html/map-edit-page/marker-panel.html.php:7
|
5380 |
+
msgid "Use the <strong>address</strong> field to add a marker."
|
5381 |
+
msgstr ""
|
5382 |
|
5383 |
+
#: ../html/map-edit-page/marker-panel.html.php:12
|
5384 |
+
msgid ""
|
5385 |
+
"Alternatively, <strong>right click</strong> to manually position your marker."
|
5386 |
+
msgstr ""
|
|
|
5387 |
|
5388 |
+
#: ../html/map-edit-page/marker-panel.html.php:17
|
5389 |
+
#: ../html/map-edit-page/marker-panel.html.php:37
|
5390 |
+
msgid "<strong>Click and drag</strong> to adjust the markers position."
|
5391 |
msgstr ""
|
5392 |
|
5393 |
+
#: ../html/map-edit-page/marker-panel.html.php:22
|
5394 |
+
msgid "Click the <strong>Add Marker</strong> button to create the marker."
|
5395 |
+
msgstr ""
|
|
|
|
|
5396 |
|
5397 |
+
#: ../html/map-edit-page/marker-panel.html.php:32
|
5398 |
+
msgid "Use the fields in the marker editor to edit this markers information"
|
5399 |
+
msgstr ""
|
|
|
5400 |
|
5401 |
+
#: ../html/map-edit-page/marker-panel.html.php:47
|
5402 |
+
msgid "Position Adjustment"
|
|
|
|
|
|
|
5403 |
msgstr ""
|
5404 |
|
5405 |
+
#: ../html/map-edit-page/marker-panel.html.php:49
|
5406 |
+
msgid ""
|
5407 |
+
"You can now drag the marker to adjust the position without updating the "
|
5408 |
+
"address field. Field editing is disabled in this mode"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: ../html/map-edit-page/marker-panel.html.php:65
|
5412 |
+
msgid "Address/GPS"
|
5413 |
+
msgstr "Адрес/GPS"
|
|
|
5414 |
|
5415 |
+
#: ../html/map-edit-page/marker-panel.html.php:74
|
5416 |
+
msgid "Extract address from picture"
|
5417 |
+
msgstr ""
|
5418 |
|
5419 |
+
#: ../html/map-edit-page/marker-panel.html.php:85
|
5420 |
+
#, fuzzy
|
5421 |
+
#| msgid "Pro Edition"
|
5422 |
+
msgid "Position"
|
5423 |
+
msgstr "Pro едишън"
|
5424 |
|
5425 |
+
#: ../html/map-edit-page/marker-panel.html.php:112
|
5426 |
+
msgid "Gallery"
|
|
|
5427 |
msgstr ""
|
5428 |
|
5429 |
+
#: ../html/map-edit-page/marker-panel.html.php:119
|
5430 |
+
msgid "Link URL"
|
5431 |
+
msgstr "Линк URL"
|
|
|
|
|
|
|
5432 |
|
5433 |
+
#: ../html/map-edit-page/marker-panel.html.php:124
|
5434 |
+
msgid "Custom Marker"
|
5435 |
+
msgstr "Къстъм маркери"
|
|
|
|
|
|
|
5436 |
|
5437 |
+
#: ../html/map-edit-page/marker-panel.html.php:134
|
5438 |
+
msgid "Animation"
|
5439 |
+
msgstr "Анимация"
|
5440 |
|
5441 |
+
#: ../html/map-edit-page/marker-panel.html.php:156
|
5442 |
+
msgid "InfoWindow open by default"
|
5443 |
+
msgstr "Инфопрозорец отворен по дифолт"
|
|
|
|
|
5444 |
|
5445 |
+
#: ../html/map-edit-page/marker-panel.html.php:174
|
5446 |
+
msgid "Display on front end"
|
5447 |
+
msgstr ""
|
5448 |
|
5449 |
+
#: ../html/map-edit-page/marker-panel.html.php:194
|
5450 |
+
#: ../includes/tables/class.admin-marker-datatable.php:42
|
5451 |
+
msgid "Sticky"
|
5452 |
+
msgstr ""
|
5453 |
|
5454 |
+
#: ../html/map-edit-page/marker-panel.html.php:201
|
5455 |
+
#, fuzzy
|
5456 |
+
#| msgid "Basic Marker Listings"
|
5457 |
+
msgid "Always on top in Marker Listings"
|
5458 |
+
msgstr "Основни маркерни списъци"
|
5459 |
|
5460 |
+
#: ../html/map-edit-page/polygon-panel.html.php:7
|
5461 |
+
msgid "<strong>Click</strong> on the map to start drawing your polygon."
|
5462 |
msgstr ""
|
|
|
|
|
5463 |
|
5464 |
+
#: ../html/map-edit-page/polygon-panel.html.php:12
|
5465 |
+
msgid "Add at least <strong>three</strong> points"
|
5466 |
+
msgstr ""
|
5467 |
|
5468 |
+
#: ../html/map-edit-page/polygon-panel.html.php:17
|
5469 |
msgid ""
|
5470 |
+
"<strong>Complete</strong> drawing your polygon by <strong>clicking</strong> "
|
5471 |
+
"the start point a second time."
|
5472 |
msgstr ""
|
|
|
|
|
5473 |
|
5474 |
+
#: ../html/map-edit-page/polygon-panel.html.php:27
|
5475 |
+
msgid "Use the fields below to edit this polygons information."
|
5476 |
+
msgstr ""
|
5477 |
|
5478 |
+
#: ../html/map-edit-page/polygon-panel.html.php:32
|
5479 |
+
#: ../html/map-edit-page/polyline-panel.html.php:32
|
5480 |
+
msgid "<strong>Click and drag</strong> existing vertices to move them."
|
5481 |
+
msgstr ""
|
5482 |
|
5483 |
+
#: ../html/map-edit-page/polygon-panel.html.php:37
|
5484 |
+
#: ../html/map-edit-page/polyline-panel.html.php:37
|
5485 |
+
msgid "<strong>Click and drag</strong> any edge to add vertices."
|
5486 |
+
msgstr ""
|
5487 |
|
5488 |
+
#: ../html/map-edit-page/polygon-panel.html.php:42
|
5489 |
+
#: ../html/map-edit-page/polyline-panel.html.php:42
|
5490 |
+
msgid "<strong>Hold Alt</strong> and click to remove vertices."
|
5491 |
+
msgstr ""
|
5492 |
|
5493 |
+
#: ../html/map-edit-page/polygon-panel.html.php:99
|
5494 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:105
|
5495 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:195
|
5496 |
+
msgid "Line Opacity"
|
5497 |
+
msgstr "Непрозрачност на линията"
|
5498 |
|
5499 |
+
#: ../html/map-edit-page/polygon-panel.html.php:136
|
5500 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:114
|
5501 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:204
|
5502 |
+
msgid "On Hover Line Color"
|
5503 |
+
msgstr "При ховър цвят на линията"
|
5504 |
|
5505 |
+
#: ../html/map-edit-page/polygon-panel.html.php:145
|
5506 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:117
|
5507 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:207
|
5508 |
+
msgid "On Hover Fill Color"
|
5509 |
+
msgstr "При ховър запълни цвят"
|
5510 |
|
5511 |
+
#: ../html/map-edit-page/polygon-panel.html.php:154
|
5512 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:120
|
5513 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:210
|
5514 |
+
msgid "On Hover Opacity"
|
5515 |
+
msgstr "При ховър прозрачност"
|
|
|
5516 |
|
5517 |
+
#: ../html/map-edit-page/polygon-panel.html.php:168
|
|
|
5518 |
#, fuzzy
|
5519 |
+
#| msgid "Polygon Data"
|
5520 |
+
msgid "Polygon data"
|
5521 |
+
msgstr "Данни полигон"
|
5522 |
|
5523 |
+
#: ../html/map-edit-page/polyline-panel.html.php:7
|
5524 |
+
msgid "<strong>Click</strong> on the map to start drawing your polyline."
|
|
|
5525 |
msgstr ""
|
5526 |
|
5527 |
+
#: ../html/map-edit-page/polyline-panel.html.php:12
|
5528 |
+
msgid "Add at least <strong>two</strong> points"
|
|
|
|
|
|
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: ../html/map-edit-page/polyline-panel.html.php:17
|
5532 |
+
msgid ""
|
5533 |
+
"<strong>Complete</strong> drawing your polyline by <strong>clicking</strong> "
|
5534 |
+
"the end point a second time."
|
5535 |
+
msgstr ""
|
5536 |
|
5537 |
+
#: ../html/map-edit-page/polyline-panel.html.php:27
|
5538 |
+
msgid "Use the fields below to edit this polylines information."
|
5539 |
+
msgstr ""
|
|
|
|
|
5540 |
|
5541 |
+
#: ../html/map-edit-page/polyline-panel.html.php:95
|
5542 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:651
|
5543 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:749
|
5544 |
+
msgid "Line Thickness"
|
5545 |
+
msgstr "Дебелина на линия"
|
5546 |
|
5547 |
+
#: ../html/map-edit-page/polyline-panel.html.php:104
|
5548 |
+
#, fuzzy
|
5549 |
+
#| msgid "Polyline Data"
|
5550 |
+
msgid "Polyline data"
|
5551 |
+
msgstr "Полином данни"
|
5552 |
|
5553 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:7
|
5554 |
+
#, fuzzy
|
5555 |
+
#| msgid "Click on the map to insert a vertex."
|
5556 |
+
msgid ""
|
5557 |
+
"<strong>Click</strong> on the map to set the first corner of your rectangle."
|
5558 |
+
msgstr "Кликни на картата за да въведеш връх."
|
5559 |
|
5560 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:12
|
5561 |
+
msgid ""
|
5562 |
+
"<strong>Click</strong> again to set the other corner and to finish drawing "
|
5563 |
+
"your rectangle."
|
5564 |
+
msgstr ""
|
5565 |
|
5566 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:22
|
5567 |
+
msgid "Use the fields below to edit this rectangles information."
|
5568 |
+
msgstr ""
|
5569 |
|
5570 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:27
|
5571 |
#, fuzzy
|
5572 |
+
#| msgid "Click on a vertex to remove it."
|
5573 |
+
msgid "<strong>Click and drag</strong> corners of the rectangle to resize it."
|
5574 |
+
msgstr "Кликни на връх за да премахнеш."
|
5575 |
|
5576 |
+
#: ../html/map-edit-page/rectangle-panel.html.php:32
|
5577 |
#, fuzzy
|
5578 |
+
#| msgid "Click on a vertex to remove it."
|
5579 |
+
msgid ""
|
5580 |
+
"<strong>Click and drag</strong> the edges of the rectangle to resize it."
|
5581 |
+
msgstr "Кликни на връх за да премахнеш."
|
5582 |
|
5583 |
+
#: ../html/map-list-page.html.php:10 ../legacy-core.php:1041
|
5584 |
+
#: ../legacy-core.php:1102
|
5585 |
+
msgid "Add New"
|
5586 |
+
msgstr "Добави нова"
|
|
|
|
|
5587 |
|
5588 |
+
#: ../html/map-list-page.html.php:18 ../legacy-core.php:1041
|
5589 |
+
msgid "Wizard"
|
5590 |
+
msgstr ""
|
|
|
|
|
|
|
5591 |
|
5592 |
+
#: ../html/map-list-page.html.php:26 ../legacy-core.php:1041
|
5593 |
+
#: ../legacy-core.php:1066
|
5594 |
+
msgid "My Maps"
|
5595 |
+
msgstr "Моите карти"
|
|
|
|
|
5596 |
|
5597 |
+
#: ../html/map-list-page.html.php:32 ../legacy-core.php:1016
|
5598 |
+
#, php-format
|
5599 |
+
msgid ""
|
5600 |
+
"<h3>We need your love!</h3><p>If you are enjoying our plugin, please "
|
5601 |
+
"consider <a href=\"%1$s\" target=\"_blank\" class=\"button-border button-"
|
5602 |
+
"border__green\">reviewing WP Google Maps</a>. It would mean the world to us! "
|
5603 |
+
"If you are experiencing issues with the plugin, please <a href=\"%2$s\" "
|
5604 |
+
"target=\"_blank\" class=\"button-border button-border__green\">contact us</"
|
5605 |
+
"a> and we will help you as soon as humanly possible!</p>"
|
5606 |
+
msgstr ""
|
5607 |
|
5608 |
+
#: ../html/map-list-page.html.php:39 ../legacy-core.php:1021
|
5609 |
+
msgid "We will not nag you again, promise!"
|
5610 |
+
msgstr ""
|
5611 |
+
|
5612 |
+
#: ../html/map-list-page.html.php:41 ../legacy-core.php:1021
|
5613 |
+
msgid "Close"
|
5614 |
+
msgstr ""
|
5615 |
|
5616 |
+
#: ../html/map-list-page.html.php:52 ../legacy-core.php:1067
|
5617 |
+
msgid "Create unlimited maps"
|
5618 |
+
msgstr "Създай ънлимитед карти"
|
|
|
|
|
5619 |
|
5620 |
+
#: ../html/map-list-page.html.php:70 ../legacy-core.php:1067
|
5621 |
+
msgid "once off!"
|
5622 |
+
msgstr ""
|
|
|
|
|
5623 |
|
5624 |
+
#: ../html/newsletter-opt-in.html.php:13
|
|
|
5625 |
#, fuzzy
|
5626 |
+
#| msgid "Thank you for your feedback!"
|
5627 |
+
msgid "Thank you for joining our newsletter!"
|
5628 |
+
msgstr "Благодаря за фийдбека!"
|
5629 |
|
5630 |
+
#: ../html/newsletter-opt-in.html.php:15
|
5631 |
+
#, php-format
|
5632 |
+
msgid ""
|
5633 |
+
"Your email address (%s) has been sent to our server and automatically added "
|
5634 |
+
"to our mailing list"
|
5635 |
msgstr ""
|
5636 |
|
5637 |
+
#: ../html/ol-feature-coming-soon.html.php:9
|
5638 |
+
msgid ""
|
5639 |
+
"<strong>Coming soon</strong> to OpenLayers. If you need to use this feature, "
|
5640 |
+
"please go to settings then select and configure Google Maps to enable it."
|
5641 |
msgstr ""
|
5642 |
|
5643 |
+
#: ../html/settings-page.html.php:53
|
5644 |
+
msgid "Maps Engine"
|
5645 |
+
msgstr ""
|
5646 |
|
5647 |
+
#: ../html/settings-page.html.php:56
|
5648 |
+
#: ../includes/class.maps-engine-dialog.php:111
|
5649 |
+
#, fuzzy
|
5650 |
+
#| msgid "WP Google Maps"
|
5651 |
+
msgid "Google Maps"
|
5652 |
+
msgstr "WP Google Maps"
|
5653 |
|
5654 |
+
#: ../html/settings-page.html.php:57
|
5655 |
+
#: ../includes/class.maps-engine-dialog.php:70
|
5656 |
#, fuzzy
|
5657 |
+
#| msgid "Enable Layers"
|
5658 |
+
msgid "OpenLayers"
|
5659 |
+
msgstr "Включи слоеве"
|
5660 |
|
5661 |
+
#: ../html/settings-page.html.php:63
|
5662 |
+
msgid "General Map Settings"
|
5663 |
+
msgstr "Главни настройки на карта"
|
5664 |
|
5665 |
+
#: ../html/settings-page.html.php:70
|
5666 |
#, fuzzy
|
5667 |
+
#| msgid "Disable Pan Controls"
|
5668 |
+
msgid "Disable Full Screen Control"
|
5669 |
+
msgstr "Изключи Pan контрол"
|
5670 |
|
5671 |
+
#: ../html/settings-page.html.php:77
|
5672 |
+
msgid "Disable StreetView"
|
5673 |
+
msgstr "Изключи StreetView"
|
5674 |
|
5675 |
+
#: ../html/settings-page.html.php:84
|
5676 |
+
msgid "Disable Zoom Controls"
|
5677 |
+
msgstr "Изключи Zoom контрол"
|
|
|
5678 |
|
5679 |
+
#: ../html/settings-page.html.php:91
|
5680 |
+
msgid "Disable Pan Controls"
|
5681 |
+
msgstr "Изключи Pan контрол"
|
5682 |
+
|
5683 |
+
#: ../html/settings-page.html.php:98
|
5684 |
+
msgid "Disable Map Type Controls"
|
5685 |
+
msgstr "Изключи Map Type контрол"
|
5686 |
|
5687 |
+
#: ../html/settings-page.html.php:105
|
|
|
5688 |
#, fuzzy
|
5689 |
+
#| msgid "Disable Pan Controls"
|
5690 |
+
msgid "Disable Tilt Controls"
|
5691 |
+
msgstr "Изключи Pan контрол"
|
5692 |
|
5693 |
+
#: ../html/settings-page.html.php:112
|
5694 |
+
msgid "Disable Mouse Wheel Zoom"
|
5695 |
+
msgstr "Изключи Mouse Wheel Zoom"
|
5696 |
|
5697 |
+
#: ../html/settings-page.html.php:119
|
5698 |
+
msgid "Disable Mouse Dragging"
|
5699 |
+
msgstr "Изключи Mouse влачене"
|
5700 |
|
5701 |
+
#: ../html/settings-page.html.php:126
|
5702 |
+
msgid "Disable Mouse Double Click Zooming"
|
5703 |
+
msgstr "Изключи Mouse двоен клик Zooming"
|
|
|
|
|
5704 |
|
5705 |
+
#: ../html/settings-page.html.php:135
|
5706 |
+
msgid "User Interface Style"
|
|
|
|
|
|
|
|
|
5707 |
msgstr ""
|
5708 |
|
5709 |
+
#: ../html/settings-page.html.php:136
|
5710 |
+
msgid "examples"
|
|
|
|
|
|
|
5711 |
msgstr ""
|
5712 |
|
5713 |
+
#: ../html/settings-page.html.php:147
|
5714 |
+
msgid "<strong>Default</strong> - The default front end."
|
|
|
|
|
|
|
|
|
5715 |
msgstr ""
|
5716 |
|
5717 |
+
#: ../html/settings-page.html.php:157
|
5718 |
msgid ""
|
5719 |
+
"<strong>Modern</strong> - Puts components inside the map, with pull-out "
|
5720 |
+
"panels."
|
|
|
5721 |
msgstr ""
|
5722 |
|
5723 |
+
#: ../html/settings-page.html.php:167
|
5724 |
msgid ""
|
5725 |
+
"<strong>Legacy</strong> - This setting is the same as Default, but provides "
|
5726 |
+
"options to change individual components to the modern style."
|
|
|
5727 |
msgstr ""
|
5728 |
|
5729 |
+
#: ../html/settings-page.html.php:177
|
5730 |
+
msgid "<strong>Compact</strong> - Puts all components and their labels inline."
|
5731 |
msgstr ""
|
5732 |
|
5733 |
+
#: ../html/settings-page.html.php:187
|
5734 |
+
msgid ""
|
5735 |
+
"<strong>Minimal</strong> - The same as Compact, but with icons instead of "
|
5736 |
+
"text labels."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5737 |
msgstr ""
|
5738 |
|
5739 |
+
#: ../html/settings-page.html.php:197
|
5740 |
+
msgid ""
|
5741 |
+
"<strong>Bare Bones</strong> - Applies no styling to the components at all. "
|
5742 |
+
"This is recommended for designers and developers who want to style the "
|
5743 |
+
"components from scratch."
|
5744 |
msgstr ""
|
5745 |
|
5746 |
+
#: ../html/settings-page.html.php:207
|
|
|
|
|
|
|
|
|
|
|
5747 |
#, fuzzy
|
5748 |
+
#| msgid "Allow category selection"
|
5749 |
+
msgid "Category Selection Logic"
|
5750 |
+
msgstr "Позволи избор на категории"
|
5751 |
|
5752 |
+
#: ../html/settings-page.html.php:213
|
5753 |
+
msgid "OR"
|
5754 |
+
msgstr "ИЛИ"
|
|
|
5755 |
|
5756 |
+
#: ../html/settings-page.html.php:213
|
5757 |
+
msgid "Example: Show the marker if it belongs to Cat A _OR_ Cat B."
|
5758 |
+
msgstr ""
|
|
|
5759 |
|
5760 |
+
#: ../html/settings-page.html.php:220
|
5761 |
+
msgid "AND"
|
5762 |
msgstr ""
|
5763 |
|
5764 |
+
#: ../html/settings-page.html.php:220
|
5765 |
+
msgid "Example: Only show the marker if it belongs to Cat A _AND_ Cat B."
|
5766 |
msgstr ""
|
5767 |
|
5768 |
+
#: ../html/settings-page.html.php:228
|
5769 |
+
msgid "Filter by category displayed as"
|
5770 |
+
msgstr "Филтър по категория показани като"
|
|
|
|
|
5771 |
|
5772 |
+
#: ../html/settings-page.html.php:249
|
5773 |
+
msgid "Troubleshooting Options"
|
5774 |
+
msgstr "Опции отстраняване на проблеми"
|
|
|
|
|
|
|
5775 |
|
5776 |
+
#: ../html/settings-page.html.php:255
|
5777 |
#, fuzzy
|
5778 |
+
msgid ""
|
5779 |
+
"Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
|
5780 |
+
"receiving jQuery related errors after updating to WordPress 4.5)"
|
5781 |
+
msgstr ""
|
5782 |
+
"Презапис сегашното jQuery с версия 1.8.3 (Отметни това ако получаваш jQuery "
|
5783 |
+
"свързани грешки)"
|
5784 |
|
5785 |
+
#: ../html/settings-page.html.php:262
|
5786 |
+
msgid ""
|
5787 |
+
"Do not load the Google Maps API (Only check this if your theme loads the "
|
5788 |
+
"Google Maps API by default)"
|
5789 |
+
msgstr ""
|
5790 |
|
5791 |
+
#: ../html/settings-page.html.php:269
|
5792 |
+
msgid "Use FontAwesome"
|
5793 |
+
msgstr ""
|
|
|
5794 |
|
5795 |
+
#: ../html/settings-page.html.php:282
|
5796 |
+
msgid "Tile Server URL"
|
5797 |
+
msgstr ""
|
|
|
|
|
5798 |
|
5799 |
+
#: ../html/settings-page.html.php:290 ../html/tile-server-fieldset.html.php:16
|
5800 |
+
msgid "OpenStreetMap"
|
5801 |
+
msgstr ""
|
|
|
|
|
5802 |
|
5803 |
+
#: ../html/settings-page.html.php:299 ../html/tile-server-fieldset.html.php:25
|
5804 |
+
msgid "Wikimedia Maps"
|
5805 |
+
msgstr ""
|
|
|
|
|
|
|
5806 |
|
5807 |
+
#: ../html/settings-page.html.php:306
|
5808 |
+
msgid "OpenCycleMap *"
|
5809 |
msgstr ""
|
5810 |
|
5811 |
+
#: ../html/settings-page.html.php:313 ../html/tile-server-fieldset.html.php:39
|
5812 |
+
msgid "Humanitarian"
|
5813 |
+
msgstr ""
|
|
|
|
|
|
|
5814 |
|
5815 |
+
#: ../html/settings-page.html.php:320 ../html/tile-server-fieldset.html.php:46
|
5816 |
+
msgid "Mapnik OSM B&W"
|
5817 |
+
msgstr ""
|
|
|
|
|
5818 |
|
5819 |
+
#: ../html/settings-page.html.php:327 ../html/tile-server-fieldset.html.php:53
|
5820 |
+
msgid "Mapnik OSM No Labels"
|
5821 |
+
msgstr ""
|
|
|
5822 |
|
5823 |
+
#: ../html/settings-page.html.php:334 ../html/tile-server-fieldset.html.php:60
|
5824 |
+
msgid "Stamen Toner"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: ../html/settings-page.html.php:341 ../html/tile-server-fieldset.html.php:67
|
5828 |
+
msgid "Stamen Watercolor"
|
5829 |
msgstr ""
|
5830 |
|
5831 |
+
#: ../html/settings-page.html.php:348
|
5832 |
#, fuzzy
|
5833 |
+
#| msgid "Transit Layer"
|
5834 |
+
msgid "Transport Map *"
|
5835 |
+
msgstr "Слой транзит"
|
|
|
|
|
|
|
5836 |
|
5837 |
+
#: ../html/settings-page.html.php:355
|
5838 |
+
msgid "Thunderforest Landscape *"
|
|
|
5839 |
msgstr ""
|
5840 |
|
5841 |
+
#: ../html/settings-page.html.php:362
|
5842 |
+
msgid "Thunderforest Outdoors *"
|
5843 |
msgstr ""
|
5844 |
|
5845 |
+
#: ../html/settings-page.html.php:369 ../html/tile-server-fieldset.html.php:95
|
5846 |
+
msgid "Öpnvkarte"
|
|
|
5847 |
msgstr ""
|
5848 |
|
5849 |
+
#: ../html/settings-page.html.php:376 ../html/tile-server-fieldset.html.php:102
|
5850 |
+
msgid "OpenPtMap"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5851 |
msgstr ""
|
5852 |
|
5853 |
+
#: ../html/settings-page.html.php:382
|
5854 |
+
msgid "Carto Light (Positron) *"
|
|
|
|
|
5855 |
msgstr ""
|
5856 |
|
5857 |
+
#: ../html/settings-page.html.php:389
|
5858 |
+
msgid "Carto Dark (Dark Matter) *"
|
5859 |
+
msgstr ""
|
|
|
|
|
5860 |
|
5861 |
+
#: ../html/settings-page.html.php:395
|
5862 |
+
msgid "MapTiler Streets *"
|
5863 |
msgstr ""
|
5864 |
|
5865 |
+
#: ../html/settings-page.html.php:401
|
5866 |
+
msgid "MapTiler Outdoor *"
|
|
|
|
|
|
|
5867 |
msgstr ""
|
|
|
|
|
5868 |
|
5869 |
+
#: ../html/settings-page.html.php:407
|
5870 |
+
msgid "MapTiler Pastel *"
|
5871 |
+
msgstr ""
|
|
|
5872 |
|
5873 |
+
#: ../html/settings-page.html.php:413
|
5874 |
+
msgid "MapTiler Basic *"
|
5875 |
+
msgstr ""
|
|
|
5876 |
|
5877 |
+
#: ../html/settings-page.html.php:419
|
5878 |
+
msgid "Caltopo *"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
+
#: ../html/settings-page.html.php:425
|
5882 |
+
msgid "Other (Enter URL)"
|
5883 |
+
msgstr ""
|
|
|
5884 |
|
5885 |
+
#: ../html/settings-page.html.php:430
|
5886 |
+
msgid ""
|
5887 |
+
"You can add an API key under the Advanced Settings tab if required by your "
|
5888 |
+
"TileServer provider"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: ../html/settings-page.html.php:434
|
5892 |
+
msgid "Custom Tile Server URL"
|
5893 |
msgstr ""
|
5894 |
|
5895 |
+
#: ../html/settings-page.html.php:440
|
5896 |
+
msgid "Load Maps Engine API"
|
5897 |
msgstr ""
|
5898 |
|
5899 |
+
#: ../html/settings-page.html.php:472
|
5900 |
+
msgid "Always include engine API on pages"
|
5901 |
msgstr ""
|
5902 |
|
5903 |
+
#: ../html/settings-page.html.php:477
|
5904 |
+
msgid "Always exclude engine API on pages"
|
|
|
|
|
|
|
5905 |
msgstr ""
|
5906 |
|
5907 |
+
#: ../html/settings-page.html.php:482
|
5908 |
+
msgid "Prevent other plugins and theme loading API"
|
5909 |
+
msgstr ""
|
5910 |
|
5911 |
+
#: ../html/settings-page.html.php:486
|
5912 |
msgid ""
|
5913 |
+
"Use this setting if you are experiencing Google Maps API issues, such as "
|
5914 |
+
"invalid key warnings, or Multiple API warnings"
|
5915 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
5916 |
|
5917 |
+
#: ../html/settings-page.html.php:492
|
5918 |
+
msgid "Lowest level of access to the map editor"
|
5919 |
+
msgstr "Най-ниско ниво на достъп до редакция на картата"
|
5920 |
|
5921 |
+
#: ../html/settings-page.html.php:494
|
5922 |
+
msgid "Admin"
|
5923 |
+
msgstr ""
|
5924 |
|
5925 |
+
#: ../html/settings-page.html.php:495
|
5926 |
+
#, fuzzy
|
5927 |
+
#| msgid "Edit"
|
5928 |
+
msgid "Editor"
|
5929 |
+
msgstr "Промени"
|
5930 |
|
5931 |
+
#: ../html/settings-page.html.php:496
|
5932 |
+
msgid "Author"
|
5933 |
+
msgstr ""
|
5934 |
|
5935 |
+
#: ../html/settings-page.html.php:497
|
5936 |
+
msgid "Contributor"
|
5937 |
+
msgstr ""
|
5938 |
|
5939 |
+
#: ../html/settings-page.html.php:498
|
5940 |
+
msgid "Subscriber"
|
5941 |
+
msgstr ""
|
5942 |
|
5943 |
+
#: ../html/settings-page.html.php:503
|
5944 |
+
msgid "Retina Icon Width"
|
5945 |
+
msgstr "Retina Icon Широчина"
|
5946 |
|
5947 |
+
#: ../html/settings-page.html.php:509
|
5948 |
+
msgid "Retina Icon Height"
|
5949 |
+
msgstr "Retina Icon Височина"
|
5950 |
|
5951 |
+
#: ../html/settings-page.html.php:519
|
5952 |
+
msgid "Greedy Gesture Handling"
|
5953 |
+
msgstr ""
|
|
|
5954 |
|
5955 |
+
#: ../html/settings-page.html.php:523
|
5956 |
+
msgid ""
|
5957 |
+
"Check this setting to disable two finger pan on mobiles, and Ctrl + Zoom on "
|
5958 |
+
"desktops. Enabling this setting will allow one finger panning on mobiles, "
|
5959 |
+
"and will enable zoom without Ctrl on desktops."
|
5960 |
+
msgstr ""
|
5961 |
|
5962 |
+
#: ../html/settings-page.html.php:531
|
5963 |
+
msgid "Disable Lightbox"
|
5964 |
+
msgstr ""
|
5965 |
|
5966 |
+
#: ../html/settings-page.html.php:537
|
5967 |
+
msgid ""
|
5968 |
+
"Prevents the larger image lightbox from opening up when pictures in the "
|
5969 |
+
"infowindow or marker listing are clicked"
|
5970 |
+
msgstr ""
|
5971 |
|
5972 |
+
#: ../html/settings-page.html.php:635
|
5973 |
+
#, fuzzy
|
5974 |
+
msgid "No Global Setting"
|
5975 |
+
msgstr "Основни настройки"
|
5976 |
|
5977 |
+
#: ../html/settings-page.html.php:645
|
5978 |
+
msgid "Resize Images"
|
5979 |
+
msgstr "Рисайз картинки"
|
|
|
|
|
5980 |
|
5981 |
+
#: ../html/settings-page.html.php:656
|
5982 |
+
msgid "Resize all images to the below sizes"
|
5983 |
+
msgstr "Рисайз всички картинки до по долу размера"
|
5984 |
|
5985 |
+
#: ../html/settings-page.html.php:662
|
5986 |
+
msgid "Default Image Width"
|
5987 |
+
msgstr "Дифолт снимка Широчина"
|
5988 |
|
5989 |
+
#: ../html/settings-page.html.php:665
|
5990 |
+
msgid "(can be left blank - max width will be limited to max infowindow width)"
|
5991 |
+
msgstr ""
|
5992 |
+
"не може да е празно - max Широчина ще бъде ограничена до max Инфопрозорец "
|
5993 |
+
"Широчина)"
|
5994 |
|
5995 |
+
#: ../html/settings-page.html.php:669
|
5996 |
+
msgid "Default Image Height"
|
5997 |
+
msgstr "Дифолт Снимка Височина"
|
5998 |
|
5999 |
+
#: ../html/settings-page.html.php:672 ../html/settings-page.html.php:679
|
6000 |
+
msgid ""
|
6001 |
+
"(can be left blank - leaving both the width and height blank will revert to "
|
6002 |
+
"full size images being used)"
|
6003 |
+
msgstr ""
|
6004 |
+
"(не може да е празни - оставяйки и двете Широчина и Височина празно ще върне "
|
6005 |
+
"до пълния размер на картинките които са ползвани)"
|
6006 |
|
6007 |
+
#: ../html/settings-page.html.php:676
|
6008 |
+
msgid "Max InfoWindow Width"
|
6009 |
+
msgstr "Max Инфопрозорец Широчина"
|
6010 |
|
6011 |
+
#: ../html/settings-page.html.php:683
|
6012 |
+
msgid "Other settings"
|
6013 |
+
msgstr "Други настройки"
|
6014 |
|
6015 |
+
#: ../html/settings-page.html.php:696
|
6016 |
+
#, fuzzy
|
6017 |
+
#| msgid "Open links in a new window"
|
6018 |
+
msgid "Open links in a new window "
|
6019 |
+
msgstr "Отвори линковете в нов прозорец"
|
6020 |
|
6021 |
+
#: ../html/settings-page.html.php:697
|
6022 |
+
msgid "(Tick this if you want to open your links in a new window)"
|
6023 |
+
msgstr "(Отбележи тук ако искаш да се отварят линковете в нов прозорец)"
|
|
|
6024 |
|
6025 |
+
#: ../html/settings-page.html.php:709
|
6026 |
+
msgid "Hide the address field"
|
6027 |
+
msgstr "Скрий поле адрес"
|
6028 |
|
6029 |
+
#: ../html/settings-page.html.php:716
|
6030 |
+
msgid "Link text"
|
6031 |
+
msgstr "Текст за линк"
|
6032 |
|
6033 |
+
#: ../html/settings-page.html.php:722
|
6034 |
+
msgid "Open Marker InfoWindows by"
|
6035 |
+
msgstr "Отвори маркер инфопрозорец по"
|
|
|
6036 |
|
6037 |
+
#: ../html/settings-page.html.php:734
|
6038 |
+
msgid "Hover"
|
|
|
|
|
6039 |
msgstr ""
|
6040 |
|
6041 |
+
#: ../html/settings-page.html.php:741
|
6042 |
#, fuzzy
|
6043 |
+
#| msgid "InfoWindows"
|
6044 |
+
msgid "Disable InfoWindows"
|
6045 |
+
msgstr "Инфопрозорци"
|
6046 |
|
6047 |
+
#: ../html/settings-page.html.php:745
|
6048 |
+
msgid ""
|
6049 |
+
"Enabling this setting will prevent any infowindows from opening for all your "
|
6050 |
+
"maps"
|
6051 |
msgstr ""
|
6052 |
|
6053 |
+
#: ../html/settings-page.html.php:756
|
6054 |
+
msgid "Marker Listing Settings"
|
6055 |
+
msgstr "настройки по маркерите списък"
|
6056 |
|
6057 |
+
#: ../html/settings-page.html.php:762
|
6058 |
+
msgid ""
|
6059 |
+
"Changing these settings will alter the way the marker list appears on your "
|
6060 |
+
"website."
|
6061 |
msgstr ""
|
6062 |
+
"Променяйки тези настройки ще се отразят на това как излизат в твоя сайт."
|
6063 |
|
6064 |
+
#: ../html/settings-page.html.php:775
|
6065 |
+
#, fuzzy
|
6066 |
+
#| msgid ""
|
6067 |
+
#| "Get the rest of these advanced features with the Pro version for only <a "
|
6068 |
+
#| "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
|
6069 |
+
#| "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99 once "
|
6070 |
+
#| "off</a>. Support and updates included forever."
|
6071 |
+
msgid ""
|
6072 |
+
"Add Beautiful Marker Listings\n"
|
6073 |
+
"\t\t\t</a> \n"
|
6074 |
+
"\t\t\tto your maps with the Pro version for only $39.99 once off. Support "
|
6075 |
+
"and updates included forever."
|
6076 |
msgstr ""
|
6077 |
+
"Вземи още от тези екстри с Pro версията само за <a href=\\\"http://www."
|
6078 |
+
"wpgmaps.com/purchase-professional-version/?"
|
6079 |
+
"utm_source=plugin&utm_medium=link&utm_campaign=advanced\\\">$39.99 "
|
6080 |
+
"еднократно</a>. Съпорт и ъпдейт завинаги"
|
6081 |
|
6082 |
+
#: ../html/settings-page.html.php:784
|
6083 |
+
msgid "Advanced Marker Listing"
|
6084 |
+
msgstr "Напреднали маркерни списъци"
|
6085 |
|
6086 |
+
#: ../html/settings-page.html.php:788
|
6087 |
+
msgid "Basic Marker Listings"
|
6088 |
+
msgstr "Основни маркерни списъци"
|
6089 |
|
6090 |
+
#: ../html/settings-page.html.php:796
|
6091 |
+
msgid "Column Visibility"
|
6092 |
msgstr ""
|
6093 |
|
6094 |
+
#: ../html/settings-page.html.php:811
|
6095 |
+
msgid "Hide the Icon column"
|
6096 |
+
msgstr "Скрий иконата за колоната"
|
6097 |
+
|
6098 |
+
#: ../html/settings-page.html.php:825
|
6099 |
#, fuzzy
|
6100 |
+
#| msgid "Hide the Icon column"
|
6101 |
+
msgid "Hide the Link column"
|
6102 |
+
msgstr "Скрий иконата за колоната"
|
6103 |
|
6104 |
+
#: ../html/settings-page.html.php:838
|
6105 |
+
msgid "Hide the Title column"
|
6106 |
+
msgstr "Скрий колона заглавие"
|
6107 |
|
6108 |
+
#: ../html/settings-page.html.php:852
|
6109 |
+
msgid "Hide the Address column"
|
6110 |
+
msgstr "Скрий колона адрес"
|
6111 |
|
6112 |
+
#: ../html/settings-page.html.php:866
|
6113 |
+
msgid "Hide the Category column"
|
6114 |
+
msgstr "Скрий колона категория"
|
6115 |
+
|
6116 |
+
#: ../html/settings-page.html.php:880
|
6117 |
+
msgid "Hide the Description column"
|
6118 |
+
msgstr "Скрий колона описание"
|
6119 |
|
6120 |
+
#: ../html/settings-page.html.php:894 ../html/settings-page.html.php:1061
|
6121 |
+
msgid "Dependencies"
|
|
|
|
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: ../html/settings-page.html.php:909
|
6125 |
+
msgid "Do not Enqueue Datatables"
|
|
|
|
|
6126 |
msgstr ""
|
6127 |
|
6128 |
+
#: ../html/settings-page.html.php:918
|
6129 |
+
msgid "Show X items by default"
|
6130 |
+
msgstr "Покажи X неща по дифолт"
|
|
|
|
|
6131 |
|
6132 |
+
#: ../html/settings-page.html.php:934
|
6133 |
+
msgid "Carousel Marker Listing"
|
6134 |
+
msgstr "Въртележка маркер списъци"
|
6135 |
|
6136 |
+
#: ../html/settings-page.html.php:941
|
6137 |
+
msgid "Theme selection"
|
6138 |
+
msgstr "Избор на тема"
|
6139 |
|
6140 |
+
#: ../html/settings-page.html.php:949
|
6141 |
+
msgid "Sky"
|
6142 |
+
msgstr "Небе"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6143 |
|
6144 |
+
#: ../html/settings-page.html.php:954
|
6145 |
+
msgid "Sun"
|
6146 |
+
msgstr "Слънце"
|
6147 |
|
6148 |
+
#: ../html/settings-page.html.php:959
|
6149 |
+
msgid "Earth"
|
6150 |
+
msgstr "Земя"
|
|
|
6151 |
|
6152 |
+
#: ../html/settings-page.html.php:964
|
6153 |
+
msgid "Monotone"
|
6154 |
+
msgstr "Монотон"
|
6155 |
+
|
6156 |
+
#: ../html/settings-page.html.php:969
|
6157 |
+
msgid "PinkPurple"
|
6158 |
+
msgstr "Розововиолетова"
|
6159 |
+
|
6160 |
+
#: ../html/settings-page.html.php:973
|
6161 |
+
msgid "White"
|
6162 |
+
msgstr "Бяла"
|
6163 |
+
|
6164 |
+
#: ../html/settings-page.html.php:978
|
6165 |
+
msgid "Black"
|
6166 |
+
msgstr "Черна"
|
6167 |
|
6168 |
+
#: ../html/settings-page.html.php:987
|
6169 |
+
msgid "Field Visibility"
|
|
|
|
|
6170 |
msgstr ""
|
6171 |
|
6172 |
+
#: ../html/settings-page.html.php:994
|
6173 |
+
msgid "Hide the Image"
|
6174 |
+
msgstr "Скрий снимка"
|
6175 |
|
6176 |
+
#: ../html/settings-page.html.php:998
|
6177 |
+
msgid "Hide the Title"
|
6178 |
+
msgstr "Скрий заглавие"
|
6179 |
|
6180 |
+
#: ../html/settings-page.html.php:1002
|
6181 |
+
msgid "Hide the Marker Icon"
|
6182 |
+
msgstr "Скрий иконата на маркера"
|
6183 |
|
6184 |
+
#: ../html/settings-page.html.php:1006
|
6185 |
+
msgid "Hide the Address"
|
6186 |
+
msgstr "Скрий адреса"
|
|
|
6187 |
|
6188 |
+
#: ../html/settings-page.html.php:1010
|
6189 |
+
msgid "Hide the Description"
|
6190 |
+
msgstr "Скрий описанието"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6191 |
|
6192 |
+
#: ../html/settings-page.html.php:1014
|
6193 |
+
msgid "Hide the Marker Link"
|
6194 |
+
msgstr "Скрий линка на маркера"
|
|
|
|
|
6195 |
|
6196 |
+
#: ../html/settings-page.html.php:1018
|
6197 |
+
msgid "Hide the Directions Link"
|
6198 |
+
msgstr "Скрий линка упътвания"
|
|
|
6199 |
|
6200 |
+
#: ../html/settings-page.html.php:1027
|
6201 |
#, fuzzy
|
6202 |
+
#| msgid "Carousel settings"
|
6203 |
+
msgid "Image and Carousel options"
|
6204 |
+
msgstr "Настройка въртележка"
|
6205 |
|
6206 |
+
#: ../html/settings-page.html.php:1033
|
6207 |
+
msgid "Resize Images with Timthumb"
|
6208 |
+
msgstr "Рисайз картинки с Timthumb"
|
|
|
6209 |
|
6210 |
+
#: ../html/settings-page.html.php:1037
|
6211 |
+
msgid "Enable lazyload of images"
|
6212 |
+
msgstr "Включи lazyload на снимки"
|
|
|
|
|
6213 |
|
6214 |
+
#: ../html/settings-page.html.php:1041
|
6215 |
+
msgid "Enable autoheight"
|
6216 |
+
msgstr "Включи автовисочина"
|
6217 |
+
|
6218 |
+
#: ../html/settings-page.html.php:1045
|
6219 |
+
msgid "Enable pagination"
|
6220 |
+
msgstr "Включи на страници"
|
6221 |
+
|
6222 |
+
#: ../html/settings-page.html.php:1049
|
6223 |
+
msgid "Enable navigation"
|
6224 |
+
msgstr "Включи навигация"
|
6225 |
+
|
6226 |
+
#: ../html/settings-page.html.php:1076
|
6227 |
+
msgid "Do not Enqueue Owl Carousel"
|
6228 |
msgstr ""
|
6229 |
|
6230 |
+
#: ../html/settings-page.html.php:1090
|
6231 |
#, fuzzy
|
6232 |
+
#| msgid "Do not use TimThumb"
|
6233 |
+
msgid "Do not Enqueue Owl Theme"
|
6234 |
+
msgstr "Не ползвай TimThumb"
|
6235 |
|
6236 |
+
#: ../html/settings-page.html.php:1099
|
6237 |
+
#, fuzzy
|
6238 |
+
#| msgid "Map Settings"
|
6239 |
+
msgid "Responsivity Settings"
|
6240 |
+
msgstr "Настройки карта"
|
6241 |
|
6242 |
+
#: ../html/settings-page.html.php:1106
|
6243 |
+
msgid "Items"
|
6244 |
+
msgstr "Неща"
|
|
|
|
|
|
|
|
|
|
|
6245 |
|
6246 |
+
#: ../html/settings-page.html.php:1111
|
6247 |
+
msgid "Items (Tablet)"
|
6248 |
msgstr ""
|
6249 |
|
6250 |
+
#: ../html/settings-page.html.php:1116
|
6251 |
+
msgid "Items (Mobile)"
|
6252 |
msgstr ""
|
6253 |
|
6254 |
+
#: ../html/settings-page.html.php:1121
|
6255 |
+
msgid "Autoplay after x milliseconds (1000 = 1 second)"
|
6256 |
+
msgstr "Автоплей след x милисекунди (1000 = 1 секунда)"
|
|
|
|
|
6257 |
|
6258 |
+
#: ../html/settings-page.html.php:1130
|
6259 |
#, fuzzy
|
6260 |
+
#| msgid "Store Locator"
|
6261 |
+
msgid "Store Locator Radii"
|
6262 |
+
msgstr "Намирач на магазини"
|
6263 |
|
6264 |
+
#: ../html/settings-page.html.php:1135
|
6265 |
+
msgid "Use a comma to separate values, eg: 1, 5, 10, 50, 100"
|
6266 |
msgstr ""
|
6267 |
|
6268 |
+
#: ../html/settings-page.html.php:1143
|
6269 |
+
msgid "API Keys"
|
6270 |
msgstr ""
|
6271 |
|
6272 |
+
#: ../html/settings-page.html.php:1146
|
6273 |
+
#, fuzzy
|
6274 |
+
msgid "Google Maps API Key (required)"
|
6275 |
+
msgstr "Google API Key (задължително)"
|
6276 |
|
6277 |
+
#: ../html/settings-page.html.php:1152
|
6278 |
msgid ""
|
6279 |
+
"This API key can be obtained from \n"
|
6280 |
+
"\t\t\t\t\t\tthe <a href='https://wpgmaps.com/google-maps-developer-console/' "
|
6281 |
+
"target='_BLANK'>Google Developers Console</a>. Our <a href='http://www."
|
6282 |
+
"wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
|
6283 |
+
"target='_BLANK'>documentation</a> provides a full guide on how to obtain "
|
6284 |
+
"this."
|
6285 |
msgstr ""
|
6286 |
|
6287 |
+
#: ../html/settings-page.html.php:1163
|
6288 |
+
msgid "Alternative Import API Key"
|
|
|
|
|
|
|
6289 |
msgstr ""
|
6290 |
|
6291 |
+
#: ../html/settings-page.html.php:1171
|
6292 |
msgid ""
|
6293 |
+
"Generate an IP restricted key to paste into this field if you are "
|
6294 |
+
"experiencing 'Request Denied' when running imports"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6295 |
msgstr ""
|
6296 |
|
6297 |
+
#: ../html/settings-page.html.php:1180
|
6298 |
+
msgid "OpenLayers Tileserver Key"
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: ../html/settings-page.html.php:1186
|
6302 |
msgid ""
|
6303 |
+
"This is an optional API key provided by your preferred OpenLayers tile "
|
6304 |
+
"service, and should only be added if required by the TileServer provider"
|
|
|
|
|
|
|
6305 |
msgstr ""
|
6306 |
|
6307 |
+
#: ../html/settings-page.html.php:1196
|
6308 |
+
msgid "OpenRouteService Key"
|
6309 |
msgstr ""
|
6310 |
|
6311 |
+
#: ../html/settings-page.html.php:1202
|
6312 |
+
msgid ""
|
6313 |
+
"This API key can be obtained from the <a href='https://openrouteservice.org/"
|
6314 |
+
"dev/#/login' target='_BLANK'>OpenRouteService Developers Console</a>."
|
6315 |
msgstr ""
|
6316 |
|
6317 |
+
#: ../html/settings-page.html.php:1215
|
6318 |
+
msgid "Marker Data Location"
|
6319 |
+
msgstr "Marker данни локация"
|
6320 |
|
6321 |
+
#: ../html/settings-page.html.php:1221
|
6322 |
+
msgid ""
|
6323 |
+
"We suggest that you change the two fields below ONLY if you are experiencing "
|
6324 |
+
"issues when trying to save the marker XML files."
|
6325 |
msgstr ""
|
6326 |
+
"Предлагаме да променяш двете полета долу САМО ако си с опит проблеми когато "
|
6327 |
+
"опиташ да запишеш XML files."
|
6328 |
|
6329 |
+
#: ../html/settings-page.html.php:1226
|
6330 |
+
msgid "Pull marker data from"
|
6331 |
+
msgstr "Дръпни маркер данни от"
|
6332 |
|
6333 |
+
#: ../html/settings-page.html.php:1233
|
6334 |
+
#, fuzzy
|
6335 |
+
msgid "Database"
|
6336 |
+
msgstr "Запиши категория"
|
|
|
6337 |
|
6338 |
+
#: ../html/settings-page.html.php:1241
|
6339 |
+
msgid "XML File"
|
6340 |
msgstr ""
|
6341 |
|
6342 |
+
#: ../html/settings-page.html.php:1251
|
6343 |
+
msgid "Marker data XML directory"
|
6344 |
+
msgstr "Данни за маркери в XML директория"
|
6345 |
|
6346 |
+
#: ../html/settings-page.html.php:1255 ../html/settings-page.html.php:1275
|
6347 |
+
msgid "You can use the following"
|
6348 |
+
msgstr "Може да ползваш следните"
|
|
|
|
|
|
|
6349 |
|
6350 |
+
#: ../html/settings-page.html.php:1261 ../html/settings-page.html.php:1281
|
6351 |
+
msgid "Currently using"
|
6352 |
+
msgstr "В момента ползва"
|
|
|
|
|
|
|
6353 |
|
6354 |
+
#: ../html/settings-page.html.php:1271
|
6355 |
+
msgid "Marker data XML URL"
|
6356 |
+
msgstr "Маркер данни от XML URL"
|
6357 |
|
6358 |
+
#: ../html/settings-page.html.php:1294
|
6359 |
#, fuzzy
|
6360 |
+
#| msgid "Custom CSS"
|
6361 |
+
msgid "Custom Scripts"
|
6362 |
+
msgstr "Къстъм CSS"
|
|
|
|
|
|
|
6363 |
|
6364 |
+
#: ../html/settings-page.html.php:1298
|
6365 |
+
msgid "Custom CSS"
|
6366 |
+
msgstr "Къстъм CSS"
|
6367 |
|
6368 |
+
#: ../html/settings-page.html.php:1305
|
6369 |
+
#, fuzzy
|
6370 |
+
#| msgid "Custom CSS"
|
6371 |
+
msgid "Custom JS"
|
6372 |
+
msgstr "Къстъм CSS"
|
6373 |
|
6374 |
+
#: ../html/settings-page.html.php:1310
|
6375 |
+
#, fuzzy
|
6376 |
+
#| msgid "Other settings"
|
6377 |
+
msgid "Other Caching"
|
6378 |
+
msgstr "Други настройки"
|
6379 |
|
6380 |
+
#: ../html/settings-page.html.php:1314
|
6381 |
+
msgid "Flush Geocode Cache"
|
6382 |
msgstr ""
|
6383 |
|
6384 |
+
#: ../html/settings-page.html.php:1317
|
6385 |
+
msgid "Flush"
|
6386 |
msgstr ""
|
6387 |
|
6388 |
+
#: ../html/settings-page.html.php:1321
|
6389 |
+
msgid "Danger Zone"
|
6390 |
msgstr ""
|
6391 |
|
6392 |
+
#: ../html/settings-page.html.php:1324
|
6393 |
+
msgid "Data Management"
|
6394 |
msgstr ""
|
6395 |
|
6396 |
+
#: ../html/settings-page.html.php:1332
|
6397 |
+
msgid ""
|
6398 |
+
"This will delete all settings, maps, markers, shapes, categories, and custom "
|
6399 |
+
"fields and reset the plugin back to the first time you used it."
|
6400 |
msgstr ""
|
6401 |
|
6402 |
+
#: ../html/settings-page.html.php:1345
|
6403 |
+
msgid "This will reset all settings back to their default."
|
6404 |
msgstr ""
|
6405 |
|
6406 |
+
#: ../html/settings-page.html.php:1358
|
6407 |
+
msgid ""
|
6408 |
+
"This will delete all maps, markers, shapes, categories, and custom fields."
|
6409 |
msgstr ""
|
6410 |
|
6411 |
+
#: ../html/settings-page.html.php:1370
|
6412 |
#, fuzzy
|
6413 |
+
#| msgid "This is a retina ready marker"
|
6414 |
+
msgid "This will delete all markers."
|
6415 |
+
msgstr "Това е retina маркер"
|
6416 |
|
6417 |
+
#: ../html/settings-page.html.php:1382
|
6418 |
+
msgid "This will delete all shapes."
|
6419 |
msgstr ""
|
6420 |
|
6421 |
+
#: ../html/settings-page.html.php:1392
|
6422 |
+
#, fuzzy
|
6423 |
+
#| msgid "Map Settings"
|
6424 |
+
msgid "Miscellaneous Settings"
|
6425 |
+
msgstr "Настройки карта"
|
6426 |
|
6427 |
+
#: ../html/settings-page.html.php:1395
|
6428 |
+
msgid "Disable Compressed Path Variables"
|
6429 |
msgstr ""
|
6430 |
|
6431 |
+
#: ../html/settings-page.html.php:1401
|
6432 |
+
msgid ""
|
6433 |
+
"We recommend using this setting if you frequently experience HTTP 414 - "
|
6434 |
+
"Request URI too long. We do not recommend using this setting if your site "
|
6435 |
+
"uses REST caching or a CDN."
|
6436 |
msgstr ""
|
6437 |
|
6438 |
+
#: ../html/settings-page.html.php:1409
|
6439 |
+
msgid "Disable Autoptimize Compatibility Fix"
|
6440 |
msgstr ""
|
6441 |
|
6442 |
+
#: ../html/settings-page.html.php:1415
|
6443 |
+
msgid ""
|
6444 |
+
"Use this setting if you are experiencing issues with Autoptimize's CSS "
|
6445 |
+
"aggregation. This may cause issues on setups with a large amount of marker "
|
6446 |
+
"data."
|
6447 |
msgstr ""
|
6448 |
|
6449 |
+
#: ../html/settings-page.html.php:1423
|
6450 |
+
msgid "Disable Automatic Backups (beta)"
|
6451 |
msgstr ""
|
6452 |
|
6453 |
+
#: ../html/settings-page.html.php:1429
|
6454 |
+
msgid ""
|
6455 |
+
"We recommend leaving automatic backups enabled. We will automatically backup "
|
6456 |
+
"your data before an import or update to our plugin."
|
6457 |
msgstr ""
|
6458 |
|
6459 |
+
#: ../html/settings-page.html.php:1437
|
6460 |
+
msgid "Developer Mode"
|
6461 |
msgstr ""
|
6462 |
|
6463 |
+
#: ../html/settings-page.html.php:1443
|
6464 |
+
msgid ""
|
6465 |
+
"Always rebuilds combined script files and script cache, does not load "
|
6466 |
+
"combined and minified scripts. Includes database query SQL with REST API "
|
6467 |
+
"responses."
|
6468 |
msgstr ""
|
6469 |
|
6470 |
+
#: ../html/settings-page.html.php:1494
|
6471 |
+
msgid "GDPR consent automatically enabled and configured by Complianz"
|
6472 |
msgstr ""
|
6473 |
|
6474 |
+
#: ../html/settings-page.html.php:1498
|
6475 |
+
msgid ""
|
6476 |
+
"WP Google Maps GDPR options have been disabled as they are fully controlled "
|
6477 |
+
"by Complianz"
|
6478 |
msgstr ""
|
6479 |
|
6480 |
+
#: ../html/settings-page.html.php:1606
|
6481 |
+
msgid "Save Settings"
|
6482 |
+
msgstr "Запиши настройките"
|
6483 |
|
6484 |
+
#: ../html/store-locator.html.php:17
|
6485 |
#, fuzzy
|
6486 |
+
#| msgid "Radius"
|
6487 |
+
msgid "Radius:"
|
6488 |
+
msgstr "Радиус"
|
6489 |
|
6490 |
+
#: ../html/support.html.php:2
|
6491 |
+
msgid "WP Google Maps Support"
|
6492 |
+
msgstr "WP Google Maps Support"
|
6493 |
|
6494 |
+
#: ../html/support.html.php:8 ../includes/class.strings.php:34
|
6495 |
+
msgid "Documentation"
|
6496 |
+
msgstr "Документация"
|
6497 |
|
6498 |
+
#: ../html/support.html.php:11
|
6499 |
+
msgid ""
|
6500 |
+
"Getting started? Read through some of these articles to help you along your "
|
6501 |
+
"way."
|
6502 |
+
msgstr "Започваш ли? Поразгледай някои статии за начално запознаване."
|
6503 |
|
6504 |
+
#: ../html/support.html.php:15
|
6505 |
+
msgid "Documentation:"
|
6506 |
+
msgstr "Документация:"
|
6507 |
|
6508 |
+
#: ../html/support.html.php:22 ../html/support.html.php:24
|
6509 |
+
msgid "Creating your first map"
|
6510 |
+
msgstr "Създаване на твоята първа карта"
|
|
|
|
|
6511 |
|
6512 |
+
#: ../html/support.html.php:31 ../html/support.html.php:33
|
6513 |
+
msgid "Using your map as a Widget"
|
6514 |
+
msgstr "Ползване на картата ти като уиджет"
|
6515 |
|
6516 |
+
#: ../html/support.html.php:40 ../html/support.html.php:42
|
6517 |
+
msgid "Changing the Google Maps language"
|
6518 |
+
msgstr "Смяна на Google Maps езика"
|
6519 |
+
|
6520 |
+
#: ../html/support.html.php:49
|
6521 |
+
msgid "WP Google Maps Documentation"
|
6522 |
+
msgstr "WP Google Maps документацията"
|
6523 |
+
|
6524 |
+
#: ../html/support.html.php:51
|
6525 |
+
msgid "View all documentation."
|
6526 |
+
msgstr "Виж всички документи."
|
6527 |
+
|
6528 |
+
#: ../html/support.html.php:63
|
6529 |
+
msgid "Troubleshooting"
|
6530 |
+
msgstr "Отстраняване на проблеми"
|
6531 |
|
6532 |
+
#: ../html/support.html.php:68
|
6533 |
msgid ""
|
6534 |
+
"WP Google Maps has a diverse and wide range of features which may, from time "
|
6535 |
+
"to time, run into conflicts with the thousands of themes and other plugins "
|
6536 |
+
"on the market."
|
|
|
|
|
6537 |
msgstr ""
|
6538 |
+
"WP Google Maps hasима широк спектър от екстри които може да доведат до "
|
6539 |
+
"конфликти от време на време, влизат в конфликти със стотици теме и други "
|
6540 |
+
"плъгини плъгини на пазара."
|
6541 |
|
6542 |
+
#: ../html/support.html.php:73
|
6543 |
+
msgid "Common issues:"
|
6544 |
+
msgstr "Чести проблеми:"
|
6545 |
|
6546 |
+
#: ../html/support.html.php:78
|
6547 |
+
msgid "My map is not showing on my website"
|
6548 |
+
msgstr "Картата ми не се показва на сайта ми"
|
|
|
|
|
6549 |
|
6550 |
+
#: ../html/support.html.php:81
|
6551 |
+
msgid "My markers are not showing on my map in the front-end"
|
6552 |
+
msgstr "Маркерите ми не се показват на картата пред потребителите"
|
6553 |
|
6554 |
+
#: ../html/support.html.php:84
|
6555 |
+
msgid "I'm getting jQuery errors showing on my website"
|
6556 |
+
msgstr "Получавам jQuery грешки, които се показват на сайта ми"
|
6557 |
|
6558 |
+
#: ../html/support.html.php:91 ../includes/class.admin-ui.php:54
|
6559 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1161
|
6560 |
+
msgid "Support"
|
6561 |
+
msgstr "Съпорт"
|
|
|
6562 |
|
6563 |
+
#: ../html/support.html.php:92
|
6564 |
+
msgid "Still need help? Use one of these links below."
|
6565 |
+
msgstr "Все още ти трябва помощ? Ползвай някой от линковете долу."
|
6566 |
+
|
6567 |
+
#: ../html/support.html.php:94 ../html/support.html.php:95
|
6568 |
+
#: ../html/support.html.php:96
|
6569 |
+
msgid "Support forum"
|
6570 |
+
msgstr "Форум за съпорт"
|
6571 |
+
|
6572 |
+
#: ../html/support.html.php:95
|
6573 |
+
msgid "Facebook Community"
|
6574 |
+
msgstr ""
|
6575 |
+
|
6576 |
+
#: ../html/support.html.php:96
|
6577 |
+
msgid "Reddit Community"
|
6578 |
msgstr ""
|
6579 |
|
6580 |
+
#: ../html/support.html.php:97
|
6581 |
+
msgid "Contact us"
|
6582 |
+
msgstr "Свържи се с нас"
|
6583 |
+
|
6584 |
#: ../html/theme-panel.html.php:5
|
6585 |
#, fuzzy
|
6586 |
#| msgid "Theme selection"
|
6635 |
msgstr "Вдясно горе"
|
6636 |
|
6637 |
#: ../html/theme-panel.html.php:235
|
6638 |
+
#, php-format
|
6639 |
+
msgid ""
|
6640 |
+
"Looking for more themes? <a href=\"%s\" target=\"_BLANK\">Browse our theme "
|
6641 |
+
"directory</a>."
|
6642 |
+
msgstr ""
|
6643 |
+
|
6644 |
+
#: ../html/theme-panel.html.php:241
|
6645 |
msgid "Theme Editor"
|
6646 |
msgstr ""
|
6647 |
|
6648 |
+
#: ../html/theme-panel.html.php:248
|
6649 |
msgid "Customise Theme"
|
6650 |
msgstr ""
|
6651 |
|
6652 |
+
#: ../html/theme-panel.html.php:254
|
6653 |
msgid "Open Theme Editor"
|
6654 |
msgstr ""
|
6655 |
|
6656 |
+
#: ../html/theme-panel.html.php:259 ../html/theme-panel.html.php:260
|
6657 |
+
msgid "Enter theme JSON data manually"
|
6658 |
+
msgstr ""
|
6659 |
+
|
6660 |
+
#: ../html/theme-panel.html.php:268
|
6661 |
msgid "Feature"
|
6662 |
msgstr ""
|
6663 |
|
6664 |
+
#: ../html/theme-panel.html.php:282
|
6665 |
msgid "Visibility"
|
6666 |
msgstr ""
|
6667 |
|
6668 |
+
#: ../html/theme-panel.html.php:288
|
6669 |
msgid "Inherit"
|
6670 |
msgstr ""
|
6671 |
|
6672 |
+
#: ../html/theme-panel.html.php:293
|
6673 |
msgid "Off"
|
6674 |
msgstr ""
|
6675 |
|
6676 |
+
#: ../html/theme-panel.html.php:298
|
6677 |
msgid "Simplified"
|
6678 |
msgstr ""
|
6679 |
|
6680 |
+
#: ../html/theme-panel.html.php:303
|
6681 |
msgid "On"
|
6682 |
msgstr ""
|
6683 |
|
6684 |
+
#: ../html/theme-panel.html.php:312
|
6685 |
msgid "Label"
|
6686 |
msgstr ""
|
6687 |
|
6688 |
+
#: ../html/theme-panel.html.php:320
|
6689 |
#, fuzzy
|
6690 |
#| msgid "Height"
|
6691 |
msgid "Weight"
|
6692 |
msgstr "Височина"
|
6693 |
|
6694 |
+
#: ../html/theme-panel.html.php:332
|
6695 |
msgid "Gamma"
|
6696 |
msgstr ""
|
6697 |
|
6698 |
+
#: ../html/theme-panel.html.php:341
|
6699 |
#, fuzzy
|
6700 |
msgid "Saturation"
|
6701 |
msgstr "Marker данни локация"
|
6702 |
|
6703 |
+
#: ../html/theme-panel.html.php:350
|
6704 |
#, fuzzy
|
6705 |
#| msgid "Line Thickness"
|
6706 |
msgid "Lightness"
|
6707 |
msgstr "Дебелина на линия"
|
6708 |
|
6709 |
+
#: ../html/theme-panel.html.php:362 ../includes/legacy/functions.circle.php:58
|
6710 |
+
#: ../includes/legacy/functions.circle.php:181
|
6711 |
+
#: ../includes/legacy/functions.rectangle.php:58
|
6712 |
+
#: ../includes/legacy/functions.rectangle.php:154
|
6713 |
#, fuzzy
|
6714 |
msgid "Color"
|
6715 |
msgstr "Цвят на линк"
|
6716 |
|
6717 |
+
#: ../html/theme-panel.html.php:374
|
6718 |
msgid "Hue"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
+
#: ../html/theme-panel.html.php:385
|
6722 |
msgid "Invert Lightness"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: ../html/theme-panel.html.php:413
|
6726 |
#, fuzzy
|
6727 |
#| msgid "Themes"
|
6728 |
msgid "Theme Data"
|
6732 |
msgid "Tile Server URL:"
|
6733 |
msgstr ""
|
6734 |
|
6735 |
+
#: ../html/tile-server-fieldset.html.php:32
|
6736 |
+
msgid "OpenCycleMap"
|
6737 |
+
msgstr ""
|
6738 |
+
|
6739 |
+
#: ../html/tile-server-fieldset.html.php:74
|
6740 |
+
#, fuzzy
|
6741 |
+
#| msgid "Transit Layer"
|
6742 |
+
msgid "Transport Map"
|
6743 |
+
msgstr "Слой транзит"
|
6744 |
+
|
6745 |
+
#: ../html/tile-server-fieldset.html.php:81
|
6746 |
+
msgid "Thunderforest Landscape"
|
6747 |
+
msgstr ""
|
6748 |
+
|
6749 |
+
#: ../html/tile-server-fieldset.html.php:88
|
6750 |
+
msgid "Thunderforest Outdoors"
|
6751 |
+
msgstr ""
|
6752 |
+
|
6753 |
+
#: ../html/tile-server-fieldset.html.php:108
|
6754 |
+
msgid "Carto Light (Positron)"
|
6755 |
+
msgstr ""
|
6756 |
+
|
6757 |
+
#: ../html/tile-server-fieldset.html.php:115
|
6758 |
+
msgid "Carto Dark (Dark Matter)"
|
6759 |
+
msgstr ""
|
6760 |
+
|
6761 |
+
#: ../html/tile-server-fieldset.html.php:121
|
6762 |
+
msgid "Klokantech 3d"
|
6763 |
+
msgstr ""
|
6764 |
+
|
6765 |
+
#: ../html/tile-server-fieldset.html.php:127
|
6766 |
+
msgid "Caltopo"
|
6767 |
+
msgstr ""
|
6768 |
+
|
6769 |
+
#: ../html/welcome.html.php:21
|
6770 |
+
#, fuzzy
|
6771 |
+
#| msgid ""
|
6772 |
+
#| "Amazing maps. Simple interface. Powerful functionality. World Class "
|
6773 |
+
#| "Support."
|
6774 |
+
msgid ""
|
6775 |
+
"Build amazing maps through a simple interface and powerful functionality "
|
6776 |
+
"along with world class support."
|
6777 |
+
msgstr ""
|
6778 |
+
"Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
|
6779 |
+
|
6780 |
+
#: ../html/welcome.html.php:23
|
6781 |
+
msgid "Skip intro and create a map"
|
6782 |
+
msgstr ""
|
6783 |
+
|
6784 |
+
#: ../html/welcome.html.php:36
|
6785 |
+
msgid "Facebook Group"
|
6786 |
+
msgstr ""
|
6787 |
+
|
6788 |
+
#: ../html/welcome.html.php:37
|
6789 |
+
msgid "Join our Facebook Community"
|
6790 |
+
msgstr ""
|
6791 |
+
|
6792 |
+
#: ../html/welcome.html.php:39
|
6793 |
+
msgid "Join Facebook"
|
6794 |
+
msgstr ""
|
6795 |
+
|
6796 |
+
#: ../html/welcome.html.php:41
|
6797 |
+
msgid ""
|
6798 |
+
"Get to know other WP Google Maps users, receive updates on upcoming "
|
6799 |
+
"features, and share your maps with the community"
|
6800 |
+
msgstr ""
|
6801 |
+
|
6802 |
+
#: ../html/welcome.html.php:46
|
6803 |
+
msgid "Reddit"
|
6804 |
+
msgstr ""
|
6805 |
+
|
6806 |
+
#: ../html/welcome.html.php:47
|
6807 |
+
msgid "Join our Reddit Community"
|
6808 |
+
msgstr ""
|
6809 |
+
|
6810 |
+
#: ../html/welcome.html.php:49
|
6811 |
+
msgid "Join Subreddit"
|
6812 |
+
msgstr ""
|
6813 |
+
|
6814 |
+
#: ../html/welcome.html.php:51
|
6815 |
+
msgid ""
|
6816 |
+
"Share your maps, speak to the development team, receive updates on upcoming "
|
6817 |
+
"features, and view release specific changelogs"
|
6818 |
+
msgstr ""
|
6819 |
+
|
6820 |
+
#: ../html/welcome.html.php:56
|
6821 |
+
msgid "Newsletters"
|
6822 |
+
msgstr ""
|
6823 |
+
|
6824 |
+
#: ../html/welcome.html.php:57
|
6825 |
+
msgid "Receive specials, guides and latest news"
|
6826 |
+
msgstr ""
|
6827 |
+
|
6828 |
+
#: ../html/welcome.html.php:59
|
6829 |
+
msgid "Join Newsletter"
|
6830 |
+
msgstr ""
|
6831 |
+
|
6832 |
+
#: ../html/welcome.html.php:61
|
6833 |
+
#, php-format
|
6834 |
+
msgid ""
|
6835 |
+
"* Clicking this button will send your email address (%s) to our server and "
|
6836 |
+
"automatically sign you up to the newsletter"
|
6837 |
+
msgstr ""
|
6838 |
+
|
6839 |
+
#: ../html/welcome.html.php:69
|
6840 |
+
#, fuzzy
|
6841 |
+
msgid "Unlimited Markers"
|
6842 |
+
msgstr "Списък маркери"
|
6843 |
+
|
6844 |
+
#: ../html/welcome.html.php:70
|
6845 |
+
#, fuzzy
|
6846 |
+
msgid "Create as many markers as you like"
|
6847 |
+
msgstr "Създай маркер категории"
|
6848 |
+
|
6849 |
+
#: ../html/welcome.html.php:86
|
6850 |
+
msgid ""
|
6851 |
+
"Select from various <a href='http://wpgmaps.com/map-themes/' "
|
6852 |
+
"target='_BLANK'>map themes</a>, or make your own."
|
6853 |
+
msgstr ""
|
6854 |
+
|
6855 |
+
#: ../html/welcome.html.php:92
|
6856 |
+
msgid "and Squares"
|
6857 |
+
msgstr ""
|
6858 |
+
|
6859 |
+
#: ../html/welcome.html.php:93
|
6860 |
+
msgid "Add custom shapes such as polygons, polylines, circles and squares!"
|
6861 |
+
msgstr ""
|
6862 |
+
|
6863 |
+
#: ../html/welcome.html.php:134
|
6864 |
+
msgid "Submit and create a map"
|
6865 |
+
msgstr ""
|
6866 |
+
|
6867 |
+
#: ../html/welcome.html.php:150
|
6868 |
+
#, fuzzy
|
6869 |
+
msgid "Support Desk"
|
6870 |
+
msgstr "Съпорт"
|
6871 |
+
|
6872 |
+
#: ../includes/class.admin-ui.php:44
|
6873 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1160
|
6874 |
+
#: ../legacy-core.php:193
|
6875 |
+
msgid "Settings"
|
6876 |
+
msgstr "Настройки"
|
6877 |
+
|
6878 |
+
#: ../includes/class.auto-loader.php:225
|
6879 |
msgid ""
|
6880 |
"The plugins autoloader failed to register one or more modules. This is "
|
6881 |
"usually due to missing files. Please re-install the plugin and any relevant "
|
6882 |
"add-ons. Technical details are as follows: "
|
6883 |
msgstr ""
|
6884 |
|
6885 |
+
#: ../includes/class.country-select.php:30
|
6886 |
+
#, fuzzy
|
6887 |
+
#| msgid "Please explain"
|
6888 |
+
msgid "Please select"
|
6889 |
+
msgstr "Моля, опиши"
|
6890 |
+
|
6891 |
+
#: ../includes/class.database.php:227
|
6892 |
+
msgid "My first map"
|
6893 |
+
msgstr "Моята първа карта"
|
6894 |
+
|
6895 |
#: ../includes/class.gdpr-compliance.php:38
|
6896 |
msgid ""
|
6897 |
"<p>\n"
|
6937 |
"</p>"
|
6938 |
msgstr ""
|
6939 |
|
6940 |
+
#: ../includes/class.gdpr-compliance.php:149
|
6941 |
msgid ""
|
6942 |
"In light of recent EU GDPR regulation, we strongly recommend reviewing the "
|
6943 |
"<a target=\"_blank\" href=\"https://www.wpgmaps.com/privacy-policy\">WP "
|
6944 |
"Google Maps Privacy Policy</a>"
|
6945 |
msgstr ""
|
6946 |
|
6947 |
+
#: ../includes/class.gdpr-compliance.php:160
|
6948 |
msgid "I agree"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
+
#: ../includes/class.map.php:144 ../includes/class.strings.php:104
|
6952 |
+
#, fuzzy
|
6953 |
+
#| msgid "Save Map"
|
6954 |
+
msgid "New Map"
|
6955 |
+
msgstr "Запиши карта"
|
6956 |
+
|
6957 |
+
#: ../includes/class.map.php:283
|
6958 |
#, fuzzy
|
6959 |
#| msgid "WP Google Maps"
|
6960 |
msgid "WP Google Maps:"
|
6961 |
msgstr "WP Google Maps"
|
6962 |
|
6963 |
+
#: ../includes/class.map.php:286
|
6964 |
#, php-format
|
6965 |
msgid ""
|
6966 |
"The plugin couldn't find the directory %s, which is the directory your "
|
6968 |
"exists, and that you assign file permissions of 755 to this directory."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: ../includes/class.maps-engine-dialog.php:55
|
6972 |
msgid "Choose a maps engine"
|
6973 |
msgstr ""
|
6974 |
|
6975 |
+
#: ../includes/class.maps-engine-dialog.php:78
|
6976 |
#, fuzzy
|
6977 |
#| msgid "Google API Key (Required)"
|
6978 |
msgid "No API keys required"
|
6979 |
msgstr "Google API Key (задължително)"
|
6980 |
|
6981 |
#: ../includes/class.maps-engine-dialog.php:86
|
|
|
|
|
|
|
|
|
6982 |
msgid "Use OpenLayers"
|
6983 |
msgstr ""
|
6984 |
|
6985 |
+
#: ../includes/class.maps-engine-dialog.php:119
|
6986 |
msgid "Full functionality"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
+
#: ../includes/class.maps-engine-dialog.php:125
|
6990 |
#, fuzzy
|
6991 |
#| msgid "Google API Key (Required)"
|
6992 |
msgid "API Key required"
|
6993 |
msgstr "Google API Key (задължително)"
|
6994 |
|
6995 |
+
#: ../includes/class.maps-engine-dialog.php:133
|
6996 |
#, fuzzy
|
6997 |
#| msgid "Use Google Maps API"
|
6998 |
msgid "Use Google Maps"
|
6999 |
msgstr "Ползвай Google Maps API"
|
7000 |
|
7001 |
+
#: ../includes/class.maps-engine-dialog.php:151
|
7002 |
#, fuzzy
|
7003 |
#| msgid "Select"
|
7004 |
msgid "Select Engine"
|
7005 |
msgstr "Избери"
|
7006 |
|
7007 |
+
#: ../includes/class.page.php:29
|
7008 |
+
#, fuzzy
|
7009 |
+
#| msgid "Get the Pro add-on"
|
7010 |
+
msgid "Get the Pro add-on to enable this feature"
|
7011 |
+
msgstr "Вземи Pro add-on"
|
7012 |
+
|
7013 |
+
#: ../includes/class.plugin.php:141
|
7014 |
msgid ""
|
7015 |
"<strong>WP Google Maps:</strong> Cannot find the specified XML folder. This "
|
7016 |
"has been switched back to the Database method in Maps -> Settings -> Advanced"
|
7017 |
msgstr ""
|
7018 |
|
7019 |
+
#: ../includes/class.plugin.php:150
|
7020 |
msgid ""
|
7021 |
"<strong>WP Google Maps:</strong> Execution time limit was reached whilst "
|
7022 |
"generating XML cache. This has been switched back to the Database method in "
|
7023 |
"Maps -> Settings -> Advanced"
|
7024 |
msgstr ""
|
7025 |
|
7026 |
+
#: ../includes/class.plugin.php:159
|
7027 |
msgid ""
|
7028 |
"<strong>WP Google Maps:</strong> Allowed memory size was reached whilst "
|
7029 |
"generating XML cache. This has been switched back to the Database method in "
|
7030 |
"Maps -> Settings -> Advanced"
|
7031 |
msgstr ""
|
7032 |
|
7033 |
+
#: ../includes/class.plugin.php:976
|
7034 |
msgid ""
|
7035 |
"The plugin cannot initialise due to a fatal error. This is usually due to "
|
7036 |
"missing files or incompatible software. Please re-install the plugin and any "
|
7038 |
"details are as follows: "
|
7039 |
msgstr ""
|
7040 |
|
7041 |
+
#: ../includes/class.script-loader.php:426
|
|
|
|
|
|
|
|
|
|
|
|
|
7042 |
msgid ""
|
7043 |
"\n"
|
7044 |
"\t\t\t\t\t\t\t<p>\n"
|
7056 |
"\t\t\t\t\t\t\t"
|
7057 |
msgstr ""
|
7058 |
|
7059 |
+
#: ../includes/class.store-locator.php:85
|
7060 |
+
msgid "ZIP / Address:"
|
7061 |
+
msgstr "ПК / Адрес"
|
7062 |
+
|
7063 |
+
#: ../includes/class.store-locator.php:95 ../includes/class.strings.php:59
|
7064 |
+
msgid "No results found in this location. Please try again."
|
7065 |
+
msgstr ""
|
7066 |
+
|
7067 |
#: ../includes/class.strings.php:21
|
7068 |
msgid ""
|
7069 |
"Many browsers are no longer allowing geolocation from unsecured origins. You "
|
7081 |
"Please check your settings."
|
7082 |
msgstr ""
|
7083 |
|
7084 |
+
#: ../includes/class.strings.php:27
|
7085 |
+
#, php-format
|
7086 |
msgid ""
|
7087 |
"You have not entered a <b>Google Maps API Key</b>.<br /><br />Please go to "
|
7088 |
+
"the your admin area, then Maps, then Settings, then the Advanced tab to <a "
|
7089 |
+
"href=\"%s\">enter your Google Maps API key</a>.<br /><br />Alternatively, <a "
|
7090 |
+
"href=\"%s\">choose the Open Layers engine</a> to avoid getting an API key."
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: ../includes/class.strings.php:35
|
7094 |
msgid "API Dashboard"
|
7095 |
msgstr ""
|
7096 |
|
7097 |
+
#: ../includes/class.strings.php:36
|
7098 |
msgid "Verify Project"
|
7099 |
msgstr ""
|
7100 |
|
7101 |
+
#: ../includes/class.strings.php:39
|
7102 |
+
msgid "Please create the circle first."
|
7103 |
+
msgstr ""
|
7104 |
+
|
7105 |
+
#: ../includes/class.strings.php:40
|
7106 |
+
#, fuzzy
|
7107 |
+
msgid "Please create the rectangle first."
|
7108 |
+
msgstr "Изтрий този маркер"
|
7109 |
+
|
7110 |
+
#: ../includes/class.strings.php:41
|
7111 |
+
msgid "Please create the polygon first."
|
7112 |
+
msgstr ""
|
7113 |
+
|
7114 |
+
#: ../includes/class.strings.php:42
|
7115 |
+
#, fuzzy
|
7116 |
+
#| msgid "Delete this polyline"
|
7117 |
+
msgid "Please create the polyline first."
|
7118 |
+
msgstr "Изтрий този полином"
|
7119 |
+
|
7120 |
+
#: ../includes/class.strings.php:44
|
7121 |
#, fuzzy
|
7122 |
#| msgid "Hide the Address"
|
7123 |
msgid "Failed to get address"
|
7124 |
msgstr "Скрий адреса"
|
7125 |
|
7126 |
+
#: ../includes/class.strings.php:45
|
7127 |
#, php-format
|
7128 |
msgid "Failed to create marker %d - this marker cannot be placed on the map."
|
7129 |
msgstr ""
|
7130 |
|
7131 |
+
#: ../includes/class.strings.php:47
|
7132 |
#, fuzzy
|
7133 |
#| msgid "My location"
|
7134 |
msgid "My Location"
|
7135 |
msgstr "Моето местоположение"
|
7136 |
|
7137 |
+
#: ../includes/class.strings.php:55
|
7138 |
#, fuzzy
|
7139 |
#| msgid "Hide the address field"
|
7140 |
msgid "No address specified"
|
7141 |
msgstr "Скрий поле адрес"
|
7142 |
|
7143 |
+
#: ../includes/class.strings.php:56
|
7144 |
+
msgid "Add Marker"
|
7145 |
+
msgstr "Добави маркер"
|
7146 |
+
|
7147 |
+
#: ../includes/class.strings.php:57
|
7148 |
msgid "Save Marker"
|
7149 |
msgstr "Запиши маркер"
|
7150 |
|
7151 |
+
#: ../includes/class.strings.php:58
|
7152 |
#, fuzzy
|
7153 |
#| msgid "Please explain"
|
7154 |
msgid "Please Wait..."
|
7155 |
msgstr "Моля, опиши"
|
7156 |
|
7157 |
+
#: ../includes/class.strings.php:60
|
7158 |
+
msgid ""
|
7159 |
+
"This address could not be found. WP Google Maps uses a 3rd party service (eg "
|
7160 |
+
"Google) to convert addresses to geographic coordinates. Unfortunately, the "
|
7161 |
+
"service has no records for this address at present. Please try an "
|
7162 |
+
"alternative format, or manually position the marker using right click."
|
7163 |
msgstr ""
|
7164 |
|
7165 |
+
#: ../includes/class.strings.php:61
|
7166 |
msgid "Geocode failed due to technical reasons"
|
7167 |
msgstr ""
|
7168 |
|
7169 |
+
#: ../includes/class.strings.php:63
|
7170 |
msgid "You must check the GDPR consent box to continue"
|
7171 |
msgstr ""
|
7172 |
|
7173 |
+
#: ../includes/class.strings.php:65
|
7174 |
msgid "No GPS coordinates found"
|
7175 |
msgstr ""
|
7176 |
|
7177 |
+
#: ../includes/class.strings.php:68
|
7178 |
msgid "Unknown directions service status"
|
7179 |
msgstr ""
|
7180 |
|
7181 |
+
#: ../includes/class.strings.php:69
|
7182 |
#, fuzzy
|
7183 |
msgid "Please fill out both the \"from\" and \"to\" fields"
|
7184 |
msgstr "оля, попълни и двете полета 'от' и 'до'"
|
7185 |
|
7186 |
+
#: ../includes/class.strings.php:71
|
7187 |
msgid "No picture found"
|
7188 |
msgstr ""
|
7189 |
|
7190 |
+
#: ../includes/class.strings.php:72
|
7191 |
#, fuzzy
|
7192 |
#| msgid "Are you sure you want to delete the map"
|
7193 |
msgid "Are you sure you want to overwrite the existing theme data?"
|
7194 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
7195 |
|
7196 |
+
#: ../includes/class.strings.php:74
|
7197 |
#, fuzzy
|
7198 |
#| msgid "Upload File"
|
7199 |
msgid "Upload Complete"
|
7200 |
msgstr "качи файл"
|
7201 |
|
7202 |
+
#: ../includes/class.strings.php:75
|
7203 |
#, fuzzy
|
7204 |
#| msgid "Upload File"
|
7205 |
msgid "Uploading file"
|
7206 |
msgstr "качи файл"
|
7207 |
|
7208 |
+
#: ../includes/class.strings.php:76
|
7209 |
#, fuzzy
|
7210 |
#| msgid "WP Google Maps Error log"
|
7211 |
msgid "WP Google Maps - Bulk JPEG Upload"
|
7212 |
msgstr "WP Google Maps Error log"
|
7213 |
|
7214 |
+
#: ../includes/class.strings.php:84
|
7215 |
msgid "Requires WP Google Maps - Gold add-on 5.0.0 or above"
|
7216 |
msgstr ""
|
7217 |
|
7218 |
+
#: ../includes/class.strings.php:86
|
7219 |
msgid ""
|
7220 |
"This operation is not reversable. We recommend you take a backup before "
|
7221 |
"proceeding. Would you like to continue?"
|
7222 |
msgstr ""
|
7223 |
|
7224 |
+
#: ../includes/class.strings.php:88
|
7225 |
msgid "Invalid theme data"
|
7226 |
msgstr ""
|
7227 |
|
7228 |
+
#: ../includes/class.strings.php:90
|
7229 |
msgid ""
|
7230 |
"Duplicate custom field names, please ensure you only add unique custom field "
|
7231 |
"names."
|
7232 |
msgstr ""
|
7233 |
|
7234 |
+
#: ../includes/class.strings.php:92
|
7235 |
msgid "Some interactions are disabled."
|
7236 |
msgstr ""
|
7237 |
|
7238 |
+
#: ../includes/class.strings.php:93
|
7239 |
msgid "Interactions Enabled"
|
7240 |
msgstr ""
|
7241 |
|
7242 |
+
#: ../includes/class.strings.php:94
|
7243 |
#, fuzzy
|
7244 |
#| msgid "Enable Directions?"
|
7245 |
msgid "Re-Enable Interactions"
|
7246 |
msgstr "Включи упътвания?"
|
7247 |
|
7248 |
+
#: ../includes/class.strings.php:96
|
7249 |
msgid "Use two fingers to move the map"
|
7250 |
msgstr ""
|
7251 |
|
7252 |
+
#: ../includes/class.strings.php:97
|
7253 |
msgid "Use ctrl + scroll to zoom the map"
|
7254 |
msgstr ""
|
7255 |
|
7256 |
+
#: ../includes/class.strings.php:98
|
7257 |
#, fuzzy
|
7258 |
#| msgid "Geocode was not successful for the following reason"
|
7259 |
msgid "Geocode was not successful for the following reason: "
|
7260 |
msgstr "Геокодирането не беше успешно по следната причина"
|
7261 |
|
7262 |
+
#: ../includes/class.strings.php:99
|
7263 |
msgid ""
|
7264 |
"Geocoding this address failed. Please check you have enabled the Geocoding "
|
7265 |
"API for your Google Maps API project."
|
7266 |
msgstr ""
|
7267 |
|
7268 |
+
#: ../includes/class.strings.php:101
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7269 |
#, fuzzy
|
7270 |
+
#| msgid "Are you sure you want to delete the map"
|
7271 |
+
msgid "Are you sure you want to delete this map?"
|
7272 |
+
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7273 |
|
7274 |
+
#: ../includes/class.strings.php:102
|
7275 |
#, fuzzy
|
7276 |
+
#| msgid "Are you sure you want to delete the map"
|
7277 |
+
msgid "Are you sure you want to delete these maps?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7278 |
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
7279 |
|
7280 |
+
#: ../includes/class.strings.php:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7281 |
#, php-format
|
7282 |
msgid ""
|
7283 |
+
"Autocomplete disabled. <a href=\"%s\" target=\"_BLANK\">Find out more</a>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7284 |
msgstr ""
|
7285 |
|
7286 |
+
#: ../includes/compat/backwards_compat_v6.php:65
|
7287 |
+
#: ../includes/compat/backwards_compat_v6.php:67
|
7288 |
+
#, fuzzy
|
7289 |
+
#| msgid "Add a marker"
|
7290 |
+
msgid "Add a Circle"
|
7291 |
+
msgstr "Добави маркер"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7292 |
|
7293 |
+
#: ../includes/compat/backwards_compat_v6.php:73
|
7294 |
+
#: ../includes/compat/backwards_compat_v6.php:75
|
7295 |
+
#, fuzzy
|
7296 |
+
msgid "Add a Rectangle"
|
7297 |
+
msgstr "Добави маркер"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7298 |
|
7299 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:96
|
7300 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:114
|
7301 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:117
|
7302 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:120
|
7303 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:183
|
7304 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:186
|
7305 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:204
|
7306 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:207
|
7307 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:210
|
7308 |
+
msgid "Pro version only"
|
7309 |
+
msgstr "Pro версия само"
|
7310 |
|
7311 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:96
|
7312 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:183
|
7313 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:186
|
7314 |
+
msgid "Get the Pro add-on"
|
7315 |
+
msgstr "Вземи Pro add-on"
|
7316 |
|
7317 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:132
|
7318 |
+
msgid "Click on the map to insert a vertex."
|
7319 |
+
msgstr "Кликни на картата за да въведеш връх."
|
7320 |
|
7321 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:133
|
7322 |
+
msgid "Click on a vertex to remove it."
|
7323 |
+
msgstr "Кликни на връх за да премахнеш."
|
7324 |
|
7325 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:134
|
7326 |
+
msgid "Drag a vertex to move it."
|
7327 |
+
msgstr "Извлачи връх за да преместиш."
|
7328 |
|
7329 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:213
|
7330 |
+
#, fuzzy
|
7331 |
+
#| msgid "Save Polygon"
|
7332 |
+
msgid "Show Polygon"
|
7333 |
+
msgstr "Запази полигон"
|
7334 |
|
7335 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:218
|
7336 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:765
|
7337 |
+
#: ../includes/legacy/functions.circle.php:173
|
7338 |
+
#: ../includes/legacy/functions.rectangle.php:176
|
7339 |
+
msgid "Fit map bounds to shape"
|
7340 |
+
msgstr ""
|
7341 |
|
7342 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:759
|
7343 |
+
#, fuzzy
|
7344 |
+
#| msgid "Save Polyline"
|
7345 |
+
msgid "Show Polyline"
|
7346 |
+
msgstr "Запиши полином"
|
7347 |
|
7348 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1208
|
7349 |
+
msgid "Delete your map"
|
7350 |
+
msgstr "Изтрий картата си"
|
7351 |
|
7352 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1208
|
7353 |
+
msgid "Are you sure you want to delete the map"
|
7354 |
+
msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
|
7355 |
|
7356 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1227
|
7357 |
+
msgid "There was a problem duplicating the map."
|
7358 |
+
msgstr "Имаше проблем с дупликата на тази карта."
|
|
|
|
|
|
|
|
|
|
|
|
|
7359 |
|
7360 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1336
|
7361 |
+
#: ../includes/tables/class.admin-map-datatable.php:39
|
7362 |
#, fuzzy
|
7363 |
+
msgid "Shortcode"
|
7364 |
+
msgstr "Шорткод"
|
|
|
7365 |
|
7366 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1451
|
7367 |
+
msgid "View this link"
|
7368 |
+
msgstr "Виж този линк"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7369 |
|
7370 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1479
|
7371 |
+
msgid "Edit this marker"
|
7372 |
+
msgstr "Промени този маркер"
|
|
|
|
|
7373 |
|
7374 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1480
|
7375 |
+
#: ../includes/tables/class.admin-marker-datatable.php:56
|
7376 |
#, fuzzy
|
7377 |
+
msgid "Edit this marker location"
|
7378 |
+
msgstr "Промяна маркер локация"
|
7379 |
|
7380 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1484
|
7381 |
+
#: ../includes/tables/class.admin-marker-datatable.php:63
|
7382 |
+
msgid "Delete this marker"
|
7383 |
+
msgstr "Изтрий този маркер"
|
7384 |
|
7385 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1503
|
7386 |
+
#: ../includes/tables/class.admin-marker-datatable.php:33
|
7387 |
#, fuzzy
|
7388 |
+
#| msgid "Markers"
|
7389 |
+
msgid "Mark"
|
7390 |
+
msgstr "Маркери"
|
7391 |
|
7392 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1821
|
7393 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1957
|
7394 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1991
|
7395 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2054
|
7396 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2120
|
7397 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2170
|
7398 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2218
|
7399 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2268
|
7400 |
+
msgid "You do not have permission to perform this function"
|
7401 |
msgstr ""
|
7402 |
|
7403 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1985
|
7404 |
+
msgid "Your marker location has been saved."
|
7405 |
+
msgstr "Твоя маркер локация беше записан."
|
|
|
|
|
7406 |
|
7407 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:1998
|
7408 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2063
|
7409 |
+
msgid "You cannot save a blank polygon"
|
7410 |
+
msgstr "не може да запишеш празен полигон"
|
|
|
7411 |
|
7412 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2045
|
7413 |
+
msgid "Your polygon has been created."
|
7414 |
+
msgstr "Твоят полигон беше създаден."
|
7415 |
|
7416 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2110
|
7417 |
+
msgid "Your polygon has been saved."
|
7418 |
+
msgstr "Твоят полигон беше записан."
|
|
|
|
|
7419 |
|
7420 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2128
|
7421 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2180
|
7422 |
+
msgid "You cannot save a blank polyline"
|
7423 |
+
msgstr "Не може да запишеш празен полином"
|
7424 |
|
7425 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2160
|
7426 |
+
msgid "Your polyline has been created."
|
7427 |
+
msgstr "Твоят полином беше създаден."
|
7428 |
|
7429 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2209
|
7430 |
+
msgid "Your polyline has been saved."
|
7431 |
+
msgstr "Твоят полином беше записан."
|
|
|
7432 |
|
7433 |
+
#: ../includes/compat/class.pro-below-8.1-compatibility.php:2477
|
7434 |
msgid ""
|
7435 |
+
"<strong>WP Google Maps:</strong> The Pro add-on is not compatible with this "
|
7436 |
+
"version of WP Google Maps. Please update your Pro addon to 5.24 or above"
|
7437 |
msgstr ""
|
7438 |
|
7439 |
+
#: ../includes/legacy/functions.circle.php:41
|
7440 |
#, fuzzy
|
7441 |
+
#| msgid "Add Marker"
|
7442 |
+
msgid "Add circle"
|
7443 |
+
msgstr "Добави маркер"
|
7444 |
|
7445 |
+
#: ../includes/legacy/functions.circle.php:84
|
7446 |
+
#: ../includes/legacy/functions.circle.php:207
|
7447 |
msgid ""
|
7448 |
+
"Please note your circle may be too small to be visible at this zoom level"
|
|
|
|
|
7449 |
msgstr ""
|
7450 |
|
7451 |
+
#: ../includes/legacy/functions.circle.php:93
|
7452 |
#, fuzzy
|
7453 |
+
#| msgid "Click on the map to insert a vertex."
|
7454 |
+
msgid "Click on the map to insert a circle."
|
7455 |
+
msgstr "Кликни на картата за да въведеш връх."
|
7456 |
|
7457 |
+
#: ../includes/legacy/functions.circle.php:94
|
7458 |
+
#: ../includes/legacy/functions.circle.php:216
|
7459 |
+
#, fuzzy
|
7460 |
+
#| msgid "Click on a vertex to remove it."
|
7461 |
+
msgid "Click or drag the circle to move it."
|
7462 |
+
msgstr "Кликни на връх за да премахнеш."
|
7463 |
|
7464 |
+
#: ../includes/legacy/functions.circle.php:99
|
7465 |
+
#: ../includes/legacy/functions.circle.php:221
|
7466 |
+
#, fuzzy
|
7467 |
+
#| msgid "Save Marker"
|
7468 |
+
msgid "Save Circle"
|
7469 |
+
msgstr "Запиши маркер"
|
7470 |
|
7471 |
+
#: ../includes/legacy/functions.circle.php:132
|
7472 |
+
msgid "Invalid circle ID"
|
|
|
|
|
7473 |
msgstr ""
|
7474 |
|
7475 |
+
#: ../includes/legacy/functions.circle.php:146
|
7476 |
+
msgid "Edit circle"
|
7477 |
msgstr ""
|
7478 |
|
7479 |
+
#: ../includes/legacy/functions.circle.php:316
|
7480 |
#, fuzzy
|
7481 |
+
#| msgid "Delete this marker"
|
7482 |
+
msgid "Delete this circle"
|
7483 |
+
msgstr "Изтрий този маркер"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7484 |
|
7485 |
+
#: ../includes/legacy/functions.rectangle.php:41
|
7486 |
+
msgid "Add rectangle"
|
|
|
|
|
7487 |
msgstr ""
|
7488 |
|
7489 |
+
#: ../includes/legacy/functions.rectangle.php:78
|
7490 |
+
#, fuzzy
|
7491 |
+
#| msgid "Click on the map to insert a vertex."
|
7492 |
+
msgid "Click on the map to insert a rectangle."
|
7493 |
+
msgstr "Кликни на картата за да въведеш връх."
|
7494 |
|
7495 |
+
#: ../includes/legacy/functions.rectangle.php:79
|
7496 |
+
#: ../includes/legacy/functions.rectangle.php:187
|
7497 |
+
#, fuzzy
|
7498 |
+
#| msgid "Click on a vertex to remove it."
|
7499 |
+
msgid "Click or drag the rectangle to move it."
|
7500 |
+
msgstr "Кликни на връх за да премахнеш."
|
7501 |
|
7502 |
+
#: ../includes/legacy/functions.rectangle.php:84
|
7503 |
+
#: ../includes/legacy/functions.rectangle.php:192
|
7504 |
+
#, fuzzy
|
7505 |
+
#| msgid "Save Settings"
|
7506 |
+
msgid "Save rectangle"
|
7507 |
+
msgstr "Запиши настройките"
|
7508 |
|
7509 |
+
#: ../includes/legacy/functions.rectangle.php:117
|
7510 |
+
msgid "Invalid rectangle ID"
|
7511 |
+
msgstr ""
|
7512 |
|
7513 |
+
#: ../includes/legacy/functions.rectangle.php:136
|
7514 |
+
msgid "Edit rectangle"
|
7515 |
+
msgstr ""
|
7516 |
|
7517 |
+
#: ../includes/legacy/functions.rectangle.php:170
|
7518 |
+
#, fuzzy
|
7519 |
+
#| msgid "Show distance in"
|
7520 |
+
msgid "Show Rectangle"
|
7521 |
+
msgstr "Покажи разстояния в"
|
7522 |
|
7523 |
+
#: ../includes/legacy/functions.rectangle.php:285
|
7524 |
+
#, fuzzy
|
7525 |
+
msgid "Delete this rectangle"
|
7526 |
+
msgstr "Изтрий този маркер"
|
7527 |
|
7528 |
+
#: ../includes/map-edit-page/class.map-edit-page.php:293
|
7529 |
+
#, fuzzy
|
7530 |
+
msgid "Enable this feature with WP Google Maps - Pro add-on"
|
7531 |
+
msgstr "Нов в WP Google Maps?"
|
7532 |
|
7533 |
+
#: ../includes/tables/class.admin-map-datatable.php:23
|
7534 |
+
#: ../includes/tables/class.admin-marker-datatable.php:26
|
7535 |
+
#, fuzzy
|
7536 |
+
#| msgid "Delete"
|
7537 |
+
msgid "Bulk Delete"
|
7538 |
+
msgstr "Изтриване"
|
7539 |
|
7540 |
+
#: ../includes/tables/class.admin-map-datatable.php:108
|
7541 |
+
msgid "Duplicate"
|
7542 |
+
msgstr "Дупликейт"
|
7543 |
|
7544 |
+
#: ../includes/tables/trait.admin-feature-datatable.php:20
|
7545 |
+
#, fuzzy
|
7546 |
+
#| msgid "Delete this marker"
|
7547 |
+
msgid "Delete this feature"
|
7548 |
+
msgstr "Изтрий този маркер"
|
7549 |
|
7550 |
+
#: ../legacy-core.php:191
|
7551 |
+
msgid "Map Editor"
|
7552 |
msgstr ""
|
7553 |
|
7554 |
+
#: ../legacy-core.php:195
|
|
|
|
|
|
|
|
|
|
|
7555 |
#, fuzzy
|
7556 |
+
#| msgid "Pro Version"
|
7557 |
+
msgid "Get Pro Version"
|
7558 |
+
msgstr "Pro версия"
|
7559 |
|
7560 |
+
#: ../legacy-core.php:218
|
7561 |
+
msgid ""
|
7562 |
+
"<strong>WP Google Maps cannot find the directory it uses to save marker data "
|
7563 |
+
"to. Please confirm that <em>"
|
7564 |
+
msgstr ""
|
7565 |
+
"<strong>WP Google Maps не може да намери директорията която е за запис на "
|
7566 |
+
"маркер данни. Моля, потвърди <em>"
|
7567 |
|
7568 |
+
#: ../legacy-core.php:218
|
7569 |
msgid ""
|
7570 |
+
"</em>exists. Please also ensure that you assign file permissions of 755 (or "
|
7571 |
+
"777) to this directory."
|
|
|
7572 |
msgstr ""
|
7573 |
+
"</em>съществува. Моля, също се убедете че разрешението 755 (или 777) на тази "
|
7574 |
+
"директория."
|
|
|
7575 |
|
7576 |
+
#: ../legacy-core.php:688
|
7577 |
+
msgid "Error: The map ID"
|
7578 |
+
msgstr "Error: The map ID"
|
7579 |
|
7580 |
+
#: ../legacy-core.php:688
|
7581 |
+
msgid "does not exist"
|
7582 |
+
msgstr "не съществува"
|
7583 |
|
7584 |
+
#: ../legacy-core.php:928
|
7585 |
+
msgid "There was a problem deleting the marker."
|
7586 |
+
msgstr "Имаше проблем с триенето на маркер"
|
7587 |
|
7588 |
+
#: ../legacy-core.php:932
|
7589 |
+
msgid "Delete Marker"
|
7590 |
+
msgstr "Изтрий маркер"
|
7591 |
|
7592 |
+
#: ../legacy-core.php:932
|
7593 |
+
msgid "Are you sure you want to delete this marker:"
|
7594 |
+
msgstr "Сигурен ли си, че искаш да изтриеш този маркер:"
|
7595 |
|
7596 |
+
#: ../legacy-core.php:1056 ../legacy-core.php:1082
|
7597 |
+
#, php-format
|
7598 |
msgid ""
|
7599 |
+
"We have detected a conflict between your current theme's version and our "
|
7600 |
+
"plugin. Should you be experiencing issues with your maps displaying, please "
|
7601 |
+
"update Avada to version 3.9.4 or go to <a href='%s'>settings page</a> and "
|
7602 |
+
"check the highlighted checkbox."
|
7603 |
+
msgstr ""
|
7604 |
|
7605 |
+
#: ../legacy-core.php:1102
|
7606 |
+
msgid "My Markers"
|
7607 |
+
msgstr "Моите маркери"
|
7608 |
|
7609 |
+
#: ../legacy-core.php:1128
|
7610 |
+
msgid "Linked to"
|
7611 |
+
msgstr "Линкнати до"
|
|
|
|
|
|
|
7612 |
|
7613 |
+
#: ../legacy-core.php:1131
|
7614 |
+
msgid "GPS"
|
7615 |
+
msgstr "GPS"
|
|
|
|
|
7616 |
|
7617 |
+
#: ../legacy-core.php:1132
|
7618 |
+
msgid "Pic"
|
7619 |
+
msgstr "Pic"
|
|
|
|
|
7620 |
|
7621 |
+
#: ../legacy-core.php:1178
|
7622 |
msgid "Edit Marker Location"
|
7623 |
msgstr "Промяна маркер локация"
|
7624 |
|
7625 |
+
#: ../legacy-core.php:1188
|
7626 |
msgid "Marker Latitude"
|
7627 |
msgstr "Маркер Latitude"
|
7628 |
|
7629 |
+
#: ../legacy-core.php:1192
|
7630 |
msgid "Marker Longitude"
|
7631 |
msgstr "Маркер Longitude"
|
7632 |
|
7633 |
+
#: ../legacy-core.php:1197
|
7634 |
msgid "Save Marker Location"
|
7635 |
msgstr "Запиши маркер позиция"
|
7636 |
|
7637 |
+
#: ../legacy-core.php:1198
|
7638 |
msgid ""
|
7639 |
"Tip: Use your mouse to change the location of the marker. Simply click and "
|
7640 |
"drag it to your desired location."
|
7642 |
"Съвет: Използвай твоята мишла за да смениш позицията на маркера. Просто "
|
7643 |
"кликни и извлачи до желаната позиция."
|
7644 |
|
7645 |
+
#: ../legacy-core.php:1204
|
7646 |
+
msgid "The map could not load."
|
7647 |
+
msgstr "Картата не може да бъде заредена."
|
7648 |
+
|
7649 |
+
#: ../legacy-core.php:1204
|
7650 |
msgid ""
|
7651 |
"This is normally caused by a conflict with another plugin or a JavaScript "
|
7652 |
"error that is preventing our plugin's Javascript from executing. Please try "
|
7660 |
"остава \n"
|
7661 |
"свържи се с nick@wpgmaps.com за съпорт.\""
|
7662 |
|
7663 |
+
#: ../legacy-core.php:1282
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7664 |
msgid ""
|
7665 |
"The plugin directory does not have 'write' permissions. Please enable "
|
7666 |
"'write' permissions (755) for "
|
7667 |
msgstr "Плъгин директорията няма 'write' права. Включи 'write' права (755) за "
|
7668 |
|
7669 |
+
#: ../legacy-core.php:1284
|
7670 |
msgid "in order for this plugin to work! Please see "
|
7671 |
msgstr "за да работи този плъгин! Моля, виж"
|
7672 |
|
7673 |
+
#: ../legacy-core.php:1286
|
7674 |
+
msgid "this page"
|
7675 |
+
msgstr "тази страница"
|
7676 |
+
|
7677 |
+
#: ../legacy-core.php:1288
|
7678 |
msgid "for help on how to do it."
|
7679 |
msgstr "за помощ как се прави."
|
7680 |
|
7681 |
+
#: ../legacy-core.php:1567
|
7682 |
+
msgid "This folder does not exist. Please create it."
|
7683 |
+
msgstr "Тази директория не същестува. Моля, създайте я."
|
7684 |
+
|
7685 |
+
#: ../legacy-core.php:1570
|
7686 |
msgid ""
|
7687 |
"WP Google Maps does not have write permission to the marker location "
|
7688 |
"directory. This is required to store marker data. Please CHMOD the folder "
|
7690 |
"WP Google Maps няма права на запис за локации на маркерите директория. Това "
|
7691 |
"е задължително за да запази маркер данните. Моля CHMOD директория"
|
7692 |
|
7693 |
+
#: ../legacy-core.php:1570
|
7694 |
msgid ""
|
7695 |
" to 755 or 777, or change the directory in the Maps->Settings page. (Current "
|
7696 |
"file permissions are "
|
7698 |
"на 755 или 777, или смени директорията в Карти->Настройки страница. "
|
7699 |
"(Сегашните файл премишънии са"
|
7700 |
|
7701 |
+
#: ../legacy-core.php:1604
|
7702 |
msgid "United States of America"
|
7703 |
msgstr ""
|
7704 |
|
7705 |
+
#: ../legacy-core.php:1620
|
7706 |
#, fuzzy
|
7707 |
msgid "View the instruction video"
|
7708 |
msgstr "Скрий линка упътвания"
|
7709 |
|
7710 |
+
#: ../legacy-core.php:1621
|
7711 |
#, fuzzy
|
7712 |
msgid "Read the documentation"
|
7713 |
msgstr "Трябва ти помощ? Прочети документацията."
|
7714 |
|
7715 |
+
#: ../legacy-core.php:1622
|
7716 |
msgid "Important Notification"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
+
#: ../legacy-core.php:1623
|
7720 |
msgid "You can read more about that here."
|
7721 |
msgstr ""
|
7722 |
|
7723 |
+
#: ../legacy-core.php:1624
|
7724 |
msgid "*ALL* Google Maps now require an API key to function."
|
7725 |
msgstr ""
|
7726 |
|
7727 |
+
#: ../legacy-core.php:1626
|
7728 |
msgid "Before creating a map please follow these steps:"
|
7729 |
msgstr ""
|
7730 |
|
7731 |
+
#: ../legacy-core.php:1629
|
7732 |
msgid "Create an API key now"
|
7733 |
msgstr ""
|
7734 |
|
7735 |
+
#: ../legacy-core.php:1632
|
7736 |
msgid "Paste your API key here and press save:"
|
7737 |
msgstr ""
|
7738 |
|
7739 |
+
#: ../legacy-core.php:1633
|
7740 |
#, fuzzy
|
7741 |
msgid "paste your Google Maps JavaScript API Key here"
|
7742 |
msgstr "Google API Key (задължително)"
|
7743 |
|
7744 |
+
#: ../legacy-core.php:1640
|
7745 |
msgid ""
|
7746 |
"<strong>Alternatively, please switch to the OpenLayers map engine</strong> "
|
7747 |
"on the maps settings page"
|
7748 |
msgstr ""
|
7749 |
|
7750 |
+
#: ../legacy-core.php:1642
|
7751 |
#, php-format
|
7752 |
msgid "Need help? %s or %s."
|
7753 |
msgstr ""
|
7754 |
|
7755 |
+
#: ../legacy-core.php:1701
|
7756 |
#, php-format
|
7757 |
msgid ""
|
7758 |
"One or more markers have been added or changed, please <a href='%s' "
|
7759 |
"class='button'>clear your cache.</a>"
|
7760 |
msgstr ""
|
7761 |
|
7762 |
+
#: ../legacy-core.php:1703
|
7763 |
#, php-format
|
7764 |
msgid ""
|
7765 |
"We have detected that you are using %s on your website. Please <a href='%s' "
|
7766 |
"class='button'>clear your cache</a> to ensure that your map is updated."
|
7767 |
msgstr ""
|
7768 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7769 |
#: ../lib/codecabin/deactivate-feedback-form.php:36
|
7770 |
#, fuzzy
|
7771 |
#| msgid "Feedback"
|
7830 |
msgid "It's a temporary deactivation, I'm troubleshooting"
|
7831 |
msgstr ""
|
7832 |
|
7833 |
+
#: ../wpGoogleMaps.php:1611
|
7834 |
+
#, php-format
|
7835 |
msgid ""
|
7836 |
+
"You are currently using an outdated PRO version. You need to <a href=\"%s"
|
7837 |
+
"\">update your PRO version</a> to the latest version (8.*)."
|
7838 |
+
msgstr ""
|
7839 |
+
|
7840 |
+
#: ../wpGoogleMaps.php:1615
|
7841 |
+
msgid ""
|
7842 |
+
"We have automatically given all PRO users the ability to update to 8.0.34 "
|
7843 |
+
"and then further to 8.1. Any major versions below 8 will no longer be "
|
7844 |
+
"supported."
|
7845 |
+
msgstr ""
|
7846 |
+
|
7847 |
+
#: ../wpGoogleMaps.php:1619
|
7848 |
+
#, php-format
|
7849 |
+
msgid ""
|
7850 |
+
"If you are struggling to update your Pro version from within WordPress, "
|
7851 |
+
"please get the latest ZIP file <a target=\"_BLANK\" href=\"%s\">here</a>."
|
7852 |
+
msgstr ""
|
7853 |
+
|
7854 |
+
#: ../wpGoogleMaps.php:1677
|
7855 |
+
msgid ""
|
7856 |
+
"PHP 8 includes significant changes from PHP 7, which may cause unexpected "
|
7857 |
+
"issues with our core functionality. WP Google Maps is not officially "
|
7858 |
+
"supported with PHP 8, but support will be added in the near future."
|
7859 |
msgstr ""
|
7860 |
|
7861 |
+
#: ../wpGoogleMaps.php:1683
|
7862 |
+
msgid ""
|
7863 |
+
"To continue using WP Google Maps, please downgrade to PHP 7, as it is fully "
|
7864 |
+
"supported by our plugin."
|
7865 |
+
msgstr ""
|
7866 |
+
|
7867 |
+
#: ../wpGoogleMaps.php:1716
|
7868 |
msgid ""
|
7869 |
"The plugin failed to load due to a fatal error. This is usually due to "
|
7870 |
"missing files, or incompatible software. Please re-install the plugin. We "
|
7871 |
"recommend you use PHP 5.6 or above. Technical details are as follows: "
|
7872 |
msgstr ""
|
7873 |
|
7874 |
+
#, fuzzy
|
7875 |
+
#~| msgid "Animation"
|
7876 |
+
#~ msgid "Animation Easing"
|
7877 |
+
#~ msgstr "Анимация"
|
7878 |
+
|
7879 |
+
#, fuzzy
|
7880 |
+
#~| msgid "Line color"
|
7881 |
+
#~ msgid "Linear"
|
7882 |
+
#~ msgstr "Цвят на линия"
|
7883 |
+
|
7884 |
+
#, fuzzy
|
7885 |
+
#~| msgid "Line Opacity"
|
7886 |
+
#~ msgid "Sine Out"
|
7887 |
+
#~ msgstr "Непрозрачност на линията"
|
7888 |
+
|
7889 |
+
#, fuzzy
|
7890 |
+
#~ msgid "Circular In"
|
7891 |
+
#~ msgstr "Дифолт инфо прозорец"
|
7892 |
+
|
7893 |
+
#, fuzzy
|
7894 |
+
#~| msgid "Bounce"
|
7895 |
+
#~ msgid "Bounce In"
|
7896 |
+
#~ msgstr "Боунс"
|
7897 |
+
|
7898 |
+
#, fuzzy
|
7899 |
+
#~| msgid "Bounce"
|
7900 |
+
#~ msgid "Bounce Out"
|
7901 |
+
#~ msgstr "Боунс"
|
7902 |
+
|
7903 |
+
#, fuzzy
|
7904 |
+
#~| msgid "Description"
|
7905 |
+
#~ msgid "<script>"
|
7906 |
+
#~ msgstr "Описание"
|
7907 |
+
|
7908 |
+
#~ msgid "This marker is a retina-ready marker"
|
7909 |
+
#~ msgstr "Този маркер е retina-ready"
|
7910 |
+
|
7911 |
+
#~ msgid ""
|
7912 |
+
#~ "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
|
7913 |
+
#~ "a>. Your current Gold version is not compatible with the current Pro "
|
7914 |
+
#~ "version."
|
7915 |
+
#~ msgstr ""
|
7916 |
+
#~ "Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
|
7917 |
+
#~ "\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
|
7918 |
+
|
7919 |
+
#~ msgid "Currently using your selection chosen in the global settings"
|
7920 |
+
#~ msgstr "В момента е избрана твоята селекция в глобалните настройки"
|
7921 |
+
|
7922 |
+
#~ msgid "Download this as a CSV file"
|
7923 |
+
#~ msgstr "Изтегли като CSV файл"
|
7924 |
+
|
7925 |
+
#~ msgid "Download this data as a CSV file"
|
7926 |
+
#~ msgstr "Изтегли тези данни като CSV файл"
|
7927 |
+
|
7928 |
+
#~ msgid "Marker Listing Options"
|
7929 |
+
#~ msgstr "Опции списък маркери"
|
7930 |
+
|
7931 |
+
#~ msgid "General options"
|
7932 |
+
#~ msgstr "Общи настройки"
|
7933 |
+
|
7934 |
+
#, fuzzy
|
7935 |
+
#~ msgid "No country selected"
|
7936 |
+
#~ msgstr "Позволи избор на категории"
|
7937 |
+
|
7938 |
+
#~ msgid "Insert country TLD. For example, use DE for Germany."
|
7939 |
+
#~ msgstr "Въведи TLD на държава. Пример, DE за Германия."
|
7940 |
+
|
7941 |
+
#~ msgid "Leave blank for no restrictions."
|
7942 |
+
#~ msgstr "Остави празно за без ограничения."
|
7943 |
+
|
7944 |
+
#, fuzzy
|
7945 |
+
#~ msgid "Above Map"
|
7946 |
+
#~ msgstr "Запиши карта"
|
7947 |
+
|
7948 |
+
#, fuzzy
|
7949 |
+
#~ msgid "Upload Icon"
|
7950 |
+
#~ msgstr "качи снимка"
|
7951 |
+
|
7952 |
+
#~ msgid "Fusion table ID"
|
7953 |
+
#~ msgstr "Fusion таблица ID"
|
7954 |
+
|
7955 |
+
#~ msgid ""
|
7956 |
+
#~ "Read data directly from your Fusion Table. For more information, see <a "
|
7957 |
+
#~ "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
7958 |
+
#~ "maps-api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-"
|
7959 |
+
#~ "google-maps-api.html</a>"
|
7960 |
+
#~ msgstr ""
|
7961 |
+
#~ "Чете данни директно от твоята Fusion таблица. За повече информация, виж "
|
7962 |
+
#~ "<a href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
7963 |
+
#~ "maps-api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-"
|
7964 |
+
#~ "google-maps-api.html</a>"
|
7965 |
+
|
7966 |
+
#~ msgid "Your selection:"
|
7967 |
+
#~ msgstr "Твоя избор:"
|
7968 |
+
|
7969 |
+
#~ msgid "Move your marker list inside the map area"
|
7970 |
+
#~ msgstr "Премести твоя списък маркери вътре в картата"
|
7971 |
+
|
7972 |
+
#~ msgid "(still in beta)"
|
7973 |
+
#~ msgstr "(още се тества)"
|
7974 |
+
|
7975 |
+
#, fuzzy
|
7976 |
+
#~ msgid "Add a dataset"
|
7977 |
+
#~ msgstr "Добави маркер"
|
7978 |
+
|
7979 |
+
#~ msgid "Your Markers"
|
7980 |
+
#~ msgstr "Твоите маркери"
|
7981 |
+
|
7982 |
+
#, fuzzy
|
7983 |
+
#~| msgid "An unknown error occurred"
|
7984 |
+
#~ msgid "Unknown error"
|
7985 |
+
#~ msgstr "Възникна неочаквана грешка"
|
7986 |
+
|
7987 |
+
#~ msgid "WP Google Map Settings"
|
7988 |
+
#~ msgstr "WP Google Map настройки"
|
7989 |
+
|
7990 |
+
#~ msgid "Visitor Generated Markers"
|
7991 |
+
#~ msgstr "Посетител генерирал маркери"
|
7992 |
+
|
7993 |
+
#~ msgid "Visitor Generated Markers Settings"
|
7994 |
+
#~ msgstr "Посетителски настройки за генерирани маркери"
|
7995 |
+
|
7996 |
+
#~ msgid "Purchase the Visitor Generated Markers Add-on"
|
7997 |
+
#~ msgstr "Поръчки на посетителски добавки за маркери"
|
7998 |
+
|
7999 |
+
#~ msgid ""
|
8000 |
+
#~ "to enable this feature. <br /><br />If you have already purchased it "
|
8001 |
+
#~ "please ensure that you have uploaded activated the plugin."
|
8002 |
+
#~ msgstr ""
|
8003 |
+
#~ "за включване на тази екстра. <br /><br />Ако вече сте поръчали, моля "
|
8004 |
+
#~ "убедете се че сте ъплоуднали и активирали този плъгин"
|
8005 |
+
|
8006 |
+
#~ msgid "Column settings"
|
8007 |
+
#~ msgstr "Настройки колона"
|
8008 |
+
|
8009 |
+
#~ msgid "File Permissions:"
|
8010 |
+
#~ msgstr "Файл пермишъни:"
|
8011 |
+
|
8012 |
+
#~ msgid ""
|
8013 |
+
#~ " - The plugin does not have write access to this folder. Please CHMOD "
|
8014 |
+
#~ "this folder to 755 or 777, or change the location"
|
8015 |
+
#~ msgstr ""
|
8016 |
+
#~ "- Плъгинът няма права на писане в тази директория. Моля, CHMOD тази "
|
8017 |
+
#~ "директория до 755 или 777, или смени и мястото."
|
8018 |
+
|
8019 |
+
#, fuzzy
|
8020 |
+
#~ msgid "Google Maps API Key"
|
8021 |
+
#~ msgstr "Ползвай Google Maps API"
|
8022 |
+
|
8023 |
+
#~ msgid "Database (Great for small amounts of markers)"
|
8024 |
+
#~ msgstr "База данни (подходящо за малко количества от маркери)"
|
8025 |
+
|
8026 |
+
#~ msgid "XML File (Great for large amounts of markers)"
|
8027 |
+
#~ msgstr "XML File (подходящо за големи количества от маркери)"
|
8028 |
+
|
8029 |
+
#, fuzzy
|
8030 |
+
#~| msgid "Order markers by"
|
8031 |
+
#~ msgid "Order category filter items by"
|
8032 |
+
#~ msgstr "Подреди маркерите по"
|
8033 |
+
|
8034 |
+
#, fuzzy
|
8035 |
+
#~| msgid "Save Category"
|
8036 |
+
#~ msgid "Enable Category Count"
|
8037 |
+
#~ msgstr "Запиши категория"
|
8038 |
+
|
8039 |
+
#~ msgid "InfoWindow Settings"
|
8040 |
+
#~ msgstr "Инфопрозорец Настройки"
|
8041 |
+
|
8042 |
+
#, fuzzy
|
8043 |
+
#~| msgid "Modern Infowindow"
|
8044 |
+
#~ msgid "Modern InfoWindow"
|
8045 |
+
#~ msgstr "Модерен инфо прозорец"
|
8046 |
+
|
8047 |
+
#~ msgid "(Minimum: 200px)"
|
8048 |
+
#~ msgstr "(Минимум: 200px)"
|
8049 |
+
|
8050 |
+
#, fuzzy
|
8051 |
+
#~ msgid "Your dataset has been created."
|
8052 |
+
#~ msgstr "Твоята категория беше създадена."
|
8053 |
+
|
8054 |
+
#, fuzzy
|
8055 |
+
#~ msgid "Your dataset has been saved."
|
8056 |
+
#~ msgstr "Твоята категория беше записана."
|
8057 |
+
|
8058 |
+
#~ msgid "Search"
|
8059 |
+
#~ msgstr "Търси"
|
8060 |
+
|
8061 |
+
#, fuzzy
|
8062 |
+
#~ msgid "Delete this dataset"
|
8063 |
+
#~ msgstr "Изтрий този маркер"
|
8064 |
+
|
8065 |
+
#, fuzzy
|
8066 |
+
#~| msgid "ignore if you want to use the default marker"
|
8067 |
+
#~ msgid "ignore if you want to use the normal marker"
|
8068 |
+
#~ msgstr "игнорирай ако искаш да ползваш дифолт маркера"
|
8069 |
+
|
8070 |
+
#, fuzzy
|
8071 |
+
#~| msgid "Enable Directions?"
|
8072 |
+
#~ msgid "Enable Full Screen Option"
|
8073 |
+
#~ msgstr "Включи упътвания?"
|
8074 |
+
|
8075 |
+
#, fuzzy
|
8076 |
+
#~| msgid "Approve this marker"
|
8077 |
+
#~ msgid "Removed %s markers"
|
8078 |
+
#~ msgstr "Одобри този маркер"
|
8079 |
+
|
8080 |
+
#, fuzzy
|
8081 |
+
#~ msgid "Enable Usage Tracking"
|
8082 |
+
#~ msgstr "Включи на страници"
|
8083 |
+
|
8084 |
+
#~ msgid "Marker InfoWindow Settings"
|
8085 |
+
#~ msgstr "Marker Инфопрозорец Настройки"
|
8086 |
+
|
8087 |
+
#~ msgid ""
|
8088 |
+
#~ "Timthumb does not have 'write' permission for the cache directory. Please "
|
8089 |
+
#~ "enable 'write' permissions (755 or 777) for "
|
8090 |
+
#~ msgstr ""
|
8091 |
+
#~ "Timthumb няма 'write' права за кеш да директорията. Моля включи 'write' "
|
8092 |
+
#~ "права (755 или 777) за"
|
8093 |
+
|
8094 |
+
#~ msgid "in order for images to show up while using Timthumb. Please see "
|
8095 |
+
#~ msgstr "за да се покажат картинките с Timthumb. Моля, виж"
|
8096 |
+
|
8097 |
+
#~ msgid ""
|
8098 |
+
#~ "for help on how to do it. Alternatively, you can disable the use of "
|
8099 |
+
#~ "Timthumb in Maps->Settings"
|
8100 |
+
#~ msgstr ""
|
8101 |
+
#~ "за помощ как да го направиш. или пък може да Изключи ползването на "
|
8102 |
+
#~ "Timthumb в Карти->Настройки"
|
8103 |
+
|
8104 |
+
#~ msgid ""
|
8105 |
+
#~ "Add custom icons, titles, descriptions, pictures and links to your "
|
8106 |
+
#~ "markers with the"
|
8107 |
+
#~ msgstr ""
|
8108 |
+
#~ "Добави къстъм икони, заглавия, описание, картинки и линкове към твоите "
|
8109 |
+
#~ "маркери"
|
8110 |
+
|
8111 |
+
#~ msgid "of this plugin for just"
|
8112 |
+
#~ msgstr "на този пъгин само за"
|
8113 |
+
|
8114 |
+
#~ msgid "Purchase the Pro Edition"
|
8115 |
+
#~ msgstr "Поръчай Pro Edition"
|
8116 |
+
|
8117 |
+
#~ msgid "of WP Google Maps and save your markers to a CSV file!"
|
8118 |
+
#~ msgstr "на WP Google Maps и записвай своите маркери в CSV файл!"
|
8119 |
+
|
8120 |
+
#~ msgid "Please note"
|
8121 |
+
#~ msgstr "Моля да се има предвид"
|
8122 |
+
|
8123 |
+
#~ msgid ""
|
8124 |
+
#~ "We've noticed that you are using W3 Total Cache and that you have CDN "
|
8125 |
+
#~ "enabled.<br /><br />In order for the markers to show up on your map, you "
|
8126 |
+
#~ "need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to "
|
8127 |
+
#~ "the '<strong>rejected files</strong>' list in the <a href='admin.php?"
|
8128 |
+
#~ "page=w3tc_cdn#advanced'>CDN settings page</a> of W3 Total Cache"
|
8129 |
+
#~ msgstr ""
|
8130 |
+
#~ "Забелязваме, че използваш W3 Total Cache aи имаш CDN включено.<br /><br /"
|
8131 |
+
#~ ">За да може да се показват маркерите на твоята карта, ти трябва да "
|
8132 |
+
#~ "добавиш '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' към "
|
8133 |
+
#~ "'<strong>rejected files</strong>' списъка в <a href='admin.php?"
|
8134 |
+
#~ "page=w3tc_cdn#advanced'>CDN Настройки страница</a> of W3 Total Cache"
|
8135 |
+
|
8136 |
+
#~ msgid "Query string"
|
8137 |
+
#~ msgstr "Query стринг"
|
8138 |
+
|
8139 |
+
#~ msgid "Show bouncing icon"
|
8140 |
+
#~ msgstr "Покажи подскачаща икона"
|
8141 |
+
|
8142 |
+
#~ msgid "Enable Bicycle Layer?"
|
8143 |
+
#~ msgstr "Включи слой колоездене?"
|
8144 |
+
|
8145 |
+
#~ msgid "Enable Traffic Layer?"
|
8146 |
+
#~ msgstr "Включи слой трафик?"
|
8147 |
+
|
8148 |
+
#~ msgid "Enable Public Transport Layer?"
|
8149 |
+
#~ msgstr "Включи слой градски транспорт?"
|
8150 |
+
|
8151 |
+
#~ msgid "Maximum Zoom Level"
|
8152 |
+
#~ msgstr "Максимален зум нивоl"
|
8153 |
+
|
8154 |
+
#~ msgid "Read data directly from your Fusion Table."
|
8155 |
+
#~ msgstr "Прочети данните директно от твоята Fusion таблица."
|
8156 |
+
|
8157 |
+
#~ msgid "List Markers"
|
8158 |
+
#~ msgstr "Списък маркери"
|
8159 |
+
|
8160 |
+
#~ msgid "Advanced table with real time search and filtering"
|
8161 |
+
#~ msgstr "Специална таблица с риъл тайм сърч и филтриране"
|
8162 |
+
|
8163 |
+
#~ msgid "beta"
|
8164 |
+
#~ msgstr "бета"
|
8165 |
+
|
8166 |
+
#~ msgid "Basic"
|
8167 |
+
#~ msgstr "Основна"
|
8168 |
+
|
8169 |
+
#~ msgid "Show a basic list of your markers"
|
8170 |
+
#~ msgstr "Покажи основен списък на твоите маркери"
|
8171 |
+
|
8172 |
+
#~ msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
|
8173 |
+
#~ msgstr "Красив, риспонсив, mobile-friendly въртележка с маркери"
|
8174 |
+
|
8175 |
+
#~ msgid "Tabular"
|
8176 |
+
#~ msgstr "Табуларен"
|
8177 |
+
|
8178 |
+
#~ msgid ""
|
8179 |
+
#~ "Advanced, tabular marker listing functionality with real time filtering"
|
8180 |
+
#~ msgstr "Специален, табуларен маркер с риъл тайм сърч и филтриране"
|
8181 |
+
|
8182 |
+
#~ msgid "Polygon"
|
8183 |
+
#~ msgstr "Полигон"
|
8184 |
+
|
8185 |
+
#~ msgid "Or right click on the map"
|
8186 |
+
#~ msgstr "или десен клик върху картата"
|
8187 |
+
|
8188 |
+
#~ msgid "Saving"
|
8189 |
+
#~ msgstr "Запазване"
|
8190 |
+
|
8191 |
+
#~ msgid "Remember to save your marker"
|
8192 |
+
#~ msgstr "Не забравяй да запишеш маркера си"
|
8193 |
+
|
8194 |
+
#~ msgid "Please add the current marker before trying to add another marker"
|
8195 |
+
#~ msgstr "Моля, добави сегашния маркер преди да опитваш да добавиш друг"
|
8196 |
+
|
8197 |
+
#~ msgid "Pic URL"
|
8198 |
+
#~ msgstr "Снимка URL"
|
8199 |
+
|
8200 |
+
#~ msgid "Select"
|
8201 |
+
#~ msgstr "Избери"
|
8202 |
+
|
8203 |
+
#, fuzzy
|
8204 |
+
#~ msgid "with the Pro version."
|
8205 |
+
#~ msgstr "с Pro версия"
|
8206 |
+
|
8207 |
+
#~ msgid ""
|
8208 |
+
#~ "This is normally caused by a conflict with another plugin or a JavaScript "
|
8209 |
+
#~ "error that is preventing our plugin's Javascript from executing. Please "
|
8210 |
+
#~ "try disable all plugins one by one and see if this problem persists."
|
8211 |
+
#~ msgstr ""
|
8212 |
+
#~ "Това обикновено е предизвикано от конфликт с друг плъгин или JavaScript "
|
8213 |
+
#~ "грешка, която спира изпълнението на плъгина. Моля, опитай изключи всички "
|
8214 |
+
#~ "плъгини един по един и виж дали проблема остава."
|
8215 |
+
|
8216 |
+
#, fuzzy
|
8217 |
+
#~| msgid "WP Google Maps Error log"
|
8218 |
+
#~ msgid "WP Google Maps is a product of <img src='"
|
8219 |
+
#~ msgstr "WP Google Maps Error log"
|
8220 |
+
|
8221 |
#, fuzzy
|
8222 |
#~ msgid "Enable Location Tracking"
|
8223 |
#~ msgstr "Включи намирач на магазини"
|
8331 |
#~ "Нещо не е ок? Вероятно нещо от по долу информацията може да даде човек "
|
8332 |
#~ "какво не е наред грешно. Ако ли не пиши на nick@wpgmaps.com за помощ!"
|
8333 |
|
|
|
|
|
|
|
8334 |
#, fuzzy
|
8335 |
#~ msgid "Google Maps API Key (optional)"
|
8336 |
#~ msgstr "Google API Key (задължително)"
|
8338 |
#~ msgid "Image Thumbnails"
|
8339 |
#~ msgstr "Снимки умалени"
|
8340 |
|
|
|
|
|
|
|
8341 |
#~ msgid ""
|
8342 |
#~ "(Timthumb support will be discontinued in the next pro version release. "
|
8343 |
#~ "Please check this box and make the necessary changes to your images using "
|
8417 |
#~ msgid "Could not save XML file"
|
8418 |
#~ msgstr "Не може да запише XML file"
|
8419 |
|
|
|
|
|
|
|
8420 |
#~ msgid "There was a problem deleting the map."
|
8421 |
#~ msgstr "Имаше проблем с изтриването на тази карта."
|
8422 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8423 |
#~ msgid ""
|
8424 |
#~ "There are too many markers to make use of the live edit function. The "
|
8425 |
#~ "maximum amount for this functionality is 5000 markers. Anything more than "
|
languages/wp-google-maps-ca.po
CHANGED
@@ -1,13 +1,14 @@
|
|
|
|
1 |
msgstr ""
|
2 |
"Project-Id-Version: wpgooglemaps catala\n"
|
3 |
"POT-Creation-Date: 2016-07-18 13:38+0200\n"
|
4 |
-
"PO-Revision-Date:
|
5 |
"Last-Translator: \n"
|
6 |
"Language-Team: Gemma Salom - Cristina Besa - www.tribupermames.cat\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.
|
11 |
"X-Poedit-Basepath: .\n"
|
12 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
13 |
"Language: ca_ES\n"
|
@@ -28,12 +29,8 @@ msgstr "ajustaments"
|
|
28 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
|
29 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:765
|
30 |
#, php-format
|
31 |
-
msgid ""
|
32 |
-
"
|
33 |
-
"changed in the %s page"
|
34 |
-
msgstr ""
|
35 |
-
"La vostra clau de l’API de Google Maps s’ha desat correctament. Aquesta clau "
|
36 |
-
"de l’API es pot canviar a la pàgina % s"
|
37 |
|
38 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
|
39 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
|
@@ -142,10 +139,8 @@ msgstr "Desa"
|
|
142 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
|
143 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
|
144 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
|
145 |
-
msgid ""
|
146 |
-
"
|
147 |
-
msgstr ""
|
148 |
-
"Ha aparegut un error desconegut durant la petició d’API.</p> <p>\"\" onclick=\"document.location.reload(); return false;\">Torna-ho a provar\"</a>"
|
149 |
|
150 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
|
151 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
|
@@ -233,12 +228,8 @@ msgid "Real Time Location Tracking"
|
|
233 |
msgstr "Seguiment d’ubicacions en temps real"
|
234 |
|
235 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
|
236 |
-
msgid ""
|
237 |
-
"
|
238 |
-
"publicly or privately."
|
239 |
-
msgstr ""
|
240 |
-
"Feu un seguiment de la vostra ubicació a través de la nostra aplicació i "
|
241 |
-
"traceu la vostra ubicació actual en un mapa, públicament o privat."
|
242 |
|
243 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
|
244 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
|
@@ -266,9 +257,7 @@ msgstr "Dades del marcador esborrades."
|
|
266 |
|
267 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
|
268 |
msgid "A new device needs your approval to enable real time location tracking."
|
269 |
-
msgstr ""
|
270 |
-
"Un nou dispositiu necessita la vostra aprovació per habilitar el seguiment "
|
271 |
-
"d’ubicació en temps real."
|
272 |
|
273 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
|
274 |
msgid "Device ID:"
|
@@ -281,16 +270,11 @@ msgstr "Per acceptar aquest dispositiu, seguiu aquest enllaç: %1$s"
|
|
281 |
|
282 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
|
283 |
msgid "To reject the device, simply ignore this email."
|
284 |
-
msgstr ""
|
285 |
-
"Per rebutjar el dispositiu, simplement ignoreu aquest correu electrònic."
|
286 |
|
287 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
|
288 |
-
msgid ""
|
289 |
-
"
|
290 |
-
"Google Maps"
|
291 |
-
msgstr ""
|
292 |
-
"Un nou dispositiu necessita la vostra aprovació per habilitar el seguiment "
|
293 |
-
"d’ubicació en temps real - WP Google Maps"
|
294 |
|
295 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
|
296 |
msgid "No devices"
|
@@ -305,12 +289,8 @@ msgid "including Pro add-on"
|
|
305 |
msgstr "inclòs el complement professional"
|
306 |
|
307 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
|
308 |
-
msgid ""
|
309 |
-
"
|
310 |
-
msgstr ""
|
311 |
-
"Si us plau <a href='update-core.php'>actualitza la versió del teu WP Google "
|
312 |
-
"Maps GOLD</a>. La versió actual de Gold no és compatible amb la versió "
|
313 |
-
"Professional actual."
|
314 |
|
315 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
|
316 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6983
|
@@ -378,8 +358,7 @@ msgstr "Finestra d’informació circular"
|
|
378 |
|
379 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
|
380 |
msgid "Currently using your selection chosen in the global settings"
|
381 |
-
msgstr ""
|
382 |
-
"Actualment utilitzant la teva selecció escollida en la configuració global"
|
383 |
|
384 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
|
385 |
msgid "Download this as a CSV file"
|
@@ -391,8 +370,7 @@ msgstr "Descarregar aquesta dada com un fitxer CSV"
|
|
391 |
|
392 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
|
393 |
msgid "Please update your basic version to use this function."
|
394 |
-
msgstr ""
|
395 |
-
"Si us plau, actualitza la teva versió bàsica per utilitzar aquesta funció."
|
396 |
|
397 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
|
398 |
msgid "Add a New Dataset"
|
@@ -494,12 +472,8 @@ msgstr "Alçada"
|
|
494 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1464
|
495 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4830
|
496 |
#, php-format
|
497 |
-
msgid ""
|
498 |
-
"
|
499 |
-
"using % for the height may break your map."
|
500 |
-
msgstr ""
|
501 |
-
"Us recomanem que deixeu la vostra alçada en PX. Depenent del tema, l’ús % f "
|
502 |
-
"pot donar errors."
|
503 |
|
504 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
|
505 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
|
@@ -637,16 +611,11 @@ msgstr "Permet seleccionar categories"
|
|
637 |
|
638 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
|
639 |
msgid "Allow users to use their location as the starting point"
|
640 |
-
msgstr ""
|
641 |
-
"Permet als usuaris utilitzar la seva localització com a punt de partida"
|
642 |
|
643 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
|
644 |
-
msgid ""
|
645 |
-
"
|
646 |
-
"Settings\" tab."
|
647 |
-
msgstr ""
|
648 |
-
"Assegureu-vos que l’opció “Mostra l’ubicació de l’usuari” estigui habilitada "
|
649 |
-
"a la pestanya “Configuració avançada”."
|
650 |
|
651 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
|
652 |
msgid "Show center point as an icon"
|
@@ -724,10 +693,8 @@ msgid "Upload Image"
|
|
724 |
msgstr "Puja una imatge"
|
725 |
|
726 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
|
727 |
-
msgid ""
|
728 |
-
"
|
729 |
-
msgstr ""
|
730 |
-
"Aconsegueix grans marcadors \"target='_BLANK' title='Great Google Map Markers'>aquí</a>"
|
731 |
|
732 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
|
733 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4851
|
@@ -844,14 +811,8 @@ msgid "Fusion table ID"
|
|
844 |
msgstr "ID de la taula de fusió"
|
845 |
|
846 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
|
847 |
-
msgid ""
|
848 |
-
"
|
849 |
-
"api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
850 |
-
"maps-api.html</a>"
|
851 |
-
msgstr ""
|
852 |
-
"Llegeix les dades de la Taula de Fusió. Per a més informació, comprova \"href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
|
853 |
-
"api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
|
854 |
-
"maps-api.html</a>"
|
855 |
|
856 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1909
|
857 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5874
|
@@ -1083,10 +1044,7 @@ msgstr "Cerca Mapa"
|
|
1083 |
|
1084 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2138
|
1085 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5355
|
1086 |
-
msgid ""
|
1087 |
-
"Tip: Use your mouse to change the layout of your map. When you have "
|
1088 |
-
"positioned the map to your desired location, press \"Save Map\" to keep your "
|
1089 |
-
"settings."
|
1090 |
msgstr "Cerca el títol de la seqüència."
|
1091 |
|
1092 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2148
|
@@ -1248,12 +1206,8 @@ msgstr "Els teus Marcadors"
|
|
1248 |
|
1249 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
|
1250 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
|
1251 |
-
msgid ""
|
1252 |
-
"WP Google Maps
|
1253 |
-
"Nicolas Mollet's Maps Icons Collection"
|
1254 |
-
msgstr ""
|
1255 |
-
"WP Google Maps us anima a utilitzar les sorprenents icones creades per "
|
1256 |
-
"Nicolas Mollet i que trobareu a la col·lecció Maps Icons"
|
1257 |
|
1258 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
|
1259 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
|
@@ -1261,12 +1215,8 @@ msgid "and to credit him when doing so."
|
|
1261 |
msgstr "i acreditar-ho en fer-ho."
|
1262 |
|
1263 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2442
|
1264 |
-
msgid ""
|
1265 |
-
"
|
1266 |
-
"exists."
|
1267 |
-
msgstr ""
|
1268 |
-
"L’ID del mapa que has entrat no és correcta. Si us plau, entrada una ID de "
|
1269 |
-
"mapa que sigui correcta."
|
1270 |
|
1271 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
|
1272 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
|
@@ -1435,13 +1385,8 @@ msgid "WP Google Maps"
|
|
1435 |
msgstr "WP Google Mapes"
|
1436 |
|
1437 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
|
1438 |
-
msgid ""
|
1439 |
-
"
|
1440 |
-
"<strong>Pro</strong> versions of WP Google Maps installed and activated at "
|
1441 |
-
"the same time in order for the plugin to function correctly."
|
1442 |
-
msgstr ""
|
1443 |
-
"Assegureu-vos de tenir <strong>les dues</strong> versions <strong>Basic</strong> i <strong>Pro</strong> del WP Google Maps instal·lades i activades "
|
1444 |
-
"al mateix temps perquè el connector funcioni correctament."
|
1445 |
|
1446 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
|
1447 |
msgid "Download ALL marker data to a CSV file"
|
@@ -1508,22 +1453,16 @@ msgid "Upload Marker CSV File"
|
|
1508 |
msgstr "Penja el fitxer CSV de Marcador"
|
1509 |
|
1510 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5118
|
1511 |
-
msgid ""
|
1512 |
-
"
|
1513 |
-
msgstr ""
|
1514 |
-
"Geocodifica automàticament les adreces a coordenades GPS si no n’hi ha cap"
|
1515 |
|
1516 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
|
1517 |
msgid "Google API Key (Required)"
|
1518 |
msgstr "Clau API de Google (obligatòria)"
|
1519 |
|
1520 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
|
1521 |
-
msgid ""
|
1522 |
-
"
|
1523 |
-
"#Limits'>Geocoding Documentation</a>"
|
1524 |
-
msgstr ""
|
1525 |
-
"Necessitareu una clau de l’API de Geocode de Google Maps perquè funcioni. "
|
1526 |
-
"Comprova la Documentació de Geocoding</a>"
|
1527 |
|
1528 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
|
1529 |
msgid "There is a 0.12second delay between each request"
|
@@ -1565,12 +1504,8 @@ msgstr "Documentació"
|
|
1565 |
|
1566 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5180
|
1567 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6476
|
1568 |
-
msgid ""
|
1569 |
-
"
|
1570 |
-
"way."
|
1571 |
-
msgstr ""
|
1572 |
-
"Ets nou? Llegeix alguns d’aquests articles per ajudar-te en aquesta nova "
|
1573 |
-
"aventura."
|
1574 |
|
1575 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
|
1576 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
|
@@ -1612,14 +1547,8 @@ msgid "Troubleshooting"
|
|
1612 |
msgstr "Solució de problemes"
|
1613 |
|
1614 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5193
|
1615 |
-
msgid ""
|
1616 |
-
"WP Google Maps Pro
|
1617 |
-
"time to time, run into conflicts with the thousands of themes and other "
|
1618 |
-
"plugins on the market."
|
1619 |
-
msgstr ""
|
1620 |
-
"WP Google Maps Pro té una àmplia i àmplia gamma de funcions que de tant en "
|
1621 |
-
"tant poden entrar en conflictes amb els milers de temes i altres connectors "
|
1622 |
-
"del mercat."
|
1623 |
|
1624 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
|
1625 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
|
@@ -1708,13 +1637,8 @@ msgstr "Error de registre a WP Google Maps"
|
|
1708 |
|
1709 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5271
|
1710 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4374
|
1711 |
-
msgid ""
|
1712 |
-
"
|
1713 |
-
"wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
|
1714 |
-
msgstr ""
|
1715 |
-
"Teniu problemes? Comprova els ajustaments a continuació per veure que està "
|
1716 |
-
"mal configurat. Si no trobeu resposta, envieu-nos l’error per correu "
|
1717 |
-
"electrònic a nick@wpgmaps.com i us ajudarem!"
|
1718 |
|
1719 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5284
|
1720 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
|
@@ -1731,12 +1655,8 @@ msgid "Purchase the Visitor Generated Markers Add-on"
|
|
1731 |
msgstr "Compra el complement de marcadors generats per visitants"
|
1732 |
|
1733 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
|
1734 |
-
msgid ""
|
1735 |
-
"
|
1736 |
-
"ensure that you have uploaded activated the plugin."
|
1737 |
-
msgstr ""
|
1738 |
-
"per activar aquesta funcionalitat. <br /><br />Si ja l’heu comprat, si us "
|
1739 |
-
"plau, assegureu-vos que teniu el connector activat."
|
1740 |
|
1741 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
|
1742 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
|
@@ -1745,12 +1665,8 @@ msgstr "Configuració de la llista del marcador"
|
|
1745 |
|
1746 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
|
1747 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
|
1748 |
-
msgid ""
|
1749 |
-
"
|
1750 |
-
"website."
|
1751 |
-
msgstr ""
|
1752 |
-
"Si canvieu aquests paràmetres, canviarà la manera en què apareixerà la "
|
1753 |
-
"llista de marcadors al vostre lloc web."
|
1754 |
|
1755 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
|
1756 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
|
@@ -1937,12 +1853,8 @@ msgstr "Permissos del fitxer:"
|
|
1937 |
|
1938 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
|
1939 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
|
1940 |
-
msgid ""
|
1941 |
-
" -
|
1942 |
-
"folder to 755 or 777, or change the location"
|
1943 |
-
msgstr ""
|
1944 |
-
" - El plugin no té accés d’escriptura a aquesta carpeta. Si us plau, CHMOD "
|
1945 |
-
"aquesta carpeta a 755 o 777, o canvia la ubicació"
|
1946 |
|
1947 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
|
1948 |
msgid "Google Maps API Key (optional)"
|
@@ -1950,22 +1862,13 @@ msgstr "Clau API de Google Maps (opcional)"
|
|
1950 |
|
1951 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
|
1952 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
|
1953 |
-
msgid ""
|
1954 |
-
"
|
1955 |
-
"target='_BLANK'>documentation</a> provides a full guide on how to obtain "
|
1956 |
-
"this. "
|
1957 |
-
msgstr ""
|
1958 |
-
"La clau API es pot obtenir a la Consola de Google Developers</a>. La nostra \"href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
|
1959 |
-
"target='_BLANK'>documentació</a> us pot ensenyar com obtenir-la. "
|
1960 |
|
1961 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
|
1962 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
|
1963 |
-
msgid ""
|
1964 |
-
"
|
1965 |
-
"issues when trying to save the marker XML files."
|
1966 |
-
msgstr ""
|
1967 |
-
"Us suggerim que canvieu els dos camps NOMÉS si teniu problemes quan intenteu "
|
1968 |
-
"desar els fitxers XML del marcador."
|
1969 |
|
1970 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
|
1971 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
|
@@ -2079,22 +1982,13 @@ msgstr "Opcions de Solució de problemes"
|
|
2079 |
|
2080 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
|
2081 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
|
2082 |
-
msgid ""
|
2083 |
-
"
|
2084 |
-
"receiving jQuery related errors after updating to WordPress 4.5)"
|
2085 |
-
msgstr ""
|
2086 |
-
"Substituïu la versió actual de jQuery per la versió 1.11.3 (marqueu aquesta "
|
2087 |
-
"casella si rebeu errors relacionats amb jQuery després d’actualitzar a "
|
2088 |
-
"WordPress 4.5)"
|
2089 |
|
2090 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
|
2091 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
|
2092 |
-
msgid ""
|
2093 |
-
"
|
2094 |
-
"Google Maps API by default)"
|
2095 |
-
msgstr ""
|
2096 |
-
"No carregueu l’API de Google Maps (comproveu-ho només si el vostre tema "
|
2097 |
-
"carrega l’API de Google Maps per defecte)"
|
2098 |
|
2099 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5771
|
2100 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4186
|
@@ -2133,14 +2027,8 @@ msgid "Do not use TimThumb"
|
|
2133 |
msgstr "No utilitzar TimThumb"
|
2134 |
|
2135 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5907
|
2136 |
-
msgid ""
|
2137 |
-
"(Timthumb
|
2138 |
-
"Please check this box and make the necessary changes to your images using "
|
2139 |
-
"the settings below.)"
|
2140 |
-
msgstr ""
|
2141 |
-
"(El suport de Timthumb deixarà de ser efectiu en les properes versions "
|
2142 |
-
"professionals. Si us plau, marca aquesta casella i aplica els canvis "
|
2143 |
-
"necessaris a les teves imatges en els següents ajustaments.)"
|
2144 |
|
2145 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
|
2146 |
msgid "Resize Images"
|
@@ -2163,12 +2051,8 @@ msgid "Default Image Height"
|
|
2163 |
msgstr "Alçada per defecte de la imatge"
|
2164 |
|
2165 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5923
|
2166 |
-
msgid ""
|
2167 |
-
"(
|
2168 |
-
"full size images being used)"
|
2169 |
-
msgstr ""
|
2170 |
-
"(no ho pots deixar en blanc- deixar tan l’amplada con l’alçaa en blanc "
|
2171 |
-
"mostrarà les imatges usades a la resolució més gran)"
|
2172 |
|
2173 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
|
2174 |
msgid "Max InfoWindow Width"
|
@@ -2602,10 +2486,8 @@ msgstr "Marcador de Categoria"
|
|
2602 |
|
2603 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
|
2604 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
|
2605 |
-
msgid ""
|
2606 |
-
"
|
2607 |
-
msgstr ""
|
2608 |
-
"Aconsegueix grans marcadors \"target='_BLANK' title='Great Google Map Markers'>aquí</a>"
|
2609 |
|
2610 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
|
2611 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
|
@@ -2732,8 +2614,7 @@ msgstr "La importació de CSV ha fallat"
|
|
2732 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
|
2733 |
#, php-format
|
2734 |
msgid "Cannot import line %d as the LAT and/or LNG is not defined."
|
2735 |
-
msgstr ""
|
2736 |
-
"No es pot importar la línia %d ja que el LAT i/o LNG no estan definits."
|
2737 |
|
2738 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
|
2739 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
|
@@ -2911,12 +2792,8 @@ msgid "A new marker has been submitted for your map"
|
|
2911 |
msgstr "Un nou marcador ha estat afegit al teu mapa"
|
2912 |
|
2913 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
|
2914 |
-
msgid ""
|
2915 |
-
"
|
2916 |
-
"version 5.50 to allow for these settings"
|
2917 |
-
msgstr ""
|
2918 |
-
"Si us plau <a href='./update-core.php'>actualitzeu</a> la vostra versió del "
|
2919 |
-
"Pro Add-on a la versió 5.50 (com a mínim) per aquests ajustaments"
|
2920 |
|
2921 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
|
2922 |
msgid "Visitor Generated Marker Settings"
|
@@ -2947,11 +2824,8 @@ msgid "Welcome to"
|
|
2947 |
msgstr "Benvingut/da a"
|
2948 |
|
2949 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:24
|
2950 |
-
msgid ""
|
2951 |
-
"
|
2952 |
-
msgstr ""
|
2953 |
-
"Mapes sorprenents. Interfície senzilla. Funcionalitat potent. Suport de "
|
2954 |
-
"classe mundial."
|
2955 |
|
2956 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:26
|
2957 |
msgid "What's new?"
|
@@ -2960,8 +2834,7 @@ msgstr "Què hi ha de nou?"
|
|
2960 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:31
|
2961 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:24
|
2962 |
msgid "Let users search for products, branches and stores near them"
|
2963 |
-
msgstr ""
|
2964 |
-
"Permet que els usuaris busquin productes, sucursals i botigues pròximes"
|
2965 |
|
2966 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:36
|
2967 |
msgid "Create service areas or coverage maps with polygons"
|
@@ -3024,11 +2897,8 @@ msgstr "revisa la nostra documentació"
|
|
3024 |
|
3025 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
|
3026 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
|
3027 |
-
msgid ""
|
3028 |
-
"
|
3029 |
-
"step."
|
3030 |
-
msgstr ""
|
3031 |
-
"abans de començar. Si sou experts en tecnologia, podeu ometre aquest pas."
|
3032 |
|
3033 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:100
|
3034 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:96
|
@@ -3047,9 +2917,7 @@ msgstr "Fòrum de suport"
|
|
3047 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:101
|
3048 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
|
3049 |
msgid "for quick and friendly help. We'll answer your request within 24hours."
|
3050 |
-
msgstr ""
|
3051 |
-
"per obtenir ajuda ràpida i amigable. Contestarem la teva sol·licitud dins de "
|
3052 |
-
"24 hores."
|
3053 |
|
3054 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:104
|
3055 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:100
|
@@ -3091,14 +2959,8 @@ msgstr "Benvingut a WP Google Maps versió 6.3"
|
|
3091 |
|
3092 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
|
3093 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
|
3094 |
-
msgid ""
|
3095 |
-
"
|
3096 |
-
"maps through a simple interface and powerful functionality along with world "
|
3097 |
-
"class support."
|
3098 |
-
msgstr ""
|
3099 |
-
"Gràcies per l’actualització! La versió 6 del WP Google Maps us ajuda a crear "
|
3100 |
-
"mapes increïbles a través d’una interfície senzilla i una potent "
|
3101 |
-
"funcionalitat. Tot amb un un suport de primera."
|
3102 |
|
3103 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
|
3104 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
|
@@ -3159,10 +3021,8 @@ msgid "Create as many markers as you like"
|
|
3159 |
msgstr "Crea tants marcadors com vulguis"
|
3160 |
|
3161 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
|
3162 |
-
msgid ""
|
3163 |
-
"
|
3164 |
-
msgstr ""
|
3165 |
-
"Selecciona un dels diferents \"target='_BLANK'>mapes de temes</a>, o bé crea el teu propi tema."
|
3166 |
|
3167 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
|
3168 |
msgid "Support Desk"
|
@@ -3194,34 +3054,20 @@ msgid "My first map"
|
|
3194 |
msgstr "El meu primer mapa"
|
3195 |
|
3196 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
|
3197 |
-
msgid ""
|
3198 |
-
"<strong>WP Google Maps
|
3199 |
-
"to. Please confirm that <em>"
|
3200 |
-
msgstr ""
|
3201 |
-
"<strong>WP Google Maps no pot trobar el directori que es vol fer servir per "
|
3202 |
-
"desar aquest marcador. Si us plau, confirma que <em>"
|
3203 |
|
3204 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
|
3205 |
-
msgid ""
|
3206 |
-
"</em>
|
3207 |
-
"777) to this directory."
|
3208 |
-
msgstr ""
|
3209 |
-
"</em>existeix. Si us plau, assegura’t que dones els permisos 755 (o 777) als "
|
3210 |
-
"fitxers d’aquest directori."
|
3211 |
|
3212 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:549
|
3213 |
-
msgid ""
|
3214 |
-
"Timthumb
|
3215 |
-
"enable 'write' permissions (755 or 777) for "
|
3216 |
-
msgstr ""
|
3217 |
-
"Timthumb no té permís d’escriptura per al directori de la memòria cau. "
|
3218 |
-
"Activeu els permisos d’”escriptura” (755 o 777) per a "
|
3219 |
|
3220 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
|
3221 |
msgid "in order for images to show up while using Timthumb. Please see "
|
3222 |
-
msgstr ""
|
3223 |
-
"per tal que les imatges es mostrin mentre feu servir Timthumb. Si us plau "
|
3224 |
-
"mira "
|
3225 |
|
3226 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
|
3227 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
|
@@ -3229,12 +3075,8 @@ msgid "this page"
|
|
3229 |
msgstr "aquesta pàgina"
|
3230 |
|
3231 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:555
|
3232 |
-
msgid ""
|
3233 |
-
"
|
3234 |
-
"in Maps->Settings"
|
3235 |
-
msgstr ""
|
3236 |
-
"per obtenir ajuda per fer-ho. També podeu inhabilitar l’ús de Timthumb a "
|
3237 |
-
"Mapes-> Ajustaments"
|
3238 |
|
3239 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
|
3240 |
msgid "DOMDocument is not enabled"
|
@@ -3324,30 +3166,16 @@ msgid "Are you sure you want to delete this marker:"
|
|
3324 |
msgstr "Estàs segur d’eliminar el marcador:"
|
3325 |
|
3326 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3997
|
3327 |
-
msgid ""
|
3328 |
-
"
|
3329 |
-
"plugin. Should you be experiencing issues with your maps displaying, please "
|
3330 |
-
"update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride "
|
3331 |
-
"current jQuery with version 1.11.3'."
|
3332 |
-
msgstr ""
|
3333 |
-
"Hem detectat un conflicte entre la versió del tema actual i el nostre "
|
3334 |
-
"connector. Si teniu problemes amb la visualització dels vostres mapes, "
|
3335 |
-
"actualitzeu Avada a la versió 3.9.4 o marqueu la casella anomenada "
|
3336 |
-
"“Substituir la versió actual de jQuery a la versió 1.11.3”."
|
3337 |
|
3338 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
|
3339 |
msgid "Enable Usage Tracking"
|
3340 |
msgstr "Habilitar el seguiment d’ús"
|
3341 |
|
3342 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
|
3343 |
-
msgid ""
|
3344 |
-
"
|
3345 |
-
"15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
|
3346 |
-
"the administrator's email address)"
|
3347 |
-
msgstr ""
|
3348 |
-
"Permeteu-nos fer un seguiment anònim de l’ús dels vostres mapes i us "
|
3349 |
-
"enviarem un cupó del 15% de Sola Plugins com a mostra del nostre agraïment "
|
3350 |
-
"(el cupó s’enviarà a l’adreça de correu electrònic de l’administrador)"
|
3351 |
|
3352 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4221
|
3353 |
msgid "Marker InfoWindow Settings"
|
@@ -3367,15 +3195,8 @@ msgstr "Ubicació de les dades del marcador"
|
|
3367 |
|
3368 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
|
3369 |
#, php-format
|
3370 |
-
msgid ""
|
3371 |
-
"<h3>
|
3372 |
-
"experiencing issues with the plugin, please <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/' class=\"button button-secondary\">contact us</a> and we will help you as "
|
3373 |
-
"soon as humanly possible!</p>"
|
3374 |
-
msgstr ""
|
3375 |
-
"<h3>Necessitem la teva ajuda!</h3><p>Si t’agrada el nostre plugin, escriu "
|
3376 |
-
"una opinió <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/'>sobre WP Google Maps</a>. Val molt per a nosaltres! Si tens algun "
|
3377 |
-
"problema, si us plau, <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/' class=\"button-secondary\">contacta’ns</a> i t’ajudarem tan aviat com sigui possible!"
|
3378 |
-
"</p>"
|
3379 |
|
3380 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
|
3381 |
msgid "We will not nag you again, promise!"
|
@@ -3401,18 +3222,8 @@ msgstr "Assistent d’instal·lació"
|
|
3401 |
|
3402 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
|
3403 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
|
3404 |
-
msgid ""
|
3405 |
-
"
|
3406 |
-
"plugin. Should you be experiencing issues with your maps displaying, please "
|
3407 |
-
"update Avada to version 3.9.4 or go to enabled.<br /><br />In order for the markers to show up on your map, you "
|
3408 |
-
"need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to the "
|
3409 |
-
"'<strong>rejected files</strong>' list in the CDN settings page</a> of W3 Total Cache"
|
3410 |
-
msgstr ""
|
3411 |
-
"Hem detectat que esteu usant el “W3 Total Cache” i que teniu el CDN "
|
3412 |
-
"habilitat.<br /><br />Si voleu que apareguin els marcadors al vostre mapa, "
|
3413 |
-
"heu d’afegir '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' a la "
|
3414 |
-
"'<strong>llista d’arxius rebutjats</strong>' que trobareu a la pàgina <a href='admin.php?page=w3tc_cdn#advanced'>d’ajustaments del CDN</a> o al caché "
|
3415 |
-
"de W3 Total"
|
3416 |
|
3417 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
|
3418 |
msgid "Pro Upgrade"
|
@@ -3443,28 +3254,16 @@ msgid "Maximum Zoom Level"
|
|
3443 |
msgstr "Nivell de zoom màxim"
|
3444 |
|
3445 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
|
3446 |
-
msgid ""
|
3447 |
-
"
|
3448 |
-
"utm_source=plugin&utm_medium=link&utm_campaignvanced\">$39.99 once off</a>. Support and updates included forever."
|
3449 |
-
msgstr ""
|
3450 |
-
"Aconsegueix la resta de funcions avançades amb la Versió Professional per "
|
3451 |
-
"només <a href=\"utm_source=plugin&utm_medium=link&utm_campaignvanced\">39,99$ (un únic "
|
3452 |
-
"pagament)</a>. Inclou el suport i actualitzacions per sempre."
|
3453 |
|
3454 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
|
3455 |
msgid "Read data directly from your Fusion Table."
|
3456 |
msgstr "Llegiu les dades directament des de la vostra taula de fusió."
|
3457 |
|
3458 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
|
3459 |
-
msgid ""
|
3460 |
-
"
|
3461 |
-
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
|
3462 |
-
"for only $39.99 once off</a>. Support and updates included forever."
|
3463 |
-
msgstr ""
|
3464 |
-
"Permetre llistar els marcadors com el purchase-professional-version/?"
|
3465 |
-
"utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Versió "
|
3466 |
-
"Professional per només 39,99$ (un únic pagament)</a>. Inclou el suport i "
|
3467 |
-
"actualitzacions per sempre."
|
3468 |
|
3469 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5141
|
3470 |
msgid "List Markers"
|
@@ -3496,8 +3295,7 @@ msgstr "Tabular"
|
|
3496 |
|
3497 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
|
3498 |
msgid "Advanced, tabular marker listing functionality with real time filtering"
|
3499 |
-
msgstr ""
|
3500 |
-
"Funcionalitat avançada i llista de marcadors amb filtratge en temps real"
|
3501 |
|
3502 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
|
3503 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5424
|
@@ -3510,9 +3308,7 @@ msgstr "Polígon"
|
|
3510 |
|
3511 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5412
|
3512 |
msgid "Please add the current marker before trying to add another marker"
|
3513 |
-
msgstr ""
|
3514 |
-
"Si us plau, afegeix el marcador actual abans d’intentar afegir un altre "
|
3515 |
-
"marcador"
|
3516 |
|
3517 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
|
3518 |
msgid "Add advanced markers"
|
@@ -3544,15 +3340,8 @@ msgid "The map could not load."
|
|
3544 |
msgstr "El mapa no s’ha pogut carregar."
|
3545 |
|
3546 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
|
3547 |
-
msgid ""
|
3548 |
-
"
|
3549 |
-
"error that is preventing our plugin's Javascript from executing. Please try "
|
3550 |
-
"disable all plugins one by one and see if this problem persists."
|
3551 |
-
msgstr ""
|
3552 |
-
"Normalment això es deu a un conflicte amb un altre connector o amb un error "
|
3553 |
-
"de JavaScript que impedeix l’execució del Javascript del nostre connector. "
|
3554 |
-
"Si us plau, intenteu desactivar tots els connectors un per un i comproveu si "
|
3555 |
-
"el problema persisteix."
|
3556 |
|
3557 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
|
3558 |
msgid "Add detailed information to your markers!"
|
@@ -3581,12 +3370,8 @@ msgid "here"
|
|
3581 |
msgstr "aquí"
|
3582 |
|
3583 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
|
3584 |
-
msgid ""
|
3585 |
-
"
|
3586 |
-
"out!"
|
3587 |
-
msgstr ""
|
3588 |
-
"Afegeix diferents icones per als marcadors, o les teves pròpies icones per a "
|
3589 |
-
"que els teus mapes destaquin!"
|
3590 |
|
3591 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
|
3592 |
msgid "Allow your visitors to get directions to your markers!"
|
@@ -3609,50 +3394,24 @@ msgid "Save Marker Location"
|
|
3609 |
msgstr "Cerca la Localització del Marcador"
|
3610 |
|
3611 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5600
|
3612 |
-
msgid ""
|
3613 |
-
"
|
3614 |
-
"drag it to your desired location."
|
3615 |
-
msgstr ""
|
3616 |
-
"Consell: Utilitzeu el ratolí per canviar la ubicació del marcador. "
|
3617 |
-
"Simplement feu clic i arrossegueu-lo a la ubicació desitjada."
|
3618 |
|
3619 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
|
3620 |
-
msgid ""
|
3621 |
-
"
|
3622 |
-
"error that is preventing our plugin's Javascript from executing. Please try "
|
3623 |
-
"disable all plugins one by one and see if this problem persists. If it "
|
3624 |
-
"persists, please contact nick@wpgmaps.com for support."
|
3625 |
-
msgstr ""
|
3626 |
-
"Normalment això es deu a un conflicte amb un altre connector o amb un error "
|
3627 |
-
"de JavaScript que impedeix l’execució del Javascript del nostre connector. "
|
3628 |
-
"Si us plau, intenteu desactivar tots els connectors un per un i comproveu si "
|
3629 |
-
"el problema persisteix. Si persisteix, poseu-vos en contacte amb "
|
3630 |
-
"nick@wpgmaps.com per obtenir ajuda."
|
3631 |
|
3632 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5778
|
3633 |
-
msgid ""
|
3634 |
-
"
|
3635 |
-
"maximum amount for this functionality is 5000 markers. Anything more than "
|
3636 |
-
"that could crash your browser. In order to edit your markers, you would need "
|
3637 |
-
"to download the table in CSV format, edit it and re-upload it."
|
3638 |
-
msgstr ""
|
3639 |
-
"Hi ha massa marcadors per fer ús de la funció d’edició en directe. La "
|
3640 |
-
"quantitat màxima d’aquesta funcionalitat és de 5.000 marcadors. Qualsevol "
|
3641 |
-
"xifra més gran podria bloquejar el vostre navegador. Per editar els vostres "
|
3642 |
-
"marcadors, haureu de descarregar la taula en format CSV, editar-la i tornar-"
|
3643 |
-
"la a carregar."
|
3644 |
|
3645 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5844
|
3646 |
msgid "Edit this marker location"
|
3647 |
msgstr "Editar aquesta ubicació del marcador"
|
3648 |
|
3649 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6023
|
3650 |
-
msgid ""
|
3651 |
-
"
|
3652 |
-
"'write' permissions (755) for "
|
3653 |
-
msgstr ""
|
3654 |
-
"El directori del plugin no té permisos d’escriptura. Activeu els permisos "
|
3655 |
-
"d’”escriptura” (755) per a "
|
3656 |
|
3657 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
|
3658 |
msgid "in order for this plugin to work! Please see "
|
@@ -3663,31 +3422,16 @@ msgid "for help on how to do it."
|
|
3663 |
msgstr "per obtenir ajuda sobre vom fer-ho."
|
3664 |
|
3665 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
|
3666 |
-
msgid ""
|
3667 |
-
"WP Google Maps
|
3668 |
-
"directory. This is required to store marker data. Please CHMOD the folder "
|
3669 |
-
msgstr ""
|
3670 |
-
"WP Google Maps no té permís d’escriptura al directori de localització del "
|
3671 |
-
"marcador. Això és necessari per emmagatzemar les dades dels marcadors. Si us "
|
3672 |
-
"plau, CHMOD la carpeta "
|
3673 |
|
3674 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
|
3675 |
-
msgid ""
|
3676 |
-
"
|
3677 |
-
"file permissions are "
|
3678 |
-
msgstr ""
|
3679 |
-
" a 755 o 777, o canvia la ubicació del directori a Maps->Ajustaments (Els "
|
3680 |
-
"permissos actuals són "
|
3681 |
|
3682 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6488
|
3683 |
-
msgid ""
|
3684 |
-
"WP Google Maps
|
3685 |
-
"to time, run into conflicts with the thousands of themes and other plugins "
|
3686 |
-
"on the market."
|
3687 |
-
msgstr ""
|
3688 |
-
"WP Google Maps té una àmplia i àmplia gamma de funcions que, de tant en "
|
3689 |
-
"tant, poden tenir conflictes amb els milers de temes i altres connectors del "
|
3690 |
-
"mercat."
|
3691 |
|
3692 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
|
3693 |
msgid "Support forum"
|
@@ -3714,12 +3458,8 @@ msgid "You can read more about that here."
|
|
3714 |
msgstr "Pots llegir més informació aquí."
|
3715 |
|
3716 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
|
3717 |
-
msgid ""
|
3718 |
-
"
|
3719 |
-
"to function."
|
3720 |
-
msgstr ""
|
3721 |
-
"Abans de començar, tingueu en compte que *TOT* Google Maps requereix ara "
|
3722 |
-
"d’una clau API per funcionar."
|
3723 |
|
3724 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
|
3725 |
msgid "Create an API key now (free)"
|
@@ -3727,8 +3467,7 @@ msgstr "Crear una clau API ara (gratuït)"
|
|
3727 |
|
3728 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
|
3729 |
msgid "Once created, simply paste your API key here and press save."
|
3730 |
-
msgstr ""
|
3731 |
-
"Una vegada creat, simplement enganxa la teva clau d’API aquí i prem Guardar."
|
3732 |
|
3733 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
|
3734 |
#, php-format
|
@@ -3741,6 +3480,5 @@ msgstr "Clau API de JavaScript de Google Maps: "
|
|
3741 |
|
3742 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
|
3743 |
msgid "Once saved, it may take up to 5 minutes for your map to display."
|
3744 |
-
msgstr ""
|
3745 |
-
|
3746 |
-
"mostrar-se."
|
1 |
+
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: wpgooglemaps catala\n"
|
4 |
"POT-Creation-Date: 2016-07-18 13:38+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-03-02 12:21+0200\n"
|
6 |
"Last-Translator: \n"
|
7 |
"Language-Team: Gemma Salom - Cristina Besa - www.tribupermames.cat\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 |
"Language: ca_ES\n"
|
29 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
|
30 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:765
|
31 |
#, php-format
|
32 |
+
msgid "Your Google Maps API key has been successfully saved. This API key can be changed in the %s page"
|
33 |
+
msgstr "La vostra clau de l’API de Google Maps s’ha desat correctament. Aquesta clau de l’API es pot canviar a la pàgina % s"
|
|
|
|
|
|
|
|
|
34 |
|
35 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
|
36 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
|
139 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
|
140 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
|
141 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
|
142 |
+
msgid "An Unexpected HTTP Error occurred during the API request.</p> <p>\"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
|
143 |
+
msgstr "Ha aparegut un error desconegut durant la petició d’API.</p> <p>\"\" onclick=\"document.location.reload(); return false;\">Torna-ho a provar\"</a>"
|
|
|
|
|
144 |
|
145 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
|
146 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
|
228 |
msgstr "Seguiment d’ubicacions en temps real"
|
229 |
|
230 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
|
231 |
+
msgid "Track your location via our app and plot your current location on a map, publicly or privately."
|
232 |
+
msgstr "Feu un seguiment de la vostra ubicació a través de la nostra aplicació i traceu la vostra ubicació actual en un mapa, públicament o privat."
|
|
|
|
|
|
|
|
|
233 |
|
234 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
|
235 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
|
257 |
|
258 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
|
259 |
msgid "A new device needs your approval to enable real time location tracking."
|
260 |
+
msgstr "Un nou dispositiu necessita la vostra aprovació per habilitar el seguiment d’ubicació en temps real."
|
|
|
|
|
261 |
|
262 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
|
263 |
msgid "Device ID:"
|
270 |
|
271 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
|
272 |
msgid "To reject the device, simply ignore this email."
|
273 |
+
msgstr "Per rebutjar el dispositiu, simplement ignoreu aquest correu electrònic."
|
|
|
274 |
|
275 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
|
276 |
+
msgid "A new device needs your approval to enable real time location tracking - WP Google Maps"
|
277 |
+
msgstr "Un nou dispositiu necessita la vostra aprovació per habilitar el seguiment d’ubicació en temps real - WP Google Maps"
|
|
|
|
|
|
|
|
|
278 |
|
279 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
|
280 |
msgid "No devices"
|
289 |
msgstr "inclòs el complement professional"
|
290 |
|
291 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
|
292 |
+
msgid "Please <a href='update-core.php'>update your WP Google Maps GOLD version\"</a>. Your current Gold version is not compatible with the current Pro version."
|
293 |
+
msgstr "Si us plau <a href='update-core.php'>actualitza la versió del teu WP Google Maps GOLD</a>. La versió actual de Gold no és compatible amb la versió Professional actual."
|
|
|
|
|
|
|
|
|
294 |
|
295 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
|
296 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6983
|
358 |
|
359 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
|
360 |
msgid "Currently using your selection chosen in the global settings"
|
361 |
+
msgstr "Actualment utilitzant la teva selecció escollida en la configuració global"
|
|
|
362 |
|
363 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
|
364 |
msgid "Download this as a CSV file"
|
370 |
|
371 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
|
372 |
msgid "Please update your basic version to use this function."
|
373 |
+
msgstr "Si us plau, actualitza la teva versió bàsica per utilitzar aquesta funció."
|
|
|
374 |
|
375 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
|
376 |
msgid "Add a New Dataset"
|
472 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1464
|
473 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4830
|
474 |
#, php-format
|
475 |
+
msgid "We recommend that you leave your height in PX. Depending on your theme, using % for the height may break your map."
|
476 |
+
msgstr "Us recomanem que deixeu la vostra alçada en PX. Depenent del tema, l’ús % f pot donar errors."
|
|
|
|
|
|
|
|
|
477 |
|
478 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
|
479 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
|
611 |
|
612 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
|
613 |
msgid "Allow users to use their location as the starting point"
|
614 |
+
msgstr "Permet als usuaris utilitzar la seva localització com a punt de partida"
|
|
|
615 |
|
616 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
|
617 |
+
msgid "Please ensure that \"show user's location\" is enabled in the \"Advanced Settings\" tab."
|
618 |
+
msgstr "Assegureu-vos que l’opció “Mostra l’ubicació de l’usuari” estigui habilitada a la pestanya “Configuració avançada”."
|
|
|
|
|
|
|
|
|
619 |
|
620 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
|
621 |
msgid "Show center point as an icon"
|
693 |
msgstr "Puja una imatge"
|
694 |
|
695 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
|
696 |
+
msgid "Get great map markers \"target='_BLANK' title='Great Google Map Markers'>here</a>"
|
697 |
+
msgstr "Aconsegueix grans marcadors \"target='_BLANK' title='Great Google Map Markers'>aquí</a>"
|
|
|
|
|
698 |
|
699 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
|
700 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4851
|
811 |
msgstr "ID de la taula de fusió"
|
812 |
|
813 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
|
814 |
+
msgid "Read data directly from your Fusion Table. For more information, see \"href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-api.html</a>"
|
815 |
+
msgstr "Llegeix les dades de la Taula de Fusió. Per a més informació, comprova \"href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-api.html</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
816 |
|
817 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1909
|
818 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5874
|
1044 |
|
1045 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2138
|
1046 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5355
|
1047 |
+
msgid "Tip: Use your mouse to change the layout of your map. When you have positioned the map to your desired location, press \"Save Map\" to keep your settings."
|
|
|
|
|
|
|
1048 |
msgstr "Cerca el títol de la seqüència."
|
1049 |
|
1050 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2148
|
1206 |
|
1207 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
|
1208 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
|
1209 |
+
msgid "WP Google Maps encourages you to make use of the amazing icons created by Nicolas Mollet's Maps Icons Collection"
|
1210 |
+
msgstr "WP Google Maps us anima a utilitzar les sorprenents icones creades per Nicolas Mollet i que trobareu a la col·lecció Maps Icons"
|
|
|
|
|
|
|
|
|
1211 |
|
1212 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
|
1213 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
|
1215 |
msgstr "i acreditar-ho en fer-ho."
|
1216 |
|
1217 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2442
|
1218 |
+
msgid "The map ID you have entered does not exist. Please enter a map ID that exists."
|
1219 |
+
msgstr "L’ID del mapa que has entrat no és correcta. Si us plau, entrada una ID de mapa que sigui correcta."
|
|
|
|
|
|
|
|
|
1220 |
|
1221 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
|
1222 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
|
1385 |
msgstr "WP Google Mapes"
|
1386 |
|
1387 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
|
1388 |
+
msgid "Please ensure you have <strong>both</strong> the <strong>Basic</strong> and <strong>Pro</strong> versions of WP Google Maps installed and activated at the same time in order for the plugin to function correctly."
|
1389 |
+
msgstr "Assegureu-vos de tenir <strong>les dues</strong> versions <strong>Basic</strong> i <strong>Pro</strong> del WP Google Maps instal·lades i activades al mateix temps perquè el connector funcioni correctament."
|
|
|
|
|
|
|
|
|
|
|
1390 |
|
1391 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
|
1392 |
msgid "Download ALL marker data to a CSV file"
|
1453 |
msgstr "Penja el fitxer CSV de Marcador"
|
1454 |
|
1455 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5118
|
1456 |
+
msgid "Automatically geocode addresses to GPS co-ordinates if none are supplied"
|
1457 |
+
msgstr "Geocodifica automàticament les adreces a coordenades GPS si no n’hi ha cap"
|
|
|
|
|
1458 |
|
1459 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
|
1460 |
msgid "Google API Key (Required)"
|
1461 |
msgstr "Clau API de Google (obligatòria)"
|
1462 |
|
1463 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
|
1464 |
+
msgid "You will need a Google Maps Geocode API key for this to work. See \"href='https://developers.google.com/maps/documentation/geocoding/#Limits'>Geocoding Documentation</a>"
|
1465 |
+
msgstr "Necessitareu una clau de l’API de Geocode de Google Maps perquè funcioni. Comprova la Documentació de Geocoding</a>"
|
|
|
|
|
|
|
|
|
1466 |
|
1467 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
|
1468 |
msgid "There is a 0.12second delay between each request"
|
1504 |
|
1505 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5180
|
1506 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6476
|
1507 |
+
msgid "Getting started? Read through some of these articles to help you along your way."
|
1508 |
+
msgstr "Ets nou? Llegeix alguns d’aquests articles per ajudar-te en aquesta nova aventura."
|
|
|
|
|
|
|
|
|
1509 |
|
1510 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
|
1511 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
|
1547 |
msgstr "Solució de problemes"
|
1548 |
|
1549 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5193
|
1550 |
+
msgid "WP Google Maps Pro has a diverse and wide range of features which may, from time to time, run into conflicts with the thousands of themes and other plugins on the market."
|
1551 |
+
msgstr "WP Google Maps Pro té una àmplia i àmplia gamma de funcions que de tant en tant poden entrar en conflictes amb els milers de temes i altres connectors del mercat."
|
|
|
|
|
|
|
|
|
|
|
|
|
1552 |
|
1553 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
|
1554 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
|
1637 |
|
1638 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5271
|
1639 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4374
|
1640 |
+
msgid "Having issues? Perhaps something below can give you a clue as to what's wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
|
1641 |
+
msgstr "Teniu problemes? Comprova els ajustaments a continuació per veure que està mal configurat. Si no trobeu resposta, envieu-nos l’error per correu electrònic a nick@wpgmaps.com i us ajudarem!"
|
|
|
|
|
|
|
|
|
|
|
1642 |
|
1643 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5284
|
1644 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
|
1655 |
msgstr "Compra el complement de marcadors generats per visitants"
|
1656 |
|
1657 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
|
1658 |
+
msgid "to enable this feature. <br /><br />If you have already purchased it please ensure that you have uploaded activated the plugin."
|
1659 |
+
msgstr "per activar aquesta funcionalitat. <br /><br />Si ja l’heu comprat, si us plau, assegureu-vos que teniu el connector activat."
|
|
|
|
|
|
|
|
|
1660 |
|
1661 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
|
1662 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
|
1665 |
|
1666 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
|
1667 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
|
1668 |
+
msgid "Changing these settings will alter the way the marker list appears on your website."
|
1669 |
+
msgstr "Si canvieu aquests paràmetres, canviarà la manera en què apareixerà la llista de marcadors al vostre lloc web."
|
|
|
|
|
|
|
|
|
1670 |
|
1671 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
|
1672 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
|
1853 |
|
1854 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
|
1855 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
|
1856 |
+
msgid " - The plugin does not have write access to this folder. Please CHMOD this folder to 755 or 777, or change the location"
|
1857 |
+
msgstr " - El plugin no té accés d’escriptura a aquesta carpeta. Si us plau, CHMOD aquesta carpeta a 755 o 777, o canvia la ubicació"
|
|
|
|
|
|
|
|
|
1858 |
|
1859 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
|
1860 |
msgid "Google Maps API Key (optional)"
|
1862 |
|
1863 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
|
1864 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
|
1865 |
+
msgid "This API key can be obtained from the Google Developers Console</a>. Our \"href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' target='_BLANK'>documentation</a> provides a full guide on how to obtain this. "
|
1866 |
+
msgstr "La clau API es pot obtenir a la Consola de Google Developers</a>. La nostra \"href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' target='_BLANK'>documentació</a> us pot ensenyar com obtenir-la. "
|
|
|
|
|
|
|
|
|
|
|
1867 |
|
1868 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
|
1869 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
|
1870 |
+
msgid "We suggest that you change the two fields below ONLY if you are experiencing issues when trying to save the marker XML files."
|
1871 |
+
msgstr "Us suggerim que canvieu els dos camps NOMÉS si teniu problemes quan intenteu desar els fitxers XML del marcador."
|
|
|
|
|
|
|
|
|
1872 |
|
1873 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
|
1874 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
|
1982 |
|
1983 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
|
1984 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
|
1985 |
+
msgid "Over-ride current jQuery with version 1.11.3 (Tick this box if you are receiving jQuery related errors after updating to WordPress 4.5)"
|
1986 |
+
msgstr "Substituïu la versió actual de jQuery per la versió 1.11.3 (marqueu aquesta casella si rebeu errors relacionats amb jQuery després d’actualitzar a WordPress 4.5)"
|
|
|
|
|
|
|
|
|
|
|
1987 |
|
1988 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
|
1989 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
|
1990 |
+
msgid "Do not load the Google Maps API (Only check this if your theme loads the Google Maps API by default)"
|
1991 |
+
msgstr "No carregueu l’API de Google Maps (comproveu-ho només si el vostre tema carrega l’API de Google Maps per defecte)"
|
|
|
|
|
|
|
|
|
1992 |
|
1993 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5771
|
1994 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4186
|
2027 |
msgstr "No utilitzar TimThumb"
|
2028 |
|
2029 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5907
|
2030 |
+
msgid "(Timthumb support will be discontinued in the next pro version release. Please check this box and make the necessary changes to your images using the settings below.)"
|
2031 |
+
msgstr "(El suport de Timthumb deixarà de ser efectiu en les properes versions professionals. Si us plau, marca aquesta casella i aplica els canvis necessaris a les teves imatges en els següents ajustaments.)"
|
|
|
|
|
|
|
|
|
|
|
|
|
2032 |
|
2033 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
|
2034 |
msgid "Resize Images"
|
2051 |
msgstr "Alçada per defecte de la imatge"
|
2052 |
|
2053 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5923
|
2054 |
+
msgid "(can be left blank - leaving both the width and height blank will revert to full size images being used)"
|
2055 |
+
msgstr "(no ho pots deixar en blanc- deixar tan l’amplada con l’alçaa en blanc mostrarà les imatges usades a la resolució més gran)"
|
|
|
|
|
|
|
|
|
2056 |
|
2057 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
|
2058 |
msgid "Max InfoWindow Width"
|
2486 |
|
2487 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
|
2488 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
|
2489 |
+
msgid "Get great map markers \"target='_BLANK' title='Great Google Map Markers'>here</a>"
|
2490 |
+
msgstr "Aconsegueix grans marcadors \"target='_BLANK' title='Great Google Map Markers'>aquí</a>"
|
|
|
|
|
2491 |
|
2492 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
|
2493 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
|
2614 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
|
2615 |
#, php-format
|
2616 |
msgid "Cannot import line %d as the LAT and/or LNG is not defined."
|
2617 |
+
msgstr "No es pot importar la línia %d ja que el LAT i/o LNG no estan definits."
|
|
|
2618 |
|
2619 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
|
2620 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
|
2792 |
msgstr "Un nou marcador ha estat afegit al teu mapa"
|
2793 |
|
2794 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
|
2795 |
+
msgid "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least version 5.50 to allow for these settings"
|
2796 |
+
msgstr "Si us plau <a href='./update-core.php'>actualitzeu</a> la vostra versió del Pro Add-on a la versió 5.50 (com a mínim) per aquests ajustaments"
|
|
|
|
|
|
|
|
|
2797 |
|
2798 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
|
2799 |
msgid "Visitor Generated Marker Settings"
|
2824 |
msgstr "Benvingut/da a"
|
2825 |
|
2826 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:24
|
2827 |
+
msgid "Amazing maps. Simple interface. Powerful functionality. World Class Support."
|
2828 |
+
msgstr "Mapes sorprenents. Interfície senzilla. Funcionalitat potent. Suport de classe mundial."
|
|
|
|
|
|
|
2829 |
|
2830 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:26
|
2831 |
msgid "What's new?"
|
2834 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:31
|
2835 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:24
|
2836 |
msgid "Let users search for products, branches and stores near them"
|
2837 |
+
msgstr "Permet que els usuaris busquin productes, sucursals i botigues pròximes"
|
|
|
2838 |
|
2839 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:36
|
2840 |
msgid "Create service areas or coverage maps with polygons"
|
2897 |
|
2898 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
|
2899 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
|
2900 |
+
msgid "before you get started. If you're a tech-savvy individual, you may skip this step."
|
2901 |
+
msgstr "abans de començar. Si sou experts en tecnologia, podeu ometre aquest pas."
|
|
|
|
|
|
|
2902 |
|
2903 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:100
|
2904 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:96
|
2917 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:101
|
2918 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
|
2919 |
msgid "for quick and friendly help. We'll answer your request within 24hours."
|
2920 |
+
msgstr "per obtenir ajuda ràpida i amigable. Contestarem la teva sol·licitud dins de 24 hores."
|
|
|
|
|
2921 |
|
2922 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:104
|
2923 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:100
|
2959 |
|
2960 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
|
2961 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
|
2962 |
+
msgid "Thank you for updating! WP Google Maps version 6 helps you build amazing maps through a simple interface and powerful functionality along with world class support."
|
2963 |
+
msgstr "Gràcies per l’actualització! La versió 6 del WP Google Maps us ajuda a crear mapes increïbles a través d’una interfície senzilla i una potent funcionalitat. Tot amb un un suport de primera."
|
|
|
|
|
|
|
|
|
|
|
|
|
2964 |
|
2965 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
|
2966 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
|
3021 |
msgstr "Crea tants marcadors com vulguis"
|
3022 |
|
3023 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
|
3024 |
+
msgid "Select from various \"target='_BLANK'>map themes</a>, or make your own."
|
3025 |
+
msgstr "Selecciona un dels diferents \"target='_BLANK'>mapes de temes</a>, o bé crea el teu propi tema."
|
|
|
|
|
3026 |
|
3027 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
|
3028 |
msgid "Support Desk"
|
3054 |
msgstr "El meu primer mapa"
|
3055 |
|
3056 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
|
3057 |
+
msgid "<strong>WP Google Maps cannot find the directory it uses to save marker data to. Please confirm that <em>"
|
3058 |
+
msgstr "<strong>WP Google Maps no pot trobar el directori que es vol fer servir per desar aquest marcador. Si us plau, confirma que <em>"
|
|
|
|
|
|
|
|
|
3059 |
|
3060 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
|
3061 |
+
msgid "</em>exists. Please also ensure that you assign file permissions of 755 (or 777) to this directory."
|
3062 |
+
msgstr "</em>existeix. Si us plau, assegura’t que dones els permisos 755 (o 777) als fitxers d’aquest directori."
|
|
|
|
|
|
|
|
|
3063 |
|
3064 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:549
|
3065 |
+
msgid "Timthumb does not have 'write' permission for the cache directory. Please enable 'write' permissions (755 or 777) for "
|
3066 |
+
msgstr "Timthumb no té permís d’escriptura per al directori de la memòria cau. Activeu els permisos d’”escriptura” (755 o 777) per a "
|
|
|
|
|
|
|
|
|
3067 |
|
3068 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
|
3069 |
msgid "in order for images to show up while using Timthumb. Please see "
|
3070 |
+
msgstr "per tal que les imatges es mostrin mentre feu servir Timthumb. Si us plau mira "
|
|
|
|
|
3071 |
|
3072 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
|
3073 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
|
3075 |
msgstr "aquesta pàgina"
|
3076 |
|
3077 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:555
|
3078 |
+
msgid "for help on how to do it. Alternatively, you can disable the use of Timthumb in Maps->Settings"
|
3079 |
+
msgstr "per obtenir ajuda per fer-ho. També podeu inhabilitar l’ús de Timthumb a Mapes-> Ajustaments"
|
|
|
|
|
|
|
|
|
3080 |
|
3081 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
|
3082 |
msgid "DOMDocument is not enabled"
|
3166 |
msgstr "Estàs segur d’eliminar el marcador:"
|
3167 |
|
3168 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3997
|
3169 |
+
msgid "We have detected a conflict between your current theme's version and our plugin. Should you be experiencing issues with your maps displaying, please update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride current jQuery with version 1.11.3'."
|
3170 |
+
msgstr "Hem detectat un conflicte entre la versió del tema actual i el nostre connector. Si teniu problemes amb la visualització dels vostres mapes, actualitzeu Avada a la versió 3.9.4 o marqueu la casella anomenada “Substituir la versió actual de jQuery a la versió 1.11.3”."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3171 |
|
3172 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
|
3173 |
msgid "Enable Usage Tracking"
|
3174 |
msgstr "Habilitar el seguiment d’ús"
|
3175 |
|
3176 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
|
3177 |
+
msgid "Allow us to anonymously track how you use your maps and we will send you a 15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to the administrator's email address)"
|
3178 |
+
msgstr "Permeteu-nos fer un seguiment anònim de l’ús dels vostres mapes i us enviarem un cupó del 15% de Sola Plugins com a mostra del nostre agraïment (el cupó s’enviarà a l’adreça de correu electrònic de l’administrador)"
|
|
|
|
|
|
|
|
|
|
|
|
|
3179 |
|
3180 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4221
|
3181 |
msgid "Marker InfoWindow Settings"
|
3195 |
|
3196 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
|
3197 |
#, php-format
|
3198 |
+
msgid "<h3>We need your love!</h3><p>If you are enjoying our plugin, please <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/'>reviewing WP Google Maps</a>. It would mean the world to us! If you are experiencing issues with the plugin, please <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/' class=\"button button-secondary\">contact us</a> and we will help you as soon as humanly possible!</p>"
|
3199 |
+
msgstr "<h3>Necessitem la teva ajuda!</h3><p>Si t’agrada el nostre plugin, escriu una opinió <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/'>sobre WP Google Maps</a>. Val molt per a nosaltres! Si tens algun problema, si us plau, <a href='https://wordpress.org/support/plugin/wp-google-maps/reviews/' class=\"button-secondary\">contacta’ns</a> i t’ajudarem tan aviat com sigui possible!</p>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3200 |
|
3201 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
|
3202 |
msgid "We will not nag you again, promise!"
|
3222 |
|
3223 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
|
3224 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
|
3225 |
+
msgid "We have detected a conflict between your current theme's version and our plugin. Should you be experiencing issues with your maps displaying, please update Avada to version 3.9.4 or go to enabled.<br /><br />In order for the markers to show up on your map, you need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to the '<strong>rejected files</strong>' list in the CDN settings page</a> of W3 Total Cache"
|
3226 |
+
msgstr "Hem detectat que esteu usant el “W3 Total Cache” i que teniu el CDN habilitat.<br /><br />Si voleu que apareguin els marcadors al vostre mapa, heu d’afegir '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' a la '<strong>llista d’arxius rebutjats</strong>' que trobareu a la pàgina <a href='admin.php?page=w3tc_cdn#advanced'>d’ajustaments del CDN</a> o al caché de W3 Total"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3227 |
|
3228 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
|
3229 |
msgid "Pro Upgrade"
|
3254 |
msgstr "Nivell de zoom màxim"
|
3255 |
|
3256 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
|
3257 |
+
msgid "Get the rest of these advanced features with the Pro version for only <a href=\"http://www.wpgmaps.com/purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaignvanced\">$39.99 once off</a>. Support and updates included forever."
|
3258 |
+
msgstr "Aconsegueix la resta de funcions avançades amb la Versió Professional per només <a href=\"utm_source=plugin&utm_medium=link&utm_campaignvanced\">39,99$ (un únic pagament)</a>. Inclou el suport i actualitzacions per sempre."
|
|
|
|
|
|
|
|
|
|
|
3259 |
|
3260 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
|
3261 |
msgid "Read data directly from your Fusion Table."
|
3262 |
msgstr "Llegiu les dades directament des de la vostra taula de fusió."
|
3263 |
|
3264 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
|
3265 |
+
msgid "Enable Marker Listing with the \"professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version for only $39.99 once off</a>. Support and updates included forever."
|
3266 |
+
msgstr "Permetre llistar els marcadors com el purchase-professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Versió Professional per només 39,99$ (un únic pagament)</a>. Inclou el suport i actualitzacions per sempre."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3267 |
|
3268 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5141
|
3269 |
msgid "List Markers"
|
3295 |
|
3296 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
|
3297 |
msgid "Advanced, tabular marker listing functionality with real time filtering"
|
3298 |
+
msgstr "Funcionalitat avançada i llista de marcadors amb filtratge en temps real"
|
|
|
3299 |
|
3300 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
|
3301 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5424
|
3308 |
|
3309 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5412
|
3310 |
msgid "Please add the current marker before trying to add another marker"
|
3311 |
+
msgstr "Si us plau, afegeix el marcador actual abans d’intentar afegir un altre marcador"
|
|
|
|
|
3312 |
|
3313 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
|
3314 |
msgid "Add advanced markers"
|
3340 |
msgstr "El mapa no s’ha pogut carregar."
|
3341 |
|
3342 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
|
3343 |
+
msgid "This is normally caused by a conflict with another plugin or a JavaScript error that is preventing our plugin's Javascript from executing. Please try disable all plugins one by one and see if this problem persists."
|
3344 |
+
msgstr "Normalment això es deu a un conflicte amb un altre connector o amb un error de JavaScript que impedeix l’execució del Javascript del nostre connector. Si us plau, intenteu desactivar tots els connectors un per un i comproveu si el problema persisteix."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3345 |
|
3346 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
|
3347 |
msgid "Add detailed information to your markers!"
|
3370 |
msgstr "aquí"
|
3371 |
|
3372 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
|
3373 |
+
msgid "Add different marker icons, or your own icons to make your map really stand out!"
|
3374 |
+
msgstr "Afegeix diferents icones per als marcadors, o les teves pròpies icones per a que els teus mapes destaquin!"
|
|
|
|
|
|
|
|
|
3375 |
|
3376 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
|
3377 |
msgid "Allow your visitors to get directions to your markers!"
|
3394 |
msgstr "Cerca la Localització del Marcador"
|
3395 |
|
3396 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5600
|
3397 |
+
msgid "Tip: Use your mouse to change the location of the marker. Simply click and drag it to your desired location."
|
3398 |
+
msgstr "Consell: Utilitzeu el ratolí per canviar la ubicació del marcador. Simplement feu clic i arrossegueu-lo a la ubicació desitjada."
|
|
|
|
|
|
|
|
|
3399 |
|
3400 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
|
3401 |
+
msgid "This is normally caused by a conflict with another plugin or a JavaScript error that is preventing our plugin's Javascript from executing. Please try disable all plugins one by one and see if this problem persists. If it persists, please contact nick@wpgmaps.com for support."
|
3402 |
+
msgstr "Normalment això es deu a un conflicte amb un altre connector o amb un error de JavaScript que impedeix l’execució del Javascript del nostre connector. Si us plau, intenteu desactivar tots els connectors un per un i comproveu si el problema persisteix. Si persisteix, poseu-vos en contacte amb nick@wpgmaps.com per obtenir ajuda."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3403 |
|
3404 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5778
|
3405 |
+
msgid "There are too many markers to make use of the live edit function. The maximum amount for this functionality is 5000 markers. Anything more than that could crash your browser. In order to edit your markers, you would need to download the table in CSV format, edit it and re-upload it."
|
3406 |
+
msgstr "Hi ha massa marcadors per fer ús de la funció d’edició en directe. La quantitat màxima d’aquesta funcionalitat és de 5.000 marcadors. Qualsevol xifra més gran podria bloquejar el vostre navegador. Per editar els vostres marcadors, haureu de descarregar la taula en format CSV, editar-la i tornar-la a carregar."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3407 |
|
3408 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5844
|
3409 |
msgid "Edit this marker location"
|
3410 |
msgstr "Editar aquesta ubicació del marcador"
|
3411 |
|
3412 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6023
|
3413 |
+
msgid "The plugin directory does not have 'write' permissions. Please enable 'write' permissions (755) for "
|
3414 |
+
msgstr "El directori del plugin no té permisos d’escriptura. Activeu els permisos d’”escriptura” (755) per a "
|
|
|
|
|
|
|
|
|
3415 |
|
3416 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
|
3417 |
msgid "in order for this plugin to work! Please see "
|
3422 |
msgstr "per obtenir ajuda sobre vom fer-ho."
|
3423 |
|
3424 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
|
3425 |
+
msgid "WP Google Maps does not have write permission to the marker location directory. This is required to store marker data. Please CHMOD the folder "
|
3426 |
+
msgstr "WP Google Maps no té permís d’escriptura al directori de localització del marcador. Això és necessari per emmagatzemar les dades dels marcadors. Si us plau, CHMOD la carpeta "
|
|
|
|
|
|
|
|
|
|
|
3427 |
|
3428 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
|
3429 |
+
msgid " to 755 or 777, or change the directory in the Maps->Settings page. (Current file permissions are "
|
3430 |
+
msgstr " a 755 o 777, o canvia la ubicació del directori a Maps->Ajustaments (Els permissos actuals són "
|
|
|
|
|
|
|
|
|
3431 |
|
3432 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6488
|
3433 |
+
msgid "WP Google Maps has a diverse and wide range of features which may, from time to time, run into conflicts with the thousands of themes and other plugins on the market."
|
3434 |
+
msgstr "WP Google Maps té una àmplia i àmplia gamma de funcions que, de tant en tant, poden tenir conflictes amb els milers de temes i altres connectors del mercat."
|
|
|
|
|
|
|
|
|
|
|
|
|
3435 |
|
3436 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
|
3437 |
msgid "Support forum"
|
3458 |
msgstr "Pots llegir més informació aquí."
|
3459 |
|
3460 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
|
3461 |
+
msgid "Before you begin please note that *ALL* Google Maps now require an API key to function."
|
3462 |
+
msgstr "Abans de començar, tingueu en compte que *TOT* Google Maps requereix ara d’una clau API per funcionar."
|
|
|
|
|
|
|
|
|
3463 |
|
3464 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
|
3465 |
msgid "Create an API key now (free)"
|
3467 |
|
3468 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
|
3469 |
msgid "Once created, simply paste your API key here and press save."
|
3470 |
+
msgstr "Una vegada creat, simplement enganxa la teva clau d’API aquí i prem Guardar."
|
|
|
3471 |
|
3472 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
|
3473 |
#, php-format
|
3480 |
|
3481 |
#: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
|
3482 |
msgid "Once saved, it may take up to 5 minutes for your map to display."
|
3483 |
+
msgstr "Quan hagis desat, és possible que el teu mapa trigui fins a 5 minuts a mostrar-se."
|
3484 |
+
|
|
languages/wp-google-maps-da_DK.mo
CHANGED
Binary file
|
languages/wp-google-maps-da_DK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Google Maps v6.0.26\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: patrick <patrick_jepsen@hotmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: da_DK\n"
|
@@ -11,27 +11,28 @@ msgstr ""
|
|
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 2.
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Poedit-Basepath:
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
|
19 |
-
"X-Poedit-SearchPath-0:
|
20 |
-
"X-Poedit-SearchPath-1:
|
21 |
-
"X-Poedit-SearchPath-2:
|
|
|
22 |
|
23 |
# @ wp-google-maps
|
24 |
-
#:
|
25 |
#, fuzzy
|
26 |
#| msgid "General Settings"
|
27 |
msgid "Live Tracking Settings"
|
28 |
msgstr "Generelle Indstillinger"
|
29 |
|
30 |
-
#:
|
31 |
msgid "Please use the setting below to control Live Tracking broadcasting."
|
32 |
msgstr ""
|
33 |
|
34 |
-
#:
|
35 |
msgid ""
|
36 |
"Please note this does not affect recording - you can always record your live "
|
37 |
"location and polyline routes, this setting enables visitors to your site to "
|
@@ -39,303 +40,300 @@ msgid ""
|
|
39 |
msgstr ""
|
40 |
|
41 |
# @ wp-google-maps
|
42 |
-
#:
|
43 |
#, fuzzy
|
44 |
#| msgid "Enable pagination"
|
45 |
msgid "Enable Broadcasting"
|
46 |
msgstr "Aktiver paginering"
|
47 |
|
48 |
# @ wp-google-maps
|
49 |
-
#:
|
50 |
-
#:
|
51 |
-
#:
|
52 |
-
#:
|
53 |
-
#:
|
54 |
-
#:
|
55 |
-
#:
|
56 |
-
#:
|
57 |
-
#:
|
58 |
-
#:
|
59 |
-
#:
|
60 |
-
#:
|
61 |
-
#:
|
62 |
-
#:
|
63 |
-
#:
|
64 |
-
#:
|
65 |
-
#:
|
66 |
-
#:
|
67 |
-
#:
|
68 |
-
#:
|
69 |
-
#:
|
70 |
-
#:
|
71 |
-
#:
|
72 |
-
#:
|
73 |
-
#:
|
74 |
-
#:
|
75 |
-
#:
|
76 |
-
#:
|
77 |
-
#:
|
78 |
-
#:
|
79 |
-
#:
|
80 |
-
#: ../wp-google-maps-pro/legacy-core.php:5747
|
81 |
-
#: ../wp-google-maps-pro/legacy-core.php:5792
|
82 |
-
#: ../wp-google-maps-pro/legacy-core.php:8656
|
83 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:325
|
84 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:343
|
85 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:352
|
86 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:361
|
87 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:371
|
88 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:380
|
89 |
msgid "Yes"
|
90 |
msgstr "Ja"
|
91 |
|
92 |
# @ wp-google-maps
|
93 |
-
#:
|
94 |
-
#:
|
95 |
-
#:
|
96 |
-
#:
|
97 |
-
#:
|
98 |
-
#:
|
99 |
-
#:
|
100 |
-
#:
|
101 |
-
#:
|
102 |
-
#:
|
103 |
-
#:
|
104 |
-
#:
|
105 |
-
#:
|
106 |
-
#:
|
107 |
-
#:
|
108 |
-
#:
|
109 |
-
#:
|
110 |
-
#:
|
111 |
-
#:
|
112 |
-
#:
|
113 |
-
#:
|
114 |
-
#:
|
115 |
-
#:
|
116 |
-
#:
|
117 |
-
#:
|
118 |
-
#:
|
119 |
-
#:
|
120 |
-
#:
|
121 |
-
#:
|
122 |
-
#:
|
123 |
-
#:
|
124 |
-
#:
|
125 |
-
#:
|
126 |
-
#:
|
127 |
-
#: ../wp-google-maps-pro/legacy-core.php:8657
|
128 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:326
|
129 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:344
|
130 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:353
|
131 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:362
|
132 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:370
|
133 |
-
#: ../wp-google-maps-ugm/wp-google-maps-ugm.php:379
|
134 |
msgid "No"
|
135 |
msgstr "Nej"
|
136 |
|
137 |
-
#:
|
138 |
msgid "Live Tracking Devices"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#:
|
142 |
msgid ""
|
143 |
"Devices which have attempted to pair with your site will appear here. You "
|
144 |
"must approve devices before they will appear on the map."
|
145 |
msgstr ""
|
146 |
|
147 |
-
#:
|
148 |
#, fuzzy
|
149 |
#| msgid "Device ID:"
|
150 |
msgid "Device ID"
|
151 |
msgstr "Enheds ID:"
|
152 |
|
153 |
# @ wp-google-maps
|
154 |
-
#:
|
155 |
-
#:
|
156 |
-
#:
|
157 |
-
#:
|
158 |
-
#:
|
159 |
-
#:
|
160 |
-
#:
|
161 |
-
#:
|
162 |
-
#:
|
163 |
-
#:
|
164 |
-
#:
|
165 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Name"
|
167 |
msgstr "Navn"
|
168 |
|
169 |
# @ wp-google-maps
|
170 |
-
#:
|
171 |
#, fuzzy
|
172 |
#| msgid "Polylines"
|
173 |
msgid "Draw Polylines"
|
174 |
msgstr "polylinier"
|
175 |
|
176 |
# @ wp-google-maps
|
177 |
-
#:
|
178 |
#, fuzzy
|
179 |
#| msgid "Line Color"
|
180 |
msgid "Line Color and Weight"
|
181 |
msgstr "Linie farve"
|
182 |
|
183 |
-
#:
|
184 |
msgid "Approved"
|
185 |
msgstr ""
|
186 |
|
187 |
# @ wp-google-maps
|
188 |
-
#:
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
#: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:113
|
193 |
-
msgid "New Polyline Distance Threshold (meters)"
|
194 |
-
msgstr ""
|
195 |
-
|
196 |
-
#: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:122
|
197 |
-
msgid "New Polyline Time Threshold (minutes)"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
# @ wp-google-maps
|
201 |
-
#: ../wp-google-maps-gold/html/marker-rating-settings.html.php:5
|
202 |
-
#: ../wp-google-maps-gold/includes/class.marker-rating.php:207
|
203 |
#, fuzzy
|
204 |
#| msgid "Marker Listing"
|
205 |
msgid "Marker Ratings"
|
206 |
msgstr "Markørlister"
|
207 |
|
208 |
-
#:
|
|
|
209 |
msgid "Minimum Rating"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
|
|
213 |
msgid "Maximum Rating"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
|
|
217 |
msgid ""
|
218 |
"Please note that changing these settings will not scale ratings which have "
|
219 |
"already been recorded."
|
220 |
msgstr ""
|
221 |
|
222 |
-
#:
|
|
|
223 |
msgid ""
|
224 |
"We recommend that you do not modify the maximum and minimum settings after "
|
225 |
"you begin accepting ratings."
|
226 |
msgstr ""
|
227 |
|
228 |
# @ wp-google-maps
|
229 |
-
#:
|
|
|
230 |
#, fuzzy
|
231 |
#| msgid "Carousel settings"
|
232 |
msgid "Example range settings:"
|
233 |
msgstr "Karusel indstillinger"
|
234 |
|
235 |
-
#:
|
|
|
236 |
msgid "1 - 5 :- Traditional One to Five Stars"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#:
|
|
|
240 |
msgid "0 - 100 :- Percentage Rating"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#:
|
|
|
244 |
msgid "0 - 1 :- Like / Dislike, or Upvote / Downvote"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#:
|
|
|
248 |
msgid "Rating Step"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#:
|
|
|
252 |
msgid "The \"Stars\" widget style does not currently support \"Step\""
|
253 |
msgstr ""
|
254 |
|
255 |
# @ wp-google-maps
|
256 |
-
#:
|
|
|
257 |
#, fuzzy
|
258 |
msgid "Example step settings:"
|
259 |
msgstr "Gem indstillinger"
|
260 |
|
261 |
-
#:
|
|
|
262 |
msgid "0.01 :- Allow decimal / floating point ratings"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
|
|
266 |
msgid "1 :- Whole number ratings only"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#:
|
|
|
270 |
msgid "5 :- Round to nearest five (eg for percentage ratings)"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
|
|
274 |
msgid "Widget Style"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
msgid "Bar rating gradient colours:"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#:
|
282 |
msgid "Start -"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
286 |
msgid "End -"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#:
|
290 |
msgid "Background color:"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
|
|
294 |
msgid "Tampering Countermeasures"
|
295 |
msgstr ""
|
296 |
|
297 |
# @ wp-google-maps
|
298 |
-
#:
|
|
|
299 |
#, fuzzy
|
300 |
#| msgid "Basic list"
|
301 |
msgid "Basic Only"
|
302 |
msgstr "Basis liste"
|
303 |
|
304 |
-
#:
|
|
|
305 |
msgid ""
|
306 |
"Uses basic client side countermeasures. This is easily circumvented by "
|
307 |
"anyone with technical knowledge, and is vulnerable to bots."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#:
|
311 |
-
#:
|
|
|
312 |
msgid ""
|
313 |
"This method is not reliable for preventing tampering, and is not recommended "
|
314 |
"for use cases where reliability is imperative."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#:
|
318 |
-
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: ../wp-google-maps-gold/html/marker-rating-settings.html.php:200
|
322 |
-
msgid ""
|
323 |
-
"Uses anti-spam countermeasures and basic server side countermeasures. This "
|
324 |
-
"can be circumvented with human interaction, but is significantly less "
|
325 |
-
"vulnerable to bots."
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: ../wp-google-maps-gold/html/marker-rating-settings.html.php:215
|
329 |
msgid "Require Account"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#:
|
|
|
333 |
msgid ""
|
334 |
"This method uses the same countermeasures as Basic Only, however it does "
|
335 |
"require that in order to leave a rating, the user must be logged in."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#:
|
|
|
339 |
msgid ""
|
340 |
"This method requires login and associates ratings with a users account. You "
|
341 |
"can compliment this by using security methods (eg 3rd party plugins) to "
|
@@ -343,14 +341,14 @@ msgid ""
|
|
343 |
msgstr ""
|
344 |
|
345 |
# @ wp-google-maps
|
346 |
-
#:
|
347 |
-
#:
|
348 |
#, fuzzy
|
349 |
#| msgid "Visitor Marker Input Settings"
|
350 |
msgid "Near-Vicinity Marker Control Settings"
|
351 |
msgstr "Besøgende Markør Input Indstillinger"
|
352 |
|
353 |
-
#:
|
354 |
msgid ""
|
355 |
"This feature will group nearby or overlapping markers together using a "
|
356 |
"placeholder marker. When the placeholder marker is clicked, the group will "
|
@@ -359,287 +357,154 @@ msgid ""
|
|
359 |
"view data from all the markers."
|
360 |
msgstr ""
|
361 |
|
362 |
-
#:
|
363 |
-
#:
|
364 |
msgid "Enable Near-Vicinity Marker Control"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#:
|
368 |
-
#:
|
369 |
msgid "Near-Vicinity Affected Radius"
|
370 |
msgstr ""
|
371 |
|
372 |
# @ wp-google-maps
|
373 |
-
#:
|
374 |
#, fuzzy
|
375 |
#| msgid "Kilometers"
|
376 |
msgid "Meters"
|
377 |
msgstr "Kilometer"
|
378 |
|
379 |
-
#:
|
380 |
msgid "Markers within this threshold of one another will be grouped together"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
msgid "Use Legacy Near-Vicinity Module"
|
385 |
msgstr ""
|
386 |
|
387 |
# @ wp-google-maps
|
388 |
-
#:
|
389 |
#, fuzzy
|
390 |
#| msgid "Category Marker"
|
391 |
msgid "Placeholder Marker"
|
392 |
msgstr "Kategori Markør"
|
393 |
|
394 |
-
#:
|
395 |
-
#:
|
396 |
-
#:
|
397 |
msgid "Near-Vicinity Shape"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#:
|
401 |
-
#:
|
402 |
-
#:
|
403 |
msgid "Circle"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#:
|
407 |
-
#:
|
408 |
-
#:
|
409 |
msgid "Spiral"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#:
|
413 |
msgid "Hexagon"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#:
|
417 |
msgid "Line"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#:
|
421 |
-
#:
|
422 |
-
#: ../wp-google-maps-pro/legacy-core.php:2198
|
423 |
-
#: ../wp-google-maps-pro/legacy-core.php:2242
|
424 |
msgid "Grid"
|
425 |
msgstr ""
|
426 |
|
427 |
# @ wp-google-maps
|
428 |
-
#:
|
429 |
#, fuzzy
|
430 |
#| msgid "Animation"
|
431 |
msgid "Animate Separation"
|
432 |
msgstr "animation"
|
433 |
|
434 |
# @ wp-google-maps
|
435 |
-
#:
|
436 |
#, fuzzy
|
437 |
#| msgid "Animation"
|
438 |
msgid "Animation Duration"
|
439 |
msgstr "animation"
|
440 |
|
441 |
-
#:
|
442 |
-
#:
|
443 |
msgid "Seconds"
|
444 |
msgstr ""
|
445 |
|
446 |
# @ wp-google-maps
|
447 |
-
#:
|
448 |
-
#, fuzzy
|
449 |
-
#| msgid "Animation"
|
450 |
-
msgid "Animation Easing"
|
451 |
-
msgstr "animation"
|
452 |
-
|
453 |
-
# @ wp-google-maps
|
454 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:174
|
455 |
-
#, fuzzy
|
456 |
-
#| msgid "Line color"
|
457 |
-
msgid "Linear"
|
458 |
-
msgstr "Linje farve"
|
459 |
-
|
460 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:175
|
461 |
-
msgid "Sine In"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
# @ wp-google-maps
|
465 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:176
|
466 |
-
#, fuzzy
|
467 |
-
#| msgid "Line Opacity"
|
468 |
-
msgid "Sine Out"
|
469 |
-
msgstr "Linie tykkelse"
|
470 |
-
|
471 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:177
|
472 |
-
msgid "Sine In & Out"
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:178
|
476 |
-
msgid "Quad In"
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:179
|
480 |
-
msgid "Quad Out"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:180
|
484 |
-
msgid "Quad In & Out"
|
485 |
-
msgstr ""
|
486 |
-
|
487 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:181
|
488 |
-
msgid "Cubic In"
|
489 |
-
msgstr ""
|
490 |
-
|
491 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:182
|
492 |
-
msgid "Cubic Out"
|
493 |
-
msgstr ""
|
494 |
-
|
495 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:183
|
496 |
-
msgid "Cubic In & Out"
|
497 |
-
msgstr ""
|
498 |
-
|
499 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:184
|
500 |
-
msgid "Quartic In"
|
501 |
-
msgstr ""
|
502 |
-
|
503 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:185
|
504 |
-
msgid "Quartic Out"
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:186
|
508 |
-
msgid "Quartic In & Out"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:187
|
512 |
-
msgid "Quintic In"
|
513 |
-
msgstr ""
|
514 |
-
|
515 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:188
|
516 |
-
msgid "Quintic Out"
|
517 |
-
msgstr ""
|
518 |
-
|
519 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:189
|
520 |
-
msgid "Quintic In & Out"
|
521 |
-
msgstr ""
|
522 |
-
|
523 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:190
|
524 |
-
msgid "Exponential In"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:191
|
528 |
-
msgid "Exponential Out"
|
529 |
-
msgstr ""
|
530 |
-
|
531 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:192
|
532 |
-
msgid "Exponential In & Out"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
# @ wp-google-maps
|
536 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:193
|
537 |
-
#, fuzzy
|
538 |
-
#| msgid "Circular Infowindow"
|
539 |
-
msgid "Circular In"
|
540 |
-
msgstr "Cirkulær info vindue "
|
541 |
-
|
542 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:194
|
543 |
-
msgid "Circular Out"
|
544 |
-
msgstr ""
|
545 |
-
|
546 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:195
|
547 |
-
msgid "Circular In & Out"
|
548 |
-
msgstr ""
|
549 |
-
|
550 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:196
|
551 |
-
msgid "Back In"
|
552 |
-
msgstr ""
|
553 |
-
|
554 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:197
|
555 |
-
msgid "Back Out"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:198
|
559 |
-
msgid "Back In & Out"
|
560 |
-
msgstr ""
|
561 |
-
|
562 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:199
|
563 |
-
msgid "Elastic In"
|
564 |
-
msgstr ""
|
565 |
-
|
566 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:200
|
567 |
-
msgid "Elastic Out"
|
568 |
-
msgstr ""
|
569 |
-
|
570 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:201
|
571 |
-
msgid "Elastic In & Out"
|
572 |
-
msgstr ""
|
573 |
-
|
574 |
-
# @ wp-google-maps
|
575 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:202
|
576 |
-
#, fuzzy
|
577 |
-
#| msgid "Bounce"
|
578 |
-
msgid "Bounce In"
|
579 |
-
msgstr "Hop"
|
580 |
-
|
581 |
-
# @ wp-google-maps
|
582 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:203
|
583 |
-
#, fuzzy
|
584 |
-
#| msgid "Bounce"
|
585 |
-
msgid "Bounce Out"
|
586 |
-
msgstr "Hop"
|
587 |
-
|
588 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:204
|
589 |
-
msgid "Bounce In & Out"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
# @ wp-google-maps
|
593 |
-
#: ../wp-google-maps-gold/html/marker-separator-settings.html.php:212
|
594 |
#, fuzzy
|
595 |
#| msgid "Animation"
|
596 |
msgid "Stagger Animation"
|
597 |
msgstr "animation"
|
598 |
|
599 |
-
#:
|
600 |
msgid "Stagger Interval"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#:
|
604 |
-
#:
|
605 |
msgid "Near-Vicinity Hide Lines"
|
606 |
msgstr ""
|
607 |
|
608 |
# @ wp-google-maps
|
609 |
-
#:
|
610 |
-
#:
|
611 |
#, fuzzy
|
612 |
#| msgid "On Hover Line Color"
|
613 |
msgid "Near-Vicinity Line Color"
|
614 |
msgstr "linie farve ved hover"
|
615 |
|
616 |
# @ wp-google-maps
|
617 |
-
#:
|
618 |
-
#:
|
619 |
#, fuzzy
|
620 |
#| msgid "Line Opacity"
|
621 |
msgid "Near-Vicinity Line Opacity"
|
622 |
msgstr "Linie tykkelse"
|
623 |
|
624 |
-
#:
|
625 |
-
#:
|
626 |
msgid "Value between 0.1 and 1.0"
|
627 |
msgstr ""
|
628 |
|
629 |
# @ wp-google-maps
|
630 |
-
#:
|
631 |
-
#:
|
632 |
#, fuzzy
|
633 |
#| msgid "Line Thickness"
|
634 |
msgid "Near-Vicinity Line Thinkness"
|
635 |
msgstr "linie tykkelse"
|
636 |
|
637 |
-
#:
|
638 |
-
#:
|
639 |
msgid "Value between 1 and 50"
|
640 |
msgstr ""
|
641 |
|
642 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
643 |
msgid ""
|
644 |
"<strong>WP Google Maps Gold add-on:</strong> We did not detect a compatible "
|
645 |
"version of WP Google Maps running on this installation. Please ensure you "
|
@@ -647,7 +512,7 @@ msgid ""
|
|
647 |
"add-on."
|
648 |
msgstr ""
|
649 |
|
650 |
-
#:
|
651 |
msgid ""
|
652 |
"<strong>WP Google Maps - Gold add-on:</strong> This plugin requires WP "
|
653 |
"Google Maps - Pro add-on. We did not detect the Pro add-on running on this "
|
@@ -655,38 +520,36 @@ msgid ""
|
|
655 |
"in order to use the Gold add-on."
|
656 |
msgstr ""
|
657 |
|
658 |
-
#:
|
659 |
msgid "Location Tracking"
|
660 |
msgstr "Placering Sporing"
|
661 |
|
662 |
# @ wp-google-maps
|
663 |
-
#:
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Google Maps v6.0.26\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2022-03-02 12:33+0200\n"
|
6 |
+
"PO-Revision-Date: 2022-03-02 12:33+0200\n"
|
7 |
"Last-Translator: patrick <patrick_jepsen@hotmail.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: da_DK\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 2.0.4\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Poedit-Basepath: ../..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
|
19 |
+
"X-Poedit-SearchPath-0: wp-google-maps-pro\n"
|
20 |
+
"X-Poedit-SearchPath-1: wp-google-maps-gold\n"
|
21 |
+
"X-Poedit-SearchPath-2: wp-google-maps-ugm\n"
|
22 |
+
"X-Poedit-SearchPath-3: wp-google-maps\n"
|
23 |
|
24 |
# @ wp-google-maps
|
25 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:4
|
26 |
#, fuzzy
|
27 |
#| msgid "General Settings"
|
28 |
msgid "Live Tracking Settings"
|
29 |
msgstr "Generelle Indstillinger"
|
30 |
|
31 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:10
|
32 |
msgid "Please use the setting below to control Live Tracking broadcasting."
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:16
|
36 |
msgid ""
|
37 |
"Please note this does not affect recording - you can always record your live "
|
38 |
"location and polyline routes, this setting enables visitors to your site to "
|
40 |
msgstr ""
|
41 |
|
42 |
# @ wp-google-maps
|
43 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:23
|
44 |
#, fuzzy
|
45 |
#| msgid "Enable pagination"
|
46 |
msgid "Enable Broadcasting"
|
47 |
msgstr "Aktiver paginering"
|
48 |
|
49 |
# @ wp-google-maps
|
50 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:34
|
51 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:27
|
52 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:79
|
53 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:139
|
54 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:181
|
55 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:244
|
56 |
+
#: wp-google-maps-gold/legacy-core.php:1489
|
57 |
+
#: wp-google-maps-gold/legacy-core.php:1747
|
58 |
+
#: wp-google-maps-gold/legacy-core.php:2188
|
59 |
+
#: wp-google-maps-gold/legacy-core.php:2202
|
60 |
+
#: wp-google-maps-gold/legacy-core.php:2442
|
61 |
+
#: wp-google-maps-gold/legacy-core.php:2483
|
62 |
+
#: wp-google-maps-pro/includes/page.categories.php:37
|
63 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:357
|
64 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:375
|
65 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:384
|
66 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:393
|
67 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:403
|
68 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:412
|
69 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1025
|
70 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1099
|
71 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1118
|
72 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1137
|
73 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1156
|
74 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1177
|
75 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1883
|
76 |
+
#: wp-google-maps/html/map-edit-page/marker-panel.html.php:165
|
77 |
+
#: wp-google-maps/html/map-edit-page/marker-panel.html.php:180
|
78 |
+
#: wp-google-maps/includes/class.strings.php:81
|
79 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:1208
|
80 |
+
#: wp-google-maps/legacy-core.php:932
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
msgid "Yes"
|
82 |
msgstr "Ja"
|
83 |
|
84 |
# @ wp-google-maps
|
85 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:35
|
86 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:28
|
87 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:80
|
88 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:140
|
89 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:182
|
90 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:245
|
91 |
+
#: wp-google-maps-gold/legacy-core.php:1490
|
92 |
+
#: wp-google-maps-gold/legacy-core.php:1748
|
93 |
+
#: wp-google-maps-gold/legacy-core.php:2188
|
94 |
+
#: wp-google-maps-gold/legacy-core.php:2202
|
95 |
+
#: wp-google-maps-gold/legacy-core.php:2442
|
96 |
+
#: wp-google-maps-gold/legacy-core.php:2483
|
97 |
+
#: wp-google-maps-pro/html/directions-box-settings.html.php:66
|
98 |
+
#: wp-google-maps-pro/includes/page.categories.php:37
|
99 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:358
|
100 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:376
|
101 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:385
|
102 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:394
|
103 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:402
|
104 |
+
#: wp-google-maps-ugm/wp-google-maps-ugm.php:411
|
105 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:260
|
106 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:270
|
107 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1026
|
108 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1100
|
109 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1119
|
110 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1138
|
111 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1157
|
112 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1178
|
113 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1884
|
114 |
+
#: wp-google-maps/html/map-edit-page/marker-panel.html.php:160
|
115 |
+
#: wp-google-maps/html/map-edit-page/marker-panel.html.php:185
|
116 |
+
#: wp-google-maps/includes/class.strings.php:82
|
117 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:1208
|
118 |
+
#: wp-google-maps/legacy-core.php:932
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
msgid "No"
|
120 |
msgstr "Nej"
|
121 |
|
122 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:42
|
123 |
msgid "Live Tracking Devices"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:50
|
127 |
msgid ""
|
128 |
"Devices which have attempted to pair with your site will appear here. You "
|
129 |
"must approve devices before they will appear on the map."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:59
|
133 |
#, fuzzy
|
134 |
#| msgid "Device ID:"
|
135 |
msgid "Device ID"
|
136 |
msgstr "Enheds ID:"
|
137 |
|
138 |
# @ wp-google-maps
|
139 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:64
|
140 |
+
#: wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:135
|
141 |
+
#: wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:286
|
142 |
+
#: wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:355
|
143 |
+
#: wp-google-maps/html/map-edit-page/circle-panel.html.php:51
|
144 |
+
#: wp-google-maps/html/map-edit-page/heatmap-panel.html.php:34
|
145 |
+
#: wp-google-maps/html/map-edit-page/polygon-panel.html.php:54
|
146 |
+
#: wp-google-maps/html/map-edit-page/polyline-panel.html.php:54
|
147 |
+
#: wp-google-maps/html/map-edit-page/rectangle-panel.html.php:47
|
148 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:93
|
149 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:180
|
150 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:491
|
151 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:627
|
152 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:725
|
153 |
+
#: wp-google-maps/includes/compat/class.pro-below-8.1-compatibility.php:1007
|
154 |
+
#: wp-google-maps/includes/legacy/functions.circle.php:50
|
155 |
+
#: wp-google-maps/includes/legacy/functions.circle.php:158
|
156 |
+
#: wp-google-maps/includes/legacy/functions.circle.php:291
|
157 |
+
#: wp-google-maps/includes/legacy/functions.rectangle.php:50
|
158 |
+
#: wp-google-maps/includes/legacy/functions.rectangle.php:146
|
159 |
+
#: wp-google-maps/includes/legacy/functions.rectangle.php:260
|
160 |
+
#: wp-google-maps/includes/tables/class.circle-datatable.php:21
|
161 |
+
#: wp-google-maps/includes/tables/class.heatmap-datatable.php:21
|
162 |
+
#: wp-google-maps/includes/tables/class.polygon-datatable.php:21
|
163 |
+
#: wp-google-maps/includes/tables/class.polyline-datatable.php:21
|
164 |
+
#: wp-google-maps/includes/tables/class.rectangle-datatable.php:21
|
165 |
msgid "Name"
|
166 |
msgstr "Navn"
|
167 |
|
168 |
# @ wp-google-maps
|
169 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:69
|
170 |
#, fuzzy
|
171 |
#| msgid "Polylines"
|
172 |
msgid "Draw Polylines"
|
173 |
msgstr "polylinier"
|
174 |
|
175 |
# @ wp-google-maps
|
176 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:74
|
177 |
#, fuzzy
|
178 |
#| msgid "Line Color"
|
179 |
msgid "Line Color and Weight"
|
180 |
msgstr "Linie farve"
|
181 |
|
182 |
+
#: wp-google-maps-gold/html/live-tracking-settings-panel.html.php:79
|
183 |
msgid "Approved"
|
184 |
msgstr ""
|
185 |
|
186 |
# @ wp-google-maps
|
187 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:5
|
188 |
+
#: wp-google-maps-gold/includes/class.marker-rating.php:207
|
189 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
#, fuzzy
|
191 |
#| msgid "Marker Listing"
|
192 |
msgid "Marker Ratings"
|
193 |
msgstr "Markørlister"
|
194 |
|
195 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:12
|
196 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:12
|
197 |
msgid "Minimum Rating"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:21
|
201 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:21
|
202 |
msgid "Maximum Rating"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:30
|
206 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:30
|
207 |
msgid ""
|
208 |
"Please note that changing these settings will not scale ratings which have "
|
209 |
"already been recorded."
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:34
|
213 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:34
|
214 |
msgid ""
|
215 |
"We recommend that you do not modify the maximum and minimum settings after "
|
216 |
"you begin accepting ratings."
|
217 |
msgstr ""
|
218 |
|
219 |
# @ wp-google-maps
|
220 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:41
|
221 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:41
|
222 |
#, fuzzy
|
223 |
#| msgid "Carousel settings"
|
224 |
msgid "Example range settings:"
|
225 |
msgstr "Karusel indstillinger"
|
226 |
|
227 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:46
|
228 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:46
|
229 |
msgid "1 - 5 :- Traditional One to Five Stars"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:51
|
233 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:51
|
234 |
msgid "0 - 100 :- Percentage Rating"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:56
|
238 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:56
|
239 |
msgid "0 - 1 :- Like / Dislike, or Upvote / Downvote"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:71
|
243 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:68
|
244 |
msgid "Rating Step"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:80
|
248 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:77
|
249 |
msgid "The \"Stars\" widget style does not currently support \"Step\""
|
250 |
msgstr ""
|
251 |
|
252 |
# @ wp-google-maps
|
253 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:88
|
254 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:84
|
255 |
#, fuzzy
|
256 |
msgid "Example step settings:"
|
257 |
msgstr "Gem indstillinger"
|
258 |
|
259 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:93
|
260 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:89
|
261 |
msgid "0.01 :- Allow decimal / floating point ratings"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:98
|
265 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:94
|
266 |
msgid "1 :- Whole number ratings only"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:103
|
270 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:99
|
271 |
msgid "5 :- Round to nearest five (eg for percentage ratings)"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:115
|
275 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:110
|
276 |
msgid "Widget Style"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:137
|
280 |
msgid "Bar rating gradient colours:"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:145
|
284 |
msgid "Start -"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:151
|
288 |
msgid "End -"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:177
|
292 |
msgid "Background color:"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:190
|
296 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:157
|
297 |
msgid "Tampering Countermeasures"
|
298 |
msgstr ""
|
299 |
|
300 |
# @ wp-google-maps
|
301 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:199
|
302 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:165
|
303 |
#, fuzzy
|
304 |
#| msgid "Basic list"
|
305 |
msgid "Basic Only"
|
306 |
msgstr "Basis liste"
|
307 |
|
308 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:204
|
309 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:170
|
310 |
msgid ""
|
311 |
"Uses basic client side countermeasures. This is easily circumvented by "
|
312 |
"anyone with technical knowledge, and is vulnerable to bots."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:208
|
316 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:174
|
317 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:194
|
318 |
msgid ""
|
319 |
"This method is not reliable for preventing tampering, and is not recommended "
|
320 |
"for use cases where reliability is imperative."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:219
|
324 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:205
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
msgid "Require Account"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:224
|
329 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:210
|
330 |
msgid ""
|
331 |
"This method uses the same countermeasures as Basic Only, however it does "
|
332 |
"require that in order to leave a rating, the user must be logged in."
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: wp-google-maps-gold/html/marker-rating-settings.html.php:228
|
336 |
+
#: wp-google-maps-pro/html/marker-rating-settings.html.php:214
|
337 |
msgid ""
|
338 |
"This method requires login and associates ratings with a users account. You "
|
339 |
"can compliment this by using security methods (eg 3rd party plugins) to "
|
341 |
msgstr ""
|
342 |
|
343 |
# @ wp-google-maps
|
344 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:2
|
345 |
+
#: wp-google-maps-gold/legacy-core.php:2183
|
346 |
#, fuzzy
|
347 |
#| msgid "Visitor Marker Input Settings"
|
348 |
msgid "Near-Vicinity Marker Control Settings"
|
349 |
msgstr "Besøgende Markør Input Indstillinger"
|
350 |
|
351 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:6
|
352 |
msgid ""
|
353 |
"This feature will group nearby or overlapping markers together using a "
|
354 |
"placeholder marker. When the placeholder marker is clicked, the group will "
|
357 |
"view data from all the markers."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:14
|
361 |
+
#: wp-google-maps-gold/legacy-core.php:2186
|
362 |
msgid "Enable Near-Vicinity Marker Control"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:36
|
366 |
+
#: wp-google-maps-gold/legacy-core.php:2193
|
367 |
msgid "Near-Vicinity Affected Radius"
|
368 |
msgstr ""
|
369 |
|
370 |
# @ wp-google-maps
|
371 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:50
|
372 |
#, fuzzy
|
373 |
#| msgid "Kilometers"
|
374 |
msgid "Meters"
|
375 |
msgstr "Kilometer"
|
376 |
|
377 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:56
|
378 |
msgid "Markers within this threshold of one another will be grouped together"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:66
|
382 |
msgid "Use Legacy Near-Vicinity Module"
|
383 |
msgstr ""
|
384 |
|
385 |
# @ wp-google-maps
|
386 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:88
|
387 |
#, fuzzy
|
388 |
#| msgid "Category Marker"
|
389 |
msgid "Placeholder Marker"
|
390 |
msgstr "Kategori Markør"
|
391 |
|
392 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:100
|
393 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:211
|
394 |
+
#: wp-google-maps-gold/legacy-core.php:2228
|
395 |
msgid "Near-Vicinity Shape"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:106
|
399 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:225
|
400 |
+
#: wp-google-maps-gold/legacy-core.php:2230
|
401 |
msgid "Circle"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:109
|
405 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:224
|
406 |
+
#: wp-google-maps-gold/legacy-core.php:2230
|
407 |
msgid "Spiral"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:112
|
411 |
msgid "Hexagon"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:115
|
415 |
msgid "Line"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:118
|
419 |
+
#: wp-google-maps/html/map-edit-page/map-edit-page.html.php:1634
|
|
|
|
|
420 |
msgid "Grid"
|
421 |
msgstr ""
|
422 |
|
423 |
# @ wp-google-maps
|
424 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:127
|
425 |
#, fuzzy
|
426 |
#| msgid "Animation"
|
427 |
msgid "Animate Separation"
|
428 |
msgstr "animation"
|
429 |
|
430 |
# @ wp-google-maps
|
431 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:148
|
432 |
#, fuzzy
|
433 |
#| msgid "Animation"
|
434 |
msgid "Animation Duration"
|
435 |
msgstr "animation"
|
436 |
|
437 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:160
|
438 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:202
|
439 |
msgid "Seconds"
|
440 |
msgstr ""
|
441 |
|
442 |
# @ wp-google-maps
|
443 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:169
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
#, fuzzy
|
445 |
#| msgid "Animation"
|
446 |
msgid "Stagger Animation"
|
447 |
msgstr "animation"
|
448 |
|
449 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:190
|
450 |
msgid "Stagger Interval"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:232
|
454 |
+
#: wp-google-maps-gold/legacy-core.php:2200
|
455 |
msgid "Near-Vicinity Hide Lines"
|
456 |
msgstr ""
|
457 |
|
458 |
# @ wp-google-maps
|
459 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:252
|
460 |
+
#: wp-google-maps-gold/legacy-core.php:2207
|
461 |
#, fuzzy
|
462 |
#| msgid "On Hover Line Color"
|
463 |
msgid "Near-Vicinity Line Color"
|
464 |
msgstr "linie farve ved hover"
|
465 |
|
466 |
# @ wp-google-maps
|
467 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:265
|
468 |
+
#: wp-google-maps-gold/legacy-core.php:2214
|
469 |
#, fuzzy
|
470 |
#| msgid "Line Opacity"
|
471 |
msgid "Near-Vicinity Line Opacity"
|
472 |
msgstr "Linie tykkelse"
|
473 |
|
474 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:276
|
475 |
+
#: wp-google-maps-gold/legacy-core.php:2216
|
476 |
msgid "Value between 0.1 and 1.0"
|
477 |
msgstr ""
|
478 |
|
479 |
# @ wp-google-maps
|
480 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:282
|
481 |
+
#: wp-google-maps-gold/legacy-core.php:2221
|
482 |
#, fuzzy
|
483 |
#| msgid "Line Thickness"
|
484 |
msgid "Near-Vicinity Line Thinkness"
|
485 |
msgstr "linie tykkelse"
|
486 |
|
487 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:292
|
488 |
+
#: wp-google-maps-gold/legacy-core.php:2223
|
489 |
msgid "Value between 1 and 50"
|
490 |
msgstr ""
|
491 |
|
492 |
+
# @ wp-google-maps
|
493 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:299
|
494 |
+
#, fuzzy
|
495 |
+
#| msgid "Upload File"
|
496 |
+
msgid "Maximum group size"
|
497 |
+
msgstr "Upload Fil"
|
498 |
+
|
499 |
+
#: wp-google-maps-gold/html/marker-separator-settings.html.php:314
|
500 |
+
msgid ""
|
501 |
+
"We recommend using a group size no larger than the maximum number of "
|
502 |
+
"overlapping markers you anticipate, and that you do not use a higher number "
|
503 |
+
"than necessary. Setting this too high may result in unnecessarily increased "
|
504 |
+
"load times."
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: wp-google-maps-gold/includes/class.add-on.php:90
|
508 |
msgid ""
|
509 |
"<strong>WP Google Maps Gold add-on:</strong> We did not detect a compatible "
|
510 |
"version of WP Google Maps running on this installation. Please ensure you "
|
512 |
"add-on."
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: wp-google-maps-gold/includes/class.add-on.php:108
|
516 |
msgid ""
|
517 |
"<strong>WP Google Maps - Gold add-on:</strong> This plugin requires WP "
|
518 |
"Google Maps - Pro add-on. We did not detect the Pro add-on running on this "
|
520 |
"in order to use the Gold add-on."
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: wp-google-maps-gold/includes/class.live-tracker.php:37
|
524 |
msgid "Location Tracking"
|
525 |
msgstr "Placering Sporing"
|
526 |
|
527 |
# @ wp-google-maps
|
|