WP Google Maps - Version 8.0.19

Version Description

:- 2020-02-12 :- Medium priority = * Fixed issue with modern store locator and large number of sub-categories * Made zoom limit controls live * Changed UI style dropdown to radio buttons and added descriptions * All PO files rescanned to allow translation of new strings * esc_html__ and esc_html_e added to PO keywords * PO files now use relative paths * Fixed escaping issues in PO files

Download this release

Release Info

Developer perryrylance
Plugin Icon 128x128 WP Google Maps
Version 8.0.19
Comparing to
See all releases

Code changes from version 8.0.18 to 8.0.19

includes/class.gdpr-compliance.php CHANGED
@@ -101,7 +101,7 @@ class GDPRCompliance
101
  {
102
  $wpgmza_other_settings = array_merge( (array)$this->getDefaultSettings(), get_option('WPGMZA_OTHER_SETTINGS') );
103
 
104
- $html = $wpgmza_other_settings['wpgmza_gdpr_default_notice'];
105
 
106
  if(!empty($wpgmza_other_settings['wpgmza_gdpr_override_notice']) && !empty($wpgmza_other_settings['wpgmza_gdpr_notice_override_text']))
107
  $html = $wpgmza_other_settings['wpgmza_gdpr_notice_override_text'];
101
  {
102
  $wpgmza_other_settings = array_merge( (array)$this->getDefaultSettings(), get_option('WPGMZA_OTHER_SETTINGS') );
103
 
104
+ $html = apply_filters('wpgmza_gdpr_notice', $wpgmza_other_settings['wpgmza_gdpr_default_notice']);
105
 
106
  if(!empty($wpgmza_other_settings['wpgmza_gdpr_override_notice']) && !empty($wpgmza_other_settings['wpgmza_gdpr_notice_override_text']))
107
  $html = $wpgmza_other_settings['wpgmza_gdpr_notice_override_text'];
includes/legacy/settings-page.php CHANGED
@@ -47,7 +47,27 @@ function wpgmza_legacy_settings_page_basic()
47
  else if ($wpgmza_settings_marker_pull == '1' || $wpgmza_settings_marker_pull == 1) { $wpgmza_settings_marker_pull_checked[1] = "checked='checked'"; $show_advanced_marker_tr = 'style="visibility:visible; display:table-row;"'; }
48
  else { $wpgmza_settings_marker_pull_checked[0] = "checked='checked'"; $show_advanced_marker_tr = 'style="visibility:hidden; display:none;"'; }
49
 
50
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
 
53
 
@@ -248,38 +268,66 @@ function wpgmza_legacy_settings_page_basic()
248
  $ret .= " </tr>";
249
 
250
  $ret .= "<tr>
251
- <td>" . __("User Interface Style:", "wp-google-maps") . "</td>
252
- <td>
253
- <select name='user_interface_style'>
254
- <option " . ($wpgmza->settings->user_interface_style == 'bare-bones' ? 'selected="selected"' : '') . " value='bare-bones'>" . __("Bare Bones", "wp-google-maps") . "</option>
255
- <option " . ($wpgmza->settings->user_interface_style == 'legacy' ? 'selected="selected"' : '') . " value='legacy'>" . __("Legacy", "wp-google-maps") . "</option>
256
- <option " . ($wpgmza->settings->user_interface_style == 'default' ? 'selected="selected"' : '') . " value='default'>" . __("Default", "wp-google-maps") . "</option>
257
- <option " . ($wpgmza->settings->user_interface_style == 'modern' ? 'selected="selected"' : '') . " value='modern'>" . __("Modern", "wp-google-maps") . "</option>
258
- <option " . ($wpgmza->settings->user_interface_style == 'compact' ? 'selected="selected"' : '') . " value='compact'>" . __("Compact", "wp-google-maps") . "</option>
259
- <option " . ($wpgmza->settings->user_interface_style == 'minimal' ? 'selected="selected"' : '') . " value='minimal'>" . __("Minimal", "wp-google-maps") . "</option>
260
- </select>
261
- </td>
262
- </tr>";
263
 
264
- if(isset($wpgmza_settings['wpgmza_maps_engine']) && $wpgmza_settings['wpgmza_maps_engine'] == 'open-layers')
265
- {
266
- $tileServerSelect = new WPGMZA\DOMDocument();
267
- $tileServerSelect->loadPHPFile(plugin_dir_path(WPGMZA_FILE) . 'html/tile-server-fieldset.html.php');
268
- // TODO: In Pro, check this property exists
269
-
270
- if(isset($wpgmza_settings['tile_server_url']))
271
- {
272
- $option = $tileServerSelect->querySelector('option[value="' . $wpgmza_settings['tile_server_url'] . '"]');
273
- if($option)
274
- $option->setAttribute('selected', 'selected');
275
- }
276
-
277
- $ret .= $tileServerSelect->html;
278
- }
279
-
280
- $api_loader = new WPGMZA\GoogleMapsAPILoader();
281
- $ret .= $api_loader->getSettingsHTML();
282
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  $ret .= " <tr>";
284
  $ret .= " <td width='200' valign='top'>".__("Troubleshooting Options","wp-google-maps").":</td>";
285
  $ret .= " <td>";
47
  else if ($wpgmza_settings_marker_pull == '1' || $wpgmza_settings_marker_pull == 1) { $wpgmza_settings_marker_pull_checked[1] = "checked='checked'"; $show_advanced_marker_tr = 'style="visibility:visible; display:table-row;"'; }
48
  else { $wpgmza_settings_marker_pull_checked[0] = "checked='checked'"; $show_advanced_marker_tr = 'style="visibility:hidden; display:none;"'; }
49
 
50
+ $wpgmza_settings_user_interface_style_checked[0] = '';
51
+ $wpgmza_settings_user_interface_style_checked[1] = '';
52
+ $wpgmza_settings_user_interface_style_checked[2] = '';
53
+ $wpgmza_settings_user_interface_style_checked[3] = '';
54
+ $wpgmza_settings_user_interface_style_checked[4] = '';
55
+ $wpgmza_settings_user_interface_style_checked[5] = '';
56
+ if (isset($wpgmza_settings['wpgmza_settings_user_interface_style'])) { $wpgmza_settings_user_interface_style = $wpgmza_settings['wpgmza_settings_user_interface_style']; } else {$wpgmza_settings_user_interface_style = false; }
57
+ if ($wpgmza_settings_user_interface_style == 'bare-bones') { $wpgmza_settings_user_interface_style_checked[0] = "checked='checked'";
58
+ $wpgmza->settings->user_interface_style = 'bare-bones'; }
59
+ else if ($wpgmza_settings_user_interface_style == 'default') { $wpgmza_settings_user_interface_style_checked[1] = "checked='checked'";
60
+ $wpgmza->settings->user_interface_style = 'default'; }
61
+ else if ($wpgmza_settings_user_interface_style == 'legacy') { $wpgmza_settings_user_interface_style_checked[2] = "checked='checked'";
62
+ $wpgmza->settings->user_interface_style = 'legacy';}
63
+
64
+ else if ($wpgmza_settings_user_interface_style == 'compact') { $wpgmza_settings_user_interface_style_checked[3] = "checked='checked'";
65
+ $wpgmza->settings->user_interface_style = 'compact'; }
66
+ else if ($wpgmza_settings_user_interface_style == 'modern') { $wpgmza_settings_user_interface_style_checked[4] = "checked='checked'";
67
+ $wpgmza->settings->user_interface_style = 'modern'; }
68
+ else if ($wpgmza_settings_user_interface_style == 'minimal') { $wpgmza_settings_user_interface_style_checked[5] = "checked='checked'";
69
+ $wpgmza->settings->user_interface_style = 'minimal'; }
70
+ else { $wpgmza_settings_user_interface_style_checked[2] = "checked='checked'"; }
71
 
72
 
73
 
268
  $ret .= " </tr>";
269
 
270
  $ret .= "<tr>
 
 
 
 
 
 
 
 
 
 
 
 
271
 
272
+ <td>" . __("User Interface Style:", "wp-google-maps") . "</td>
273
+
274
+ <td>
275
+ <input type='radio'
276
+ name='wpgmza_settings_user_interface_style'
277
+ id='wpgmza_settings_user_interface_style_bare_bones'
278
+ value='bare-bones' "
279
+ . $wpgmza_settings_user_interface_style_checked[0] .
280
+ " />" . __("Bare Bones - Applies no styling to the components at all. This is recommended for designers and developers who want to style the components from scratch.", "wp-google-maps") . "
281
+
282
+ <br />
283
+
284
+ <input type='radio'
285
+ name='wpgmza_settings_user_interface_style'
286
+ id='wpgmza_settings_user_interface_style_default'
287
+ value='default' "
288
+ . $wpgmza_settings_user_interface_style_checked[1] .
289
+ " />" . __("Default - The default front end.", "wp-google-maps") . "
290
+
291
+ <br />
292
+
293
+ <input type='radio'
294
+ name='wpgmza_settings_user_interface_style'
295
+ id='wpgmza_settings_user_interface_style_legacy'
296
+ value='legacy' "
297
+ . $wpgmza_settings_user_interface_style_checked[2] .
298
+ " />" . __("Legacy - This setting is the same as Default, but provides options to change individual components to the modern style.", "wp-google-maps") . "
299
+
300
+ <br />
301
+
302
+ <input type='radio'
303
+ name='wpgmza_settings_user_interface_style'
304
+ id='wpgmza_settings_user_interface_style_compact'
305
+ value='compact' "
306
+ . $wpgmza_settings_user_interface_style_checked[3] .
307
+ " />" . __("Compact - Puts all components and their labels inline.", "wp-google-maps") . "
308
+
309
+ <br />
310
+
311
+ <input type='radio'
312
+ name='wpgmza_settings_user_interface_style'
313
+ id='wpgmza_settings_user_interface_style_modern'
314
+ value='modern' "
315
+ . $wpgmza_settings_user_interface_style_checked[4] .
316
+ " />" . __("Modern - Puts components inside the map, with pull-out panels.", "wp-google-maps") . "
317
+
318
+ <br />
319
+
320
+ <input type='radio'
321
+ name='wpgmza_settings_user_interface_style'
322
+ id='wpgmza_settings_user_interface_style_minimal'
323
+ value='minimal' "
324
+ . $wpgmza_settings_user_interface_style_checked[5] .
325
+ " />" . __("Minimal - The same as Compact, but with icons instead of text labels.", "wp-google-maps") . "
326
+
327
+ <br />
328
+ </td>
329
+ </tr>";
330
+
331
  $ret .= " <tr>";
332
  $ret .= " <td width='200' valign='top'>".__("Troubleshooting Options","wp-google-maps").":</td>";
333
  $ret .= " <td>";
js/v8/map-edit-page.js CHANGED
@@ -10,6 +10,8 @@ jQuery(function($) {
10
 
11
  WPGMZA.MapEditPage = function()
12
  {
 
 
13
  this.themePanel = new WPGMZA.ThemePanel();
14
  this.themeEditor = new WPGMZA.ThemeEditor();
15
 
@@ -42,6 +44,10 @@ jQuery(function($) {
42
 
43
  WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id);
44
  });
 
 
 
 
45
  }
46
 
47
  WPGMZA.MapEditPage.createInstance = function()
@@ -51,6 +57,14 @@ jQuery(function($) {
51
 
52
  return new WPGMZA.MapEditPage();
53
  }
 
 
 
 
 
 
 
 
54
 
55
  $(window).on("load", function(event) {
56
 
10
 
11
  WPGMZA.MapEditPage = function()
12
  {
13
+ var self = this;
14
+
15
  this.themePanel = new WPGMZA.ThemePanel();
16
  this.themeEditor = new WPGMZA.ThemeEditor();
17
 
44
 
45
  WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id);
46
  });
47
+
48
+ $('#wpgmza_max_zoom, #wpgmza_min_zoom').on("change input", function(event) {
49
+ self.onZoomLimitChanged(event);
50
+ });
51
  }
52
 
53
  WPGMZA.MapEditPage.createInstance = function()
57
 
58
  return new WPGMZA.MapEditPage();
59
  }
60
+
61
+ WPGMZA.MapEditPage.prototype.onZoomLimitChanged = function()
62
+ {
63
+ this.map.setOptions({
64
+ minZoom: $("#wpgmza_max_zoom").val(),
65
+ maxZoom: $("#wpgmza_min_zoom").val()
66
+ });
67
+ }
68
 
69
  $(window).on("load", function(event) {
70
 
js/v8/modern-store-locator.js CHANGED
@@ -204,6 +204,34 @@ jQuery(function($) {
204
  alert(WPGMZA.localized_strings.zero_results);
205
 
206
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  }
208
 
209
  /**
204
  alert(WPGMZA.localized_strings.zero_results);
205
 
206
  });
207
+
208
+
209
+ $('body').on('click', '.wpgmza_store_locator_options_button', function(event) {
210
+ setTimeout(function(){
211
+
212
+ if ($('.wpgmza_cat_checkbox_holder').hasClass('wpgmza-open')) {
213
+
214
+ var p_cat = $( ".wpgmza_cat_checkbox_holder" );
215
+ var position_cat = p_cat.position().top + p_cat.outerHeight(true) + $('.wpgmza-modern-store-locator').height();
216
+
217
+ var $p_map = $('.wpgmza_map');
218
+ var position_map = $p_map.position().top + $p_map.outerHeight(true);
219
+
220
+ var cat_height = position_cat;
221
+
222
+ if (cat_height >= position_map) {
223
+
224
+ $('.wpgmza_cat_ul').css('overflow', 'scroll ');
225
+
226
+ $('.wpgmza_cat_ul').css('height', '100%');
227
+
228
+ $('.wpgmza-modern-store-locator').css('height','100%');
229
+ $('.wpgmza_cat_checkbox_holder.wpgmza-open').css({'padding-bottom': '50px', 'height': '100%'});
230
+ }
231
+ }
232
+ }, 500);
233
+ });
234
+
235
  }
236
 
237
  /**
js/v8/wp-google-maps.combined.js CHANGED
@@ -2747,6 +2747,8 @@ jQuery(function($) {
2747
 
2748
  WPGMZA.MapEditPage = function()
2749
  {
 
 
2750
  this.themePanel = new WPGMZA.ThemePanel();
2751
  this.themeEditor = new WPGMZA.ThemeEditor();
2752
 
@@ -2779,6 +2781,10 @@ jQuery(function($) {
2779
 
2780
  WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id);
2781
  });
 
 
 
 
2782
  }
2783
 
2784
  WPGMZA.MapEditPage.createInstance = function()
@@ -2788,6 +2794,14 @@ jQuery(function($) {
2788
 
2789
  return new WPGMZA.MapEditPage();
2790
  }
 
 
 
 
 
 
 
 
2791
 
2792
  $(window).on("load", function(event) {
2793
 
@@ -5447,6 +5461,34 @@ jQuery(function($) {
5447
  alert(WPGMZA.localized_strings.zero_results);
5448
 
5449
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5450
  }
5451
 
5452
  /**
2747
 
2748
  WPGMZA.MapEditPage = function()
2749
  {
2750
+ var self = this;
2751
+
2752
  this.themePanel = new WPGMZA.ThemePanel();
2753
  this.themeEditor = new WPGMZA.ThemeEditor();
2754
 
2781
 
2782
  WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id);
2783
  });
2784
+
2785
+ $('#wpgmza_max_zoom, #wpgmza_min_zoom').on("change input", function(event) {
2786
+ self.onZoomLimitChanged(event);
2787
+ });
2788
  }
2789
 
2790
  WPGMZA.MapEditPage.createInstance = function()
2794
 
2795
  return new WPGMZA.MapEditPage();
2796
  }
2797
+
2798
+ WPGMZA.MapEditPage.prototype.onZoomLimitChanged = function()
2799
+ {
2800
+ this.map.setOptions({
2801
+ minZoom: $("#wpgmza_max_zoom").val(),
2802
+ maxZoom: $("#wpgmza_min_zoom").val()
2803
+ });
2804
+ }
2805
 
2806
  $(window).on("load", function(event) {
2807
 
5461
  alert(WPGMZA.localized_strings.zero_results);
5462
 
5463
  });
5464
+
5465
+
5466
+ $('body').on('click', '.wpgmza_store_locator_options_button', function(event) {
5467
+ setTimeout(function(){
5468
+
5469
+ if ($('.wpgmza_cat_checkbox_holder').hasClass('wpgmza-open')) {
5470
+
5471
+ var p_cat = $( ".wpgmza_cat_checkbox_holder" );
5472
+ var position_cat = p_cat.position().top + p_cat.outerHeight(true) + $('.wpgmza-modern-store-locator').height();
5473
+
5474
+ var $p_map = $('.wpgmza_map');
5475
+ var position_map = $p_map.position().top + $p_map.outerHeight(true);
5476
+
5477
+ var cat_height = position_cat;
5478
+
5479
+ if (cat_height >= position_map) {
5480
+
5481
+ $('.wpgmza_cat_ul').css('overflow', 'scroll ');
5482
+
5483
+ $('.wpgmza_cat_ul').css('height', '100%');
5484
+
5485
+ $('.wpgmza-modern-store-locator').css('height','100%');
5486
+ $('.wpgmza_cat_checkbox_holder.wpgmza-open').css({'padding-bottom': '50px', 'height': '100%'});
5487
+ }
5488
+ }
5489
+ }, 500);
5490
+ });
5491
+
5492
  }
5493
 
5494
  /**
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>',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()},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)]},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",WPGMZA.getCurrentPosition(callback,!1)),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()}},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(fullInstanceName=WPGMZA[engine+pro+instanceName]?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]?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){return!WPGMZA.isProVersion()||MYMAP.map instanceof WPGMZA.Map?MYMAP.map:MYMAP[id].map},isGoogleAutocompleteSupported:function(){return"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete},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 isFullScreen},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?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)}};for(var key in window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core,WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,jQuery(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").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});1<elements.length&&console.warn("Multiple jQuery versions detected: ",elements),WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),$(document).on("click",".wpgmza_edit_btn",function(){WPGMZA.animateScroll("#wpgmaps_tabs_markers")})});var isFullScreen=!1;function onScroll(event){$(".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)})}$(document).on("fullscreenchange",function(){isFullScreen=!!document.fullscreenElement}),$(window).on("load",function(event){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").each(function(index,el){$(el).after($(warning))})}}),$(window).on("scroll",onScroll),$(window).on("load",onScroll),WPGMZA.refreshOnLoad&&window.location.reload()}),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))throw new Error("First argument must be an instance of WPGMZA.LatLng");if(!(b instanceof WPGMZA.LatLng))throw new Error("Second argument must be an instance of WPGMZA.LatLng");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.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.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(mapObject){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),mapObject&&(this.mapObject=mapObject,this.state=WPGMZA.InfoWindow.STATE_CLOSED,mapObject.map?setTimeout(function(){self.onMapObjectAdded(event)},100):mapObject.addEventListener("added",function(event){self.onMapObjectAdded(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(mapObject){return new(this.getConstructor())(mapObject)},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="";this.mapObject instanceof WPGMZA.Marker&&(html=this.mapObject.address),callback(html)},WPGMZA.InfoWindow.prototype.open=function(map,mapObject){return this.mapObject=mapObject,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.mapObject.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.onMapObjectAdded=function(){1==this.mapObject.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.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($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){if(this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0],"yes"==WPGMZA.settings.wpgmza_settings_map_scroll||"yes"==WPGMZA.settings.wpgmza_settings_map_draggable||"yes"==WPGMZA.settings.wpgmza_settings_map_clickzoom){var diplay_enable_interactions_notice=$("<div class='notice notice-info wpgmza_disabled_interactions_notice' style= 'height: 45px; padding: 7px 5px 2px 5px;'><p style='float: left; padding-top: 10px;'>"+WPGMZA.localized_strings.disabled_interactions_notice+"</p><a class='button button-primary enable_interactions_notice_button' style='float: right;'>"+WPGMZA.localized_strings.disabled_interactions_button+"</a></div>");$(".wpgmza_map").after(diplay_enable_interactions_notice),$(".enable_interactions_notice_button").on("click",function(){WPGMZA.mapEditPage.map.enableAllInteractions(),$(diplay_enable_interactions_notice).fadeOut("slow");var successNotice=$("<div class='notice notice-success'><p>"+WPGMZA.localized_strings.interactions_enabled_notice+"</p></div>");$(WPGMZA.mapEditPage.map.element).after(successNotice),$(successNotice).delay(2e3).fadeIn("slow"),$(successNotice).delay(4e3).fadeOut("slow")})}$(document).on("click",".wpgmza_edit_btn",function(){var cur_id=jQuery(this).attr("data-edit-marker-id");WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id)})},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},$(window).on("load",function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.MapObject=function(row){if(WPGMZA.assertInstanceOf(this,"MapObject"),WPGMZA.EventDispatcher.call(this),this.id=-1,this.map_id=null,this.guid=WPGMZA.guid(),this.modified=!0,this.settings={},row)for(var name in row)if("settings"==name){if(null==row.settings)this.settings={};else switch(typeof row.settings){case"string":this.settings=JSON.parse(row[name]);break;case"object":this.settings=row[name];break;default:throw new Error("Don't know how to interpret settings")}for(var name in this.settings){var value=this.settings[name];String(value).match(/^-?\d+$/)&&(this.settings[name]=parseInt(value))}}else this[name]=row[name]},WPGMZA.MapObject.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MapObject.prototype.constructor=WPGMZA.MapObject,WPGMZA.MapObject.prototype.parseGeometry=function(string){var pairs,coords,results=[];pairs=string.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(var i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.MapObject.prototype.toJSON=function(){return{id:this.id,guid:this.guid,settings:this.settings}}}),jQuery(function($){var Parent=WPGMZA.MapObject;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.Circle.prototype=Object.create(Parent.prototype),WPGMZA.Circle.prototype.constructor=WPGMZA.Circle,WPGMZA.Circle.createInstance=function(options){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options)},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.MapSettingsPage=function(){var self=this;this.updateEngineSpecificControls(),this.updateGDPRControls(),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$("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()})},WPGMZA.MapSettingsPage.createInstance=function(){return new WPGMZA.MapSettingsPage},WPGMZA.MapSettingsPage.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.MapSettingsPage.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.MapSettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},jQuery(function($){window.location.href.match(/wp-google-maps-menu-settings/)&&(WPGMZA.mapSettingsPage=WPGMZA.MapSettingsPage.createInstance(),jQuery(document).ready(function(){jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.mapSettingsPage.flushGeocodeCache()})}))})}),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_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));var options={zoom:zoom,center:latLng};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=!("yes"==this.wpgmza_settings_map_zoom),options.panControl=!("yes"==this.wpgmza_settings_map_pan),options.mapTypeControl=!("yes"==this.wpgmza_settings_map_type),options.streetViewControl=!("yes"==this.wpgmza_settings_map_streetview),options.fullscreenControl=!("yes"==this.wpgmza_settings_map_full_screen_control),options.draggable=!("yes"==this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom="yes"==this.wpgmza_settings_map_clickzoom,this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures?options.gestureHandling="greedy":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){if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement))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).engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes"))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this)},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,"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.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.setOptions=function(options){for(var name in options)this.settings[name]=options[name]};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){$(this.element).css({width:width}),$(this.engineElement).css({width:"100%",height:height})},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,this.markers.splice(this.markers.indexOf(marker),1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},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.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.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},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.hasVisibleMarkers=function(event){var markers_visible=0;for(var marker_id in marker_array){var marker=marker_array[marker_id];if(marker.isFilterable&&marker.getMap()){markers_visible++;break}}return 0<markers_visible},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})}}),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").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()}})},$(window).on("load",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(){},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(results){}}),jQuery(function($){WPGMZA.MarkerPanel=function(element){this.element=element},$(window).on("load",function(event){WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&(WPGMZA.mapEditPage.markerPanel=new WPGMZA.MarkerPanel($("#wpgmza-marker-edit-panel")[0]))})}),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.MapObject.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.MapObject.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()},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)){window.marker_array||(window.marker_array={}),marker_array[this.map_id]||(marker_array[this.map_id]=[]),marker_array[this.map_id][this.id]=this,window.wpgmaps_localize_marker_data||(window.wpgmaps_localize_marker_data={}),wpgmaps_localize_marker_data[this.map_id]||(wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);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(){this.map?"map-edit"==WPGMZA.currentPage&&!WPGMZA.pro_version||(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),(this.map.lastInteractedMarker=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){this.map.settings.info_window_open_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(animation){return this.settings.animation},WPGMZA.Marker.prototype.setAnimation=function(animation){this.settings.animation=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.MapObject.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=MYMAP[map_id].map:this.map=MYMAP.map,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:"#63AFF2",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="#63AFF2")},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"),wpgmaps_localize[map_id].other_settings.store_locator_query_string&&wpgmaps_localize[map_id].other_settings.store_locator_query_string.length&&addressInput.attr("placeholder",wpgmaps_localize[map_id].other_settings.store_locator_query_string),inner.append(addressInput);var button,titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=wpgmaps_localize[map_id].other_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)}),$(map.markerFilter).on("filteringcomplete",function(event){this.map.hasVisibleMarkers()||alert(WPGMZA.localized_strings.zero_results)})}},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,this.title=null,this.name=null,this.link=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,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)},WPGMZA.Polygon.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return $.extend(result,{name:this.name,title:this.title,link:this.link}),result}}),jQuery(function($){WPGMZA.Polyline=function(row,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),this.title=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(row,engineObject){return new(WPGMZA.Polyline.getConstructor())(row,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.MapObject.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($){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&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&&params.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.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: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."),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,compressedRoute=route.replace(/\/$/,"")+"/base64"+this.compressParams(data);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)}return 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}})})}),jQuery(function($){WPGMZA.SettingsPage=function(){$("#wpgmza-global-settings").tabs()},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},$(window).on("load",function(event){var useLegacyHTML=WPGMZA.settings.useLegacyHTML||!window.location.href.match(/no-legacy-html/);WPGMZA.getCurrentPage()!=WPGMZA.PAGE_SETTINGS||useLegacyHTML||(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,$(element).find(".wpgmza-not-found-msg").hide(),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)})}),$(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)})},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,"distanceUnits",{get:function(){return 1==this.map.settings.store_locator_distance?WPGMZA.Distance.MILES:WPGMZA.Distance.KILOMETERS}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id).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}):(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){this.state=WPGMZA.StoreLocator.STATE_APPLIED},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker));var circle=this.circle;if(circle){var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;circle.setVisible(!1),params.center&&params.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle.map!=this.map&&this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}this.map.hasVisibleMarkers()?$(this.element).find(".wpgmza-not-found-msg").hide():$(this.element).find(".wpgmza-not-found-msg").show()}}),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"),this.element.length?"open-layers"!=WPGMZA.settings.engine?(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):this.element.remove():console.warn("No element to initialise theme editor on")},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_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],this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:5,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")},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.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($){$(window).on("load",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:(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})}),options&&this.setOptions(options)},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},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.setOptions=function(options){var googleOptions={};delete(googleOptions=$.extend({},options)).map,delete googleOptions.center,options.center&&(googleOptions.center=new google.maps.LatLng({lat:parseFloat(options.center.lat),lng:parseFloat(options.center.lng)})),options.radius&&(googleOptions.radius=parseFloat(options.radius)),options.color&&(googleOptions.fillColor=options.color),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity),googleOptions.strokeOpacity=parseFloat(options.opacity)),this.googleCircle.setOptions(googleOptions),options.map&&options.map.addCircle(this)}}),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)throw new Error("No address specified");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(mapObject){Parent.call(this,mapObject),this.setMapObject(mapObject)},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.setMapObject=function(mapObject){mapObject instanceof WPGMZA.Marker?this.googleObject=mapObject.googleMarker:mapObject instanceof WPGMZA.Polygon?this.googleObject=mapObject.googlePolygon:mapObject instanceof WPGMZA.Polyline&&(this.googleObject=mapObject.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.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,mapObject){var self=this;if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setMapObject(mapObject),this.googleInfoWindow.open(this.mapObject.map.googleMap,this.googleObject);var intervalID,guid=WPGMZA.guid(),html="<div id='"+guid+"'>"+this.content+"</div>";return this.googleInfoWindow.setContent(html),intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaMapObject=self.mapObject,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;if(Parent.call(this,element,options),!window.google){var status=WPGMZA.googleAPIStatus,message="Google API not loaded";if(status&&status.message&&(message+=" - "+status.message),"USER_CONSENT_NOT_GIVEN"==status.code)return;throw $(element).html("<div class='notice notice-error'><p>"+WPGMZA.localized_strings.google_api_not_loaded+"<pre>"+message+"</pre></p></div>"),new Error(message)}this.loadGoogleMap(),options&&this.setOptions(options,!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),1==this.settings.transport&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.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)}),"1"==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 bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest(),nativeBounds=new WPGMZA.LatLngBounds({});return 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()},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(row){var self=this;Parent.call(this,row),this._opacity=1;var settings={};if(row)for(var name in row)row[name]instanceof WPGMZA.LatLng?settings[name]=row[name].toGoogleLatLng():row[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=row[name]);this.googleMarker=new google.maps.Marker(settings),(this.googleMarker.wpgmzaMarker=this).googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.googleMarker.setLabel(this.settings.label),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()})}),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){this.map=WPGMZA.getMapByID(map_id),WPGMZA.ModernStoreLocator.call(this,map_id);var options={fields:["name","formatted_address"],types:["geocode"]},restrict=wpgmaps_localize[map_id].other_settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&(restrict&&restrict.length&&(options.componentRestrictions={country:restrict}),this.autoComplete=new google.maps.places.Autocomplete(this.addressInput,options)),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;if(Parent.call(this,options,googlePolygon),googlePolygon)this.googlePolygon=googlePolygon;else if(this.googlePolygon=new google.maps.Polygon,options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.paths=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.lineopacity&&(googleOptions.strokeOpacity=parseFloat(options.lineopacity)),options.fillcolor&&(googleOptions.fillColor="#"+options.fillcolor),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity)),this.googlePolygon.setOptions(googleOptions)}this.googlePolygon.wpgmzaPolygon=this,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.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){this.googlePolygon.setOptions({editable:value})},WPGMZA.GooglePolygon.prototype.toJSON=function(){var result=WPGMZA.Polygon.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.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),googlePolyline)this.googlePolyline=googlePolyline;else{if(this.googlePolyline=new google.maps.Polyline(this.settings),options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.path=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.linethickness&&(googleOptions.strokeWeight=parseInt(options.linethickness)),options.opacity&&(googleOptions.strokeOpacity=parseFloat(options.opacity))}if(options&&options.polydata){var path=this.parseGeometry(options.polydata);this.setPoints(path)}}this.googlePolyline.wpgmzaPolyline=this,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.setEditable=function(value){this.googlePolyline.setOptions({editable:value})},WPGMZA.GooglePolyline.prototype.setPoints=function(points){this.googlePolyline.setOptions({path:points})},WPGMZA.GooglePolyline.prototype.toJSON=function(){var result=WPGMZA.Polyline.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),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"}),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"})},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($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){this.center={lat:0,lng:0},this.radius=0,this.fillcolor="#ff0000",this.opacity=.6,Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style(this.getStyleFromSettings()),this.vectorLayer3857=this.layer=new ol.layer.Vector({source:new ol.source.Vector,style:this.olStyle}),olFeature?this.olFeature=olFeature:this.recreate()},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,wgs84Sphere=new ol.Sphere(6378137),radius=1e3*parseFloat(this.radius)/2;x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular(wgs84Sphere,[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.getStyleFromSettings=function(){var params={};return this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillColor,this.opacity)})),params},WPGMZA.OLCircle.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},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.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.recreate()}}),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),$.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(mapObject){var self=this;Parent.call(this,mapObject),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,mapObject){var self=this,latLng=mapObject.getPosition();if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.overlay&&this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!1}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.mapObject.map.olMap.addOverlay(this.overlay),$(this.element).show(),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(mapObject.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.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){$(this.element).html("<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.mapObject.map.animateNudge(0,offset,self.mapObject.getPosition())}imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var marker,viewOptions=this.settings.toOLViewOptions();$(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("yes"!=self.settings.wpgmza_settings_map_draggable):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!self.settings.wpgmza_settings_map_clickzoom):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive("yes"!=self.settings.wpgmza_settings_map_scroll)},this),"greedy"!=this.settings.wpgmza_force_greedy_gestures&&"yes"!=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&&"yes"==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),"yes"!=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.storeLocator&&(marker=this.storeLocator.centerPointMarker)&&(this.olMap.addOverlay(marker.overlay),marker.setVisible(!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;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),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var center=this.getCenter();-180<=center.lng&&center.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(row){var self=this;Parent.call(this,row);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.setLabel(this.settings.label),row&&row.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}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}),"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,mapElement=$(this.map.element),olViewportElement=mapElement.children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",mapElement.append(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),this.olStyle=new ol.style.Style,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].lng),parseFloat(paths[i].lat)]));this.olStyle=new ol.style.Style(this.getStyleFromSettings())}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({wpgmzaPolygon:this})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getStyleFromSettings=function(){var params={};return this.linecolor&&this.lineopacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA("#"+this.linecolor,this.lineopacity)})),this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillcolor,this.opacity)})),params},WPGMZA.OLPolygon.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolygon.prototype.setEditable=function(editable){},WPGMZA.OLPolygon.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates()[0];result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&(options.polydata||options.points)){var path;path=options.polydata?this.parseGeometry(options.polydata):options.points;for(var 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)]))}}var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),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]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this})},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getStyleFromSettings=function(){var params={};return this.settings.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(this.settings.strokeColor,this.settings.strokeOpacity),width:parseInt(this.settings.strokeWeight)})),params},WPGMZA.OLPolyline.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolyline.prototype.setEditable=function(editable){},WPGMZA.OLPolyline.prototype.setPoints=function(points){this.olFeature&&this.layer.getSource().removeFeature(this.olFeature);for(var coordinates=[],i=0;i<points.length;i++)coordinates.push(ol.proj.fromLonLat([parseFloat(points[i].lng),parseFloat(points[i].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)}),this.layer.getSource().addFeature(this.olFeature)},WPGMZA.OLPolyline.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates();result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),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.")}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.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)}};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="//cdn.datatables.net/plug-ins/1.10.12/i18n/Afrikaans.json";break;case"sq":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Albanian.json";break;case"am":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Amharic.json";break;case"ar":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Arabic.json";break;case"hy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Armenian.json";break;case"az":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Azerbaijan.json";break;case"bn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bangla.json";break;case"eu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Basque.json";break;case"be":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Belarusian.json";break;case"bg":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bulgarian.json";break;case"ca":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Croatian.json";break;case"cs":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Czech.json";break;case"da":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Danish.json";break;case"nl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Dutch.json";break;case"et":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Filipino.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Finnish.json";break;case"fr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/French.json";break;case"gl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Galician.json";break;case"ka":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Georgian.json";break;case"de":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/German.json";break;case"el":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Greek.json";break;case"gu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Gujarati.json";break;case"he":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hebrew.json";break;case"hi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hindi.json";break;case"hu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hungarian.json";break;case"is":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Icelandic.json";break;case"id":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Indonesian.json";break;case"ga":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Irish.json";break;case"it":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Italian.json";break;case"ja":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Japanese.json";break;case"kk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kazakh.json";break;case"ko":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Korean.json";break;case"ky":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kyrgyz.json";break;case"lv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Latvian.json";break;case"lt":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Lithuanian.json";break;case"mk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Macedonian.json";break;case"ml":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Malay.json";break;case"mn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Mongolian.json";break;case"ne":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Nepali.json";break;case"nb":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Bokmal.json";break;case"nn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Nynorsk.json";break;case"ps":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Pashto.json";break;case"fa":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Persian.json";break;case"pl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Romanian.json";break;case"ru":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Russian.json";break;case"sr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Serbian.json";break;case"si":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Sinhala.json";break;case"sk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovak.json";break;case"sl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovenian.json";break;case"es":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Spanish.json";break;case"sw":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swahili.json";break;case"sv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swedish.json";break;case"ta":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Tamil.json";break;case"te":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/telugu.json";break;case"th":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Thai.json";break;case"tr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Turkish.json";break;case"uk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Ukrainian.json";break;case"ur":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Urdu.json";break;case"uz":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Uzbek.json";break;case"vi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Vietnamese.json";break;case"cy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),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.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")}},$(document).ready(function(event){$("[data-wpgmza-admin-marker-datatable]").each(function(index,el){WPGMZA.adminMarkerDataTable=new WPGMZA.AdminMarkerDataTable(el)})})});
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>',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()},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)]},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",WPGMZA.getCurrentPosition(callback,!1)),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()}},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(fullInstanceName=WPGMZA[engine+pro+instanceName]?engine+pro+instanceName:WPGMZA[pro+instanceName]?pro+instanceName:WPGMZA[engine+instanceName]?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){return!WPGMZA.isProVersion()||MYMAP.map instanceof WPGMZA.Map?MYMAP.map:MYMAP[id].map},isGoogleAutocompleteSupported:function(){return"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete},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 isFullScreen},getQueryParamValue:function(name){var m,regex=new RegExp(name+"=([^&#]*)");return(m=window.location.href.match(regex))?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)}};for(var key in window.WPGMZA?window.WPGMZA=$.extend(window.WPGMZA,core):window.WPGMZA=core,WPGMZA_localized_data){var value=WPGMZA_localized_data[key];WPGMZA[key]=value}WPGMZA.settings.useLegacyGlobals=!0,jQuery(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").filter(function(){return this.src.match(/(^|\/)jquery\.(min\.)?js(\?|$)/i)});1<elements.length&&console.warn("Multiple jQuery versions detected: ",elements),WPGMZA.restAPI=WPGMZA.RestAPI.createInstance(),$(document).on("click",".wpgmza_edit_btn",function(){WPGMZA.animateScroll("#wpgmaps_tabs_markers")})});var isFullScreen=!1;function onScroll(event){$(".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)})}$(document).on("fullscreenchange",function(){isFullScreen=!!document.fullscreenElement}),$(window).on("load",function(event){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").each(function(index,el){$(el).after($(warning))})}}),$(window).on("scroll",onScroll),$(window).on("load",onScroll),WPGMZA.refreshOnLoad&&window.location.reload()}),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))throw new Error("First argument must be an instance of WPGMZA.LatLng");if(!(b instanceof WPGMZA.LatLng))throw new Error("Second argument must be an instance of WPGMZA.LatLng");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.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.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(mapObject){var self=this;WPGMZA.EventDispatcher.call(this),WPGMZA.assertInstanceOf(this,"InfoWindow"),this.on("infowindowopen",function(event){self.onOpen(event)}),mapObject&&(this.mapObject=mapObject,this.state=WPGMZA.InfoWindow.STATE_CLOSED,mapObject.map?setTimeout(function(){self.onMapObjectAdded(event)},100):mapObject.addEventListener("added",function(event){self.onMapObjectAdded(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(mapObject){return new(this.getConstructor())(mapObject)},WPGMZA.InfoWindow.prototype.getContent=function(callback){var html="";this.mapObject instanceof WPGMZA.Marker&&(html=this.mapObject.address),callback(html)},WPGMZA.InfoWindow.prototype.open=function(map,mapObject){return this.mapObject=mapObject,!WPGMZA.settings.disable_infowindows&&"1"!=WPGMZA.settings.wpgmza_settings_disable_infowindows&&(!this.mapObject.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.onMapObjectAdded=function(){1==this.mapObject.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.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($){"map-edit"==WPGMZA.currentPage&&(WPGMZA.MapEditPage=function(){var self=this;if(this.themePanel=new WPGMZA.ThemePanel,this.themeEditor=new WPGMZA.ThemeEditor,this.map=WPGMZA.maps[0],"yes"==WPGMZA.settings.wpgmza_settings_map_scroll||"yes"==WPGMZA.settings.wpgmza_settings_map_draggable||"yes"==WPGMZA.settings.wpgmza_settings_map_clickzoom){var diplay_enable_interactions_notice=$("<div class='notice notice-info wpgmza_disabled_interactions_notice' style= 'height: 45px; padding: 7px 5px 2px 5px;'><p style='float: left; padding-top: 10px;'>"+WPGMZA.localized_strings.disabled_interactions_notice+"</p><a class='button button-primary enable_interactions_notice_button' style='float: right;'>"+WPGMZA.localized_strings.disabled_interactions_button+"</a></div>");$(".wpgmza_map").after(diplay_enable_interactions_notice),$(".enable_interactions_notice_button").on("click",function(){WPGMZA.mapEditPage.map.enableAllInteractions(),$(diplay_enable_interactions_notice).fadeOut("slow");var successNotice=$("<div class='notice notice-success'><p>"+WPGMZA.localized_strings.interactions_enabled_notice+"</p></div>");$(WPGMZA.mapEditPage.map.element).after(successNotice),$(successNotice).delay(2e3).fadeIn("slow"),$(successNotice).delay(4e3).fadeOut("slow")})}$(document).on("click",".wpgmza_edit_btn",function(){var cur_id=jQuery(this).attr("data-edit-marker-id");WPGMZA.AdminMarkerDataTable.prototype.onCenterMarker(cur_id)}),$("#wpgmza_max_zoom, #wpgmza_min_zoom").on("change input",function(event){self.onZoomLimitChanged(event)})},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.onZoomLimitChanged=function(){this.map.setOptions({minZoom:$("#wpgmza_max_zoom").val(),maxZoom:$("#wpgmza_min_zoom").val()})},$(window).on("load",function(event){WPGMZA.mapEditPage=WPGMZA.MapEditPage.createInstance()}))}),jQuery(function($){WPGMZA.MapObject=function(row){if(WPGMZA.assertInstanceOf(this,"MapObject"),WPGMZA.EventDispatcher.call(this),this.id=-1,this.map_id=null,this.guid=WPGMZA.guid(),this.modified=!0,this.settings={},row)for(var name in row)if("settings"==name){if(null==row.settings)this.settings={};else switch(typeof row.settings){case"string":this.settings=JSON.parse(row[name]);break;case"object":this.settings=row[name];break;default:throw new Error("Don't know how to interpret settings")}for(var name in this.settings){var value=this.settings[name];String(value).match(/^-?\d+$/)&&(this.settings[name]=parseInt(value))}}else this[name]=row[name]},WPGMZA.MapObject.prototype=Object.create(WPGMZA.EventDispatcher.prototype),WPGMZA.MapObject.prototype.constructor=WPGMZA.MapObject,WPGMZA.MapObject.prototype.parseGeometry=function(string){var pairs,coords,results=[];pairs=string.replace(/[^ ,\d\.\-+e]/g,"").split(",");for(var i=0;i<pairs.length;i++)coords=pairs[i].split(" "),results.push({lat:parseFloat(coords[1]),lng:parseFloat(coords[0])});return results},WPGMZA.MapObject.prototype.toJSON=function(){return{id:this.id,guid:this.guid,settings:this.settings}}}),jQuery(function($){var Parent=WPGMZA.MapObject;WPGMZA.Circle=function(options,engineCircle){WPGMZA.assertInstanceOf(this,"Circle"),this.center=new WPGMZA.LatLng,this.radius=100,Parent.apply(this,arguments)},WPGMZA.Circle.prototype=Object.create(Parent.prototype),WPGMZA.Circle.prototype.constructor=WPGMZA.Circle,WPGMZA.Circle.createInstance=function(options){var constructor;switch(WPGMZA.settings.engine){case"open-layers":constructor=WPGMZA.OLCircle;break;default:constructor=WPGMZA.GoogleCircle}return new constructor(options)},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.MapSettingsPage=function(){var self=this;this.updateEngineSpecificControls(),this.updateGDPRControls(),$("select[name='wpgmza_maps_engine']").on("change",function(event){self.updateEngineSpecificControls()}),$("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()})},WPGMZA.MapSettingsPage.createInstance=function(){return new WPGMZA.MapSettingsPage},WPGMZA.MapSettingsPage.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.MapSettingsPage.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.MapSettingsPage.prototype.flushGeocodeCache=function(){(new WPGMZA.OLGeocoder).clearCache(function(response){jQuery("#wpgmza_flush_cache_btn").removeAttr("disabled")})},jQuery(function($){window.location.href.match(/wp-google-maps-menu-settings/)&&(WPGMZA.mapSettingsPage=WPGMZA.MapSettingsPage.createInstance(),jQuery(document).ready(function(){jQuery("#wpgmza_flush_cache_btn").on("click",function(){jQuery(this).attr("disabled","disabled"),WPGMZA.mapSettingsPage.flushGeocodeCache()})}))})}),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_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));var options={zoom:zoom,center:latLng};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=!("yes"==this.wpgmza_settings_map_zoom),options.panControl=!("yes"==this.wpgmza_settings_map_pan),options.mapTypeControl=!("yes"==this.wpgmza_settings_map_type),options.streetViewControl=!("yes"==this.wpgmza_settings_map_streetview),options.fullscreenControl=!("yes"==this.wpgmza_settings_map_full_screen_control),options.draggable=!("yes"==this.wpgmza_settings_map_draggable),options.disableDoubleClickZoom="yes"==this.wpgmza_settings_map_clickzoom,this.wpgmza_settings_map_scroll&&(options.scrollwheel=!1),"greedy"==this.wpgmza_force_greedy_gestures||"yes"==this.wpgmza_force_greedy_gestures?options.gestureHandling="greedy":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){if(WPGMZA.assertInstanceOf(this,"Map"),WPGMZA.EventDispatcher.call(this),!(element instanceof HTMLElement))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).engineElement=element,this.markers=[],this.polygons=[],this.polylines=[],this.circles=[],this.rectangles=[],this.loadSettings(options),this.shortcodeAttributes={},$(this.element).attr("data-shortcode-attributes"))try{this.shortcodeAttributes=JSON.parse($(this.element).attr("data-shortcode-attributes"))}catch(e){console.warn("Error parsing shortcode attributes")}WPGMZA.getCurrentPage()!=WPGMZA.PAGE_MAP_EDIT&&this.initStoreLocator(),this.markerFilter=WPGMZA.MarkerFilter.createInstance(this)},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,"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.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.setOptions=function(options){for(var name in options)this.settings[name]=options[name]};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){$(this.element).css({width:width}),$(this.engineElement).css({width:"100%",height:height})},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,this.markers.splice(this.markers.indexOf(marker),1),this.dispatchEvent({type:"markerremoved",marker:marker}),marker.dispatchEvent({type:"removed"})},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.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.nudge=function(x,y){var nudged=this.nudgeLatLng(this.getCenter(),x,y);this.setCenter(nudged)},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.hasVisibleMarkers=function(event){var markers_visible=0;for(var marker_id in marker_array){var marker=marker_array[marker_id];if(marker.isFilterable&&marker.getMap()){markers_visible++;break}}return 0<markers_visible},WPGMZA.Map.prototype.closeAllInfoWindows=function(){this.markers.forEach(function(marker){marker.infoWindow&&marker.infoWindow.close()})}}),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").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()}})},$(window).on("load",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(){},WPGMZA.MarkerFilter.prototype.onFilteringComplete=function(results){}}),jQuery(function($){WPGMZA.MarkerPanel=function(element){this.element=element},$(window).on("load",function(event){WPGMZA.getCurrentPage()==WPGMZA.PAGE_MAP_EDIT&&(WPGMZA.mapEditPage.markerPanel=new WPGMZA.MarkerPanel($("#wpgmza-marker-edit-panel")[0]))})}),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.MapObject.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.MapObject.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()},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)){window.marker_array||(window.marker_array={}),marker_array[this.map_id]||(marker_array[this.map_id]=[]),marker_array[this.map_id][this.id]=this,window.wpgmaps_localize_marker_data||(window.wpgmaps_localize_marker_data={}),wpgmaps_localize_marker_data[this.map_id]||(wpgmaps_localize_marker_data[this.map_id]=[]);var cloned=$.extend({marker_id:this.id},row);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(){this.map?"map-edit"==WPGMZA.currentPage&&!WPGMZA.pro_version||(this.map.lastInteractedMarker&&this.map.lastInteractedMarker.infoWindow.close(),(this.map.lastInteractedMarker=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){this.map.settings.info_window_open_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(animation){return this.settings.animation},WPGMZA.Marker.prototype.setAnimation=function(animation){this.settings.animation=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.MapObject.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=MYMAP[map_id].map:this.map=MYMAP.map,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:"#63AFF2",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="#63AFF2")},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"),wpgmaps_localize[map_id].other_settings.store_locator_query_string&&wpgmaps_localize[map_id].other_settings.store_locator_query_string.length&&addressInput.attr("placeholder",wpgmaps_localize[map_id].other_settings.store_locator_query_string),inner.append(addressInput);var button,titleSearch=$(original).find("[id='nameInput_"+map_id+"']");if(titleSearch.length){var placeholder=wpgmaps_localize[map_id].other_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)}),$(map.markerFilter).on("filteringcomplete",function(event){this.map.hasVisibleMarkers()||alert(WPGMZA.localized_strings.zero_results)}),$("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,this.title=null,this.name=null,this.link=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polygon.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polygon.prototype.constructor=WPGMZA.Polygon,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)},WPGMZA.Polygon.prototype.toJSON=function(){var result=WPGMZA.MapObject.prototype.toJSON.call(this);return $.extend(result,{name:this.name,title:this.title,link:this.link}),result}}),jQuery(function($){WPGMZA.Polyline=function(row,googlePolyline){WPGMZA.assertInstanceOf(this,"Polyline"),this.title=null,WPGMZA.MapObject.apply(this,arguments)},WPGMZA.Polyline.prototype=Object.create(WPGMZA.MapObject.prototype),WPGMZA.Polyline.prototype.constructor=WPGMZA.Polyline,WPGMZA.Polyline.getConstructor=function(){switch(WPGMZA.settings.engine){case"open-layers":return WPGMZA.OLPolyline;default:return WPGMZA.GooglePolyline}},WPGMZA.Polyline.createInstance=function(row,engineObject){return new(WPGMZA.Polyline.getConstructor())(row,engineObject)},WPGMZA.Polyline.prototype.getPoints=function(){return this.toJSON().points},WPGMZA.Polyline.prototype.toJSON=function(){var result=WPGMZA.MapObject.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($){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&&xhr.setRequestHeader("X-WP-Nonce",WPGMZA.restnonce),params&&params.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.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: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."),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,compressedRoute=route.replace(/\/$/,"")+"/base64"+this.compressParams(data);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)}return 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}})})}),jQuery(function($){WPGMZA.SettingsPage=function(){$("#wpgmza-global-settings").tabs()},WPGMZA.SettingsPage.createInstance=function(){return new WPGMZA.SettingsPage},$(window).on("load",function(event){var useLegacyHTML=WPGMZA.settings.useLegacyHTML||!window.location.href.match(/no-legacy-html/);WPGMZA.getCurrentPage()!=WPGMZA.PAGE_SETTINGS||useLegacyHTML||(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,$(element).find(".wpgmza-not-found-msg").hide(),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)})}),$(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)})},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,"distanceUnits",{get:function(){return 1==this.map.settings.store_locator_distance?WPGMZA.Distance.MILES:WPGMZA.Distance.KILOMETERS}}),Object.defineProperty(WPGMZA.StoreLocator.prototype,"radius",{get:function(){return $("#radiusSelect, #radiusSelect_"+this.map.id).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}):(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){this.state=WPGMZA.StoreLocator.STATE_APPLIED},WPGMZA.StoreLocator.prototype.onReset=function(event){this.state=WPGMZA.StoreLocator.STATE_INITIAL,this._center=null,this._bounds=null,this.map.markerFilter.update({},this)},WPGMZA.StoreLocator.prototype.getFilteringParameters=function(){return this.center?{center:this.center,radius:this.radius}:{}},WPGMZA.StoreLocator.prototype.onFilteringComplete=function(event){var params=event.filteringParams,marker=this.marker;marker&&marker.setVisible(!1),params.center&&marker&&(marker.setPosition(params.center),marker.setVisible(!0),marker.map!=this.map&&this.map.addMarker(marker));var circle=this.circle;if(circle){var factor=this.distanceUnits==WPGMZA.Distance.MILES?WPGMZA.Distance.KILOMETERS_PER_MILE:1;circle.setVisible(!1),params.center&&params.radius&&(circle.setRadius(params.radius*factor),circle.setCenter(params.center),circle.setVisible(!0),circle.map!=this.map&&this.map.addCircle(circle)),circle instanceof WPGMZA.ModernStoreLocatorCircle&&(circle.settings.radiusString=this.radius)}this.map.hasVisibleMarkers()?$(this.element).find(".wpgmza-not-found-msg").hide():$(this.element).find(".wpgmza-not-found-msg").show()}}),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"),this.element.length?"open-layers"!=WPGMZA.settings.engine?(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):this.element.remove():console.warn("No element to initialise theme editor on")},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_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],this.element.length?($("#wpgmza-theme-presets").owlCarousel({items:5,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")},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.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($){$(window).on("load",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:(this.googleCircle=new google.maps.Circle,this.googleCircle.wpgmzaCircle=this),google.maps.event.addListener(this.googleCircle,"click",function(){self.dispatchEvent({type:"click"})}),options&&this.setOptions(options)},WPGMZA.GoogleCircle.prototype=Object.create(WPGMZA.Circle.prototype),WPGMZA.GoogleCircle.prototype.constructor=WPGMZA.GoogleCircle,WPGMZA.GoogleCircle.prototype.setCenter=function(center){WPGMZA.Circle.prototype.setCenter.apply(this,arguments),this.googleCircle.setCenter(center)},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.setOptions=function(options){var googleOptions={};delete(googleOptions=$.extend({},options)).map,delete googleOptions.center,options.center&&(googleOptions.center=new google.maps.LatLng({lat:parseFloat(options.center.lat),lng:parseFloat(options.center.lng)})),options.radius&&(googleOptions.radius=parseFloat(options.radius)),options.color&&(googleOptions.fillColor=options.color),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity),googleOptions.strokeOpacity=parseFloat(options.opacity)),this.googleCircle.setOptions(googleOptions),options.map&&options.map.addCircle(this)}}),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)throw new Error("No address specified");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(mapObject){Parent.call(this,mapObject),this.setMapObject(mapObject)},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.setMapObject=function(mapObject){mapObject instanceof WPGMZA.Marker?this.googleObject=mapObject.googleMarker:mapObject instanceof WPGMZA.Polygon?this.googleObject=mapObject.googlePolygon:mapObject instanceof WPGMZA.Polyline&&(this.googleObject=mapObject.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.trigger("infowindowclose"))}))},WPGMZA.GoogleInfoWindow.prototype.open=function(map,mapObject){var self=this;if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.createGoogleInfoWindow(),this.setMapObject(mapObject),this.googleInfoWindow.open(this.mapObject.map.googleMap,this.googleObject);var intervalID,guid=WPGMZA.guid(),html="<div id='"+guid+"'>"+this.content+"</div>";return this.googleInfoWindow.setContent(html),intervalID=setInterval(function(event){div=$("#"+guid),div.length&&(clearInterval(intervalID),div[0].wpgmzaMapObject=self.mapObject,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;if(Parent.call(this,element,options),!window.google){var status=WPGMZA.googleAPIStatus,message="Google API not loaded";if(status&&status.message&&(message+=" - "+status.message),"USER_CONSENT_NOT_GIVEN"==status.code)return;throw $(element).html("<div class='notice notice-error'><p>"+WPGMZA.localized_strings.google_api_not_loaded+"<pre>"+message+"</pre></p></div>"),new Error(message)}this.loadGoogleMap(),options&&this.setOptions(options,!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),1==this.settings.transport&&this.enablePublicTransportLayer(!0),this.showPointsOfInterest(this.settings.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)}),"1"==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 bounds=this.googleMap.getBounds(),northEast=bounds.getNorthEast(),southWest=bounds.getSouthWest(),nativeBounds=new WPGMZA.LatLngBounds({});return 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()},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(row){var self=this;Parent.call(this,row),this._opacity=1;var settings={};if(row)for(var name in row)row[name]instanceof WPGMZA.LatLng?settings[name]=row[name].toGoogleLatLng():row[name]instanceof WPGMZA.Map||"icon"==name||(settings[name]=row[name]);this.googleMarker=new google.maps.Marker(settings),(this.googleMarker.wpgmzaMarker=this).googleMarker.setPosition(new google.maps.LatLng({lat:parseFloat(this.lat),lng:parseFloat(this.lng)})),this.googleMarker.setLabel(this.settings.label),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()})}),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){this.map=WPGMZA.getMapByID(map_id),WPGMZA.ModernStoreLocator.call(this,map_id);var options={fields:["name","formatted_address"],types:["geocode"]},restrict=wpgmaps_localize[map_id].other_settings.wpgmza_store_locator_restrict;this.addressInput=$(this.element).find(".addressInput, #addressInput")[0],this.addressInput&&(restrict&&restrict.length&&(options.componentRestrictions={country:restrict}),this.autoComplete=new google.maps.places.Autocomplete(this.addressInput,options)),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;if(Parent.call(this,options,googlePolygon),googlePolygon)this.googlePolygon=googlePolygon;else if(this.googlePolygon=new google.maps.Polygon,options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.paths=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.lineopacity&&(googleOptions.strokeOpacity=parseFloat(options.lineopacity)),options.fillcolor&&(googleOptions.fillColor="#"+options.fillcolor),options.opacity&&(googleOptions.fillOpacity=parseFloat(options.opacity)),this.googlePolygon.setOptions(googleOptions)}this.googlePolygon.wpgmzaPolygon=this,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.getEditable=function(){return this.googlePolygon.getOptions().editable},WPGMZA.GooglePolygon.prototype.setEditable=function(value){this.googlePolygon.setOptions({editable:value})},WPGMZA.GooglePolygon.prototype.toJSON=function(){var result=WPGMZA.Polygon.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolygon.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.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),googlePolyline)this.googlePolyline=googlePolyline;else{if(this.googlePolyline=new google.maps.Polyline(this.settings),options){var googleOptions=$.extend({},options);options.polydata&&(googleOptions.path=this.parseGeometry(options.polydata)),options.linecolor&&(googleOptions.strokeColor="#"+options.linecolor),options.linethickness&&(googleOptions.strokeWeight=parseInt(options.linethickness)),options.opacity&&(googleOptions.strokeOpacity=parseFloat(options.opacity))}if(options&&options.polydata){var path=this.parseGeometry(options.polydata);this.setPoints(path)}}this.googlePolyline.wpgmzaPolyline=this,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.setEditable=function(value){this.googlePolyline.setOptions({editable:value})},WPGMZA.GooglePolyline.prototype.setPoints=function(points){this.googlePolyline.setOptions({path:points})},WPGMZA.GooglePolyline.prototype.toJSON=function(){var result=WPGMZA.Polyline.prototype.toJSON.call(this);result.points=[];for(var path=this.googlePolyline.getPath(),i=0;i<path.getLength();i++){var latLng=path.getAt(i);result.points.push({lat:latLng.lat(),lng:latLng.lng()})}return result}}),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"}),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"})},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($){var Parent=WPGMZA.Circle;WPGMZA.OLCircle=function(options,olFeature){this.center={lat:0,lng:0},this.radius=0,this.fillcolor="#ff0000",this.opacity=.6,Parent.call(this,options,olFeature),this.olStyle=new ol.style.Style(this.getStyleFromSettings()),this.vectorLayer3857=this.layer=new ol.layer.Vector({source:new ol.source.Vector,style:this.olStyle}),olFeature?this.olFeature=olFeature:this.recreate()},WPGMZA.OLCircle.prototype=Object.create(Parent.prototype),WPGMZA.OLCircle.prototype.constructor=WPGMZA.OLCircle,WPGMZA.OLCircle.prototype.recreate=function(){if(this.olFeature&&(this.layer.getSource().removeFeature(this.olFeature),delete this.olFeature),this.center&&this.radius){var x,y,wgs84Sphere=new ol.Sphere(6378137),radius=1e3*parseFloat(this.radius)/2;x=this.center.lng,y=this.center.lat;var circle3857=ol.geom.Polygon.circular(wgs84Sphere,[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.getStyleFromSettings=function(){var params={};return this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillColor,this.opacity)})),params},WPGMZA.OLCircle.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},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.setRadius=function(radius){WPGMZA.Circle.prototype.setRadius.apply(this,arguments),this.recreate()}}),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),$.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(mapObject){var self=this;Parent.call(this,mapObject),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,mapObject){var self=this,latLng=mapObject.getPosition();if(!Parent.prototype.open.call(this,map,mapObject))return!1;this.parent=map,this.overlay&&this.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=new ol.Overlay({element:this.element,stopEvent:!1}),this.overlay.setPosition(ol.proj.fromLonLat([latLng.lng,latLng.lat])),self.mapObject.map.olMap.addOverlay(this.overlay),$(this.element).show(),WPGMZA.OLMarker.renderMode==WPGMZA.OLMarker.RENDER_MODE_VECTOR_LAYER&&WPGMZA.getImageDimensions(mapObject.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.mapObject.map.olMap.removeOverlay(this.overlay),this.overlay=null)},WPGMZA.OLInfoWindow.prototype.setContent=function(html){$(this.element).html("<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.mapObject.map.animateNudge(0,offset,self.mapObject.getPosition())}imgs.each(function(index,el){el.onload=function(){++numImagesLoaded!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}),0!=numImages||inside(self.element,self.mapObject.map.element)||panIntoView()}}}),jQuery(function($){var Parent;WPGMZA.OLMap=function(element,options){var self=this;Parent.call(this,element),this.setOptions(options);var marker,viewOptions=this.settings.toOLViewOptions();$(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("yes"!=self.settings.wpgmza_settings_map_draggable):interaction instanceof ol.interaction.DoubleClickZoom?interaction.setActive(!self.settings.wpgmza_settings_map_clickzoom):interaction instanceof ol.interaction.MouseWheelZoom&&interaction.setActive("yes"!=self.settings.wpgmza_settings_map_scroll)},this),"greedy"!=this.settings.wpgmza_force_greedy_gestures&&"yes"!=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&&"yes"==WPGMZA.settings.wpgmza_settings_map_zoom&&self.olMap.removeControl(control)},this),"yes"!=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.storeLocator&&(marker=this.storeLocator.centerPointMarker)&&(this.olMap.addOverlay(marker.overlay),marker.setVisible(!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;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),new ol.layer.Tile({source:new ol.source.OSM(options)})},WPGMZA.OLMap.prototype.wrapLongitude=function(){var center=this.getCenter();-180<=center.lng&&center.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(row){var self=this;Parent.call(this,row);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.setLabel(this.settings.label),row&&row.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}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}),"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,mapElement=$(this.map.element),olViewportElement=mapElement.children(".ol-viewport");this.canvas=document.createElement("canvas"),this.canvas.className="wpgmza-ol-canvas-overlay",mapElement.append(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),this.olStyle=new ol.style.Style,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].lng),parseFloat(paths[i].lat)]));this.olStyle=new ol.style.Style(this.getStyleFromSettings())}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({wpgmzaPolygon:this})},Parent=WPGMZA.isProVersion()?WPGMZA.ProPolygon:WPGMZA.Polygon,WPGMZA.OLPolygon.prototype=Object.create(Parent.prototype),WPGMZA.OLPolygon.prototype.constructor=WPGMZA.OLPolygon,WPGMZA.OLPolygon.prototype.getStyleFromSettings=function(){var params={};return this.linecolor&&this.lineopacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA("#"+this.linecolor,this.lineopacity)})),this.opacity&&(params.fill=new ol.style.Fill({color:WPGMZA.hexOpacityToRGBA(this.fillcolor,this.opacity)})),params},WPGMZA.OLPolygon.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolygon.prototype.setEditable=function(editable){},WPGMZA.OLPolygon.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates()[0];result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),jQuery(function($){var Parent;WPGMZA.OLPolyline=function(options,olFeature){if(WPGMZA.Polyline.call(this,options),this.olStyle=new ol.style.Style,olFeature)this.olFeature=olFeature;else{var coordinates=[];if(options&&(options.polydata||options.points)){var path;path=options.polydata?this.parseGeometry(options.polydata):options.points;for(var 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)]))}}var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),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]}),style:this.olStyle}),this.layer.getSource().getFeatures()[0].setProperties({wpgmzaPolyline:this})},Parent=WPGMZA.Polyline,WPGMZA.OLPolyline.prototype=Object.create(Parent.prototype),WPGMZA.OLPolyline.prototype.constructor=WPGMZA.OLPolyline,WPGMZA.OLPolyline.prototype.getStyleFromSettings=function(){var params={};return this.settings.strokeOpacity&&(params.stroke=new ol.style.Stroke({color:WPGMZA.hexOpacityToRGBA(this.settings.strokeColor,this.settings.strokeOpacity),width:parseInt(this.settings.strokeWeight)})),params},WPGMZA.OLPolyline.prototype.updateStyleFromSettings=function(){var params=this.getStyleFromSettings();this.olStyle=new ol.style.Style(params),this.layer.setStyle(this.olStyle)},WPGMZA.OLPolyline.prototype.setEditable=function(editable){},WPGMZA.OLPolyline.prototype.setPoints=function(points){this.olFeature&&this.layer.getSource().removeFeature(this.olFeature);for(var coordinates=[],i=0;i<points.length;i++)coordinates.push(ol.proj.fromLonLat([parseFloat(points[i].lng),parseFloat(points[i].lat)]));this.olFeature=new ol.Feature({geometry:new ol.geom.LineString(coordinates)}),this.layer.getSource().addFeature(this.olFeature)},WPGMZA.OLPolyline.prototype.toJSON=function(){var result=Parent.prototype.toJSON.call(this),coordinates=this.olFeature.getGeometry().getCoordinates();result.points=[];for(var i=0;i<coordinates.length;i++){var lonLat=ol.proj.toLonLat(coordinates[i]),latLng={lat:lonLat[1],lng:lonLat[0]};result.points.push(latLng)}return result}}),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.")}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.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)}};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="//cdn.datatables.net/plug-ins/1.10.12/i18n/Afrikaans.json";break;case"sq":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Albanian.json";break;case"am":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Amharic.json";break;case"ar":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Arabic.json";break;case"hy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Armenian.json";break;case"az":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Azerbaijan.json";break;case"bn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bangla.json";break;case"eu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Basque.json";break;case"be":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Belarusian.json";break;case"bg":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Bulgarian.json";break;case"ca":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Catalan.json";break;case"zh":languageURL="zh_TW"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese-traditional.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Chinese.json";break;case"hr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Croatian.json";break;case"cs":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Czech.json";break;case"da":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Danish.json";break;case"nl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Dutch.json";break;case"et":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Estonian.json";break;case"fi":languageURL=WPGMZA.locale.match(/^fil/)?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Filipino.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Finnish.json";break;case"fr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/French.json";break;case"gl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Galician.json";break;case"ka":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Georgian.json";break;case"de":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/German.json";break;case"el":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Greek.json";break;case"gu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Gujarati.json";break;case"he":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hebrew.json";break;case"hi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hindi.json";break;case"hu":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Hungarian.json";break;case"is":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Icelandic.json";break;case"id":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Indonesian.json";break;case"ga":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Irish.json";break;case"it":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Italian.json";break;case"ja":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Japanese.json";break;case"kk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kazakh.json";break;case"ko":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Korean.json";break;case"ky":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Kyrgyz.json";break;case"lv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Latvian.json";break;case"lt":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Lithuanian.json";break;case"mk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Macedonian.json";break;case"ml":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Malay.json";break;case"mn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Mongolian.json";break;case"ne":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Nepali.json";break;case"nb":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Bokmal.json";break;case"nn":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Norwegian-Nynorsk.json";break;case"ps":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Pashto.json";break;case"fa":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Persian.json";break;case"pl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Polish.json";break;case"pt":languageURL="pt_BR"==WPGMZA.locale?"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese-Brasil.json":"//cdn.datatables.net/plug-ins/1.10.12/i18n/Portuguese.json";break;case"ro":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Romanian.json";break;case"ru":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Russian.json";break;case"sr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Serbian.json";break;case"si":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Sinhala.json";break;case"sk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovak.json";break;case"sl":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Slovenian.json";break;case"es":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Spanish.json";break;case"sw":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swahili.json";break;case"sv":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Swedish.json";break;case"ta":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Tamil.json";break;case"te":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/telugu.json";break;case"th":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Thai.json";break;case"tr":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Turkish.json";break;case"uk":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Ukrainian.json";break;case"ur":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Urdu.json";break;case"uz":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Uzbek.json";break;case"vi":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Vietnamese.json";break;case"cy":languageURL="//cdn.datatables.net/plug-ins/1.10.12/i18n/Welsh.json"}return languageURL},WPGMZA.DataTable.prototype.onAJAXResponse=function(response){},WPGMZA.DataTable.prototype.reload=function(){this.dataTable.ajax.reload(null,!1)}}),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.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")}},$(document).ready(function(event){$("[data-wpgmza-admin-marker-datatable]").each(function(index,el){WPGMZA.adminMarkerDataTable=new WPGMZA.AdminMarkerDataTable(el)})})});
js/wpgmaps-admin-core.js CHANGED
@@ -229,31 +229,12 @@ jQuery(function($) {
229
  wpgmza_InitMap();
230
 
231
  jQuery("body").on("click", ".wpgmza_del_btn", function() {
232
- var cur_id = jQuery(this).attr("id");
233
- var marker = wpgmaps_markers_array[cur_id];
234
-
235
- if(!wpgmaps_markers_array[cur_id])
236
- return;
237
 
238
- wpgmaps_markers_array[cur_id].setMap(null);
239
- delete wpgmaps_markers_array[cur_id];
240
 
241
- var data = {
242
- action: 'delete_marker',
243
- security: wpgmaps_nonce,
244
- map_id: wpgmaps_mapid,
245
- marker_id: cur_id
246
- };
247
 
248
- jQuery.post(ajaxurl, data, function(response) {
249
- returned_data = JSON.parse(response);
250
- wpgmaps_localize_marker_data = returned_data.marker_data;
251
-
252
- //jQuery("#wpgmza_marker_holder").html(JSON.parse(response).table_html);
253
- wpgmza_reinitialisetbl();
254
- });
255
-
256
-
257
  });
258
  jQuery("body").on("click", ".wpgmza_poly_del_btn", function() {
259
  var cur_id = jQuery(this).attr("id");
229
  wpgmza_InitMap();
230
 
231
  jQuery("body").on("click", ".wpgmza_del_btn", function() {
 
 
 
 
 
232
 
233
+ var $ = jQuery;
234
+ var marker_id = $(this).attr("data-delete-marker-id");
235
 
236
+ WPGMZA.mapEditPage.map.removeMarkerByID(marker_id);
 
 
 
 
 
237
 
 
 
 
 
 
 
 
 
 
238
  });
239
  jQuery("body").on("click", ".wpgmza_poly_del_btn", function() {
240
  var cur_id = jQuery(this).attr("id");
languages/wp-google-maps-bg_BG.mo CHANGED
Binary file
languages/wp-google-maps-bg_BG.po CHANGED
@@ -1,3156 +1,6625 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpgmaps\n"
4
- "POT-Creation-Date: 2016-07-18 13:48+0200\n"
5
- "PO-Revision-Date: 2016-07-18 13:48+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 1.6.10\n"
13
  "X-Poedit-Basepath: .\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Poedit-KeywordsList: __;_e\n"
16
- "X-Poedit-SearchPath-0: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
17
- "maps\n"
18
- "X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
19
- "maps-gold\n"
20
- "X-Poedit-SearchPath-2: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
21
- "maps-pro\n"
22
- "X-Poedit-SearchPath-3: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
23
- "google-maps-ugm\n"
24
-
25
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:243
26
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3712
27
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:764
28
  #, fuzzy
29
- msgid "settings"
30
- msgstr "Настройки"
 
31
 
32
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:244
33
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3713
34
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:765
35
- #, php-format
36
- msgid ""
37
- "Your Google Maps API key has been successfully saved. This API key can be "
38
- "changed in the %s page"
39
  msgstr ""
40
 
41
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:720
42
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:839
43
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:4217
44
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:4341
45
- msgid "Geocode was not successful for the following reason"
46
- msgstr "Геокодирането не беше успешно по следната причина"
47
-
48
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1173
49
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1335
50
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2550
51
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3636
52
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:4704
53
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:4867
54
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5825
55
- msgid "More details"
56
- msgstr "Повече подробности"
57
-
58
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1595
59
- msgid "Advanced Map Settings"
60
- msgstr "Допълнителни картови настройки"
61
 
62
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1600
63
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1950
64
- msgid "Enable Mass Marker Support"
65
- msgstr "Включи Мулти маркерна подръжка"
 
66
 
67
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1603
68
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1843
69
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1953
70
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1537
71
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1594
72
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1791
73
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1803
74
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1878
75
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1881
76
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1884
77
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2207
78
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5759
79
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5766
80
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:35
81
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3861
82
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3976
83
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4174
84
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4181
85
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4212
86
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4931
87
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4971
88
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5012
89
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5030
90
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5039
91
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5050
92
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5103
93
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5107
94
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5396
95
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5451
96
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:178
97
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:196
98
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
99
  msgid "Yes"
100
  msgstr "Да"
101
 
102
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1604
103
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1843
104
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1954
105
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1538
106
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1551
107
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1594
108
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1791
109
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1803
110
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1878
111
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1881
112
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1884
113
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2206
114
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5759
115
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5766
116
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:35
117
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3861
118
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3976
119
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4174
120
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4181
121
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4212
122
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4930
123
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4934
124
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4944
125
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4971
126
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5012
127
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5030
128
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5039
129
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5050
130
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5102
131
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5107
132
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5395
133
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5450
134
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:179
135
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:197
136
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
  msgid "No"
138
  msgstr "Не"
139
 
140
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1610
141
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6677
142
- #, fuzzy
143
- msgid "Save"
144
- msgstr "Запиши карта"
145
 
146
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1689
147
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5375
148
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
149
  msgid ""
150
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
151
- "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
152
  msgstr ""
153
- "Неочаквана грешка възникна по време на API заявката.</p> <p><a href=\"?\" "
154
- "onclick=\"document.location.reload(); return false;\">Опитай пак</a>"
155
 
156
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1694
157
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5380
158
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:556
159
- msgid "An unknown error occurred"
160
- msgstr "Възникна неочаквана грешка"
161
 
162
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1756
163
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6186
164
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6562
165
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3193
166
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3445
167
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3623
168
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3807
169
- msgid "Your settings have been saved."
170
- msgstr "Твоите настройки бяха запазени."
 
 
 
 
 
 
 
 
 
 
 
 
 
171
 
172
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1811
173
- msgid "Location Tracking"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
174
  msgstr ""
175
 
176
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1838
177
- msgid "Real time location tracking"
178
  msgstr ""
179
 
180
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1841
 
181
  #, fuzzy
182
- msgid "Enable Location Tracking"
183
- msgstr "Включи намирач на магазини"
 
184
 
185
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1849
186
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1796
187
- msgid "Default User Location Icon"
188
  msgstr ""
189
 
190
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1850
191
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1670
192
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1797
193
- #, fuzzy
194
- msgid "Upload Icon"
195
- msgstr "качи снимка"
196
 
197
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1854
198
- msgid "Show"
 
 
199
  msgstr ""
200
 
201
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1856
202
- msgid "Route"
 
 
203
  msgstr ""
204
 
205
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1856
206
  #, fuzzy
207
- msgid "Last Location"
208
- msgstr "Marker данни локация"
 
209
 
210
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1862
211
- msgid "Route Styling"
212
  msgstr ""
213
 
214
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1870
215
- msgid "Route Colour - Normal"
216
  msgstr ""
217
 
218
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1877
219
- msgid "Route Colour - Hover"
220
  msgstr ""
221
 
222
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1884
223
- #, fuzzy
224
- msgid "Route Opacity"
225
- msgstr "Непрозрачност на линията"
 
 
 
226
 
227
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1891
228
  #, fuzzy
229
- msgid "Route Thickness"
230
- msgstr "Дебелина на линия"
 
231
 
232
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1906
233
- msgid "Devices"
234
  msgstr ""
235
 
236
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1924
237
- #, fuzzy
238
- msgid "Marker Clustering"
239
- msgstr "Списък маркери"
240
 
241
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1984
242
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1987
243
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1990
244
- msgid "Real Time Location Tracking"
245
  msgstr ""
246
 
247
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:1995
248
- msgid ""
249
- "Track your location via our app and plot your current location on a map, "
250
- "publicly or privately."
251
  msgstr ""
252
 
253
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2004
254
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
255
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:221
256
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:264
257
- #, fuzzy
258
- msgid "Create Map"
259
- msgstr "Създавай твоя карта"
260
 
261
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2049
262
- #, php-format
263
- msgid "Location as at %1$s"
264
  msgstr ""
265
 
266
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2131
267
- msgid "Successfully accepted the device. Thank you"
268
  msgstr ""
269
 
270
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2172
271
- msgid "Device has been removed. Thank you"
 
 
 
 
272
  msgstr ""
273
 
274
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2193
275
  #, fuzzy
276
- msgid "Marker Data Cleared."
277
- msgstr "Marker данни локация"
 
278
 
279
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2230
280
- msgid "A new device needs your approval to enable real time location tracking."
 
 
281
  msgstr ""
282
 
283
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2231
284
- msgid "Device ID:"
 
 
 
285
  msgstr ""
286
 
287
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2232
288
- #, php-format
289
- msgid "To accept this device, Please follow this link: %1$s"
290
  msgstr ""
291
 
292
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2238
293
- msgid "To reject the device, simply ignore this email."
 
 
 
294
  msgstr ""
295
 
296
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2239
297
- msgid ""
298
- "A new device needs your approval to enable real time location tracking - WP "
299
- "Google Maps"
300
  msgstr ""
301
 
302
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-gold/wp-google-maps-gold.php:2369
303
- msgid "No devices"
 
 
304
  msgstr ""
305
 
306
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1051
307
- msgid "including Pro &amp; Gold add-ons"
308
- msgstr "включително Pro и Gold добавки"
 
 
 
309
 
310
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1051
311
- msgid "including Pro add-on"
312
- msgstr "включително Pro add-on"
 
 
313
 
314
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1056
315
  msgid ""
316
- "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
317
- "a>. Your current Gold version is not compatible with the current Pro version."
 
 
 
318
  msgstr ""
319
- "Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
320
- "\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
321
 
322
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1139
323
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6983
324
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2991
325
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4619
326
- msgid "ZIP / Address:"
327
- msgstr "ПК / Адрес"
328
 
329
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1140
330
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6984
331
- msgid "Title / Description:"
332
- msgstr "Заглавие / Описание:"
333
 
334
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1189
335
- msgid "No marker list"
336
- msgstr "Няма списък маркери"
 
 
337
 
338
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1192
339
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6915
340
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5145
341
- msgid "Basic table"
342
- msgstr "Основна таблица"
343
 
344
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1195
345
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6914
346
- msgid "Basic list"
347
- msgstr "Основен списък"
348
 
349
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1198
350
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6916
351
- msgid "Advanced table"
352
- msgstr "Допълнителна таблица"
 
353
 
354
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1201
355
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6912
356
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:255
357
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5147
358
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5227
359
- msgid "Carousel"
360
- msgstr "Въртележка"
361
 
362
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1280
363
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5845
364
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6917
365
- msgid "Default Infowindow"
366
- msgstr "Дифолт инфо прозорец"
367
 
368
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1282
369
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5847
370
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6918
371
- msgid "Modern Infowindow"
372
- msgstr "Модерен инфо прозорец"
373
 
374
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1284
375
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5849
376
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6920
377
- #, fuzzy
378
- msgid "Modern Plus Infowindow"
379
- msgstr "Модерен инфо прозорец"
380
 
381
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1286
382
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5851
383
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6921
384
- #, fuzzy
385
- msgid "Circular Infowindow"
386
- msgstr "Дифолт инфо прозорец"
387
 
388
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1288
389
- msgid "Currently using your selection chosen in the global settings"
390
- msgstr "В момента е избрана твоята селекция в глобалните настройки"
 
 
 
391
 
392
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1353
393
- msgid "Download this as a CSV file"
394
- msgstr "Изтегли като CSV файл"
 
 
395
 
396
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1353
397
- msgid "Download this data as a CSV file"
398
- msgstr "Изтегли тези данни като CSV файл"
 
 
399
 
400
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1365
401
- msgid "Please update your basic version to use this function."
 
402
  msgstr ""
403
 
404
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1367
405
  #, fuzzy
406
- msgid "Add a New Dataset"
407
- msgstr "Добави нова категория"
408
-
409
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1381
410
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4762
411
- msgid "Create your Map"
412
- msgstr "Създавай твоя карта"
413
 
414
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1381
415
  #, fuzzy
416
- msgid "New"
417
- msgstr "Добави нова"
 
418
 
419
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1388
420
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4767
421
- msgid "General Settings"
422
- msgstr "Основни настройки"
423
 
424
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1389
425
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:30
426
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4768
427
- msgid "Themes"
428
- msgstr "Теми"
429
 
430
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1390
431
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2596
432
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2846
433
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3645
434
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:197
435
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:200
436
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:278
437
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:369
438
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4769
439
- msgid "Directions"
440
- msgstr "Упътвания"
441
 
442
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1391
443
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:138
444
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:141
445
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:30
446
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:23
447
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4770
448
- msgid "Store Locator"
449
- msgstr "Намирач на магазини"
450
 
451
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1392
452
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5595
453
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4294
454
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4771
455
- msgid "Advanced Settings"
456
- msgstr "Допълнителни настройки"
457
 
458
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1393
459
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4772
460
- msgid "Marker Listing Options"
461
- msgstr "Опции списък маркери"
462
 
463
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1431
464
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4805
465
- msgid "Short code"
466
- msgstr "Шорткод"
467
 
468
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1432
469
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4806
470
- msgid "copy this into your post or page to display the map"
471
- msgstr "копирай това в твоя пост или страница за да покаже картата"
472
 
473
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1436
474
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4809
475
- msgid "Map Name"
476
- msgstr "Име на картата"
477
 
478
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1440
479
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4835
480
- msgid "Zoom Level"
481
- msgstr "Зум ниво 1"
482
 
483
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1447
484
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7208
485
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4510
486
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4813
487
- msgid "Width"
488
- msgstr "Широчина"
489
 
490
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1454
491
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4820
492
- #, fuzzy, php-format
493
- msgid "Set to 100% for a responsive map"
494
- msgstr "Нагласи на 100 процента за респонсив карта"
495
 
496
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1459
497
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7209
498
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4511
499
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4825
500
- msgid "Height"
501
- msgstr "Височина"
502
 
503
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1464
504
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4830
505
- #, fuzzy, php-format
506
- msgid ""
507
- "We recommend that you leave your height in PX. Depending on your theme, "
508
- "using % for the height may break your map."
509
  msgstr ""
510
- "Препоръчваме да оставите височината в пискели. Според темата, използвайки "
511
- "проценти за височината може да счупи темата ви."
512
 
513
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1476
514
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4864
515
- msgid "Select a theme for your map"
516
- msgstr "избери тема за картата ви"
517
 
518
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1513
519
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4898
520
- msgid "Or use a custom theme"
521
  msgstr ""
522
 
523
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1514
524
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4899
525
- msgid "Browse the theme directory"
526
  msgstr ""
527
 
528
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1515
529
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4900
530
- #, fuzzy
531
- msgid "Paste your custom theme data here:"
532
- msgstr "Пейст JSON данните тук"
533
 
534
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1517
535
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4902
536
  #, fuzzy
537
- msgid "Preview"
538
- msgstr "Предишен"
539
 
540
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1535
541
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4928
542
- msgid "Enable Directions?"
543
- msgstr "Включи упътвания?"
544
 
545
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1547
546
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4940
547
- msgid "Directions Box Open by Default?"
548
- msgstr "Упътвания включени по подразбиране?"
549
 
550
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1552
551
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4945
552
- msgid "Yes, on the left"
553
- msgstr "Да, отляво"
554
 
555
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1553
556
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4946
557
- msgid "Yes, on the right"
558
- msgstr "Да, отдясно"
559
 
560
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1554
561
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4947
562
- msgid "Yes, above"
563
- msgstr "Да, отгоре"
564
 
565
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1555
566
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4948
567
- msgid "Yes, below"
568
- msgstr "Да, отдолу"
569
 
570
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1561
571
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4954
572
- msgid "Directions Box Width"
573
- msgstr "Упътвания таб широчина"
574
 
575
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1566
576
- msgid "px"
577
- msgstr "px"
578
 
579
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1567
580
- msgid "%"
581
- msgstr "%"
 
 
582
 
583
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1572
584
- msgid "Default 'To' address"
585
- msgstr "по подразбиране 'до' адрес"
 
 
586
 
587
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1588
588
- msgid "General options"
589
- msgstr "Общи настройки"
590
 
591
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1592
592
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4968
593
- msgid "Enable Store Locator"
594
- msgstr "Включи намирач на магазини"
595
-
596
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1599
597
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4976
598
- msgid "Restrict to country"
599
- msgstr "Ограничи до държава"
600
-
601
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1608
602
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4982
603
  #, fuzzy
604
- msgid "No country selected"
605
- msgstr "Позволи избор на категории"
606
-
607
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1620
608
- msgid "Insert country TLD. For example, use DE for Germany."
609
- msgstr "Въведи TLD на държава. Пример, DE за Германия."
610
-
611
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1620
612
- msgid "Leave blank for no restrictions."
613
- msgstr "Остави празно за без ограничения."
614
 
615
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1626
616
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4996
617
- msgid "Show distance in"
618
- msgstr "Покажи разстояния в"
619
 
620
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1629
621
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
622
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4999
623
- msgid "Miles"
624
- msgstr "Мили"
625
 
626
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1629
627
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
628
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4999
629
- msgid "Kilometers"
630
- msgstr "Километри"
 
631
 
632
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1635
 
633
  #, fuzzy
634
- msgid "Store Locator Placement"
635
- msgstr "Документация намирач на магазини"
 
636
 
637
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1638
638
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2036
639
- msgid "Below Map"
640
  msgstr ""
641
 
642
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1638
643
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2036
644
  #, fuzzy
645
- msgid "Above Map"
646
- msgstr "Запиши карта"
 
647
 
648
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1644
649
- msgid "Allow category selection"
650
- msgstr "Позволи избор на категории"
 
651
 
652
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1652
653
- msgid "Allow users to use their location as the starting point"
654
- msgstr "Позволи потребителите да ползват тяхната позиция като стартова точка"
 
 
 
 
655
 
656
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1657
657
  msgid ""
658
- "Please ensure that \"show user's location\" is enabled in the \"Advanced "
659
- "Settings\" tab."
 
 
660
  msgstr ""
661
- "\"Моля, увери се че \"покажи позиция на потребител\" е включена в "
662
- "\"Допълнителни \" \n"
663
- "\"настройки\" таба."
664
 
665
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1661
666
- msgid "Show center point as an icon"
667
  msgstr ""
668
 
669
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1669
670
  #, fuzzy
671
- msgid "Default Icon"
672
- msgstr "Дифолт инфо прозорец"
673
 
674
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1674
675
- msgid "Hide all markers until a search is done"
676
- msgstr "Скрий всички маркери докато не се направи търсенето"
 
677
 
678
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1688
679
- msgid "Query String"
680
- msgstr "Куери стринг"
 
 
681
 
682
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1693
683
- msgid "Enable title search"
684
- msgstr "Включи търсене по заглавие"
 
 
685
 
686
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1702
687
- msgid "Title search String"
688
- msgstr "Търсене по заглавие стринг"
 
 
 
 
689
 
690
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1707
691
- msgid "Style options"
692
- msgstr "Опции стил"
 
 
693
 
694
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1712
695
- msgid "Line color"
696
- msgstr "Цвят на линия"
 
 
 
 
 
 
697
 
698
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1720
699
- msgid "Line opacity"
700
- msgstr "Линия непрозрачност"
701
 
702
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1723
703
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1739
704
- msgid "(0 - 1.0) example: 0.5 for 50%"
705
- msgstr "(0 - 1.0) пример: 0.5 за 50%"
706
 
707
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1728
708
- msgid "Fill color"
709
- msgstr "Запълни цвят"
 
 
 
710
 
711
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1736
712
- msgid "Fill opacity"
713
- msgstr "Запълни непрозрачност"
 
 
 
 
 
 
714
 
715
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1748
716
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5019
717
- msgid "View"
718
- msgstr "Виж"
 
719
 
720
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1748
721
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5019
722
- msgid "Store Locator Documentation"
723
- msgstr "Документация намирач на магазини"
724
 
725
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1761
726
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5095
727
- msgid "Default Marker Image"
728
- msgstr "По подразбиране картинка на маркер"
 
729
 
730
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1762
731
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2180
732
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2184
733
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:101
734
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:183
735
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5096
736
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5463
737
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5467
738
- msgid "Upload Image"
739
- msgstr "качи снимка"
740
 
741
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1762
742
- #, fuzzy
 
 
 
 
 
743
  msgid ""
744
- "Get great map markers <a href='http://www.wpgmaps.com/marker-icons/' "
745
- "target='_BLANK' title='Great Google Map Markers'>here</a>"
746
  msgstr ""
747
- "Вземи маркери за карти <a href='http://mapicons.nicolasmollet.com/' "
748
- "target='_BLANK' title='Great Google Map Markers'>тук</a>"
749
 
750
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1766
751
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4851
752
- msgid "Map type"
753
- msgstr "Вид карта"
 
 
 
 
754
 
755
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1768
756
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7217
757
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4519
758
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4853
759
- msgid "Roadmap"
760
- msgstr "Пътна карта"
761
 
762
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1769
763
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7218
764
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4520
765
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4854
766
- msgid "Satellite"
767
- msgstr "Сателит"
768
 
769
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1770
770
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7219
771
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4521
772
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4855
773
- msgid "Hybrid"
774
- msgstr "Хибрид"
775
 
776
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1771
777
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7220
778
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4522
779
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4856
780
- msgid "Terrain"
781
- msgstr "Терен"
782
 
783
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1777
784
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4841
785
- msgid "Map Alignment"
786
- msgstr "Подравняване на карта"
787
 
788
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1779
789
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4843
790
- msgid "Left"
791
- msgstr "Ляво"
792
 
793
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1780
794
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4844
795
- msgid "Center"
796
- msgstr "Център"
797
 
798
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1781
799
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4845
800
- msgid "Right"
801
- msgstr "Вдясно"
802
 
803
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1782
804
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2197
805
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4846
806
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5144
807
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5384
808
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5439
809
- msgid "None"
810
- msgstr "без"
811
 
812
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1788
813
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5100
814
- msgid "Show User's Location?"
815
- msgstr "Покажи позиция на потребител?"
816
 
817
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1800
818
- msgid "Click marker opens link"
819
- msgstr "Кликане на маркера отваря линк"
820
 
821
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1811
822
  #, fuzzy
823
- msgid "Maximum Zoom Out Level"
824
- msgstr "Максимален зум нивоl"
 
825
 
826
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1840
 
 
 
 
827
  #, fuzzy
828
- msgid "Maximum Zoom In Level"
829
- msgstr "Максимален зум нивоl"
 
830
 
831
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1875
832
- msgid "Enable Layers"
833
- msgstr "Включи слоеве"
 
 
834
 
835
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1879
836
- msgid "Bicycle Layer"
837
- msgstr "Слой колоездач"
838
 
839
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1882
840
- msgid "Traffic Layer"
841
- msgstr "Слой трафик"
 
 
842
 
843
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1885
844
- msgid "Transit Layer"
845
- msgstr "Слой транзит"
846
 
847
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1891
848
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5119
849
- msgid "KML/GeoRSS URL"
 
 
 
 
850
  msgstr ""
851
 
852
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1893
853
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5121
854
- msgid "The KML/GeoRSS layer will over-ride most of your map settings"
855
- msgstr "KML/GeoRSS слой ще препокрие повече от твоите настройки на карти"
856
 
857
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1893
858
- msgid "For multiple sources, separate each one by a comma."
859
- msgstr "За няколко избора, разделете ги със запетая."
860
 
861
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1897
862
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5125
863
- msgid "Fusion table ID"
864
- msgstr "Fusion таблица ID"
865
 
866
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1899
867
- msgid ""
868
- "Read data directly from your Fusion Table. For more information, see <a "
869
- "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
870
- "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
871
- "maps-api.html</a>"
872
  msgstr ""
873
- "Чете данни директно от твоята Fusion таблица. За повече информация, виж <a "
874
- "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
875
- "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
876
- "maps-api.html</a>"
877
 
878
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1909
879
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5874
880
- msgid "Infowindow Style"
881
- msgstr "Стил на инфопрозорец"
 
 
 
 
 
 
882
 
883
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1927
884
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2024
885
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5894
886
- msgid "Your selection:"
887
- msgstr "Твоя избор:"
 
 
 
 
 
888
 
889
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1960
890
- #, fuzzy
891
- msgid "Infowindow Colors"
892
- msgstr "Стил на инфопрозорец"
 
 
 
 
 
 
893
 
894
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1964
895
- #, fuzzy
896
- msgid "Primary Color"
897
- msgstr "Цвят на линк"
898
 
899
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1972
900
- #, fuzzy
901
- msgid "Accent Color"
902
- msgstr "Цвят на линк"
903
 
904
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:1980
905
- #, fuzzy
906
- msgid "Text Color"
907
- msgstr "Цвят на линк"
908
 
909
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2003
910
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
911
- msgid "Marker Listing Style"
912
- msgstr "Стилове на маркерите"
913
 
914
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2033
915
  #, fuzzy
916
- msgid "Marker Listing Placement"
917
- msgstr "Стилове на маркерите"
 
918
 
919
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2042
920
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5161
921
- msgid "Order markers by"
922
- msgstr "Подреди маркерите по"
923
 
924
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2045
925
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7206
926
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7395
927
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:527
928
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:470
929
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:491
930
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:414
931
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:673
932
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:657
933
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4508
934
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4562
935
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5164
936
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5581
937
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5867
938
- msgid "ID"
939
- msgstr "ID"
940
 
941
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2046
942
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2161
943
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6597
944
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6682
945
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7207
946
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:416
947
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:441
948
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:464
949
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/widget_module.class.php:42
950
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:38
951
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:124
952
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4509
953
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4565
954
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5165
955
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5455
956
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5869
957
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5888
958
- msgid "Title"
959
- msgstr "Заглавие"
960
 
961
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2047
962
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:418
963
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:443
964
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:466
965
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4566
966
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5166
967
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5871
968
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5890
969
- msgid "Address"
970
- msgstr "Адрес"
971
 
972
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2048
973
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2171
974
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:419
975
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:444
976
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:467
977
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5167
978
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5460
979
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5872
980
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5891
981
- msgid "Description"
982
- msgstr "Описание"
983
 
984
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2049
985
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2188
986
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7050
987
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:528
988
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:417
989
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:442
990
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:465
991
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3039
992
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5168
993
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5469
994
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5870
995
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5889
996
- msgid "Category"
997
- msgstr "Категория"
998
 
999
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2052
1000
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5171
1001
- msgid "Ascending"
1002
- msgstr "низходящ"
1003
 
1004
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2053
1005
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5172
1006
- msgid "Descending"
1007
- msgstr "възходящ"
 
1008
 
1009
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2064
1010
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5184
1011
- msgid "Move list inside map"
1012
- msgstr "Премести списъка вътре в картата"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1013
 
1014
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2067
1015
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5187
1016
- msgid "Move your marker list inside the map area"
1017
- msgstr "Премести твоя списък маркери вътре в картата"
1018
 
1019
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2067
1020
- msgid "(still in beta)"
1021
- msgstr "(още се тества)"
 
 
1022
 
1023
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2088
1024
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5189
1025
- msgid "Placement: "
1026
- msgstr "Разположение:"
1027
 
1028
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2090
1029
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5191
1030
- msgid "Top Center"
1031
- msgstr "Горе център"
 
 
1032
 
1033
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2091
1034
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5192
1035
- msgid "Top Left"
1036
- msgstr "Горе вляво"
 
1037
 
1038
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2092
1039
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5193
1040
- msgid "Top Right"
1041
- msgstr "Горе вдясно"
 
 
1042
 
1043
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2093
1044
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5194
1045
- msgid "Left Top "
1046
- msgstr "Ляво горе"
 
1047
 
1048
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2094
1049
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5195
1050
- msgid "Right Top"
1051
- msgstr "Вдясно горе"
 
 
 
1052
 
1053
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2095
1054
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5196
1055
- msgid "Left Center"
1056
- msgstr "Ляво център"
 
 
 
1057
 
1058
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2096
1059
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5197
1060
- msgid "Right Center"
1061
- msgstr "Дясно център"
 
 
 
1062
 
1063
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2097
1064
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5198
1065
- msgid "Left Bottom"
1066
- msgstr "Ляво долу"
1067
 
1068
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2098
1069
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5199
1070
- msgid "Right Bottom"
1071
- msgstr "Дясно долу"
 
1072
 
1073
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2099
1074
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5200
1075
- msgid "Bottom Center"
1076
- msgstr "Долу център"
1077
 
1078
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2100
1079
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5201
1080
- msgid "Bottom Left"
1081
- msgstr "Долу ляво"
 
1082
 
1083
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2101
1084
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5202
1085
- msgid "Bottom Right"
1086
- msgstr "Дясно долу"
1087
 
1088
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2103
1089
- msgid "Container Width: "
1090
- msgstr "Широчина на контейнер:"
 
1091
 
1092
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2104
1093
- msgid "Container Height: "
1094
- msgstr "Височина контейнер:"
1095
 
1096
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2114
1097
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5153
1098
- msgid "Filter by Category"
1099
- msgstr "Филтър по категория"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1100
 
1101
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2117
1102
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5156
1103
- msgid "Allow users to filter by category?"
1104
- msgstr "Позволи на потребителите да филтрират по категория?"
 
 
 
 
1105
 
1106
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2136
1107
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5352
1108
- msgid "Save Map"
1109
- msgstr "Запиши карта"
 
 
 
 
 
 
 
 
 
 
1110
 
1111
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2138
1112
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5355
 
 
 
 
 
1113
  msgid ""
1114
- "Tip: Use your mouse to change the layout of your map. When you have "
1115
- "positioned the map to your desired location, press \"Save Map\" to keep your "
1116
- "settings."
 
1117
  msgstr ""
1118
- "Съвет: Ползвай мишката си за да смениш вида на картата. Когато си \"\n"
1119
- "\"позициониран на желаното място, натисни \"запиши карта\" за да ти се "
1120
- "запазят \"\n"
1121
- "\"настройките.\""
1122
 
1123
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2148
1124
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5362
1125
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5371
1126
- msgid "Markers"
1127
- msgstr "Маркери"
1128
 
1129
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2149
1130
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:35
1131
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5489
1132
- msgid "Polygons"
1133
- msgstr "Полигони"
1134
 
1135
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2150
1136
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:40
1137
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:35
1138
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5365
1139
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5494
1140
- msgid "Polylines"
1141
- msgstr "Полиноми"
 
 
 
1142
 
1143
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2151
1144
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5366
1145
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5499
1146
- msgid "Heatmaps"
 
 
 
 
 
 
1147
  msgstr ""
1148
 
1149
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2156
1150
- msgid "Add a marker"
1151
- msgstr "Добави маркер"
 
1152
 
1153
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2166
1154
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5375
1155
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5430
1156
- msgid "Address/GPS"
1157
- msgstr "Адрес/GPS"
1158
 
1159
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2167
1160
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5376
1161
- msgid "Or right click on the map"
1162
- msgstr "или десен клик върху картата"
1163
 
1164
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2179
1165
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5462
1166
- msgid "Pic URL"
1167
- msgstr "Снимка URL"
1168
 
1169
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2181
1170
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5464
1171
- msgid "Link URL"
1172
- msgstr "Линк URL"
1173
 
1174
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2182
1175
- msgid "Format: http://www.domain.com"
1176
- msgstr "Формат: http://www.domain.com"
 
1177
 
1178
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2183
1179
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5466
1180
- msgid "Custom Marker"
1181
- msgstr "Къстъм маркери"
1182
 
1183
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2184
1184
- msgid "ignore if you want to use the default marker"
1185
- msgstr "игнорирай ако искаш да ползваш дифолт маркера"
1186
 
1187
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2185
1188
- msgid "This is a retina ready marker"
1189
- msgstr "Това е retina маркер"
1190
 
1191
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2194
1192
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5381
1193
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5436
1194
- msgid "Animation"
1195
- msgstr "Анимация"
1196
 
1197
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2198
1198
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5385
1199
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5440
1200
- msgid "Bounce"
1201
- msgstr "Боунс"
1202
 
1203
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2199
1204
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5386
1205
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5441
1206
- msgid "Drop"
1207
- msgstr "Дроп"
1208
 
1209
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2203
1210
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5392
1211
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5447
1212
- msgid "InfoWindow open by default"
1213
- msgstr "Инфопрозорец отворен по дифолт"
1214
 
1215
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2213
1216
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5402
1217
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5478
1218
- msgid "Add Marker"
1219
- msgstr "Добави маркер"
1220
 
1221
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2213
1222
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5402
1223
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
1224
- msgid "Adding"
1225
- msgstr "Добавяне"
1226
 
1227
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2214
1228
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5403
1229
- msgid "Save Marker"
1230
- msgstr "Запиши маркер"
 
1231
 
1232
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2214
1233
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5403
1234
- msgid "Saving"
1235
- msgstr "Запазване"
 
1236
 
1237
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2217
1238
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5406
1239
- msgid "Remember to save your marker"
1240
- msgstr "Не забравяй да запишеш маркера си"
1241
 
1242
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2227
1243
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6588
1244
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6672
1245
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:25
1246
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:29
1247
- msgid "Add a Polygon"
1248
- msgstr "Добави полигон"
1249
 
1250
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2228
1251
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5490
1252
- msgid "Add a New Polygon"
1253
- msgstr "Добави нов полигон"
 
1254
 
1255
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2232
1256
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:25
1257
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:28
1258
- msgid "Add a Polyline"
1259
- msgstr "Добави полином"
1260
 
1261
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2233
1262
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5495
1263
- msgid "Add a New Polyline"
1264
- msgstr "Добави нов полином"
 
1265
 
1266
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2237
1267
  #, fuzzy
1268
- msgid "Add a dataset"
1269
- msgstr "Добави маркер"
 
1270
 
1271
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2251
1272
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5517
1273
- msgid "Remember to save your map!"
1274
- msgstr "Не забравяй да запишеш картата си!"
1275
 
1276
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2259
1277
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5530
1278
- msgid "Your Markers"
1279
- msgstr "Твоите маркери"
1280
 
1281
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2269
1282
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5553
1283
- msgid ""
1284
- "WP Google Maps encourages you to make use of the amazing icons created by "
1285
- "Nicolas Mollet's Maps Icons Collection"
1286
- msgstr ""
1287
- "\"WP Google Maps те насърчава да ползваш невероятните икони създадени от "
1288
- "Nicolas Mollet's Maps Icons Collection"
1289
 
1290
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2269
1291
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5553
1292
- msgid "and to credit him when doing so."
1293
- msgstr "и да го поздравите ако ги като ги ползвате"
1294
 
1295
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2442
1296
  #, fuzzy
1297
- msgid ""
1298
- "The map ID you have entered does not exist. Please enter a map ID that "
1299
- "exists."
1300
- msgstr "Тази директория не същестува. Моля, създайте я."
1301
-
1302
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2647
1303
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2648
1304
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7000
1305
- msgid "Use my location"
1306
- msgstr "Използвай моята позиция"
1307
-
1308
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2677
1309
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2684
1310
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2692
1311
- msgid "Filter by"
1312
- msgstr "Филтър по"
1313
-
1314
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2846
1315
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:278
1316
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:369
1317
- msgid "Get directions to"
1318
- msgstr "Вземи ъпъватния до"
1319
-
1320
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2877
1321
- msgid "Get Directions"
1322
- msgstr "Вземи упътвания"
1323
 
1324
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2882
1325
  msgid "For"
1326
  msgstr "За"
1327
 
1328
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2886
1329
  msgid "Driving"
1330
  msgstr "Шофиране"
1331
 
1332
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2887
1333
  msgid "Walking"
1334
  msgstr "Ходене"
1335
 
1336
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2888
 
 
 
 
 
 
1337
  msgid "Bicycling"
1338
  msgstr "Колоездене"
1339
 
1340
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2891
1341
  msgid "show options"
1342
  msgstr "покажи опции"
1343
 
1344
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2892
1345
  msgid "hide options"
1346
  msgstr "скрий опции"
1347
 
1348
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2894
1349
  msgid "Avoid Tolls"
1350
  msgstr "Избегни пътни такси"
1351
 
1352
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2895
1353
  msgid "Avoid Highways"
1354
  msgstr "избегни магистрали"
1355
 
1356
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2901
1357
- msgid "From"
1358
- msgstr "От"
1359
-
1360
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2909
1361
- msgid "To"
1362
- msgstr "До"
1363
 
1364
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2919
1365
  msgid "Go"
1366
  msgstr "Отиди"
1367
 
1368
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2962
1369
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2995
1370
- msgid "Fetching directions..."
1371
- msgstr "Изтегляне на упътвания..."
 
1372
 
1373
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2965
1374
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2997
 
1375
  msgid "Reset directions"
1376
  msgstr "Ресет упътвания"
1377
 
1378
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2967
1379
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:2999
1380
- msgid "Print directions"
1381
- msgstr "Принт упътвания"
 
1382
 
1383
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3073
1384
- msgid "Thank you. Your marker is awaiting approval."
1385
- msgstr "Благодаря. Твоят маркер чака одобрение."
1386
 
1387
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3641
1388
- msgid "Get directions"
1389
- msgstr "Вземи упътвания"
1390
-
1391
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3642
1392
- msgid "My location"
1393
- msgstr "Моето местоположение"
1394
-
1395
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3643
1396
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2114
1397
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2255
1398
- msgid "km away"
1399
- msgstr "km разстояние"
1400
 
1401
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3644
1402
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2112
1403
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2253
1404
- msgid "miles away"
1405
- msgstr "мили разстояние"
1406
 
1407
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3648
1408
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3650
1409
  #, fuzzy
1410
- msgid "Please fill out both the \"from\" and \"to\" fields"
1411
- msgstr "оля, попълни и двете полета 'от' и 'до'"
 
1412
 
1413
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3653
1414
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3655
1415
- msgid "Getting your current location address..."
1416
- msgstr "Взимане на твоето местоположение ..."
 
1417
 
1418
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3659
1419
- msgid "Show _MENU_ entries"
1420
- msgstr "Покажи _MENU_ entries"
 
 
1421
 
1422
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3660
1423
- msgid "Nothing found - sorry"
1424
- msgstr "Нищо не е намерено - сори"
 
 
1425
 
1426
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3661
1427
- msgid "Showing _START_ to _END_ of _TOTAL_ records"
1428
- msgstr "Показване _START_ to _END_ of _TOTAL_ записа"
 
 
1429
 
1430
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3662
1431
- msgid "Showing 0 to 0 of 0 records"
1432
- msgstr "Показване 0 to 0 от 0 записи"
 
 
1433
 
1434
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3663
1435
- msgid "(filtered from _MAX_ total records)"
1436
- msgstr "(filtered from _MAX_ total records)"
 
 
1437
 
1438
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3664
1439
- msgid "First"
1440
- msgstr "Първи"
 
 
 
 
1441
 
1442
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3665
1443
- msgid "Last"
1444
- msgstr "Последен"
 
 
1445
 
1446
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3666
1447
- msgid "Next"
1448
- msgstr "Следващ"
 
 
1449
 
1450
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3667
1451
- msgid "Previous"
1452
- msgstr "Предишен"
 
1453
 
1454
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3668
1455
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7070
1456
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3046
1457
- msgid "Search"
1458
- msgstr "Търси"
 
 
1459
 
1460
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:3673
1461
- msgid "Please prove that you are human by checking the checkbox above"
1462
- msgstr "Моля, докажи че си човек кликайки горния чекбокс."
 
1463
 
1464
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5020
1465
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/widget_module.class.php:7
1466
- msgid "WP Google Maps"
1467
- msgstr "WP Google Maps"
1468
 
1469
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5020
 
1470
  msgid ""
1471
- "Please ensure you have <strong>both</strong> the <strong>Basic</strong> and "
1472
- "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1473
- "the same time in order for the plugin to function correctly."
1474
  msgstr ""
1475
- "Моля, убеди се че имаш и <strong>двете</strong> <strong>Основен</strong> "
1476
- "и \n"
1477
- "<strong>Про</strong> версии на WP Google Maps инсталирани и активирани "
1478
- "едновременно за да работят коректно"
1479
-
1480
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5067
1481
- msgid "Download ALL marker data to a CSV file"
1482
- msgstr "Изтегли всички данни за маркери в CSV файл."
1483
 
1484
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5068
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1485
  #, fuzzy
1486
- msgid "Download ALL map data to a CSV file"
1487
- msgstr "Изтегли всички данни за маркери в CSV файл."
 
1488
 
1489
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5069
 
1490
  #, fuzzy
1491
- msgid "Download ALL polygon data to a CSV file"
1492
- msgstr "Изтегли всички данни за маркери в CSV файл."
 
1493
 
1494
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5070
 
1495
  #, fuzzy
1496
- msgid "Download ALL polyline data to a CSV file"
1497
- msgstr "Изтегли всички данни за маркери в CSV файл."
1498
-
1499
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5072
1500
- msgid "Advanced Options"
1501
- msgstr "Специални опции"
1502
 
1503
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5087
1504
- #, fuzzy
1505
- msgid "Map Data"
1506
- msgstr "Име на картата"
1507
 
1508
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5088
1509
- #, fuzzy
1510
- msgid "Marker Data"
1511
- msgstr "Marker данни локация"
 
 
 
 
 
 
 
 
 
1512
 
1513
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5089
1514
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:471
1515
- msgid "Polygon Data"
1516
- msgstr "Данни полигон"
 
 
 
 
 
1517
 
1518
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5090
1519
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:492
1520
- msgid "Polyline Data"
1521
- msgstr "Полином данни"
 
 
 
1522
 
1523
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5095
1524
- #, fuzzy
1525
- msgid "Upload Map CSV File"
1526
- msgstr "Качи CSV файл"
1527
 
1528
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5103
1529
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5117
1530
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5139
1531
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5158
1532
- msgid "Replace existing data with data in file"
1533
- msgstr "Замени сегашните данни с данните от файла"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1534
 
1535
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5106
1536
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5123
1537
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5142
1538
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5161
1539
- msgid "Upload File"
1540
- msgstr "качи файл"
1541
 
1542
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5107
1543
- msgid "Download Map Data"
1544
  msgstr ""
1545
 
1546
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5113
 
1547
  #, fuzzy
1548
- msgid "Upload Marker CSV File"
1549
- msgstr "Качи CSV файл"
1550
-
1551
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5118
1552
- msgid ""
1553
- "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1554
- msgstr "Автоматично геокодиране на адресите до GPS координати ако не са дадени"
1555
-
1556
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5120
1557
- msgid "Google API Key (Required)"
1558
- msgstr "Google API Key (задължително)"
1559
 
1560
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5121
1561
- #, fuzzy
1562
  msgid ""
1563
- "You will need a Google Maps Geocode API key for this to work. See <a "
1564
- "href='https://developers.google.com/maps/documentation/geocoding/"
1565
- "#Limits'>Geocoding Documentation</a>"
1566
  msgstr ""
1567
- "Ще ти трябва Google Maps Geocode API key за да работи това. Виж https://"
1568
- "developers.google.com/maps/documentation/geocoding/#Limits"
1569
 
1570
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5121
1571
- msgid "There is a 0.12second delay between each request"
1572
- msgstr "Има 0.12 секунди закъснение между всяка заявка"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1573
 
1574
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5124
 
 
 
 
 
 
 
1575
  #, fuzzy
1576
- msgid "Download Marker Data"
1577
- msgstr "Изтегли всички данни за маркери в CSV файл."
 
1578
 
1579
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5131
 
 
 
 
 
 
1580
  #, fuzzy
1581
- msgid "Upload Polygon CSV File"
1582
- msgstr "Качи CSV файл"
 
1583
 
1584
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5143
1585
- #, fuzzy
1586
- msgid "Download Polygon Data"
1587
- msgstr "Данни полигон"
 
 
1588
 
1589
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5150
 
 
 
1590
  #, fuzzy
1591
- msgid "Upload Polyline CSV File"
1592
- msgstr "Качи CSV файл"
 
1593
 
1594
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5162
1595
  #, fuzzy
1596
- msgid "Download Polyline Data"
1597
- msgstr "Полином данни"
1598
 
1599
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5166
1600
- msgid "Need help? Read the documentation."
1601
- msgstr "Трябва ти помощ? Прочети документацията."
 
 
 
 
1602
 
1603
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5175
1604
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6471
1605
- msgid "WP Google Maps Support"
1606
- msgstr "WP Google Maps Support"
 
 
 
 
1607
 
1608
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5178
1609
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6474
1610
- msgid "Documentation"
1611
- msgstr "Документация"
 
 
 
 
 
1612
 
1613
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5180
1614
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6476
1615
- msgid ""
1616
- "Getting started? Read through some of these articles to help you along your "
1617
- "way."
1618
- msgstr "Започваш ли? Поразгледай някои статии за начално запознаване."
 
 
1619
 
1620
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5181
1621
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6477
1622
- msgid "Documentation:"
1623
- msgstr "Документация:"
 
 
 
1624
 
1625
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5183
1626
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6479
1627
- msgid "Creating your first map"
1628
- msgstr "Създаване на твоята първа карта"
 
 
1629
 
1630
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5184
1631
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6480
1632
- msgid "Using your map as a Widget"
1633
- msgstr "Ползване на картата ти като уиджет"
 
 
 
1634
 
1635
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5185
1636
- msgid "Exporting and Importing your map markers"
1637
- msgstr "Експорт и импорт на твоите картови маркери"
 
 
 
 
 
1638
 
1639
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5186
1640
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6481
1641
- msgid "Changing the Google Maps language"
1642
- msgstr "Смяна на Google Maps езика"
 
 
 
1643
 
1644
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5187
1645
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6482
1646
- msgid "WP Google Maps Documentation"
1647
- msgstr "WP Google Maps документацията"
1648
 
1649
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5187
1650
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6482
1651
- msgid "View all documentation."
1652
- msgstr "Виж всички документи."
 
1653
 
1654
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5191
1655
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6486
1656
- msgid "Troubleshooting"
1657
- msgstr "Отстраняване на проблеми"
 
1658
 
1659
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5193
1660
- msgid ""
1661
- "WP Google Maps Pro has a diverse and wide range of features which may, from "
1662
- "time to time, run into conflicts with the thousands of themes and other "
1663
- "plugins on the market."
1664
  msgstr ""
1665
- "WP Google Maps Pro има широк спектър от екстри които може да доведат до "
1666
- "конфликти от време на време, влизат в конфликти със стотици теме и други "
1667
- "плъгини."
1668
 
1669
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5194
1670
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6489
1671
- msgid "Common issues:"
1672
- msgstr "Чести проблеми:"
 
 
 
 
 
 
 
1673
 
1674
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5196
1675
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6491
1676
- msgid "My map is not showing on my website"
1677
- msgstr "Картата ми не се показва на сайта ми"
1678
 
1679
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5197
1680
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6492
1681
- msgid "My markers are not showing on my map in the front-end"
1682
- msgstr "Маркерите ми не се показват на картата пред потребителите"
1683
 
1684
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5198
1685
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6493
1686
- msgid "I'm getting jQuery errors showing on my website"
1687
- msgstr "Получавам jQuery грешки, които се показват на сайта ми"
1688
 
1689
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5202
1690
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:40
1691
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:45
1692
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3831
1693
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6497
1694
- msgid "Support"
1695
- msgstr "Съпорт"
1696
 
1697
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5204
1698
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6499
1699
- msgid "Still need help? Use one of these links below."
1700
- msgstr "Все още ти трябва помощ? Ползвай някой от линковете долу."
 
 
 
 
 
 
 
 
1701
 
1702
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5206
1703
- #, fuzzy
1704
- msgid "Support desk"
1705
- msgstr "Съпорт"
1706
 
1707
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5207
1708
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6502
1709
- msgid "Contact us"
1710
- msgstr "Свържи се с нас"
 
1711
 
1712
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5223
1713
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4015
1714
- msgid "WP Google Map Settings"
1715
- msgstr "WP Google Map настройки"
 
1716
 
1717
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5247
1718
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3826
1719
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4149
1720
- msgid "Maps"
1721
- msgstr "Карти"
1722
 
1723
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5248
1724
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4150
1725
- msgid "InfoWindows"
1726
- msgstr "Инфопрозорци"
1727
 
1728
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5249
1729
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:236
1730
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:239
1731
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4151
1732
- msgid "Marker Listing"
1733
- msgstr "Списък маркери"
1734
 
1735
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5250
1736
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3829
1737
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4152
1738
- msgid "Advanced"
1739
- msgstr "Напреднал"
1740
 
1741
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5251
1742
- msgid "Visitor Generated Markers"
1743
- msgstr "Посетител генерирал маркери"
 
 
1744
 
1745
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5252
1746
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4153
1747
- msgid "Error Log"
1748
- msgstr "Error Log"
 
1749
 
1750
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5270
1751
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4373
1752
- msgid "WP Google Maps Error log"
1753
- msgstr "WP Google Maps Error log"
1754
 
1755
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5271
1756
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4374
1757
  msgid ""
1758
- "Having issues? Perhaps something below can give you a clue as to what's "
1759
- "wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
1760
  msgstr ""
1761
- "Нещо не е ок? Вероятно нещо от по долу информацията може да даде човек какво "
1762
- "не е наред грешно. Ако ли не пиши на nick@wpgmaps.com за помощ!"
1763
-
1764
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5284
1765
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4381
1766
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
1767
- msgid "Save Settings"
1768
- msgstr "Запиши настройките"
1769
-
1770
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5393
1771
- msgid "Visitor Generated Markers Settings"
1772
- msgstr "Посетителски настройки за генерирани маркери"
1773
-
1774
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5394
1775
- msgid "Purchase the Visitor Generated Markers Add-on"
1776
- msgstr "Поръчки на посетителски добавки за маркери"
1777
 
1778
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5394
1779
- msgid ""
1780
- "to enable this feature. <br /><br />If you have already purchased it please "
1781
- "ensure that you have uploaded activated the plugin."
1782
  msgstr ""
1783
- "за включване на тази екстра. <br /><br />Ако вече сте поръчали, моля убедете "
1784
- "се че сте ъплоуднали и активирали този плъгин"
1785
 
1786
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5469
1787
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4233
1788
- msgid "Marker Listing Settings"
1789
- msgstr "настройки по маркерите списък"
1790
 
1791
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5470
1792
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4234
1793
- msgid ""
1794
- "Changing these settings will alter the way the marker list appears on your "
1795
- "website."
1796
  msgstr ""
1797
- "Променяйки тези настройки ще се отразят на това как излизат в твоя сайт."
1798
-
1799
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5473
1800
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4240
1801
- msgid "Advanced Marker Listing"
1802
- msgstr "Напреднали маркерни списъци"
1803
 
1804
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5473
1805
- msgid "Basic Marker Listings"
1806
- msgstr "Основни маркерни списъци"
 
 
 
 
1807
 
1808
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5476
1809
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4243
1810
- msgid "Column settings"
1811
- msgstr "Настройки колона"
 
1812
 
1813
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5478
1814
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4245
1815
- msgid "Hide the Icon column"
1816
- msgstr "Скрий иконата за колоната"
 
 
 
 
 
 
 
 
1817
 
1818
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5479
1819
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4246
1820
- msgid "Hide the Title column"
1821
- msgstr "Скрий колона заглавие"
 
 
 
1822
 
1823
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5480
1824
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4247
1825
- msgid "Hide the Address column"
1826
- msgstr "Скрий колона адрес"
 
1827
 
1828
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5481
1829
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4248
1830
- msgid "Hide the Category column"
1831
- msgstr "Скрий колона категория"
1832
 
1833
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5482
1834
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4249
1835
- msgid "Hide the Description column"
1836
- msgstr "Скрий колона описание"
1837
 
1838
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5486
1839
- msgid "Show X items by default"
1840
- msgstr "Покажи X неща по дифолт"
 
1841
 
1842
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5501
1843
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4255
1844
- msgid "Carousel Marker Listing"
1845
- msgstr "Въртележка маркер списъци"
1846
 
1847
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5504
1848
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4258
1849
- msgid "Theme selection"
1850
- msgstr "Избор на тема"
1851
 
1852
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5507
1853
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4261
1854
- msgid "Sky"
1855
- msgstr "Небе"
1856
 
1857
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5508
1858
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4262
1859
- msgid "Sun"
1860
- msgstr "Слънце"
 
1861
 
1862
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5509
1863
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4263
1864
- msgid "Earth"
1865
- msgstr "Земя"
 
1866
 
1867
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5510
1868
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4264
1869
- msgid "Monotone"
1870
- msgstr "Монотон"
 
 
1871
 
1872
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5511
1873
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4265
1874
- msgid "PinkPurple"
1875
- msgstr "Розововиолетова"
 
 
1876
 
1877
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5512
1878
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4266
1879
- msgid "White"
1880
- msgstr "Бяла"
 
1881
 
1882
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5513
1883
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4267
1884
- msgid "Black"
1885
- msgstr "Черна"
 
 
1886
 
1887
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5518
1888
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4272
1889
- msgid "Carousel settings"
1890
- msgstr "Настройка въртележка"
1891
 
1892
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5520
1893
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4274
1894
- msgid "Hide the Image"
1895
- msgstr "Скрий снимка"
1896
 
1897
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5521
1898
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4275
1899
- msgid "Hide the Title"
1900
- msgstr "Скрий заглавие"
 
1901
 
1902
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5522
1903
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4276
1904
- msgid "Hide the Marker Icon"
1905
- msgstr "Скрий иконата на маркера"
1906
 
1907
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5523
1908
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4277
1909
- msgid "Hide the Address"
1910
- msgstr "Скрий адреса"
 
1911
 
1912
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5524
1913
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4278
1914
- msgid "Hide the Description"
1915
- msgstr "Скрий описанието"
 
1916
 
1917
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5525
1918
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4279
1919
- msgid "Hide the Marker Link"
1920
- msgstr "Скрий линка на маркера"
 
1921
 
1922
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5526
1923
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4280
1924
- msgid "Hide the Directions Link"
1925
- msgstr "Скрий линка упътвания"
 
1926
 
1927
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5527
1928
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4281
1929
- msgid "Resize Images with Timthumb"
1930
- msgstr "Рисайз картинки с Timthumb"
1931
 
1932
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5528
1933
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4282
1934
- msgid "Enable lazyload of images"
1935
- msgstr "Включи lazyload на снимки"
1936
 
1937
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5529
1938
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4283
1939
- msgid "Enable autoheight"
1940
- msgstr "Включи автовисочина"
1941
 
1942
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5530
1943
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4284
1944
- msgid "Enable pagination"
1945
- msgstr "Включи на страници"
1946
 
1947
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5531
1948
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4285
1949
- msgid "Enable navigation"
1950
- msgstr "Включи навигация"
1951
 
1952
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5532
1953
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4286
1954
- msgid "Items"
1955
- msgstr "Неща"
 
1956
 
1957
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5533
1958
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4287
1959
- msgid "Autoplay after x milliseconds (1000 = 1 second)"
1960
- msgstr "Автоплей след x милисекунди (1000 = 1 секунда)"
1961
 
1962
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5548
1963
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5549
1964
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4311
1965
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4321
1966
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4342
1967
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4352
1968
- msgid "You can use the following"
1969
- msgstr "Може да ползваш следните"
1970
 
1971
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5577
1972
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4127
1973
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6457
1974
- msgid "This folder does not exist. Please create it."
1975
- msgstr "Тази директория не същестува. Моля, създайте я."
1976
 
1977
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5583
1978
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4130
1979
- msgid "File Permissions:"
1980
- msgstr "Файл пермишъни:"
 
 
 
 
 
 
1981
 
1982
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5583
1983
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4130
1984
  msgid ""
1985
- " - The plugin does not have write access to this folder. Please CHMOD this "
1986
- "folder to 755 or 777, or change the location"
1987
  msgstr ""
1988
- "- Плъгинът няма права на писане в тази директория. Моля, CHMOD тази "
1989
- "директория до 755 или 777, или смени и мястото."
1990
 
1991
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5601
1992
  #, fuzzy
1993
- msgid "Google Maps API Key (optional)"
1994
- msgstr "Google API Key (задължително)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1995
 
1996
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5604
1997
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1998
  msgid ""
1999
- "This API key can be obtained from the <a href='https://console.developers."
2000
- "google.com' target='_BLANK'>Google Developers Console</a>. Our <a "
2001
- "href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
2002
- "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2003
- "this. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2004
  msgstr ""
2005
 
2006
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5610
2007
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4336
2008
  msgid ""
2009
- "We suggest that you change the two fields below ONLY if you are experiencing "
2010
- "issues when trying to save the marker XML files."
2011
  msgstr ""
2012
- "Предлагаме да променяш двете полета долу САМО ако си с опит проблеми когато "
2013
- "опиташ да запишеш XML files."
2014
 
2015
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5613
2016
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4330
2017
- msgid "Pull marker data from"
2018
- msgstr "Дръпни маркер данни от"
 
 
2019
 
2020
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5615
2021
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4332
2022
- msgid "Database (Great for small amounts of markers)"
2023
- msgstr "База данни (подходящо за малко количества от маркери)"
 
 
2024
 
2025
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5616
2026
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4333
2027
- msgid "XML File (Great for large amounts of markers)"
2028
- msgstr "XML File (подходящо за големи количества от маркери)"
 
 
2029
 
2030
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5620
2031
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4307
2032
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4338
2033
- msgid "Marker data XML directory"
2034
- msgstr "Данни за маркери в XML директория"
2035
 
2036
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5626
2037
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5636
2038
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4312
2039
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4322
2040
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4343
2041
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4353
2042
- msgid "Currently using"
2043
- msgstr "В момента ползва"
2044
 
2045
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5630
2046
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4316
2047
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4347
2048
- msgid "Marker data XML URL"
2049
- msgstr "Маркер данни от XML URL"
2050
 
2051
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5640
2052
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5643
2053
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4357
2054
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4360
2055
- msgid "Custom CSS"
2056
- msgstr "Къстъм CSS"
2057
 
2058
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5725
2059
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4156
2060
- msgid "Map Settings"
2061
- msgstr "Настройки карта"
2062
 
2063
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5732
2064
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4159
2065
- msgid "General Map Settings"
2066
- msgstr "Главни настройки на карта"
2067
 
2068
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5734
2069
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4161
2070
- msgid "Disable StreetView"
2071
- msgstr "Изключи StreetView"
 
 
2072
 
2073
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5735
2074
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4162
2075
- msgid "Disable Zoom Controls"
2076
- msgstr "Изключи Zoom контрол"
 
 
 
 
 
 
2077
 
2078
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5736
2079
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4163
2080
- msgid "Disable Pan Controls"
2081
- msgstr "Изключи Pan контрол"
2082
 
2083
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5737
2084
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4164
2085
- msgid "Disable Map Type Controls"
2086
- msgstr "Изключи Map Type контрол"
2087
 
2088
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5738
2089
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4165
2090
- msgid "Disable Mouse Wheel Zoom"
2091
- msgstr "Изключи Mouse Wheel Zoom"
2092
 
2093
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5739
2094
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4166
2095
- msgid "Disable Mouse Dragging"
2096
- msgstr "Изключи Mouse влачене"
2097
 
2098
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5740
2099
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4167
2100
- msgid "Disable Mouse Double Click Zooming"
2101
- msgstr "Изключи Mouse двоен клик Zooming"
 
2102
 
2103
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5744
2104
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4224
2105
- msgid "Open Marker InfoWindows by"
2106
- msgstr "Отвори маркер инфопрозорец по"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2107
 
2108
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5748
2109
- msgid "Filter by category displayed as"
2110
- msgstr "Филтър по категория показани като"
2111
 
2112
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5750
2113
- msgid "Dropdown"
2114
- msgstr "Дропдаун"
2115
 
2116
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5751
2117
- msgid "Checkboxes"
2118
- msgstr "Чекбоксове"
2119
 
2120
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5757
2121
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4172
2122
- msgid "Troubleshooting Options"
2123
- msgstr "Опции отстраняване на проблеми"
2124
 
2125
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5759
2126
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4174
2127
  #, fuzzy
2128
- msgid ""
2129
- "Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
2130
- "receiving jQuery related errors after updating to WordPress 4.5)"
2131
- msgstr ""
2132
- "Презапис сегашното jQuery с версия 1.8.3 (Отметни това ако получаваш jQuery "
2133
- "свързани грешки)"
2134
 
2135
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5766
2136
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4181
2137
- msgid ""
2138
- "Do not load the Google Maps API (Only check this if your theme loads the "
2139
- "Google Maps API by default)"
2140
  msgstr ""
2141
 
2142
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5771
2143
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4186
2144
- msgid "Use Google Maps API"
2145
- msgstr "Ползвай Google Maps API"
2146
 
2147
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5782
2148
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4197
2149
- msgid "Lowest level of access to the map editor"
2150
- msgstr "Най-ниско ниво на достъп до редакция на картата"
2151
 
2152
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5794
2153
- msgid "Retina Icon Width"
2154
- msgstr "Retina Icon Широчина"
 
 
2155
 
2156
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5798
2157
- msgid "Retina Icon Height"
2158
- msgstr "Retina Icon Височина"
 
 
2159
 
2160
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5853
2161
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5855
2162
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6922
2163
  #, fuzzy
2164
- msgid "No Global Setting"
2165
- msgstr "Основни настройки"
2166
-
2167
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5868
2168
- msgid "InfoWindow Settings"
2169
- msgstr "Инфопрозорец Настройки"
2170
 
2171
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5904
2172
- msgid "Image Thumbnails"
2173
- msgstr "Снимки умалени"
2174
 
2175
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5906
2176
- msgid "Do not use TimThumb"
2177
- msgstr "Не ползвай TimThumb"
2178
 
2179
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5907
 
 
 
 
2180
  msgid ""
2181
- "(Timthumb support will be discontinued in the next pro version release. "
2182
- "Please check this box and make the necessary changes to your images using "
2183
- "the settings below.)"
2184
  msgstr ""
2185
- "(Timthumb подръжката ще бдъе спряна в следващата pro версия. Моля, отметни "
2186
- "тук и направи нужните промени в ползваните картинки в Настройки по долу.)"
2187
 
2188
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5912
2189
- msgid "Resize Images"
2190
- msgstr "Рисайз картинки"
2191
 
2192
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5914
2193
- msgid "Resize all images to the below sizes"
2194
- msgstr "Рисайз всички картинки до по долу размера"
 
2195
 
2196
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5918
2197
- msgid "Default Image Width"
2198
- msgstr "Дифолт снимка Широчина"
 
2199
 
2200
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5919
2201
- msgid "(can be left blank - max width will be limited to max infowindow width)"
 
 
2202
  msgstr ""
2203
- "не може да е празно - max Широчина ще бъде ограничена до max Инфопрозорец "
2204
- "Широчина)"
2205
 
2206
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5922
2207
- msgid "Default Image Height"
2208
- msgstr "Дифолт Снимка Височина"
2209
 
2210
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5923
2211
- msgid ""
2212
- "(can be left blank - leaving both the width and height blank will revert to "
2213
- "full size images being used)"
2214
  msgstr ""
2215
- "(не може да е празни - оставяйки и двете Широчина и Височина празно ще върне "
2216
- "до пълния размер на картинките които са ползвани)"
2217
 
2218
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5926
2219
- msgid "Max InfoWindow Width"
2220
- msgstr "Max Инфопрозорец Широчина"
2221
 
2222
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5927
2223
- msgid "(Minimum: 200px)"
2224
- msgstr "(Минимум: 200px)"
 
2225
 
2226
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5930
2227
- msgid "Other settings"
2228
- msgstr "Други настройки"
 
 
 
 
 
 
 
 
2229
 
2230
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5932
2231
- msgid "Open links in a new window"
2232
- msgstr "Отвори линковете в нов прозорец"
 
 
2233
 
2234
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5933
2235
- msgid "(Tick this if you want to open your links in a new window)"
2236
- msgstr "(Отбележи тук ако искаш да се отварят линковете в нов прозорец)"
 
2237
 
2238
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5934
2239
- msgid "Hide the address field"
2240
- msgstr "Скрий поле адрес"
 
 
2241
 
2242
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:5938
2243
- msgid "Link text"
2244
- msgstr "Текст за линк"
 
2245
 
2246
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6215
2247
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3217
2248
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3651
2249
- msgid "Your marker location has been saved."
2250
- msgstr "Твоя маркер локация беше записан."
2251
 
2252
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6270
2253
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3270
2254
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3682
2255
- msgid "Your polygon has been created."
2256
- msgstr "Твоят полигон беше създаден."
 
 
 
2257
 
2258
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6330
2259
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3326
2260
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3714
2261
- msgid "Your polygon has been saved."
2262
- msgstr "Твоят полигон беше записан."
2263
 
2264
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6364
2265
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3369
2266
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3745
2267
- msgid "Your polyline has been created."
2268
- msgstr "Твоят полином беше създаден."
2269
 
2270
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6399
2271
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3411
2272
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3777
2273
- msgid "Your polyline has been saved."
2274
- msgstr "Твоят полином беше записан."
 
 
 
2275
 
2276
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6442
2277
- #, fuzzy
2278
- msgid "Your dataset has been created."
2279
- msgstr "Твоята категория беше създадена."
2280
 
2281
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6487
2282
- #, fuzzy
2283
- msgid "Your dataset has been saved."
2284
- msgstr "Твоята категория беше записана."
2285
 
2286
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6594
2287
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6679
2288
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7396
2289
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8007
2290
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8095
2291
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:35
2292
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:121
2293
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:674
2294
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:34
2295
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:119
2296
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:658
2297
- msgid "Name"
2298
- msgstr "Име"
2299
 
2300
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6600
2301
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6685
2302
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:421
2303
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:41
2304
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:127
2305
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4569
2306
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5874
2307
- msgid "Link"
2308
- msgstr "Линк"
2309
 
2310
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6603
2311
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6688
2312
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:28
2313
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:44
2314
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:130
2315
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:42
2316
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:127
2317
- msgid "Line Color"
2318
- msgstr "Цвят на линк"
2319
 
2320
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6606
2321
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6691
2322
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:47
2323
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:133
2324
- msgid "Line Opacity"
2325
- msgstr "Непрозрачност на линията"
2326
 
2327
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6609
2328
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6694
2329
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:29
2330
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:50
2331
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:136
2332
- msgid "Fill Color"
2333
- msgstr "Запълни с цвят"
2334
 
2335
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6612
2336
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6697
2337
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8023
2338
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8111
2339
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:30
2340
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:53
2341
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:139
2342
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:50
2343
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:135
2344
- msgid "Opacity"
2345
- msgstr "Непрозрачност"
2346
 
2347
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6615
2348
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6700
2349
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:56
2350
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:142
2351
- msgid "On Hover Line Color"
2352
- msgstr "При ховър цвят на линията"
2353
 
2354
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6618
2355
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6703
2356
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:59
2357
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:145
2358
- msgid "On Hover Fill Color"
2359
- msgstr "При ховър запълни цвят"
2360
 
2361
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6621
2362
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6706
2363
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:62
2364
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:148
2365
- msgid "On Hover Opacity"
2366
- msgstr "При ховър прозрачност"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2367
 
2368
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6630
2369
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6714
2370
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:73
2371
- msgid "Click on the map to insert a vertex."
2372
- msgstr "Кликни на картата за да въведеш връх."
2373
 
2374
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6631
2375
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6715
2376
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:74
2377
- msgid "Click on a vertex to remove it."
2378
- msgstr "Кликни на връх за да премахнеш."
2379
 
2380
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6632
2381
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6716
2382
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:75
2383
- msgid "Drag a vertex to move it."
2384
- msgstr "Извлачи връх за да преместиш."
2385
 
2386
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6640
2387
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6724
2388
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:42
2389
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:90
2390
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:81
2391
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:167
2392
- msgid "Save Polygon"
2393
- msgstr "Запази полигон"
2394
 
2395
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6913
2396
- msgid "No marker listing"
2397
- msgstr "Без маркер списък"
2398
 
2399
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:6919
2400
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5641
2401
- msgid "Copied to clipboard"
2402
  msgstr ""
2403
 
2404
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7015
2405
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8031
2406
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8119
2407
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3004
2408
- msgid "Radius"
2409
- msgstr "Радиус"
2410
 
2411
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7021
2412
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3010
2413
- msgid "1mi"
2414
- msgstr "1 миля"
2415
 
2416
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7022
2417
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3011
2418
- msgid "5mi"
2419
- msgstr "5 миля"
2420
-
2421
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7023
2422
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3012
2423
- msgid "10mi"
2424
- msgstr "10 миля"
2425
-
2426
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7024
2427
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3013
2428
- msgid "25mi"
2429
- msgstr "25 миля"
2430
-
2431
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7025
2432
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3014
2433
- msgid "50mi"
2434
- msgstr "50 мили"
2435
-
2436
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7026
2437
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3015
2438
- msgid "75mi"
2439
- msgstr "75 мили"
2440
-
2441
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7027
2442
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3016
2443
- msgid "100mi"
2444
- msgstr "100 мили"
2445
-
2446
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7028
2447
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3017
2448
- msgid "150mi"
2449
- msgstr "150 мили"
2450
-
2451
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7029
2452
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3018
2453
- msgid "200mi"
2454
- msgstr "200 мили"
2455
-
2456
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7030
2457
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3019
2458
- msgid "300mi"
2459
- msgstr "300 мили"
2460
-
2461
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7032
2462
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3021
2463
- msgid "1km"
2464
- msgstr "1 км"
2465
 
2466
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7033
2467
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3022
2468
- msgid "5km"
2469
- msgstr "5 км"
2470
-
2471
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7034
2472
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3023
2473
- msgid "10km"
2474
- msgstr "10 км"
2475
-
2476
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7035
2477
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3024
2478
- msgid "25km"
2479
- msgstr "25 км"
2480
-
2481
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7036
2482
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3025
2483
- msgid "50km"
2484
- msgstr "50 км"
2485
-
2486
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7037
2487
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3026
2488
- msgid "75km"
2489
- msgstr "75 км"
2490
-
2491
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7038
2492
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3027
2493
- msgid "100km"
2494
- msgstr "100 км"
2495
-
2496
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7039
2497
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3028
2498
- msgid "150km"
2499
- msgstr "150 км"
2500
-
2501
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7040
2502
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3029
2503
- msgid "200km"
2504
- msgstr "200 км"
2505
-
2506
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7041
2507
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3030
2508
- msgid "300km"
2509
- msgstr "300 км"
2510
-
2511
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7071
2512
- msgid "Reset"
2513
- msgstr "Ресет"
2514
 
2515
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7210
2516
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4512
2517
- msgid "Type"
2518
- msgstr "Вид"
2519
 
2520
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7211
2521
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4513
2522
  #, fuzzy
2523
- msgid "Shortcode"
2524
- msgstr "Шорткод"
2525
-
2526
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7221
2527
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:536
2528
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4524
2529
- msgid "Trash"
2530
- msgstr "Боклук"
2531
-
2532
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7222
2533
- msgid "Duplicate"
2534
- msgstr "Дупликейт"
2535
 
2536
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7225
2537
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7416
2538
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:540
2539
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:495
2540
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:516
2541
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:701
2542
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:685
2543
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4530
2544
- msgid "Edit"
2545
- msgstr "Промени"
2546
 
2547
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7397
2548
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:472
2549
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:493
2550
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:422
2551
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:675
2552
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:659
2553
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5875
2554
- msgid "Action"
2555
- msgstr "Действие"
2556
 
2557
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:7417
2558
  #, fuzzy
2559
- msgid "Delete this dataset"
2560
- msgstr "Изтрий този маркер"
 
 
 
 
2561
 
2562
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8001
2563
- msgid "Add heatmap data"
2564
  msgstr ""
2565
 
2566
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8015
2567
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8103
2568
- msgid "Gradient"
2569
  msgstr ""
2570
 
2571
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8018
2572
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8106
2573
- msgid "Default"
2574
  msgstr ""
2575
 
2576
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8018
2577
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8106
2578
- msgid "Blue"
2579
  msgstr ""
2580
 
2581
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8056
2582
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8142
2583
- #, fuzzy
2584
- msgid "Save Dataset"
2585
- msgstr "Запиши категория"
2586
 
2587
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro.php:8088
2588
- msgid "Edit Dataset"
2589
  msgstr ""
2590
 
2591
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2592
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:18
2593
- msgid "Marker Categories"
2594
- msgstr "Категории маркери"
2595
 
2596
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2597
- msgid "Add New Category"
2598
- msgstr "Добави нова категория"
2599
 
2600
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2601
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:38
2602
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:124
2603
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4468
2604
- msgid "Pro Version"
2605
- msgstr "Pro версия"
2606
 
2607
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2608
- msgid "Create marker categories"
2609
- msgstr "Създай маркер категории"
2610
 
2611
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2612
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4468
2613
- msgid "with the"
2614
- msgstr "с"
 
2615
 
2616
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2617
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4468
2618
- msgid "of WP Google Maps for only"
2619
- msgstr "от WP Google Maps само за"
2620
 
2621
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:24
2622
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4489
2623
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4549
2624
- msgid "Problems with the plugin? See the troubleshooting manual."
2625
- msgstr "Проблеми с плъгина? Виж документацията за отстраняване на проблемите."
2626
 
2627
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:32
2628
- msgid "There was a problem deleting the category."
2629
- msgstr "Имаше проблем с изтриването на категорията."
2630
 
2631
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:35
2632
- msgid "Delete your Category"
2633
- msgstr "Изтрий категорията си"
2634
 
2635
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:35
2636
- msgid "Are you sure you want to delete the category"
2637
- msgstr "Сигурен ли сте, че искате да изтриете категорията?"
2638
 
2639
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:85
2640
- msgid "Add a Marker Category"
2641
- msgstr "Добави маркер категория"
2642
 
2643
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:89
2644
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:171
2645
- msgid "Category Name"
2646
- msgstr "Име на категория"
2647
 
2648
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:99
2649
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:181
2650
- msgid "Category Marker"
2651
- msgstr "Категория маркер"
2652
 
2653
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:101
2654
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:183
2655
- msgid ""
2656
- "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
2657
- "target='_BLANK' title='Great Google Map Markers'>here</a>"
2658
  msgstr ""
2659
- "Вземи маркери за карти <a href='http://mapicons.nicolasmollet.com/' "
2660
- "target='_BLANK' title='Great Google Map Markers'>тук</a>"
2661
 
2662
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:104
2663
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:186
2664
- msgid "Retina Ready"
2665
- msgstr "Retina Ready"
2666
 
2667
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:105
2668
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:187
2669
- msgid "This marker is a retina-ready marker"
2670
- msgstr "Този маркер е retina-ready"
2671
 
2672
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:114
2673
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:196
2674
- msgid "Assigned to "
2675
- msgstr "Зачислен до"
2676
 
2677
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:127
2678
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:210
2679
- msgid "Save Category"
2680
- msgstr "Запиши категория"
2681
 
2682
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:166
2683
  #, fuzzy
2684
- msgid "Edit a Marker Category"
2685
- msgstr "Добави маркер категория"
 
2686
 
2687
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:292
2688
- msgid "Your category has been created."
2689
- msgstr "Твоята категория беше създадена."
2690
 
2691
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:364
2692
- msgid "Your category has been saved."
2693
- msgstr "Твоята категория беше записана."
2694
 
2695
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:374
2696
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:408
2697
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:439
2698
- msgid "All"
2699
- msgstr "Всички"
2700
 
2701
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:412
2702
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:463
2703
- msgid "<em><small>No categories found</small></em>"
2704
- msgstr "<em><small>Няма намерени категории</small></em>"
2705
 
2706
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:498
2707
- msgid "All maps"
2708
- msgstr "Всички карти"
 
 
2709
 
2710
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:529
2711
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:415
2712
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4563
2713
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5868
2714
- msgid "Icon"
2715
- msgstr "Икона"
2716
 
2717
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_categories.php:530
2718
- msgid "Linked maps"
2719
- msgstr "Линкнати карти"
 
2720
 
2721
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:255
2722
- msgid "Header 1 should be 'id', not"
2723
- msgstr "Хедър 1 трябва да бъде 'id', не"
 
 
 
 
 
2724
 
2725
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:256
2726
- msgid "Header 2 should be 'map_id', not"
2727
- msgstr "хедър 2 трябва да бъде 'map_id', не"
2728
 
2729
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:257
2730
- msgid "Header 3 should be 'address', not"
2731
- msgstr "Хедър 3 трябва да бъде 'address', не"
 
 
2732
 
2733
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:258
2734
- msgid "Header 4 should be 'description', not"
2735
- msgstr "Хедър 4 трябва да бъде 'description', не"
2736
 
2737
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:259
2738
- msgid "Header 5 should be 'pic', not"
2739
- msgstr "Хедър 5 трябва да бъде 'pic', не"
2740
 
2741
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:260
2742
- msgid "Header 6 should be 'link', not"
2743
- msgstr "Хедър 6 трябва да бъде 'link', не"
 
 
2744
 
2745
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:261
2746
- msgid "Header 7 should be 'icon', not"
2747
- msgstr "Хедър 7 трябва да бъде 'icon', не"
 
 
 
2748
 
2749
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:262
2750
- msgid "Header 8 should be 'lat', not"
2751
- msgstr "Хедър 9 трябва да бъде 'lng', не"
 
 
2752
 
2753
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:263
2754
- msgid "Header 9 should be 'lng', not"
2755
- msgstr "Хедър 9 трябва да бъде 'lng', не"
 
 
 
 
 
 
2756
 
2757
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:264
2758
- msgid "Header 10 should be 'anim', not"
2759
- msgstr "Хедър 10 трябва да бъде 'anim', не"
 
2760
 
2761
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:265
2762
- msgid "Header 11 should be 'title', not"
2763
- msgstr "Хедър 11 трябва да бъде 'title', не"
2764
 
2765
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:266
2766
- msgid "Header 12 should be 'infoopen', not"
2767
- msgstr "Хедър 12 трябва да бъде 'infoopen', не"
2768
 
2769
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:267
2770
- msgid "Header 13 should be 'category', not"
2771
- msgstr "Хедър 13 трябва да бъде 'category', не"
2772
 
2773
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:268
2774
- msgid "Header 14 should be 'approved', not"
2775
- msgstr "Хедър 14 трябва да бъде 'approved', не"
2776
 
2777
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:269
2778
- msgid "Header 15 should be 'retina', not"
2779
- msgstr "Хедър 15 трябва да бъде 'retina', не"
 
 
2780
 
2781
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:271
2782
- msgid "CSV import failed"
2783
- msgstr "CSV импорт неуспешен"
2784
 
2785
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
2786
- #, php-format
2787
- msgid "Cannot import line %d as the LAT and/or LNG is not defined."
 
 
 
 
 
2788
  msgstr ""
2789
 
2790
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
2791
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
2792
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:581
2793
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:662
2794
- msgid "Your CSV file has been successfully imported"
2795
- msgstr "Твоя CSV файл бе успешно импортиран"
2796
 
2797
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:73
2798
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:114
2799
- msgid "Edit Polygon"
2800
- msgstr "Промяна на полигон."
2801
 
2802
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
2803
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:702
2804
- msgid "Delete this polygon"
2805
- msgstr "Изтрий този полигон"
2806
 
2807
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
2808
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
2809
- msgid "Delete"
2810
- msgstr "Изтриване"
2811
 
2812
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:42
2813
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:90
2814
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:81
2815
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:164
2816
- msgid "Save Polyline"
2817
- msgstr "Запиши полином"
2818
 
2819
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:73
2820
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:112
2821
- msgid "Edit Polyline"
2822
- msgstr "Промени полином"
2823
 
2824
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
2825
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:686
2826
- msgid "Delete this polyline"
2827
- msgstr "Изтрий този полином"
2828
 
2829
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
2830
- msgid "Select a Map Type (beta)"
2831
  msgstr ""
2832
 
2833
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
2834
- #, fuzzy
2835
- msgid "Show distance in:"
2836
- msgstr "Покажи разстояния в"
2837
 
2838
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
2839
  #, fuzzy
2840
- msgid "Show bouncing icon:"
2841
- msgstr "Покажи подскачаща икона"
 
2842
 
2843
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
2844
- #, fuzzy
2845
- msgid "Hide markers until search is done:"
2846
- msgstr "Скрий всички маркери докато не се направи търсенето"
2847
 
2848
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
2849
  #, fuzzy
2850
- msgid "Default 'To' Address:"
2851
- msgstr "по подразбиране 'до' адрес"
2852
 
2853
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
2854
  #, fuzzy
2855
- msgid "Enter Address"
2856
- msgstr "Адрес"
 
2857
 
2858
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:252
 
2859
  #, fuzzy
2860
- msgid "Basic Table"
2861
- msgstr "Основна таблица"
2862
 
2863
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:253
2864
- #, fuzzy
2865
- msgid "Basic List"
2866
- msgstr "Основен списък"
 
 
 
2867
 
2868
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:254
2869
  #, fuzzy
2870
- msgid "Advanced Table"
2871
- msgstr "Допълнителна таблица"
 
2872
 
2873
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
2874
- msgid "Blank Map"
2875
  msgstr ""
2876
 
2877
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:221
2878
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5829
2879
- msgid "View this link"
2880
- msgstr "Виж този линк"
2881
-
2882
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:234
2883
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:235
2884
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5843
2885
- msgid "Edit this marker"
2886
- msgstr "Промени този маркер"
2887
 
2888
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:237
2889
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5846
2890
- msgid "Approve this marker"
2891
- msgstr "Одобри този маркер"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2892
 
2893
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:239
2894
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5848
2895
- msgid "Delete this marker"
2896
- msgstr "Изтрий този маркер"
 
 
2897
 
2898
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps-pro/wpgmza.php:420
2899
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5873
2900
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:327
2901
- msgid "Image"
2902
- msgstr "Снимка"
2903
 
2904
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:22
2905
- msgid "Welcome to"
2906
- msgstr "Добре дошли в"
 
 
2907
 
2908
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:24
 
2909
  msgid ""
2910
- "Amazing maps. Simple interface. Powerful functionality. World Class Support."
 
 
2911
  msgstr ""
2912
- "Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
2913
 
2914
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:26
2915
- msgid "What's new?"
2916
- msgstr "Какво ново?"
2917
 
2918
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:31
2919
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:24
2920
- msgid "Let users search for products, branches and stores near them"
2921
- msgstr "Нека потребителите да търсят за продукти, магазини около тях."
 
2922
 
2923
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:36
2924
- msgid "Create service areas or coverage maps with polygons"
2925
- msgstr "Създай зона на обслужване с помощта на полигоните."
2926
 
2927
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:41
2928
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:36
2929
- msgid "Create custom routes or outlines using polylines"
2930
- msgstr "Създай къстъм пътища или очертания с полиномите"
2931
 
2932
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:53
2933
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:49
2934
- msgid "How did you find out about us?"
2935
- msgstr "Как научихте за нас?"
2936
 
2937
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:60
2938
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:56
2939
- msgid "WordPress.org plugin repository"
2940
- msgstr "WordPress.org plugin repository"
 
2941
 
2942
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:61
2943
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:57
2944
- msgid "What search term did you use?"
2945
- msgstr "Какво търсехте?"
 
2946
 
2947
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:65
2948
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:61
2949
- msgid "Google or other search engine"
2950
- msgstr "Google или друга търсачка"
 
2951
 
2952
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:69
2953
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:65
2954
- msgid "Friend recommendation"
2955
- msgstr "Препоръка на приятел"
 
2956
 
2957
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:73
2958
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:69
2959
- msgid "Other"
2960
- msgstr "Друго"
 
 
2961
 
2962
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:74
2963
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:70
2964
- msgid "Please explain"
2965
- msgstr "Моля, опиши"
 
 
2966
 
2967
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:96
2968
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:92
2969
- msgid "New to WP Google Maps?"
2970
- msgstr "Нов в WP Google Maps?"
 
 
 
2971
 
2972
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:97
2973
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:93
2974
- msgid "You may want to"
2975
- msgstr "Може да искате да"
 
2976
 
2977
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:97
2978
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:93
2979
- msgid "review our documentation"
2980
- msgstr "преглед на нашата документация"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2981
 
2982
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:97
2983
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:93
2984
- msgid ""
2985
- "before you get started. If you're a tech-savvy individual, you may skip this "
2986
- "step."
2987
- msgstr "преди да почнеш. Ако си напреданал, може да прескочиш"
2988
 
2989
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:100
2990
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:96
2991
- msgid "Help me!"
2992
- msgstr "Помогни ми!"
 
2993
 
2994
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:101
2995
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:97
2996
- msgid "Visit our"
2997
- msgstr "Посети нашия"
2998
 
2999
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:101
3000
- msgid "Support Forum"
3001
- msgstr "Форум за съпорт"
 
 
3002
 
3003
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:101
3004
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:97
3005
- msgid "for quick and friendly help. We'll answer your request within 24hours."
3006
- msgstr "за бърз и добър съпорт. Ще отговорим в рамките на 24 часа."
 
3007
 
3008
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:104
3009
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:100
3010
- msgid "Feedback"
3011
- msgstr "Фийдбек"
3012
 
3013
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:105
3014
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:101
3015
- msgid "We need you to help us make this plugin better."
3016
- msgstr "Трябва ни помощта ти, за да работи този плъгин по-добре."
 
3017
 
3018
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:105
3019
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:101
3020
- msgid "Send us your feedback"
3021
- msgstr "Изпрати ни твоя фийдбек."
3022
 
3023
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:105
3024
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:101
3025
- msgid "and we'll act on it as soon as humanly possible."
3026
- msgstr "и ние ще действаме колкото може по-бързо."
3027
 
3028
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/WPGM_templates.php:109
3029
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:105
3030
- msgid "OK! Let's start"
3031
- msgstr "OK! Да почваме"
3032
 
3033
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/widget_module.class.php:9
3034
- msgid "Add your map as a widget"
3035
- msgstr "Добави картата си като уиджет"
3036
 
3037
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/classes/widget_module.class.php:47
3038
- msgid "Select your map:"
3039
- msgstr "Избери твоята карта:"
3040
 
3041
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:3
3042
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:4
 
 
 
3043
  #, fuzzy
3044
- msgid "Welcome to WP Google Maps version 6.3"
3045
- msgstr "Нов в WP Google Maps?"
3046
 
3047
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:5
3048
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:6
3049
- msgid ""
3050
- "Thank you for updating! WP Google Maps version 6 helps you build amazing "
3051
- "maps through a simple interface and powerful functionality along with world "
3052
- "class support."
3053
  msgstr ""
3054
 
3055
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:10
3056
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:11
3057
  #, fuzzy
3058
- msgid "Welcome"
3059
- msgstr "Добре дошли в"
 
3060
 
3061
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:11
3062
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:12
3063
- msgid "Credits"
3064
- msgstr ""
 
3065
 
3066
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:15
3067
- msgid "WP Google Maps is created by an international team of developers."
 
 
 
 
 
 
 
 
 
 
 
 
3068
  msgstr ""
3069
 
3070
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:16
3071
- msgid "Project Leaders"
 
 
3072
  msgstr ""
3073
 
3074
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:22
3075
- msgid "Founder &amp; Lead Developer"
3076
  msgstr ""
3077
 
3078
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:25
3079
- msgid "Contributers"
 
 
3080
  msgstr ""
3081
 
3082
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:30
3083
- msgid "Developer"
3084
  msgstr ""
3085
 
3086
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:35
3087
- msgid "Developer &amp; Support"
3088
  msgstr ""
3089
 
3090
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:50
3091
  #, fuzzy
3092
- msgid "Marketing"
3093
- msgstr "Списък маркери"
 
3094
 
3095
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:55
3096
- msgid "Security suggestions"
3097
  msgstr ""
3098
 
3099
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:59
3100
- msgid "Want to see your name on this page?"
3101
  msgstr ""
3102
 
3103
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/credits.php:59
3104
- msgid "Get involved on GitHub."
 
 
 
 
 
 
 
 
3105
  msgstr ""
3106
 
3107
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:18
3108
  #, fuzzy
3109
- msgid "Unlimited Markers"
3110
- msgstr "Списък маркери"
3111
 
3112
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:19
3113
- #, fuzzy
3114
- msgid "Create as many markers as you like"
3115
- msgstr "Създай маркер категории"
 
 
 
 
 
 
3116
 
3117
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:31
3118
  msgid ""
3119
- "Select from various <a href='http://wpgmaps.com/map-themes/' "
3120
- "target='_BLANK'>map themes</a>, or make your own."
3121
  msgstr ""
3122
 
3123
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/welcome.php:97
3124
  #, fuzzy
3125
- msgid "Support Desk"
3126
- msgstr "Съпорт"
 
3127
 
3128
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3129
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:56
3130
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:59
3131
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:62
3132
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:124
3133
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:142
3134
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:145
3135
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:148
3136
- msgid "Pro version only"
3137
- msgstr "Pro версия само"
3138
 
3139
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3140
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polygons.php:124
3141
- msgid "Get the Pro add-on"
3142
- msgstr "Вземи Pro add-on"
 
3143
 
3144
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:58
3145
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/base/includes/wp-google-maps-polylines.php:143
3146
- msgid "Line Thickness"
3147
- msgstr "Дебелина на линия"
 
 
 
 
 
 
3148
 
3149
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:320
3150
  msgid "My first map"
3151
  msgstr "Моята първа карта"
3152
 
3153
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:543
 
 
 
 
 
 
 
 
 
 
3154
  msgid ""
3155
  "<strong>WP Google Maps cannot find the directory it uses to save marker data "
3156
  "to. Please confirm that <em>"
@@ -3158,7 +6627,7 @@ msgstr ""
3158
  "<strong>WP Google Maps не може да намери директорията която е за запис на "
3159
  "маркер данни. Моля, потвърди <em>"
3160
 
3161
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:543
3162
  msgid ""
3163
  "</em>exists. Please also ensure that you assign file permissions of 755 (or "
3164
  "777) to this directory."
@@ -3166,7 +6635,7 @@ msgstr ""
3166
  "</em>съществува. Моля, също се убедете че разрешението 755 (или 777) на тази "
3167
  "директория."
3168
 
3169
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:549
3170
  msgid ""
3171
  "Timthumb does not have 'write' permission for the cache directory. Please "
3172
  "enable 'write' permissions (755 or 777) for "
@@ -3174,16 +6643,15 @@ msgstr ""
3174
  "Timthumb няма 'write' права за кеш да директорията. Моля включи 'write' "
3175
  "права (755 или 777) за"
3176
 
3177
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:551
3178
  msgid "in order for images to show up while using Timthumb. Please see "
3179
  msgstr "за да се покажат картинките с Timthumb. Моля, виж"
3180
 
3181
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:553
3182
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6027
3183
  msgid "this page"
3184
  msgstr "тази страница"
3185
 
3186
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:555
3187
  msgid ""
3188
  "for help on how to do it. Alternatively, you can disable the use of Timthumb "
3189
  "in Maps->Settings"
@@ -3191,193 +6659,119 @@ msgstr ""
3191
  "за помощ как да го направиш. или пък може да Изключи ползването на Timthumb "
3192
  "в Карти->Настройки"
3193
 
3194
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2436
3195
- msgid "DOMDocument is not enabled"
3196
- msgstr "DOMDocument не е включено"
3197
-
3198
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2540
3199
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2550
3200
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2555
3201
- msgid "Could not save XML file"
3202
- msgstr "Не може да запише XML file"
3203
-
3204
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2894
3205
  msgid "Error: The map ID"
3206
  msgstr "Error: The map ID"
3207
 
3208
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:2894
3209
  msgid "does not exist"
3210
  msgstr "не съществува"
3211
 
3212
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3228
3213
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3283
3214
- msgid "You cannot save a blank polygon"
3215
- msgstr "не може да запишеш празен полигон"
3216
-
3217
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3338
3218
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3382
3219
- msgid "You cannot save a blank polyline"
3220
- msgstr "Не може да запишеш празен полином"
3221
-
3222
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3478
3223
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3482
3224
- msgid "Thank you for your feedback!"
3225
- msgstr "Благодаря за фийдбека!"
3226
-
3227
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3828
3228
- msgid "Categories"
3229
- msgstr "Категории"
3230
-
3231
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3830
3232
- msgid "Settings"
3233
- msgstr "Настройки"
3234
-
3235
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3850
3236
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3963
3237
  msgid "Experiencing problems with the plugin?"
3238
  msgstr "Имаш проблеми с плъгина?"
3239
 
3240
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3850
3241
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3963
3242
  msgid "See the troubleshooting manual."
3243
  msgstr "Виж документацията по отстраняване на проблемите."
3244
 
3245
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3850
3246
  msgid "Or ask a question on our "
3247
  msgstr "Или задай въпрос в нашия"
3248
 
3249
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3850
3250
  msgid "Support forum."
3251
  msgstr "Форум за съпорт."
3252
 
3253
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3857
3254
- msgid "There was a problem deleting the map."
3255
- msgstr "Имаше проблем с изтриването на тази карта."
3256
-
3257
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3861
3258
  msgid "Delete your map"
3259
  msgstr "Изтрий картата си"
3260
 
3261
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3861
3262
  msgid "Are you sure you want to delete the map"
3263
  msgstr "Сигурен ли си, че искаш да изтриеш тази карта?"
3264
 
3265
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3870
3266
  msgid "There was a problem duplicating the map."
3267
  msgstr "Имаше проблем с дупликата на тази карта."
3268
 
3269
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3972
3270
  msgid "There was a problem deleting the marker."
3271
  msgstr "Имаше проблем с триенето на маркер"
3272
 
3273
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3976
3274
  msgid "Delete Marker"
3275
  msgstr "Изтрий маркер"
3276
 
3277
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3976
3278
  msgid "Are you sure you want to delete this marker:"
3279
  msgstr "Сигурен ли си, че искаш да изтриеш този маркер:"
3280
 
3281
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:3997
3282
- msgid ""
3283
- "We have detected a conflict between your current theme's version and our "
3284
- "plugin. Should you be experiencing issues with your maps displaying, please "
3285
- "update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride "
3286
- "current jQuery with version 1.11.3'."
3287
- msgstr ""
3288
-
3289
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4210
3290
- #, fuzzy
3291
- msgid "Enable Usage Tracking"
3292
- msgstr "Включи на страници"
3293
-
3294
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4212
3295
- msgid ""
3296
- "Allow us to anonymously track how you use your maps and we will send you a "
3297
- "15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
3298
- "the administrator's email address)"
3299
- msgstr ""
3300
-
3301
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4221
3302
- msgid "Marker InfoWindow Settings"
3303
- msgstr "Marker Инфопрозорец Настройки"
3304
-
3305
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4296
3306
- #, fuzzy
3307
- msgid "Google Maps API Key"
3308
- msgstr "Ползвай Google Maps API"
3309
-
3310
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4300
3311
- #, fuzzy
3312
- msgid "Google Maps API Key (required)"
3313
- msgstr "Google API Key (задължително)"
3314
-
3315
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4327
3316
- msgid "Marker Data Location"
3317
- msgstr "Marker данни локация"
3318
-
3319
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4421
3320
  #, php-format
3321
  msgid ""
3322
  "<h3>We need your love!</h3><p>If you are enjoying our plugin, please "
3323
- "consider <a href=\"%1$s\" target=\"_blank\" class=\"button button-primary"
3324
- "\">reviewing WP Google Maps</a>. It would mean the world to us! If you are "
3325
- "experiencing issues with the plugin, please <a href=\"%2$s\" target=\"_blank"
3326
- "\" class=\"button button-secondary\">contact us</a> and we will help you as "
3327
- "soon as humanly possible!</p>"
3328
  msgstr ""
3329
 
3330
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4426
3331
  msgid "We will not nag you again, promise!"
3332
  msgstr ""
3333
 
3334
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4426
3335
  msgid "Close"
3336
  msgstr ""
3337
 
3338
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4446
3339
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4467
3340
  msgid "My Maps"
3341
  msgstr "Моите карти"
3342
 
3343
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4446
3344
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4546
3345
  msgid "Add New"
3346
  msgstr "Добави нова"
3347
 
3348
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4446
3349
  msgid "Wizard"
3350
  msgstr ""
3351
 
3352
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4458
3353
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4480
3354
  msgid ""
3355
  "We have detected a conflict between your current theme's version and our "
3356
  "plugin. Should you be experiencing issues with your maps displaying, please "
3357
- "update Avada to version 3.9.4 or go to <a href='"
 
3358
  msgstr ""
3359
 
3360
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4468
3361
  msgid "Create unlimited maps"
3362
  msgstr "Създай ънлимитед карти"
3363
 
3364
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4546
 
 
 
 
3365
  msgid "My Markers"
3366
  msgstr "Моите маркери"
3367
 
3368
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4564
3369
  msgid "Linked to"
3370
  msgstr "Линкнати до"
3371
 
3372
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4567
3373
  msgid "GPS"
3374
  msgstr "GPS"
3375
 
3376
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4568
3377
  msgid "Pic"
3378
  msgstr "Pic"
3379
 
3380
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4705
3381
  msgid ""
3382
  "Add custom icons, titles, descriptions, pictures and links to your markers "
3383
  "with the"
@@ -3385,30 +6779,28 @@ msgstr ""
3385
  "Добави къстъм икони, заглавия, описание, картинки и линкове към твоите "
3386
  "маркери"
3387
 
3388
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4705
3389
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4706
3390
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5542
3391
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5546
3392
  msgid "Pro Edition"
3393
  msgstr "Pro едишън"
3394
 
3395
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4705
3396
  msgid "of this plugin for just"
3397
  msgstr "на този пъгин само за"
3398
 
3399
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4706
3400
  msgid "Purchase the Pro Edition"
3401
  msgstr "Поръчай Pro Edition"
3402
 
3403
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4706
3404
  msgid "of WP Google Maps and save your markers to a CSV file!"
3405
  msgstr "на WP Google Maps и записвай своите маркери в CSV файл!"
3406
 
3407
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4731
3408
  msgid "Please note"
3409
  msgstr "Моля да се има предвид"
3410
 
3411
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4731
3412
  msgid ""
3413
  "We've noticed that you are using W3 Total Cache and that you have CDN "
3414
  "enabled.<br /><br />In order for the markers to show up on your map, you "
@@ -3422,139 +6814,324 @@ msgstr ""
3422
  "'<strong>rejected files</strong>' списъка в <a href='admin.php?"
3423
  "page=w3tc_cdn#advanced'>CDN Настройки страница</a> of W3 Total Cache"
3424
 
3425
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:4773
 
 
 
 
3426
  msgid "Pro Upgrade"
3427
  msgstr "Pro ъпгрейд"
3428
 
3429
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5004
 
 
 
 
 
 
 
 
3430
  msgid "Query string"
3431
  msgstr "Query стринг"
3432
 
3433
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5009
3434
  msgid "Show bouncing icon"
3435
  msgstr "Покажи подскачаща икона"
3436
 
3437
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5026
3438
  msgid "Enable Bicycle Layer?"
3439
  msgstr "Включи слой колоездене?"
3440
 
3441
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5035
3442
  msgid "Enable Traffic Layer?"
3443
  msgstr "Включи слой трафик?"
3444
 
3445
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5046
3446
  msgid "Enable Public Transport Layer?"
3447
  msgstr "Включи слой градски транспорт?"
3448
 
3449
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5057
3450
  msgid "Maximum Zoom Level"
3451
  msgstr "Максимален зум нивоl"
3452
 
3453
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5089
 
 
 
 
 
 
 
 
 
 
3454
  msgid ""
3455
  "Get the rest of these advanced features with the Pro version for only <a "
3456
- "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
3457
- "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99 once off</"
3458
- "a>. Support and updates included forever."
3459
  msgstr ""
3460
  "Вземи още от тези екстри с Pro версията само за <a href=\\\"http://www."
3461
  "wpgmaps.com/purchase-professional-version/?"
3462
  "utm_source=plugin&utm_medium=link&utm_campaign=advanced\\\">$39.99 "
3463
  "еднократно</a>. Съпорт и ъпдейт завинаги"
3464
 
3465
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5127
3466
  msgid "Read data directly from your Fusion Table."
3467
  msgstr "Прочети данните директно от твоята Fusion таблица."
3468
 
3469
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5135
3470
- msgid ""
3471
- "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
3472
- "professional-version/?"
3473
- "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
3474
- "for only $39.99 once off</a>. Support and updates included forever."
3475
  msgstr ""
3476
- "Включи маркер списъци с <a href=\\\"http://www.wpgmaps.com/purchase-"
3477
- "professional-version/"
3478
- "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\\\">Pro версия "
3479
- "for only $39.99 once off</a>. Съпорт и ъпдейт завинаги."
3480
 
3481
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5141
3482
  msgid "List Markers"
3483
  msgstr "Списък маркери"
3484
 
3485
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5146
3486
  msgid "Advanced table with real time search and filtering"
3487
  msgstr "Специална таблица с риъл тайм сърч и филтриране"
3488
 
3489
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5147
3490
  msgid "beta"
3491
  msgstr "бета"
3492
 
3493
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5218
3494
- msgid "Basic"
3495
- msgstr "Основна"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3496
 
3497
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5219
3498
- msgid "Show a basic list of your markers"
3499
- msgstr "Покажи основен списък на твоите маркери"
3500
 
3501
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5228
3502
- msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
3503
- msgstr "Красив, риспонсив, mobile-friendly въртележка с маркери"
 
 
3504
 
3505
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5236
3506
- msgid "Tabular"
3507
- msgstr "Табуларен"
 
 
 
3508
 
3509
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5237
3510
- msgid "Advanced, tabular marker listing functionality with real time filtering"
3511
- msgstr "Специален, табуларен маркер с риъл тайм сърч и филтриране"
 
 
3512
 
3513
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5363
3514
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5424
3515
  msgid "Advanced markers"
3516
  msgstr "Специални маркери"
3517
 
3518
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5364
3519
  msgid "Polygon"
3520
  msgstr "Полигон"
3521
 
3522
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5412
 
 
 
 
 
 
 
 
 
 
 
 
3523
  msgid "Please add the current marker before trying to add another marker"
3524
  msgstr "Моля, добави сегашния маркер преди да опитваш да добавиш друг"
3525
 
3526
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5426
3527
  msgid "Add advanced markers"
3528
  msgstr "Добави специални маркери"
3529
 
3530
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5426
3531
  msgid "with the Pro version"
3532
  msgstr "с Pro версия"
3533
 
3534
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5472
 
 
 
 
 
 
 
 
3535
  msgid "Select"
3536
  msgstr "Избери"
3537
 
3538
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5500
3539
  msgid "Add dynamic heatmap data"
3540
  msgstr ""
3541
 
3542
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5500
3543
  #, fuzzy
3544
  msgid "with the Pro version."
3545
  msgstr "с Pro версия"
3546
 
3547
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5501
3548
  #, fuzzy
3549
  msgid "View a demo."
3550
  msgstr "Виж всички документи."
3551
 
3552
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5510
3553
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5606
3554
  msgid "The map could not load."
3555
  msgstr "Картата не може да бъде заредена."
3556
 
3557
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5510
3558
  msgid ""
3559
  "This is normally caused by a conflict with another plugin or a JavaScript "
3560
  "error that is preventing our plugin's Javascript from executing. Please try "
@@ -3564,33 +7141,27 @@ msgstr ""
3564
  "грешка, която спира изпълнението на плъгина. Моля, опитай изключи всички "
3565
  "плъгини един по един и виж дали проблема остава."
3566
 
3567
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5537
 
 
 
 
3568
  msgid "Add detailed information to your markers!"
3569
  msgstr "Добави детайлна информация към твоите маркери!"
3570
 
3571
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5537
3572
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5541
3573
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5545
3574
  msgid "Add custom markers to your map!"
3575
  msgstr "Добави къстъм маркери към твоята карта!"
3576
 
3577
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5538
3578
  msgid "Add detailed information to your markers for only"
3579
  msgstr "Добави детайлна информация към твоите маркери само за"
3580
 
3581
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5538
3582
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5542
3583
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5546
3584
- msgid "Click"
3585
- msgstr "Клик"
3586
-
3587
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5538
3588
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5542
3589
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5546
3590
  msgid "here"
3591
  msgstr "тук"
3592
 
3593
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5542
3594
  msgid ""
3595
  "Add different marker icons, or your own icons to make your map really stand "
3596
  "out!"
@@ -3598,27 +7169,46 @@ msgstr ""
3598
  "Добави различни икони, или собствени икони за да направиш твоята карта "
3599
  "наистина готина!"
3600
 
3601
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5546
3602
  msgid "Allow your visitors to get directions to your markers!"
3603
  msgstr "Позволи твоите потребители да получат упътвания до твоите маркери!"
3604
 
3605
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3606
  msgid "Edit Marker Location"
3607
  msgstr "Промяна маркер локация"
3608
 
3609
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5590
3610
  msgid "Marker Latitude"
3611
  msgstr "Маркер Latitude"
3612
 
3613
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5594
3614
  msgid "Marker Longitude"
3615
  msgstr "Маркер Longitude"
3616
 
3617
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5599
3618
  msgid "Save Marker Location"
3619
  msgstr "Запиши маркер позиция"
3620
 
3621
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5600
3622
  msgid ""
3623
  "Tip: Use your mouse to change the location of the marker. Simply click and "
3624
  "drag it to your desired location."
@@ -3626,7 +7216,7 @@ msgstr ""
3626
  "Съвет: Използвай твоята мишла за да смениш позицията на маркера. Просто "
3627
  "кликни и извлачи до желаната позиция."
3628
 
3629
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5606
3630
  msgid ""
3631
  "This is normally caused by a conflict with another plugin or a JavaScript "
3632
  "error that is preventing our plugin's Javascript from executing. Please try "
@@ -3640,38 +7230,29 @@ msgstr ""
3640
  "остава \n"
3641
  "свържи се с nick@wpgmaps.com за съпорт.\""
3642
 
3643
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5778
3644
- msgid ""
3645
- "There are too many markers to make use of the live edit function. The "
3646
- "maximum amount for this functionality is 5000 markers. Anything more than "
3647
- "that could crash your browser. In order to edit your markers, you would need "
3648
- "to download the table in CSV format, edit it and re-upload it."
3649
- msgstr ""
3650
- "Има прекалено много маркери за да се ползва на живо тази функция. "
3651
- "максималното число за тази функционалност е 5000 маркера. Всичко над може "
3652
- "да крашне твоя браузер. За да промениш твоите маркери, ще ти трябва за да "
3653
- "свалиш таблицата в CSV формат, промени и пак качи."
3654
 
3655
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:5844
3656
- #, fuzzy
3657
- msgid "Edit this marker location"
3658
- msgstr "Промяна маркер локация"
3659
 
3660
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6023
3661
  msgid ""
3662
  "The plugin directory does not have 'write' permissions. Please enable "
3663
  "'write' permissions (755) for "
3664
  msgstr "Плъгин директорията няма 'write' права. Включи 'write' права (755) за "
3665
 
3666
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6025
3667
  msgid "in order for this plugin to work! Please see "
3668
  msgstr "за да работи този плъгин! Моля, виж"
3669
 
3670
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6029
3671
  msgid "for help on how to do it."
3672
  msgstr "за помощ как се прави."
3673
 
3674
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6460
3675
  msgid ""
3676
  "WP Google Maps does not have write permission to the marker location "
3677
  "directory. This is required to store marker data. Please CHMOD the folder "
@@ -3679,7 +7260,7 @@ msgstr ""
3679
  "WP Google Maps няма права на запис за локации на маркерите директория. Това "
3680
  "е задължително за да запази маркер данните. Моля CHMOD директория"
3681
 
3682
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6460
3683
  msgid ""
3684
  " to 755 or 777, or change the directory in the Maps->Settings page. (Current "
3685
  "file permissions are "
@@ -3687,186 +7268,466 @@ msgstr ""
3687
  "на 755 или 777, или смени директорията в Карти->Настройки страница. "
3688
  "(Сегашните файл премишънии са"
3689
 
3690
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6488
3691
- msgid ""
3692
- "WP Google Maps has a diverse and wide range of features which may, from time "
3693
- "to time, run into conflicts with the thousands of themes and other plugins "
3694
- "on the market."
3695
- msgstr ""
3696
- "WP Google Maps hasима широк спектър от екстри които може да доведат до "
3697
- "конфликти от време на време, влизат в конфликти със стотици теме и други "
3698
- "плъгини плъгини на пазара."
3699
-
3700
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6501
3701
- msgid "Support forum"
3702
- msgstr "Форум за съпорт"
3703
-
3704
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6658
3705
  msgid "United States of America"
3706
  msgstr ""
3707
 
3708
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6668
3709
  #, fuzzy
3710
  msgid "View the instruction video"
3711
  msgstr "Скрий линка упътвания"
3712
 
3713
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6669
3714
  #, fuzzy
3715
  msgid "Read the documentation"
3716
  msgstr "Трябва ти помощ? Прочети документацията."
3717
 
3718
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6670
3719
  msgid "Important Notification"
3720
  msgstr ""
3721
 
3722
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6671
3723
  msgid "You can read more about that here."
3724
  msgstr ""
3725
 
3726
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6672
3727
- msgid ""
3728
- "Before you begin please note that *ALL* Google Maps now require an API key "
3729
- "to function."
 
 
3730
  msgstr ""
3731
 
3732
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6673
3733
- msgid "Create an API key now (free)"
3734
  msgstr ""
3735
 
3736
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6674
3737
- msgid "Once created, simply paste your API key here and press save."
3738
  msgstr ""
3739
 
3740
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6675
 
 
 
 
 
 
 
 
 
 
 
3741
  #, php-format
3742
  msgid "Need help? %s or %s."
3743
  msgstr ""
3744
 
3745
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6676
3746
- msgid "Google Maps JavaScript API Key: "
 
 
 
3747
  msgstr ""
3748
 
3749
- #: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-maps/wpGoogleMaps.php:6678
3750
- msgid "Once saved, it may take up to 5 minutes for your map to display."
 
 
 
3751
  msgstr ""
3752
 
3753
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:169
3754
  #, fuzzy
3755
- msgid "Visitor Generated Markers - Settings"
3756
- msgstr "Посетителски настройки за генерирани маркери"
 
 
 
 
 
 
3757
 
3758
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:175
3759
  #, fuzzy
3760
- msgid "Enable Visitor Generated Markers?"
3761
- msgstr "Посетител генерирал маркери"
 
3762
 
3763
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:184
3764
  #, fuzzy
3765
- msgid "Who can add markers?"
3766
- msgstr "Специални маркери"
 
3767
 
3768
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
3769
- msgid "Everyone"
 
 
 
 
 
 
3770
  msgstr ""
3771
 
3772
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
3773
- msgid "Registered Users"
 
 
 
 
3774
  msgstr ""
3775
 
3776
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
3777
  #, fuzzy
3778
- msgid "Allow users to select a marker category?"
3779
- msgstr "Позволи на потребителите да филтрират по категория?"
 
3780
 
3781
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:202
3782
  #, fuzzy
3783
- msgid "Allow users to upload images?"
3784
- msgstr "Позволи на потребителите да филтрират по категория?"
 
3785
 
3786
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:306
3787
  #, fuzzy
3788
- msgid "Add your own marker"
3789
- msgstr "Добави маркер"
 
 
 
 
 
3790
 
3791
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:314
3792
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:315
 
 
 
3793
  #, fuzzy
3794
- msgid "Marker Title"
3795
- msgstr "Маркер Latitude"
 
 
 
 
 
 
 
 
 
3796
 
3797
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:318
3798
  #, fuzzy
3799
- msgid "Marker Address or GPS Location"
3800
- msgstr "Marker данни локация"
 
 
 
 
 
 
 
 
 
3801
 
3802
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3803
  #, fuzzy
3804
- msgid "Marker Address"
3805
- msgstr "Адрес"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3806
 
3807
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
3808
  #, fuzzy
3809
- msgid "Or click on the map and drag to add a marker"
3810
- msgstr "Кликни на картата за да въведеш връх."
3811
 
3812
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
3813
  #, fuzzy
3814
- msgid "Marker Description"
3815
- msgstr "Описание"
3816
 
3817
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:338
3818
  #, fuzzy
3819
- msgid "Marker Category"
3820
- msgstr "Категории маркери"
3821
 
3822
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:348
3823
- msgid "Please tick this box to prove you are human"
3824
- msgstr ""
3825
 
3826
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
3827
  #, fuzzy
3828
- msgid "Add marker"
3829
- msgstr "Добави маркер"
3830
 
3831
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
3832
- msgid "A new marker has been submitted for your map"
3833
- msgstr ""
 
 
 
 
 
 
 
 
3834
 
3835
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
3836
  #, fuzzy
3837
- msgid ""
3838
- "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3839
- "version 5.50 to allow for these settings"
3840
- msgstr ""
3841
- "Моля <a href='update-core.php'>update your WP Google Maps GOLD version</"
3842
- "\"\"a>. Вашата Gold версия не е съвместима със сегашната Pro версия."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3843
 
3844
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
3845
  #, fuzzy
3846
- msgid "Visitor Generated Marker Settings"
3847
- msgstr "Посетителски настройки за генерирани маркери"
3848
 
3849
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:596
3850
  #, fuzzy
3851
- msgid "Visitor Marker Input Settings"
3852
- msgstr "Посетителски настройки за генерирани маркери"
3853
 
3854
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3855
- msgid "Strip all HTML tags in descriptions and titles"
3856
- msgstr ""
 
 
 
 
 
 
 
 
3857
 
3858
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
3859
  #, fuzzy
3860
- msgid "Automatically approve visitor generated markers"
3861
- msgstr "Посетител генерирал маркери"
3862
 
3863
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3864
- msgid "Email me whenever there is a new marker"
3865
- msgstr ""
3866
 
3867
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3868
- msgid "Email address:"
3869
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3870
 
3871
  #~ msgid ""
3872
  #~ "Use the <a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/"
@@ -3877,12 +7738,6 @@ msgstr ""
3877
  #~ "styledmaps/wizard/index.html' target='_BLANK'>Google Maps API Styled Map "
3878
  #~ "Wizard</a> за да вземеш твоите стилови настройки"
3879
 
3880
- #~ msgid "Enable Advanced Styling"
3881
- #~ msgstr "Включи допълнителен стил"
3882
-
3883
- #~ msgid "Save Style Settings"
3884
- #~ msgstr "Запиши настройки на стил"
3885
-
3886
  #~ msgid "Weather Layer"
3887
  #~ msgstr "Слой време"
3888
 
@@ -3895,9 +7750,6 @@ msgstr ""
3895
  #~ msgid "Cloud Layer"
3896
  #~ msgstr "Слой облак"
3897
 
3898
- #~ msgid "OR"
3899
- #~ msgstr "ИЛИ"
3900
-
3901
  #~ msgid ""
3902
  #~ "Dont have time to wait? Jump the queue with <a href='http://www.wpgmaps."
3903
  #~ "com/priority-support/' title='Priority Support' target='_BLANK'>priority "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpgmaps\n"
4
+ "POT-Creation-Date: 2020-02-11 09:17+0000\n"
5
+ "PO-Revision-Date: 2020-02-11 09:23+0000\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.3\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"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+ "X-Poedit-SearchPath-1: ../../wp-google-maps-pro\n"
18
+ "X-Poedit-SearchPath-2: ../../wp-google-maps-gold\n"
19
+ "X-Poedit-SearchPath-3: ../../wp-google-maps-ugm\n"
20
+
21
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:4
 
 
 
 
 
 
22
  #, fuzzy
23
+ #| msgid "General Settings"
24
+ msgid "Live Tracking Settings"
25
+ msgstr "Основни настройки"
26
 
27
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:10
28
+ msgid "Please use the setting below to control Live Tracking broadcasting."
 
 
 
 
 
29
  msgstr ""
30
 
31
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:16
32
+ msgid ""
33
+ "Please note this does not affect recording - you can always record your live "
34
+ "location and polyline routes, this setting enables visitors to your site to "
35
+ "receive your updated location as they view your pages."
36
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:23
39
+ #, fuzzy
40
+ #| msgid "Enable pagination"
41
+ msgid "Enable Broadcasting"
42
+ msgstr "Включи на страници"
43
 
44
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:34
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:224
49
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:287
50
+ #: ../../wp-google-maps-gold/legacy-core.php:1489
51
+ #: ../../wp-google-maps-gold/legacy-core.php:1744
52
+ #: ../../wp-google-maps-gold/legacy-core.php:2184
53
+ #: ../../wp-google-maps-gold/legacy-core.php:2198
54
+ #: ../../wp-google-maps-gold/legacy-core.php:2437
55
+ #: ../../wp-google-maps-gold/legacy-core.php:2478
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-pro/legacy-core.php:1386
61
+ #: ../../wp-google-maps-pro/legacy-core.php:1754
62
+ #: ../../wp-google-maps-pro/legacy-core.php:1777
63
+ #: ../../wp-google-maps-pro/legacy-core.php:1787
64
+ #: ../../wp-google-maps-pro/legacy-core.php:1791
65
+ #: ../../wp-google-maps-pro/legacy-core.php:1801
66
+ #: ../../wp-google-maps-pro/legacy-core.php:1852
67
+ #: ../../wp-google-maps-pro/legacy-core.php:1869
68
+ #: ../../wp-google-maps-pro/legacy-core.php:1877
69
+ #: ../../wp-google-maps-pro/legacy-core.php:1885
70
+ #: ../../wp-google-maps-pro/legacy-core.php:1893
71
+ #: ../../wp-google-maps-pro/legacy-core.php:1966
72
+ #: ../../wp-google-maps-pro/legacy-core.php:1971
73
+ #: ../../wp-google-maps-pro/legacy-core.php:1975
74
+ #: ../../wp-google-maps-pro/legacy-core.php:1990
75
+ #: ../../wp-google-maps-pro/legacy-core.php:5747
76
+ #: ../../wp-google-maps-pro/legacy-core.php:5792
77
+ #: ../../wp-google-maps-pro/legacy-core.php:8656
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
 
97
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:35
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:225
102
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:288
103
+ #: ../../wp-google-maps-gold/legacy-core.php:1490
104
+ #: ../../wp-google-maps-gold/legacy-core.php:1745
105
+ #: ../../wp-google-maps-gold/legacy-core.php:2184
106
+ #: ../../wp-google-maps-gold/legacy-core.php:2198
107
+ #: ../../wp-google-maps-gold/legacy-core.php:2437
108
+ #: ../../wp-google-maps-gold/legacy-core.php:2478
109
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:23
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-pro/legacy-core.php:1386
115
+ #: ../../wp-google-maps-pro/legacy-core.php:1755
116
+ #: ../../wp-google-maps-pro/legacy-core.php:1778
117
+ #: ../../wp-google-maps-pro/legacy-core.php:1787
118
+ #: ../../wp-google-maps-pro/legacy-core.php:1792
119
+ #: ../../wp-google-maps-pro/legacy-core.php:1801
120
+ #: ../../wp-google-maps-pro/legacy-core.php:1853
121
+ #: ../../wp-google-maps-pro/legacy-core.php:1869
122
+ #: ../../wp-google-maps-pro/legacy-core.php:1877
123
+ #: ../../wp-google-maps-pro/legacy-core.php:1885
124
+ #: ../../wp-google-maps-pro/legacy-core.php:1893
125
+ #: ../../wp-google-maps-pro/legacy-core.php:1966
126
+ #: ../../wp-google-maps-pro/legacy-core.php:1971
127
+ #: ../../wp-google-maps-pro/legacy-core.php:1975
128
+ #: ../../wp-google-maps-pro/legacy-core.php:1990
129
+ #: ../../wp-google-maps-pro/legacy-core.php:5747
130
+ #: ../../wp-google-maps-pro/legacy-core.php:5792
131
+ #: ../../wp-google-maps-pro/legacy-core.php:8657
132
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:326
133
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:344
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
 
152
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:42
153
+ msgid "Live Tracking Devices"
154
+ msgstr ""
 
 
155
 
156
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:50
 
 
157
  msgid ""
158
+ "Devices which have attempted to pair with your site will appear here. You "
159
+ "must approve devices before they will appear on the map."
160
  msgstr ""
 
 
161
 
162
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:59
163
+ 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:107
168
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:248
169
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:314
170
+ #: ../../wp-google-maps-pro/legacy-core.php:268
171
+ #: ../../wp-google-maps-pro/legacy-core.php:319
172
+ #: ../../wp-google-maps-pro/legacy-core.php:5732
173
+ #: ../../wp-google-maps-pro/legacy-core.php:7147
174
+ #: ../../wp-google-maps-pro/legacy-core.php:7239
175
+ #: ../../wp-google-maps-pro/legacy-core.php:7895
176
+ #: ../../wp-google-maps-pro/legacy-core.php:8497
177
+ #: ../../wp-google-maps-pro/legacy-core.php:8582
178
+ #: ../base/includes/wp-google-maps-polygons.php:45
179
+ #: ../base/includes/wp-google-maps-polygons.php:132
180
+ #: ../base/includes/wp-google-maps-polygons.php:439
181
+ #: ../base/includes/wp-google-maps-polylines.php:38
182
+ #: ../base/includes/wp-google-maps-polylines.php:134
183
+ #: ../base/includes/wp-google-maps-polylines.php:414 ../legacy-core.php:5491
184
+ #: ../legacy-core.php:5542 ../legacy-core.php:5649 ../legacy-core.php:5758
185
+ #: ../legacy-core.php:5903 ../legacy-core.php:5998
186
+ msgid "Name"
187
+ msgstr "Име"
188
 
189
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:69
190
+ #, fuzzy
191
+ #| msgid "Polylines"
192
+ msgid "Draw Polylines"
193
+ msgstr "Полиноми"
194
+
195
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:74
196
+ #, fuzzy
197
+ #| msgid "Line Color"
198
+ msgid "Line Color and Weight"
199
+ msgstr "Цвят на линк"
200
+
201
+ #: ../../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:79
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:68
264
+ msgid "Rating Step"
265
+ msgstr ""
266
+
267
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:77
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:84
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:89
278
+ msgid "0.01 :- Allow decimal / floating point ratings"
279
  msgstr ""
280
 
281
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:94
282
+ msgid "1 :- Whole number ratings only"
283
+ msgstr ""
 
284
 
285
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:99
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:110
290
+ msgid "Widget Style"
 
 
291
  msgstr ""
292
 
293
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:126
294
+ msgid "Bar rating gradient colours:"
295
+ msgstr ""
 
 
 
 
296
 
297
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:131
298
+ msgid "Start -"
 
299
  msgstr ""
300
 
301
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:136
302
+ msgid "End -"
303
  msgstr ""
304
 
305
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:153
306
+ msgid "Background color:"
307
+ msgstr ""
308
+
309
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:167
310
+ msgid "Tampering Countermeasures"
311
  msgstr ""
312
 
313
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:175
314
  #, fuzzy
315
+ #| msgid "Basic list"
316
+ msgid "Basic Only"
317
+ msgstr "Основен списък"
318
 
319
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:180
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:184
326
+ #: ../../wp-google-maps-gold/html/marker-rating-settings.html.php:204
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:195
333
+ msgid "Anti-Spam"
 
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:220
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:224
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 "
357
+ "prevent fake accounts."
358
+ msgstr ""
359
 
360
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:2
361
+ #: ../../wp-google-maps-gold/legacy-core.php:2179
362
+ #, fuzzy
363
+ msgid "Near-Vicinity Marker Control Settings"
364
+ msgstr "Посетителски настройки за генерирани маркери"
365
 
366
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:6
367
  msgid ""
368
+ "This feature will group nearby or overlapping markers together using a "
369
+ "placeholder marker. When the placeholder marker is clicked, the group will "
370
+ "open, separating the markers on screen. This is intended for when you have "
371
+ "several markers at the same address but would like the user to be able to "
372
+ "view data from all the markers."
373
  msgstr ""
 
 
374
 
375
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:14
376
+ #: ../../wp-google-maps-gold/legacy-core.php:2182
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:2189
382
+ msgid "Near-Vicinity Affected Radius"
383
+ msgstr ""
384
 
385
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:50
386
+ #, fuzzy
387
+ #| msgid "Kilometers"
388
+ msgid "Meters"
389
+ msgstr "Километри"
390
 
391
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:56
392
+ msgid "Markers within this threshold of one another will be grouped together"
393
+ msgstr ""
 
 
394
 
395
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:66
396
+ msgid "Use Legacy Near-Vicinity Module"
397
+ msgstr ""
 
398
 
399
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:88
400
+ #, fuzzy
401
+ #| msgid "Category Marker"
402
+ 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:254
407
+ #: ../../wp-google-maps-gold/legacy-core.php:2224
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:268
413
+ #: ../../wp-google-maps-gold/legacy-core.php:2226
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:267
419
+ #: ../../wp-google-maps-gold/legacy-core.php:2226
420
+ msgid "Spiral"
421
+ msgstr ""
422
 
423
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:112
424
+ msgid "Hexagon"
425
+ msgstr ""
 
 
 
426
 
427
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:115
428
+ msgid "Line"
429
+ msgstr ""
 
 
 
430
 
431
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:118
432
+ #: ../../wp-google-maps-pro/legacy-core.php:962
433
+ #: ../../wp-google-maps-pro/legacy-core.php:2198
434
+ #: ../../wp-google-maps-pro/legacy-core.php:2242
435
+ msgid "Grid"
436
+ msgstr ""
437
 
438
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:127
439
+ #, fuzzy
440
+ #| msgid "Animation"
441
+ msgid "Animate Separation"
442
+ msgstr "Анимация"
443
 
444
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:148
445
+ #, fuzzy
446
+ #| msgid "Animation"
447
+ 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:245
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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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:233
601
+ msgid "Stagger Interval"
602
+ msgstr ""
 
603
 
604
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:275
605
+ #: ../../wp-google-maps-gold/legacy-core.php:2196
606
+ msgid "Near-Vicinity Hide Lines"
607
+ msgstr ""
 
608
 
609
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:295
610
+ #: ../../wp-google-maps-gold/legacy-core.php:2203
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:308
617
+ #: ../../wp-google-maps-gold/legacy-core.php:2210
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:319
624
+ #: ../../wp-google-maps-gold/legacy-core.php:2212
625
+ msgid "Value between 0.1 and 1.0"
626
  msgstr ""
627
 
628
+ #: ../../wp-google-maps-gold/html/marker-separator-settings.html.php:325
629
+ #: ../../wp-google-maps-gold/legacy-core.php:2217
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:335
636
+ #: ../../wp-google-maps-gold/legacy-core.php:2219
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 "
643
+ "version of WP Google Maps running on this installation. Please ensure you "
644
+ "have installed the latest version of WP Google Maps in order to use the Gold "
645
+ "add-on."
646
+ msgstr ""
647
 
648
+ #: ../../wp-google-maps-gold/includes/class.add-on.php:108
649
  msgid ""
650
+ "<strong>WP Google Maps - Gold add-on:</strong> This plugin requires WP "
651
+ "Google Maps - Pro add-on. We did not detect the Pro add-on running on this "
652
+ "installation. Please ensure you have installed and activated the Pro add-on "
653
+ "in order to use the Gold add-on."
654
  msgstr ""
 
 
 
655
 
656
+ #: ../../wp-google-maps-gold/includes/class.live-tracker.php:51
657
+ msgid "Location Tracking"
658
  msgstr ""
659
 
660
+ #: ../../wp-google-maps-gold/includes/class.marker-separator-settings.php:34
661
  #, fuzzy
662
+ msgid "Requires WP Google Maps - Pro add-on Version 8"
663
+ msgstr "Нов в WP Google Maps?"
664
 
665
+ #: ../../wp-google-maps-gold/includes/class.marker-separator-settings.php:107
666
+ #, fuzzy
667
+ msgid "Marker Separation"
668
+ msgstr "Описание"
669
 
670
+ #: ../../wp-google-maps-gold/includes/class.marker-separator-settings.php:113
671
+ msgid ""
672
+ "Looking for Near-Vicinity settings? See the new <a href=\"#tabs-marker-"
673
+ "separation\">Marker Separation</a> tab."
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 "
687
+ "changed in the %s page"
688
+ 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:2975
699
+ #: ../../wp-google-maps-pro/legacy-core.php:2998
700
+ #: ../../wp-google-maps-pro/legacy-core.php:4278
701
+ #: ../../wp-google-maps-pro/legacy-core.php:4621
702
+ #: ../../wp-google-maps-pro/legacy-core.php:5826
703
+ msgid "More details"
704
+ msgstr "Повече подробности"
705
 
706
+ #: ../../wp-google-maps-gold/legacy-core.php:1481
707
+ msgid "Advanced Map Settings"
708
+ msgstr "Допълнителни картови настройки"
709
 
710
+ #: ../../wp-google-maps-gold/legacy-core.php:1486
711
+ #: ../../wp-google-maps-gold/legacy-core.php:1741
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:390
717
+ #: ../legacy-core.php:5353
718
+ #, fuzzy
719
+ msgid "Save"
720
+ msgstr "Запиши карта"
721
 
722
+ #: ../../wp-google-maps-gold/legacy-core.php:1575
723
+ #: ../../wp-google-maps-pro/legacy-core.php:5073
724
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1142
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>"
728
+ msgstr ""
729
+ "Неочаквана грешка възникна по време на API заявката.</p> <p><a href=\"?\" "
730
+ "onclick=\"document.location.reload(); return false;\">Опитай пак</a>"
731
 
732
+ #: ../../wp-google-maps-gold/legacy-core.php:1580
733
+ #: ../../wp-google-maps-pro/legacy-core.php:5080
734
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1147
735
+ msgid "An unknown error occurred"
736
+ msgstr "Възникна неочаквана грешка"
737
 
738
+ #: ../../wp-google-maps-gold/legacy-core.php:1642
739
+ #: ../../wp-google-maps-pro/legacy-core.php:6658 ../legacy-core.php:2279
740
+ msgid "Your settings have been saved."
741
+ msgstr "Твоите настройки бяха запазени."
742
 
743
+ #: ../../wp-google-maps-gold/legacy-core.php:1717
744
+ #: ../../wp-google-maps-gold/legacy-core.php:2364
745
+ #, fuzzy
746
+ msgid "Marker Clustering"
747
+ msgstr "Списък маркери"
748
 
749
+ #: ../../wp-google-maps-gold/legacy-core.php:1747
750
+ #: ../../wp-google-maps-pro/legacy-core.php:1293
751
+ #: ../../wp-google-maps-pro/legacy-core.php:5309
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:1776
758
+ #: ../../wp-google-maps-gold/legacy-core.php:1779
759
+ #: ../../wp-google-maps-gold/legacy-core.php:1782
760
+ msgid "Real Time Location Tracking"
761
+ msgstr ""
762
+
763
+ #: ../../wp-google-maps-gold/legacy-core.php:1787
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:1796
770
+ #: ../../wp-google-maps-pro/html/add-map-dialog.html.php:46
771
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:187
772
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:227
773
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:271
774
+ #, fuzzy
775
+ msgid "Create Map"
776
+ msgstr "Създавай твоя карта"
777
 
778
+ #: ../../wp-google-maps-gold/legacy-core.php:1841
779
+ #, php-format
780
+ msgid "Location as at %1$s"
781
+ msgstr ""
 
 
782
 
783
+ #: ../../wp-google-maps-gold/legacy-core.php:1923
784
+ msgid "Successfully accepted the device. Thank you"
785
+ msgstr ""
 
 
 
786
 
787
+ #: ../../wp-google-maps-gold/legacy-core.php:1964
788
+ msgid "Device has been removed. Thank you"
789
+ msgstr ""
 
 
 
790
 
791
+ #: ../../wp-google-maps-gold/legacy-core.php:1985
792
+ #, fuzzy
793
+ msgid "Marker Data Cleared."
794
+ msgstr "Marker данни локация"
 
 
795
 
796
+ #: ../../wp-google-maps-gold/legacy-core.php:2022
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:2023
801
+ msgid "Device ID:"
802
+ msgstr ""
 
803
 
804
+ #: ../../wp-google-maps-gold/legacy-core.php:2024
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:2030
810
+ msgid "To reject the device, simply ignore this email."
811
+ msgstr ""
 
812
 
813
+ #: ../../wp-google-maps-gold/legacy-core.php:2031
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:2160
820
+ msgid "No devices"
821
+ msgstr ""
 
822
 
823
+ #: ../../wp-google-maps-gold/legacy-core.php:2191
824
+ msgid "Meters (This is an approximate value)"
825
+ msgstr ""
826
 
827
+ #: ../../wp-google-maps-gold/legacy-core.php:2427
828
  #, fuzzy
829
+ #| msgid "Marker Listing Settings"
830
+ msgid "Marker Clustering - Advanced Settings"
831
+ msgstr "настройки по маркерите списък"
832
 
833
+ #: ../../wp-google-maps-gold/legacy-core.php:2428
834
+ msgid "Changing these settings is only suggested for experienced users."
835
+ msgstr ""
836
+
837
+ #: ../../wp-google-maps-gold/legacy-core.php:2433
838
  #, fuzzy
839
+ #| msgid "Enable Advanced Styling"
840
+ msgid "Enable Advanced Options"
841
+ msgstr "Включи допълнителен стил"
842
 
843
+ #: ../../wp-google-maps-gold/legacy-core.php:2444
844
+ #, fuzzy
845
+ #| msgid "show options"
846
+ msgid "Options"
847
+ msgstr "покажи опции"
848
 
849
+ #: ../../wp-google-maps-gold/legacy-core.php:2449
850
+ msgid "Grid Size"
851
+ msgstr ""
852
 
853
+ #: ../../wp-google-maps-gold/legacy-core.php:2454
854
+ #, fuzzy
855
+ #| msgid "Maximum Zoom Level"
856
+ msgid "Max Zoom"
857
+ msgstr "Максимален зум нивоl"
858
 
859
+ #: ../../wp-google-maps-gold/legacy-core.php:2459
860
+ msgid "Minimum Cluster Size"
861
+ msgstr ""
862
 
863
+ #: ../../wp-google-maps-gold/legacy-core.php:2464
864
+ #, fuzzy
865
+ msgid "Cluster Font Color"
866
+ msgstr "Цвят на линк"
867
+
868
+ #: ../../wp-google-maps-gold/legacy-core.php:2469
869
+ msgid "Cluster Font Size"
870
  msgstr ""
871
 
872
+ #: ../../wp-google-maps-gold/legacy-core.php:2474
873
+ msgid "Zoom On Click"
874
+ msgstr ""
 
875
 
876
+ #: ../../wp-google-maps-gold/legacy-core.php:2485
877
+ msgid "Cluster Icons"
878
+ msgstr ""
879
 
880
+ #: ../../wp-google-maps-gold/legacy-core.php:2492
881
+ msgid "Level 1"
882
+ msgstr ""
 
883
 
884
+ #: ../../wp-google-maps-gold/legacy-core.php:2493
885
+ #: ../../wp-google-maps-gold/legacy-core.php:2502
886
+ #: ../../wp-google-maps-gold/legacy-core.php:2511
887
+ #: ../../wp-google-maps-gold/legacy-core.php:2520
888
+ #: ../../wp-google-maps-gold/legacy-core.php:2529
889
+ msgid "Change"
890
  msgstr ""
 
 
 
 
891
 
892
+ #: ../../wp-google-maps-gold/legacy-core.php:2493
893
+ #: ../../wp-google-maps-gold/legacy-core.php:2502
894
+ #: ../../wp-google-maps-gold/legacy-core.php:2511
895
+ #: ../../wp-google-maps-gold/legacy-core.php:2520
896
+ #: ../../wp-google-maps-gold/legacy-core.php:2529
897
+ #: ../../wp-google-maps-pro/html/marker-icon-picker.html.php:18
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:2496
904
+ #: ../../wp-google-maps-gold/legacy-core.php:2505
905
+ #: ../../wp-google-maps-gold/legacy-core.php:2514
906
+ #: ../../wp-google-maps-gold/legacy-core.php:2523
907
+ #: ../../wp-google-maps-gold/legacy-core.php:2532
908
+ #: ../../wp-google-maps-pro/legacy-core.php:1346
909
+ #: ../../wp-google-maps-pro/legacy-core.php:7695 ../legacy-core.php:3043
910
+ #: ../legacy-core.php:3482
911
+ msgid "Width"
912
+ msgstr "Широчина"
913
 
914
+ #: ../../wp-google-maps-gold/legacy-core.php:2496
915
+ #: ../../wp-google-maps-gold/legacy-core.php:2505
916
+ #: ../../wp-google-maps-gold/legacy-core.php:2514
917
+ #: ../../wp-google-maps-gold/legacy-core.php:2523
918
+ #: ../../wp-google-maps-gold/legacy-core.php:2532
919
+ #: ../../wp-google-maps-pro/legacy-core.php:1358
920
+ #: ../../wp-google-maps-pro/legacy-core.php:7696 ../legacy-core.php:3044
921
+ #: ../legacy-core.php:3494
922
+ msgid "Height"
923
+ msgstr "Височина"
924
 
925
+ #: ../../wp-google-maps-gold/legacy-core.php:2501
926
+ msgid "Level 2"
927
+ msgstr ""
 
928
 
929
+ #: ../../wp-google-maps-gold/legacy-core.php:2510
930
+ msgid "Level 3"
931
+ msgstr ""
 
932
 
933
+ #: ../../wp-google-maps-gold/legacy-core.php:2519
934
+ msgid "Level 4"
935
+ msgstr ""
 
936
 
937
+ #: ../../wp-google-maps-gold/legacy-core.php:2528
938
+ msgid "Level 5"
939
+ msgstr ""
 
940
 
941
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:23
942
  #, fuzzy
943
+ #| msgid "WP Google Maps Support"
944
+ msgid "WP Google Maps - KML Importer"
945
+ msgstr "WP Google Maps Support"
946
 
947
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:23
948
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:40
949
+ msgid "KML File Importer"
950
+ msgstr ""
951
 
952
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:48
953
+ msgid "KML File"
954
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
955
 
956
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:50
957
+ msgid "Please select a KML or KMZ file to import"
958
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
959
 
960
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:56
961
+ #, fuzzy
962
+ #| msgid "Assigned to "
963
+ msgid "Assigned Map"
964
+ msgstr "Зачислен до"
 
 
 
 
 
965
 
966
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
967
+ msgid "No maps found. Please create a map "
968
+ msgstr ""
 
 
 
 
 
 
 
 
969
 
970
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
971
+ #, fuzzy
972
+ #| msgid "Linked maps"
973
+ msgid "new map"
974
+ msgstr "Линкнати карти"
 
 
 
 
 
 
 
 
 
975
 
976
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
977
+ msgid "before importing your KML/KMZ file"
978
+ msgstr ""
 
979
 
980
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:85
981
+ #, fuzzy
982
+ #| msgid "Assigned to "
983
+ msgid "Assigned Category"
984
+ msgstr "Зачислен до"
985
 
986
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:97
987
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:125
988
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:332
989
+ #: ../../wp-google-maps-pro/includes/page.categories.php:170
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:17082
996
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17122
997
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17267
998
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17297
999
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
1000
+ #: ../../wp-google-maps-pro/legacy-core.php:1608
1001
+ #: ../../wp-google-maps-pro/legacy-core.php:1737
1002
+ #: ../../wp-google-maps-pro/legacy-core.php:5761
1003
+ #: ../html/settings-page.html.php:147 ../includes/legacy/settings-page.php:330
1004
+ #: ../legacy-core.php:3515 ../legacy-core.php:3889 ../legacy-core.php:4170
1005
+ #: ../legacy-core.php:4226
1006
+ msgid "None"
1007
+ msgstr "без"
1008
 
1009
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1010
+ msgid "No categories found. Please create a "
1011
+ msgstr ""
 
1012
 
1013
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1014
+ #, fuzzy
1015
+ #| msgid "Save Category"
1016
+ msgid "new category"
1017
+ msgstr "Запиши категория"
1018
 
1019
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1020
+ 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:62
1025
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:60
1026
+ #, fuzzy
1027
+ msgid "Upload"
1028
+ msgstr "качи снимка"
1029
 
1030
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:125
1031
+ msgid ""
1032
+ "Please note that this functionality currently only supports markers. KMZ "
1033
+ "file imports are still in beta phase."
1034
+ msgstr ""
1035
 
1036
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:226
1037
+ #, fuzzy
1038
+ #| msgid "Your CSV file has been successfully imported"
1039
+ msgid ""
1040
+ "Your KML file has been successfully imported. View your markers on your "
1041
+ msgstr "Твоя CSV файл бе успешно импортиран"
1042
 
1043
+ #: ../../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:226
1044
+ #, fuzzy
1045
+ #| msgid "here"
1046
+ msgid "map here"
1047
+ msgstr "тук"
1048
 
1049
+ #: ../../wp-google-maps-gold/wp-google-maps-gold.php:337
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 "
1053
+ "Gold Add-on. Please switch to version 5.3 or above. Please speak to your "
1054
+ "host if you are unsure how to switch PHP versions."
1055
+ msgstr ""
1056
 
1057
+ #: ../../wp-google-maps-gold/wp-google-maps-gold.php:350
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 "
1061
+ "can force a check for updates by going to Updates in your Dashboard menu, "
1062
+ "and clicking \"Check Again\"."
1063
+ msgstr ""
1064
 
1065
+ #: ../../wp-google-maps-gold/wp-google-maps-gold.php:378 ../legacy-core.php:27
1066
+ #: ../wpGoogleMaps.php:1276
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"
1090
+ msgid "Add Map"
1091
+ msgstr "Добави маркер"
1092
 
1093
+ #: ../../wp-google-maps-pro/html/add-map-dialog.html.php:8
1094
+ msgid "Existing Map"
1095
+ msgstr ""
 
1096
 
1097
+ #: ../../wp-google-maps-pro/html/add-map-dialog.html.php:20
1098
+ #, fuzzy
1099
+ msgid "Insert Map"
1100
+ msgstr "Създавай твоя карта"
1101
 
1102
+ #: ../../wp-google-maps-pro/html/add-map-dialog.html.php:26
1103
+ 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:199
1108
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:190
1109
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:15
1110
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:18
1111
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:458
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:164
1114
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:222
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:128
1117
+ #: ../../wp-google-maps-pro/legacy-core.php:2268
1118
+ #: ../../wp-google-maps-pro/legacy-core.php:7150
1119
+ #: ../../wp-google-maps-pro/legacy-core.php:7242
1120
+ #: ../../wp-google-maps-pro/legacy-core.php:7694
1121
+ #: ../base/classes/widget_module.class.php:73
1122
+ #: ../base/includes/wp-google-maps-polygons.php:48
1123
+ #: ../base/includes/wp-google-maps-polygons.php:135
1124
+ #: ../includes/tables/class.admin-marker-datatable.php:36
1125
+ #: ../includes/tables/class.marker-datatable.php:20 ../legacy-core.php:3042
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:134
1133
+ #: ../../wp-google-maps-pro/legacy-core.php:2269
1134
+ #: ../includes/tables/class.admin-marker-datatable.php:38
1135
+ #: ../includes/tables/class.marker-datatable.php:22 ../legacy-core.php:3104
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/includes/custom-fields/page.custom-fields.php:253
1142
+ #: ../../wp-google-maps-pro/includes/page.categories.php:743
1143
+ #: ../../wp-google-maps-pro/includes/page.categories.php:915
1144
+ #: ../includes/tables/class.admin-marker-datatable.php:35
1145
+ #: ../legacy-core.php:3101 ../legacy-core.php:4752
1146
+ msgid "Icon"
1147
+ msgstr "Икона"
1148
+
1149
+ #: ../../wp-google-maps-pro/html/add-map-dialog.html.php:39
1150
+ #, fuzzy
1151
+ #| msgid "Leave blank for no restrictions."
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"
1158
+ msgid "Directions:"
1159
+ msgstr "Упътвания"
1160
+
1161
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:5
1162
  msgid ""
1163
+ "This feature requires an API key from OpenRouteService to function. Please "
1164
+ "obtain a key from <a href=\"https://openrouteservice.org/dev/#/home\">the "
1165
+ "OpenRouteService Developer Console</a> and paste your key into Maps &rarr; "
1166
+ "Settings &rarr; Advanced in the \"OpenRouteService API key\" field."
1167
  msgstr ""
 
 
 
 
1168
 
1169
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:12
1170
+ #, fuzzy
1171
+ #| msgid "Enable Directions?"
1172
+ msgid "Enable Directions"
1173
+ msgstr "Включи упътвания?"
1174
 
1175
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:30
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:41
1182
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:148
1183
+ #: ../../wp-google-maps-pro/legacy-core.php:520
1184
+ #: ../../wp-google-maps-pro/legacy-core.php:5688
1185
+ #: ../../wp-google-maps-pro/legacy-core.php:8508
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:49
1193
+ #: ../../wp-google-maps-pro/legacy-core.php:959
1194
+ #: ../../wp-google-maps-pro/legacy-core.php:1411
1195
+ #: ../../wp-google-maps-pro/legacy-core.php:1490
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:59
1205
+ #: ../legacy-core.php:3562
1206
+ msgid "Directions Box Open by Default?"
1207
+ msgstr "Упътвания включени по подразбиране?"
1208
 
1209
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:70
1210
+ #: ../legacy-core.php:3567
1211
+ msgid "Yes, on the left"
1212
+ msgstr "Да, отляво"
 
1213
 
1214
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:75
1215
+ #: ../legacy-core.php:3568
1216
+ msgid "Yes, on the right"
1217
+ msgstr "Да, отдясно"
1218
 
1219
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:80
1220
+ #: ../legacy-core.php:3569
1221
+ msgid "Yes, above"
1222
+ msgstr "Да, отгоре"
1223
 
1224
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:85
1225
+ #: ../legacy-core.php:3570
1226
+ msgid "Yes, below"
1227
+ msgstr "Да, отдолу"
1228
 
1229
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:94
1230
+ #: ../legacy-core.php:3576
1231
+ msgid "Directions Box Width"
1232
+ msgstr "Упътвания таб широчина"
1233
 
1234
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:107
1235
+ msgid "%"
1236
+ msgstr "%"
 
1237
 
1238
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:112
1239
+ msgid "px"
1240
+ msgstr "px"
1241
 
1242
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:122
1243
+ msgid "Default 'To' address"
1244
+ msgstr "по подразбиране 'до' адрес"
1245
 
1246
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:131
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:140
1253
+ #, fuzzy
1254
+ #| msgid "Directions"
1255
+ msgid "Directions behaviour"
1256
+ msgstr "Упътвания"
1257
 
1258
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:153
1259
+ #, fuzzy
1260
+ #| msgid "Directions Box Width"
1261
+ msgid "Display directions on the page"
1262
+ msgstr "Упътвания таб широчина"
1263
 
1264
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:163
1265
+ msgid "External"
1266
+ msgstr ""
 
 
1267
 
1268
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:168
1269
+ msgid "Open Google / Apple maps in a new tab"
1270
+ msgstr ""
 
 
1271
 
1272
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:178
1273
+ #, fuzzy
1274
+ #| msgid "Satellite"
1275
+ msgid "Intelligent"
1276
+ msgstr "Сателит"
1277
 
1278
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:183
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:193
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:198
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:211
1295
+ msgid "Origin icon picker"
1296
+ msgstr ""
 
 
 
 
1297
 
1298
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:221
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:230
1305
+ #, fuzzy
1306
+ #| msgid "Directions"
1307
+ msgid "Directions route color"
1308
+ msgstr "Упътвания"
1309
 
1310
+ #: ../../wp-google-maps-pro/html/directions-box-settings.html.php:244
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:261
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
 
1326
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:28
1327
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:32
1328
+ msgid "From"
1329
+ msgstr "От"
1330
 
1331
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:42
1332
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:45
1333
+ msgid "To"
1334
+ msgstr "До"
 
 
 
 
1335
 
1336
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:52
1337
+ msgid "Via"
1338
+ msgstr ""
 
1339
 
1340
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:65
1341
  #, fuzzy
1342
+ #| msgid "Add a Polygon"
1343
+ msgid "Add Waypoint"
1344
+ msgstr "Добави полигон"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
 
1346
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:75
1347
  msgid "For"
1348
  msgstr "За"
1349
 
1350
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:81
1351
  msgid "Driving"
1352
  msgstr "Шофиране"
1353
 
1354
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:86
1355
  msgid "Walking"
1356
  msgstr "Ходене"
1357
 
1358
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:91
1359
+ #, fuzzy
1360
+ #| msgid "Transit Layer"
1361
+ msgid "Transit"
1362
+ msgstr "Слой транзит"
1363
+
1364
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:96
1365
  msgid "Bicycling"
1366
  msgstr "Колоездене"
1367
 
1368
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:105
1369
  msgid "show options"
1370
  msgstr "покажи опции"
1371
 
1372
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:109
1373
  msgid "hide options"
1374
  msgstr "скрий опции"
1375
 
1376
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:116
1377
  msgid "Avoid Tolls"
1378
  msgstr "Избегни пътни такси"
1379
 
1380
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:122
1381
  msgid "Avoid Highways"
1382
  msgstr "избегни магистрали"
1383
 
1384
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:128
1385
+ msgid "Avoid Ferries"
1386
+ msgstr ""
 
 
 
 
1387
 
1388
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:141
1389
  msgid "Go"
1390
  msgstr "Отиди"
1391
 
1392
+ #: ../../wp-google-maps-pro/html/directions-box.html.php:148
1393
+ #: ../../wp-google-maps-pro/legacy-core.php:3472
1394
+ #: ../../wp-google-maps-pro/legacy-core.php:3499
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:3470
1400
+ #: ../../wp-google-maps-pro/legacy-core.php:3497
1401
  msgid "Reset directions"
1402
  msgstr "Ресет упътвания"
1403
 
1404
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:3
1405
+ #, fuzzy
1406
+ #| msgid "Use Google Maps API"
1407
+ msgid "Use Google Maps API:"
1408
+ msgstr "Ползвай Google Maps API"
1409
 
1410
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:9
1411
+ msgid "3.exp (Experimental)"
1412
+ msgstr ""
1413
 
1414
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:14
1415
+ msgid "3.31"
1416
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
1417
 
1418
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:19
1419
+ msgid "3.30 (Retired)"
1420
+ msgstr ""
 
 
1421
 
1422
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:27
 
1423
  #, fuzzy
1424
+ #| msgid "Use Google Maps API"
1425
+ msgid "Load Google Maps API:"
1426
+ 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:288
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:293
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:298
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:303
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:308
1455
+ msgid "Never"
1456
+ msgstr ""
1457
 
1458
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:61
1459
+ #, fuzzy
1460
+ #| msgid "Use Google Maps API"
1461
+ msgid "Always include Google Maps API on pages:"
1462
+ msgstr "Ползвай Google Maps API"
1463
 
1464
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:64
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:316 ../html/settings-page.html.php:321
1469
+ msgid "Page IDs"
1470
+ msgstr ""
1471
 
1472
+ #: ../../wp-google-maps-pro/html/google-maps-api-settings.html.php:69
1473
+ #, fuzzy
1474
+ #| msgid "Use Google Maps API"
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
1481
+ msgid "Import Data"
1482
+ msgstr "Име на картата"
1483
 
1484
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:10
1485
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:11
1486
+ msgid "Import via:"
1487
+ 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:621
1492
+ #, fuzzy
1493
+ #| msgid "Pic URL"
1494
+ msgid "URL"
1495
+ msgstr "Снимка URL"
1496
 
1497
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:21
1498
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:24
1499
+ msgid "File"
1500
+ msgstr ""
1501
 
1502
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:26
1503
+ msgid "Bulk JPEG"
1504
+ msgstr ""
 
1505
 
1506
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:35
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:40
1514
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:88
1515
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:111
1516
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:118
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/includes/import-export/class.import-csv.php:401
1520
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:504
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:150
1524
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:255
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:595
1528
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:936
1529
  #, fuzzy
1530
+ #| msgid "Support"
1531
+ msgid "Import"
1532
+ msgstr "Съпорт"
1533
 
1534
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:52
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:57
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:73
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:91
1554
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:167
1555
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:94
1556
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:149
1557
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:679
1558
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:302
1559
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:392
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:136
1568
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:120
1569
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:505
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:256
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:596
1574
+ msgid "Schedule"
1575
+ msgstr ""
1576
 
1577
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:139
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, "
1581
+ "import as normal and select the Schedule button. Scheduled imports will be "
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:147
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:164
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:173
1618
+ msgid "View Response"
1619
  msgstr ""
1620
 
1621
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:185
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:188
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:196
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-csv.php:465
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:175
1665
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:229
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:210
1674
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:202
1675
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:465
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:175
1678
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:229
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:222
1686
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:215
1687
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:181
1688
+ #: ../legacy-core.php:2661
1689
+ msgid "Categories"
1690
+ msgstr "Категории"
1691
 
1692
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:228
1693
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:221
1694
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:182
1695
+ #: ../../wp-google-maps-pro/legacy-core.php:8881
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:241
1702
  #, fuzzy
1703
+ msgid "Ratings"
1704
+ msgstr "Настройки"
1705
 
1706
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:252
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:183
1709
+ #: ../../wp-google-maps-pro/legacy-core.php:2388 ../legacy-core.php:4144
1710
+ #: ../legacy-core.php:4155
1711
+ msgid "Markers"
1712
+ msgstr "Маркери"
1713
 
1714
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:258
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:184
1717
+ #: ../../wp-google-maps-pro/legacy-core.php:2392
1718
+ #: ../base/includes/welcome.php:59
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:264
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:185
1726
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:122
1727
+ #: ../../wp-google-maps-pro/legacy-core.php:2389
1728
+ #: ../base/classes/WPGM_templates.php:53 ../base/includes/welcome.php:59
1729
+ #: ../legacy-core.php:4284
1730
+ msgid "Polygons"
1731
+ msgstr "Полигони"
1732
 
1733
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:270
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:186
1736
+ #: ../../wp-google-maps-pro/legacy-core.php:2390
1737
+ #: ../base/classes/WPGM_templates.php:58 ../base/includes/welcome.php:59
1738
+ #: ../legacy-core.php:4147 ../legacy-core.php:4289
1739
+ msgid "Polylines"
1740
+ msgstr "Полиноми"
1741
 
1742
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:276
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:187
1745
+ #: ../../wp-google-maps-pro/legacy-core.php:2393
1746
+ #: ../includes/compat/backwards_compat_v6.php:61 ../legacy-core.php:4150
1747
+ msgid "Rectangles"
1748
+ msgstr ""
1749
 
1750
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:282
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:188
1753
+ #, fuzzy
1754
+ msgid "Heatmap Datasets"
1755
+ msgstr "Запиши категория"
1756
 
1757
+ #: ../../wp-google-maps-pro/html/import-export/import-export.html.php:287
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:597
1760
+ #, fuzzy
1761
+ #| msgid "Support"
1762
+ msgid "Export"
1763
+ msgstr "Съпорт"
1764
 
1765
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:153
1766
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:680
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-source-panel.html.php:155
1775
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:681
1776
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:304
1777
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:394
1778
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:295
1779
+ msgid "Next Scheduled Run"
1780
+ msgstr ""
1781
 
1782
+ #: ../../wp-google-maps-pro/html/import-export/import-source-panel.html.php:180
1783
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1058
1784
+ msgid "No maps available for export."
1785
+ msgstr ""
1786
 
1787
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:5
1788
+ #, fuzzy
1789
+ #| msgid "Add a marker"
1790
+ msgid "Add a Marker"
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/map-edit-page/pro-marker-panel.html.php:31
1800
+ msgid "Extract address from picture"
 
 
 
1801
  msgstr ""
 
 
 
1802
 
1803
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:46
1804
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:137
1805
+ #: ../../wp-google-maps-pro/legacy-core.php:2270
1806
+ #: ../../wp-google-maps-pro/legacy-core.php:7153
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/map-edit-page/pro-marker-panel.html.php:62
1816
+ msgid "Gallery"
1817
+ msgstr ""
 
1818
 
1819
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:73
1820
+ #: ../legacy-core.php:4251
1821
+ msgid "Link URL"
1822
+ msgstr "Линк URL"
1823
 
1824
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:82
1825
+ #: ../legacy-core.php:4253
1826
+ msgid "Custom Marker"
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/map-edit-page/pro-marker-panel.html.php:184
1874
+ #: ../includes/tables/class.admin-marker-datatable.php:42
1875
+ msgid "Sticky"
1876
+ msgstr ""
 
 
1877
 
1878
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:191
1879
+ #, fuzzy
1880
+ #| msgid "Basic Marker Listings"
1881
+ msgid "Always on top in Marker Listings"
1882
+ msgstr "Основни маркерни списъци"
1883
 
1884
+ #: ../../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:201
1885
+ #: ../includes/class.strings.php:43 ../legacy-core.php:4189
1886
+ #: ../legacy-core.php:4273
1887
+ msgid "Add Marker"
1888
+ msgstr "Добави маркер"
1889
 
1890
+ #: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:11
1891
+ #: ../../wp-google-maps-pro/legacy-core.php:1295
1892
+ #, fuzzy
1893
+ msgid "Marker Filtering"
1894
+ msgstr "Списък маркери"
1895
 
1896
+ #: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:16
1897
+ msgid "Enable custom field filtering on"
1898
+ msgstr ""
 
1899
 
1900
+ #: ../../wp-google-maps-pro/html/marker-filtering-tab.html.php:33
1901
+ #, php-format
1902
  msgid ""
1903
+ "You have no custom fields to filter on. <a href=\"%s\">Add custom fields "
1904
+ "here</a>."
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-filtering-tab.html.php:47
1912
+ #, fuzzy
1913
+ msgid "No widget type selected"
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:8
1921
+ #: ../../wp-google-maps-pro/includes/page.categories.php:148
1922
+ #: ../../wp-google-maps-pro/includes/page.categories.php:318
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:13
1929
+ #: ../../wp-google-maps-pro/legacy-core.php:1602
1930
+ #, fuzzy
1931
+ msgid "Marker Library"
1932
+ msgstr "Категории маркери"
1933
 
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:204
1938
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:207
1939
+ #: ../../wp-google-maps-pro/legacy-core.php:1291
1940
+ #: ../../wp-google-maps-pro/legacy-core.php:3021
1941
+ #: ../../wp-google-maps-pro/legacy-core.php:3401
1942
+ #: ../../wp-google-maps-pro/legacy-core.php:3926
1943
+ #: ../../wp-google-maps-pro/legacy-core.php:4286 ../legacy-core.php:3435
1944
+ msgid "Directions"
1945
+ msgstr "Упътвания"
1946
 
1947
+ #: ../../wp-google-maps-pro/html/pro-store-locator.html.php:34
1948
+ #: ../../wp-google-maps-pro/legacy-core.php:7450
1949
+ #: ../../wp-google-maps-pro/legacy-core.php:8521
1950
+ #: ../../wp-google-maps-pro/legacy-core.php:8606 ../legacy-core.php:1940
1951
+ #: ../legacy-core.php:5673 ../legacy-core.php:5797
1952
+ msgid "Radius"
1953
+ msgstr "Радиус"
1954
 
1955
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:89
1956
+ #, fuzzy
1957
+ #| msgid "Advanced Options"
1958
+ msgid "Advanced Custom Fields"
1959
+ msgstr "Специални опции"
1960
 
1961
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:94
1962
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:227
1963
+ msgid "(Not available)"
1964
+ msgstr ""
1965
 
1966
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:108
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:226
1973
+ msgid "Security check failed."
1974
+ msgstr ""
1975
 
1976
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:32
1977
+ msgid "Specified import class does not exist"
1978
+ msgstr ""
 
1979
 
1980
+ #: ../../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:37
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:222
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:463
1990
+ #: ../../wp-google-maps-pro/includes/page.categories.php:546
1991
+ msgid "All"
1992
+ msgstr "Всички"
1993
 
1994
+ #: ../../wp-google-maps-pro/includes/class.category-tree-wordpress.php:12
1995
+ #, fuzzy
1996
+ #| msgid "Categories"
1997
+ msgid "All Categories"
1998
+ msgstr "Категории"
1999
 
2000
+ #: ../../wp-google-maps-pro/includes/class.pro-map.php:72
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-store-locator.php:51
2008
+ #: ../../wp-google-maps-pro/legacy-core.php:841
2009
+ #: ../../wp-google-maps-pro/legacy-core.php:7413 ../legacy-core.php:1920
2010
+ #: ../legacy-core.php:3167
2011
+ msgid "ZIP / Address:"
2012
+ msgstr "ПК / Адрес"
2013
 
2014
+ #: ../../wp-google-maps-pro/includes/class.pro-store-locator.php:60
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:114
2033
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:320
2034
+ msgid "Value"
2035
+ msgstr ""
2036
 
2037
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:234
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:258
2044
+ msgid "Attributes"
2045
+ msgstr ""
 
2046
 
2047
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:263
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:268
2054
+ #: ../../wp-google-maps-pro/legacy-core.php:4945
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:273
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:278
2066
+ #, fuzzy
2067
+ #| msgid "Action"
2068
+ msgid "Actions"
2069
+ msgstr "Действие"
2070
 
2071
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:337
2072
+ msgid "Text"
2073
+ msgstr ""
 
2074
 
2075
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:342
2076
+ #: ../../wp-google-maps-pro/legacy-core.php:5715
2077
+ msgid "Dropdown"
2078
+ msgstr "Дропдаун"
2079
 
2080
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:347
2081
+ #: ../../wp-google-maps-pro/legacy-core.php:5716
2082
+ msgid "Checkboxes"
2083
+ msgstr "Чекбоксове"
2084
 
2085
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:352
2086
+ msgid "Time Range"
2087
+ msgstr ""
 
2088
 
2089
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:357
2090
+ msgid "Date Range"
2091
+ msgstr ""
 
2092
 
2093
+ #: ../../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:377
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-csv.php:144
2112
+ msgid " on row(s) "
2113
+ msgstr ""
2114
+
2115
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:167
2116
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:29
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-csv.php:382
 
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-csv.php:404
2129
  #, fuzzy
2130
+ msgid "CSV Data"
2131
+ msgstr "Име на картата"
2132
+
2133
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:410
2134
+ #, fuzzy
2135
+ msgid "Map data found."
2136
+ msgstr "Име на картата"
2137
+
2138
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:413
2139
+ #, fuzzy
2140
+ msgid "Marker data found."
2141
+ msgstr "Marker данни локация"
2142
+
2143
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:416
2144
+ msgid "Circle data found."
2145
+ msgstr ""
2146
+
2147
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:419
2148
+ #, fuzzy
2149
+ #| msgid "Polygon Data"
2150
+ msgid "Polygon data found."
2151
+ msgstr "Данни полигон"
2152
+
2153
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:422
2154
+ #, fuzzy
2155
+ #| msgid "Polyline Data"
2156
+ msgid "Polyline data found."
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-csv.php:436
2168
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:201
2169
+ msgid "Find Addresses or Latitude and Longitude when missing"
2170
+ msgstr ""
2171
+
2172
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:437
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:203
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-csv.php:442
2180
+ msgid "Use map ID's specified in file"
2181
+ msgstr ""
2182
+
2183
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:445
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:206
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-csv.php:449
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:212
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-csv.php:473
2198
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:480
2199
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:133
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:238
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-csv.php:488
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:239
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-csv.php:492
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:243
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-csv.php:505
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:256
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-csv.php:506
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:257
2246
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:176
2247
+ #: ../../wp-google-maps-pro/legacy-core.php:7196
2248
+ #: ../../wp-google-maps-pro/legacy-core.php:7300
2249
+ #: ../../wp-google-maps-pro/legacy-core.php:8548
2250
+ #: ../base/includes/wp-google-maps-polygons.php:93
2251
+ #: ../base/includes/wp-google-maps-polygons.php:193
2252
+ #: ../base/includes/wp-google-maps-polylines.php:88
2253
+ #: ../base/includes/wp-google-maps-polylines.php:196 ../legacy-core.php:5698
2254
+ #: ../legacy-core.php:5821 ../legacy-core.php:5937 ../legacy-core.php:6044
2255
+ #: ../lib/codecabin/deactivate-feedback-form.php:44
2256
+ msgid "Cancel"
2257
+ msgstr ""
2258
+
2259
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:537
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:304
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-csv.php:563
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:321
2271
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:222
2272
+ #: ../includes/class.strings.php:40
2273
+ msgid "Importing, this may take a moment..."
2274
+ msgstr ""
2275
+
2276
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:609
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:335
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:502
2281
+ #: ../includes/class.strings.php:39
2282
+ msgid "Import completed."
2283
  msgstr ""
2284
 
2285
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:648
 
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-csv.php:652
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:365
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-csv.php:655
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:368
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-csv.php:672
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:385
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-csv.php:810
2313
+ msgid "New CSV Map Import"
2314
+ msgstr ""
 
 
2315
 
2316
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1056
2317
+ msgid ""
2318
+ "No latitude supplied, \"Find latitude\" not selected. Marker will have zero "
2319
+ "latitude"
2320
+ msgstr ""
 
 
 
2321
 
2322
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1063
2323
+ msgid "Invalid latitude, supplied value is not numeric"
2324
+ msgstr ""
 
 
2325
 
2326
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1074
2327
+ msgid ""
2328
+ "No longitude supplied, \"Find longitude\" not selected. Marker will have "
2329
+ "zero longitude"
2330
+ msgstr ""
 
2331
 
2332
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1081
2333
+ msgid "Invalid longitude, supplied value is not numeric"
2334
+ msgstr ""
 
2335
 
2336
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1191
2337
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:962
2338
+ msgid "New Imported Circle"
2339
+ msgstr ""
2340
 
2341
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1236
2342
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1008
2343
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:685
2344
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:799
2345
+ msgid "New Imported Polygon"
2346
+ msgstr ""
2347
 
2348
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1283
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:1056
2352
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:584
2353
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:645
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:1321
2360
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1095
2361
+ msgid "New Imported Rectangle"
2362
+ msgstr ""
2363
 
2364
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-csv.php:1357
2365
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:1132
2366
+ msgid "New Imported Dataset"
2367
+ msgstr ""
2368
 
2369
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:72
2370
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:64
2371
+ msgid "Error: Unable to parse file."
2372
+ msgstr ""
2373
 
2374
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:85
2375
+ msgid "Error: No tracks or way points found in GPX file."
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:132
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-gpx.php:111
2385
+ #, fuzzy
2386
+ msgid "GPX Data"
2387
+ msgstr "Име на картата"
2388
+
2389
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:113
2390
+ msgid "Tracks"
2391
+ msgstr ""
2392
+
2393
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:114
2394
+ msgid "Way Points"
2395
+ msgstr ""
2396
+
2397
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:116
2398
+ msgid "Track Resolution"
2399
+ msgstr ""
2400
+
2401
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:123
2402
+ msgid "Find Addresses for Way Points"
2403
+ msgstr ""
2404
+
2405
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:398
2406
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:398
2407
+ msgid "New GPX Map Import"
2408
+ msgstr ""
2409
+
2410
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:518
2411
+ msgid "Segment"
2412
+ msgstr ""
2413
+
2414
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:653
2415
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-gpx.php:679
2416
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:522
2417
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:548
2418
+ #, fuzzy
2419
+ #| msgid "Delete Marker"
2420
+ msgid "New Imported Marker"
2421
+ msgstr "Изтрий маркер"
2422
+
2423
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:118
2424
+ msgid "Error parsing JSON: "
2425
+ msgstr ""
2426
+
2427
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:125
2428
+ msgid "Error: File contains no maps."
2429
+ msgstr ""
2430
+
2431
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:154
2432
+ msgid "No maps available for import."
2433
+ msgstr ""
2434
+
2435
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:179
2436
+ #: ../../wp-google-maps-pro/legacy-core.php:4743
2437
+ #, fuzzy
2438
+ msgid "Map Data"
2439
+ msgstr "Име на картата"
2440
+
2441
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-json.php:208
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:288
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:557
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:796
2460
+ #, php-format
2461
+ msgid "Failed to geocode \"%s\""
2462
+ msgstr ""
2463
+
2464
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:92
2465
+ msgid "Error: No import data found in KML file."
2466
+ msgstr ""
2467
+
2468
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:118
2469
+ #, fuzzy
2470
+ msgid "KML Data"
2471
+ msgstr "Име на картата"
2472
+
2473
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:120
2474
+ msgid "Pins"
2475
+ msgstr ""
2476
+
2477
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:121
2478
+ msgid "Paths"
2479
+ msgstr ""
2480
+
2481
+ #: ../../wp-google-maps-pro/includes/import-export/class.import-kml.php:124
2482
+ msgid "Find Addresses for Pins"
2483
+ msgstr ""
2484
+
2485
+ #: ../../wp-google-maps-pro/includes/import-export/class.import.php:101
2486
+ msgid "Error: Unable to load file."
2487
+ msgstr ""
2488
+
2489
+ #: ../../wp-google-maps-pro/includes/import-export/class.import.php:126
2490
+ #: ../../wp-google-maps-pro/includes/import-export/class.import.php:134
2491
+ msgid "Error: Malformed options. Bad id."
2492
+ msgstr ""
2493
+
2494
+ #: ../../wp-google-maps-pro/includes/import-export/class.import.php:231
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:380
2501
+ #, php-format
2502
+ msgid ""
2503
+ "HTTP referrer restrictions on your API key forbid geocoding from this "
2504
+ "server. This can happen when your server is behind a proxy, or does not set "
2505
+ "the HTTP referrer header correctly. We recommend temporarily de-restricting "
2506
+ "your key, or generating a second key with an IP restriction to switch to "
2507
+ "temporarily. We detected this servers IP as %s."
2508
+ msgstr ""
2509
+
2510
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:30
2511
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6821
2512
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
2513
+ #: ../../wp-google-maps-pro/legacy-core.php:4944
2514
+ #: ../includes/legacy/settings-page.php:153
2515
+ #: ../js/v8/3rd-party-integration/gutenberg/dist/gutenberg.js:144
2516
+ #: ../js/v8/wp-google-maps.combined.js:7068 ../js/v8/wp-google-maps.min.js:1
2517
+ #: ../legacy-core.php:2659
2518
+ msgid "Maps"
2519
+ msgstr "Карти"
2520
+
2521
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:113
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:119
2526
+ msgid "No file upload or failed security check."
2527
+ msgstr ""
2528
+
2529
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:160
2530
+ msgid "Unable to add file to database."
2531
+ msgstr ""
2532
+
2533
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:173
2534
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:346
2535
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:686
2536
+ msgid "No file specified or failed security check."
2537
+ msgstr ""
2538
+
2539
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:181
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:235
2544
+ msgid "No file, URL or integration specified."
2545
+ msgstr ""
2546
+
2547
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:246
2548
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:358
2549
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:453
2550
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:698
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:333
2556
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:422
2557
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:529
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:443
2564
+ #, fuzzy
2565
+ #| msgid "Last"
2566
+ msgid "Last Run"
2567
+ msgstr "Последен"
2568
+
2569
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:613
2570
+ msgid "Once Weekly"
2571
+ msgstr ""
2572
+
2573
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:618
2574
+ msgid "Once Monthly"
2575
+ msgstr ""
2576
+
2577
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:790
2578
+ msgid "Unable to schedule import."
2579
+ msgstr ""
2580
+
2581
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:803
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:811
2586
+ msgid "Scheduled import not found."
2587
+ msgstr ""
2588
+
2589
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:828
2590
+ msgid "Unable to remove scheduled import."
2591
+ msgstr ""
2592
+
2593
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:935
2594
+ msgid "Please select a file to upload."
2595
+ msgstr ""
2596
+
2597
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:938
2598
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:942
2599
+ msgid "Back to Import Data"
2600
+ msgstr ""
2601
+
2602
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:939
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:940
2609
+ msgid "File deleted."
2610
+ msgstr ""
2611
+
2612
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:941
2613
+ msgid "Please enter a URL to import from."
2614
+ msgstr ""
2615
+
2616
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:943
2617
+ msgid "Loading import options..."
2618
+ msgstr ""
2619
+
2620
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:944
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:945
2627
+ msgid "Scheduled import deleted."
2628
+ msgstr ""
2629
+
2630
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:946
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:960
2635
+ msgid "Accepts"
2636
+ msgstr ""
2637
+
2638
+ #: ../../wp-google-maps-pro/includes/import-export/page.import-export.php:1035
2639
+ msgid "Next schedule run"
2640
+ msgstr ""
2641
+
2642
+ #: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:297
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:298
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:299
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:300
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:301
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:302
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:303
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:304
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:305
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:306
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:307
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:308
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:309
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:310
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:311
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:313
2703
+ msgid "CSV import failed"
2704
+ msgstr "CSV импорт неуспешен"
2705
+
2706
+ #: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:385
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:419
2712
+ #: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:550
2713
+ #: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:630
2714
+ #: ../../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:711
2715
+ msgid "Your CSV file has been successfully imported"
2716
+ msgstr "Твоя CSV файл бе успешно импортиран"
2717
+
2718
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:140
2719
+ #: ../../wp-google-maps-pro/legacy-core.php:3925
2720
+ #: ../../wp-google-maps-pro/legacy-core.php:7156
2721
+ #: ../../wp-google-maps-pro/legacy-core.php:7248
2722
+ #: ../base/includes/wp-google-maps-polygons.php:51
2723
+ #: ../base/includes/wp-google-maps-polygons.php:141
2724
+ #: ../includes/tables/class.admin-marker-datatable.php:41
2725
+ #: ../legacy-core.php:3107 ../legacy-core.php:4758
2726
+ msgid "Link"
2727
+ msgstr "Линк"
2728
+
2729
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:198
2730
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.basic-table.php:78
2731
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.carousel.php:146
2732
+ #: ../../wp-google-maps-pro/includes/marker-listings/class.grid.php:82
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:400
2739
+ #: ../../wp-google-maps-pro/legacy-core.php:1501
2740
+ #: ../../wp-google-maps-pro/legacy-core.php:7455 ../legacy-core.php:1946
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:405
2748
+ #: ../../wp-google-maps-pro/legacy-core.php:1501
2749
+ #: ../../wp-google-maps-pro/legacy-core.php:7455 ../legacy-core.php:1946
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:418
2757
+ #: ../includes/class.strings.php:65
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:422
2764
+ #: ../includes/class.strings.php:66
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:426
2771
+ msgid "from unknown location"
2772
+ msgstr ""
2773
+
2774
+ #: ../../wp-google-maps-pro/includes/page.categories.php:17
2775
+ #: ../../wp-google-maps-pro/includes/page.categories.php:20
2776
+ msgid "Marker Categories"
2777
+ msgstr "Категории маркери"
2778
+
2779
+ #: ../../wp-google-maps-pro/includes/page.categories.php:17
2780
+ msgid "Add New Category"
2781
+ msgstr "Добави нова категория"
2782
+
2783
+ #: ../../wp-google-maps-pro/includes/page.categories.php:21
2784
+ #: ../base/includes/wp-google-maps-polygons.php:48
2785
+ #: ../base/includes/wp-google-maps-polygons.php:135
2786
+ #: ../base/includes/wp-google-maps-polygons.php:138 ../legacy-core.php:3000
2787
+ msgid "Pro Version"
2788
+ msgstr "Pro версия"
2789
+
2790
+ #: ../../wp-google-maps-pro/includes/page.categories.php:21
2791
+ msgid "Create marker categories"
2792
+ msgstr "Създай маркер категории"
2793
+
2794
+ #: ../../wp-google-maps-pro/includes/page.categories.php:21
2795
+ #: ../legacy-core.php:3000
2796
+ msgid "with the"
2797
+ msgstr "с"
2798
+
2799
+ #: ../../wp-google-maps-pro/includes/page.categories.php:21
2800
+ #: ../legacy-core.php:3000
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:3022 ../legacy-core.php:3084
2806
+ msgid "Problems with the plugin? See the troubleshooting manual."
2807
+ msgstr "Проблеми с плъгина? Виж документацията за отстраняване на проблемите."
2808
+
2809
+ #: ../../wp-google-maps-pro/includes/page.categories.php:34
2810
+ msgid "There was a problem deleting the category."
2811
+ msgstr "Имаше проблем с изтриването на категорията."
2812
+
2813
+ #: ../../wp-google-maps-pro/includes/page.categories.php:37
2814
+ msgid "Delete your Category"
2815
+ msgstr "Изтрий категорията си"
2816
+
2817
+ #: ../../wp-google-maps-pro/includes/page.categories.php:37
2818
+ msgid "Are you sure you want to delete the category"
2819
+ msgstr "Сигурен ли сте, че искате да изтриете категорията?"
2820
+
2821
+ #: ../../wp-google-maps-pro/includes/page.categories.php:101
2822
+ msgid "Add a Marker Category"
2823
+ msgstr "Добави маркер категория"
2824
+
2825
+ #: ../../wp-google-maps-pro/includes/page.categories.php:109
2826
+ #: ../../wp-google-maps-pro/includes/page.categories.php:272
2827
+ msgid "Category Name"
2828
+ msgstr "Име на категория"
2829
+
2830
+ #: ../../wp-google-maps-pro/includes/page.categories.php:120
2831
+ #: ../../wp-google-maps-pro/includes/page.categories.php:284
2832
+ msgid "Category Marker"
2833
+ msgstr "Категория маркер"
2834
+
2835
+ #: ../../wp-google-maps-pro/includes/page.categories.php:137
2836
+ #: ../../wp-google-maps-pro/includes/page.categories.php:307
2837
+ #, fuzzy
2838
+ #| msgid "Category Name"
2839
+ msgid "Category Image:"
2840
+ msgstr "Име на категория"
2841
+
2842
+ #: ../../wp-google-maps-pro/includes/page.categories.php:143
2843
+ #: ../../wp-google-maps-pro/includes/page.categories.php:313
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:167
2863
+ #: ../../wp-google-maps-pro/includes/page.categories.php:365
2864
+ msgid "Optional"
2865
+ msgstr ""
2866
+
2867
+ #: ../../wp-google-maps-pro/includes/page.categories.php:192
2868
+ #: ../../wp-google-maps-pro/includes/page.categories.php:374
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:216
2880
+ #: ../../wp-google-maps-pro/includes/page.categories.php:399
2881
+ msgid "Save Category"
2882
+ msgstr "Запиши категория"
2883
+
2884
+ #: ../../wp-google-maps-pro/includes/page.categories.php:264
2885
+ #, fuzzy
2886
+ msgid "Edit a Marker Category"
2887
+ msgstr "Добави маркер категория"
2888
+
2889
+ #: ../../wp-google-maps-pro/includes/page.categories.php:340
2890
+ #, fuzzy
2891
+ msgid "Parent Category:"
2892
+ msgstr "Категории маркери"
2893
+
2894
+ #: ../../wp-google-maps-pro/includes/page.categories.php:521
2895
+ msgid "Your category has been created."
2896
+ msgstr "Твоята категория беше създадена."
2897
+
2898
+ #: ../../wp-google-maps-pro/includes/page.categories.php:615
2899
+ msgid "Your category has been saved."
2900
+ msgstr "Твоята категория беше записана."
2901
+
2902
+ #: ../../wp-google-maps-pro/includes/page.categories.php:715
2903
+ msgid "All maps"
2904
+ msgstr "Всички карти"
2905
+
2906
+ #: ../../wp-google-maps-pro/includes/page.categories.php:744
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2399
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
+ #: ../../wp-google-maps-pro/legacy-core.php:7159
2931
+ #: ../../wp-google-maps-pro/legacy-core.php:7251
2932
+ #: ../base/includes/wp-google-maps-polygons.php:54
2933
+ #: ../base/includes/wp-google-maps-polygons.php:144
2934
+ #: ../base/includes/wp-google-maps-polylines.php:46
2935
+ #: ../base/includes/wp-google-maps-polylines.php:142
2936
+ msgid "Line Color"
2937
+ msgstr "Цвят на линк"
2938
+
2939
+ #: ../../wp-google-maps-pro/includes/page.edit-polygon.php:36
2940
+ #: ../../wp-google-maps-pro/legacy-core.php:7165
2941
+ #: ../../wp-google-maps-pro/legacy-core.php:7257
2942
+ #: ../base/includes/wp-google-maps-polygons.php:60
2943
+ #: ../base/includes/wp-google-maps-polygons.php:150
2944
+ msgid "Fill Color"
2945
+ msgstr "Запълни с цвят"
2946
+
2947
+ #: ../../wp-google-maps-pro/includes/page.edit-polygon.php:37
2948
+ #: ../../wp-google-maps-pro/legacy-core.php:7168
2949
+ #: ../../wp-google-maps-pro/legacy-core.php:7260
2950
+ #: ../../wp-google-maps-pro/legacy-core.php:8513
2951
+ #: ../../wp-google-maps-pro/legacy-core.php:8598
2952
+ #: ../base/includes/wp-google-maps-polygons.php:63
2953
+ #: ../base/includes/wp-google-maps-polygons.php:153
2954
+ #: ../base/includes/wp-google-maps-polylines.php:54
2955
+ #: ../base/includes/wp-google-maps-polylines.php:150 ../legacy-core.php:5665
2956
+ #: ../legacy-core.php:5789 ../legacy-core.php:5919 ../legacy-core.php:6014
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
+ #: ../../wp-google-maps-pro/legacy-core.php:7196
2963
+ #: ../../wp-google-maps-pro/legacy-core.php:7300
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
+ #: ../base/includes/wp-google-maps-polygons.php:124
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:4745
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
+ #: ../../wp-google-maps-pro/legacy-core.php:269
2982
+ #: ../../wp-google-maps-pro/legacy-core.php:320
2983
+ #: ../../wp-google-maps-pro/legacy-core.php:7698
2984
+ #: ../../wp-google-maps-pro/legacy-core.php:7896
2985
+ #: ../base/includes/wp-google-maps-polygons.php:440
2986
+ #: ../base/includes/wp-google-maps-polylines.php:415
2987
+ #: ../includes/tables/class.admin-marker-datatable.php:43
2988
+ #: ../legacy-core.php:3046 ../legacy-core.php:4759 ../legacy-core.php:5492
2989
+ #: ../legacy-core.php:5543
2990
+ msgid "Action"
2991
+ msgstr "Действие"
2992
+
2993
+ #: ../../wp-google-maps-pro/includes/page.edit-polygon.php:497
2994
+ #: ../base/includes/wp-google-maps-polygons.php:467
2995
+ msgid "Delete this polygon"
2996
+ msgstr "Изтрий този полигон"
2997
+
2998
+ #: ../../wp-google-maps-pro/includes/page.edit-polyline.php:25
2999
+ #: ../../wp-google-maps-pro/legacy-core.php:2404
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
+ #: ../base/includes/wp-google-maps-polylines.php:88
3007
+ #: ../base/includes/wp-google-maps-polylines.php:196
3008
+ msgid "Save Polyline"
3009
+ msgstr "Запиши полином"
3010
+
3011
+ #: ../../wp-google-maps-pro/includes/page.edit-polyline.php:73
3012
+ #: ../base/includes/wp-google-maps-polylines.php:126
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:4746
3018
+ msgid "Polyline Data"
3019
+ msgstr "Полином данни"
3020
+
3021
+ #: ../../wp-google-maps-pro/includes/page.edit-polyline.php:510
3022
+ #: ../base/includes/wp-google-maps-polylines.php:442
3023
+ msgid "Delete this polyline"
3024
+ msgstr "Изтрий този полином"
3025
+
3026
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:13
3027
+ msgid "Select a Map Type (beta)"
3028
+ msgstr ""
3029
+
3030
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:147
3031
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:150
3032
+ #: ../../wp-google-maps-pro/legacy-core.php:1292
3033
+ #: ../../wp-google-maps-pro/legacy-core.php:4949
3034
+ #: ../../wp-google-maps-pro/legacy-core.php:6011
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:157
3042
+ #, fuzzy
3043
+ msgid "Show distance in:"
3044
+ msgstr "Покажи разстояния в"
3045
+
3046
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:161
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:161
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:167
3057
+ #, fuzzy
3058
+ msgid "Show bouncing icon:"
3059
+ msgstr "Покажи подскачаща икона"
3060
+
3061
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:177
3062
+ #, fuzzy
3063
+ msgid "Hide markers until search is done:"
3064
+ msgstr "Скрий всички маркери докато не се направи търсенето"
3065
+
3066
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:215
3067
+ #, fuzzy
3068
+ msgid "Default 'To' Address:"
3069
+ msgstr "по подразбиране 'до' адрес"
3070
+
3071
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:219
3072
+ #, fuzzy
3073
+ msgid "Enter Address"
3074
+ msgstr "Адрес"
3075
+
3076
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:244
3077
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:247
3078
+ #: ../../wp-google-maps-pro/legacy-core.php:2158
3079
+ #: ../../wp-google-maps-pro/legacy-core.php:4946
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:254
3085
+ #: ../../wp-google-maps-pro/legacy-core.php:2163
3086
+ msgid "Marker Listing Style"
3087
+ msgstr "Стилове на маркерите"
3088
+
3089
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:259
3090
+ #, fuzzy
3091
+ msgid "Basic Table"
3092
+ msgstr "Основна таблица"
3093
+
3094
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:260
3095
+ #, fuzzy
3096
+ msgid "Basic List"
3097
+ msgstr "Основен списък"
3098
+
3099
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:261
3100
+ #, fuzzy
3101
+ msgid "Advanced Table"
3102
+ msgstr "Допълнителна таблица"
3103
+
3104
+ #: ../../wp-google-maps-pro/includes/page.wizard.php:262
3105
+ #: ../../wp-google-maps-pro/legacy-core.php:956
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:288
3114
+ msgid "Blank Map"
3115
+ msgstr ""
3116
+
3117
+ #: ../../wp-google-maps-pro/includes/tables/class.pro-admin-marker-datatable.php:32
3118
+ #: ../legacy-core.php:4729
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:6779
3124
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17221
3125
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3126
+ #: ../../wp-google-maps-pro/legacy-core.php:1299
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:7026 ../js/v8/wp-google-maps.min.js:1
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:6821
3136
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17224
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:7068 ../js/v8/wp-google-maps.min.js:1
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:6789
3147
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17239
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:7036 ../js/v8/wp-google-maps.min.js:1
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:17244
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:17257
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:17262
3168
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3169
+ #, fuzzy
3170
+ #| msgid "Your Markers"
3171
+ 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:17273
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:17287
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:17292
3188
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3189
+ #, fuzzy
3190
+ #| msgid "Save Category"
3191
+ 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:6801
3196
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17310
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:7048 ../js/v8/wp-google-maps.min.js:1
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:6720
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:7065 ../js/v8/wp-google-maps.min.js:1
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 "
3229
+ "your customized map to your WordPress posts and/or pages quickly and easily "
3230
+ "with the supplied shortcode. No fuss."
3231
+ msgstr ""
3232
+
3233
+ #: ../../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6821
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:7068 ../js/v8/wp-google-maps.min.js:1
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:6832
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:7079 ../js/v8/wp-google-maps.min.js:1
3246
+ msgid "Your map will appear here on your websites front end"
3247
+ msgstr ""
3248
+
3249
+ #: ../../wp-google-maps-pro/legacy-core.php:35
3250
+ msgid ""
3251
+ "<strong>WP Google Maps Pro:</strong> User Generated Markers add-on 3.01 and "
3252
+ "below is not compatible with OpenLayers. Please either switch engine to "
3253
+ "Google under Maps &rarr; Settings, or update User Generated Markers to 3.02 "
3254
+ "or above"
3255
+ msgstr ""
3256
+
3257
+ #: ../../wp-google-maps-pro/legacy-core.php:58
3258
+ msgid ""
3259
+ "<strong>WP Google Maps Pro:</strong> Gold Add-on versions 4.11 and below are "
3260
+ "not compatible with OpenLayers. Please update to Gold 4.11 or above to use "
3261
+ "Gold features with the OpenLayers engine."
3262
+ msgstr ""
3263
+
3264
+ #: ../../wp-google-maps-pro/legacy-core.php:113
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:291 ../legacy-core.php:5514
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:743
3290
+ msgid "including Pro &amp; Gold add-ons"
3291
+ msgstr "включително Pro и Gold добавки"
3292
+
3293
+ #: ../../wp-google-maps-pro/legacy-core.php:745
3294
+ msgid "including Pro add-on"
3295
+ msgstr "включително Pro add-on"
3296
+
3297
+ #: ../../wp-google-maps-pro/legacy-core.php:751
3298
+ msgid ""
3299
+ "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
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:944
3306
+ msgid "No marker list"
3307
+ msgstr "Няма списък маркери"
3308
+
3309
+ #: ../../wp-google-maps-pro/legacy-core.php:947
3310
+ #: ../../wp-google-maps-pro/legacy-core.php:2178
3311
+ #: ../../wp-google-maps-pro/legacy-core.php:2212
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:950
3317
+ #: ../../wp-google-maps-pro/legacy-core.php:2182
3318
+ #: ../../wp-google-maps-pro/legacy-core.php:2218
3319
+ #: ../../wp-google-maps-pro/legacy-core.php:7332
3320
+ msgid "Basic list"
3321
+ msgstr "Основен списък"
3322
+
3323
+ #: ../../wp-google-maps-pro/legacy-core.php:953
3324
+ #: ../../wp-google-maps-pro/legacy-core.php:2186
3325
+ #: ../../wp-google-maps-pro/legacy-core.php:2224
3326
+ #: ../../wp-google-maps-pro/legacy-core.php:7334
3327
+ msgid "Advanced table"
3328
+ msgstr "Допълнителна таблица"
3329
+
3330
+ #: ../../wp-google-maps-pro/legacy-core.php:1052
3331
+ #: ../../wp-google-maps-pro/legacy-core.php:2043
3332
+ #: ../../wp-google-maps-pro/legacy-core.php:5858
3333
+ #: ../../wp-google-maps-pro/legacy-core.php:5894
3334
+ #: ../../wp-google-maps-pro/legacy-core.php:7335
3335
+ msgid "Default Infowindow"
3336
+ msgstr "Дифолт инфо прозорец"
3337
+
3338
+ #: ../../wp-google-maps-pro/legacy-core.php:1054
3339
+ #: ../../wp-google-maps-pro/legacy-core.php:2050
3340
+ #: ../../wp-google-maps-pro/legacy-core.php:5860
3341
+ #: ../../wp-google-maps-pro/legacy-core.php:7336
3342
+ msgid "Modern Infowindow"
3343
+ msgstr "Модерен инфо прозорец"
3344
+
3345
+ #: ../../wp-google-maps-pro/legacy-core.php:1056
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 "Modern Plus Infowindow"
3352
+ msgstr "Модерен инфо прозорец"
3353
+
3354
+ #: ../../wp-google-maps-pro/legacy-core.php:1058
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 "Circular Infowindow"
3361
+ msgstr "Дифолт инфо прозорец"
3362
+
3363
+ #: ../../wp-google-maps-pro/legacy-core.php:1060
3364
+ msgid "Currently using your selection chosen in the global settings"
3365
+ msgstr "В момента е избрана твоята селекция в глобалните настройки"
3366
+
3367
+ #: ../../wp-google-maps-pro/legacy-core.php:1117
3368
+ msgid "Download this as a CSV file"
3369
+ msgstr "Изтегли като CSV файл"
3370
+
3371
+ #: ../../wp-google-maps-pro/legacy-core.php:1117
3372
+ msgid "Download this data as a CSV file"
3373
+ msgstr "Изтегли тези данни като CSV файл"
3374
+
3375
+ #: ../../wp-google-maps-pro/legacy-core.php:1202
3376
+ msgid "Please update your basic version to use this function."
3377
+ msgstr ""
3378
+
3379
+ #: ../../wp-google-maps-pro/legacy-core.php:1204
3380
+ #, fuzzy
3381
+ msgid "Add a New Dataset"
3382
+ msgstr "Добави нова категория"
3383
+
3384
+ #: ../../wp-google-maps-pro/legacy-core.php:1280
3385
+ #, fuzzy
3386
+ msgid "New"
3387
+ msgstr "Добави нова"
3388
+
3389
+ #: ../../wp-google-maps-pro/legacy-core.php:1289
3390
+ #: ../html/settings-page.html.php:5 ../legacy-core.php:3433
3391
+ msgid "General Settings"
3392
+ msgstr "Основни настройки"
3393
+
3394
+ #: ../../wp-google-maps-pro/legacy-core.php:1290
3395
+ #: ../base/includes/welcome.php:52 ../legacy-core.php:3434
3396
+ msgid "Themes"
3397
+ msgstr "Теми"
3398
+
3399
+ #: ../../wp-google-maps-pro/legacy-core.php:1294 ../legacy-core.php:3438
3400
+ msgid "Marker Listing Options"
3401
+ msgstr "Опции списък маркери"
3402
+
3403
+ #: ../../wp-google-maps-pro/legacy-core.php:1331 ../legacy-core.php:3474
3404
+ msgid "Short code"
3405
+ msgstr "Шорткод"
3406
+
3407
+ #: ../../wp-google-maps-pro/legacy-core.php:1332 ../legacy-core.php:3475
3408
+ msgid "copy this into your post or page to display the map"
3409
+ msgstr "копирай това в твоя пост или страница за да покаже картата"
3410
+
3411
+ #: ../../wp-google-maps-pro/legacy-core.php:1335 ../legacy-core.php:3478
3412
+ msgid "Map Name"
3413
+ msgstr "Име на картата"
3414
+
3415
+ #: ../../wp-google-maps-pro/legacy-core.php:1339 ../legacy-core.php:3504
3416
+ msgid "Zoom Level"
3417
+ msgstr "Зум ниво 1"
3418
+
3419
+ #: ../../wp-google-maps-pro/legacy-core.php:1353 ../legacy-core.php:3489
3420
+ #, fuzzy, php-format
3421
+ msgid "Set to 100% for a responsive map"
3422
+ msgstr "Нагласи на 100 процента за респонсив карта"
3423
+
3424
+ #: ../../wp-google-maps-pro/legacy-core.php:1363 ../legacy-core.php:3499
3425
+ #, fuzzy, php-format
3426
+ msgid ""
3427
+ "We recommend that you leave your height in PX. Depending on your theme, "
3428
+ "using % for the height may break your map."
3429
+ msgstr ""
3430
+ "Препоръчваме да оставите височината в пискели. Според темата, използвайки "
3431
+ "проценти за височината може да счупи темата ви."
3432
+
3433
+ #: ../../wp-google-maps-pro/legacy-core.php:1381
3434
+ msgid "General options"
3435
+ msgstr "Общи настройки"
3436
+
3437
+ #: ../../wp-google-maps-pro/legacy-core.php:1384 ../legacy-core.php:3590
3438
+ msgid "Enable Store Locator"
3439
+ msgstr "Включи намирач на магазини"
3440
+
3441
+ #: ../../wp-google-maps-pro/legacy-core.php:1393
3442
+ #: ../../wp-google-maps-pro/legacy-core.php:1420 ../legacy-core.php:3600
3443
+ #: ../legacy-core.php:3627
3444
+ #, fuzzy
3445
+ #| msgid "Store Locator"
3446
+ msgid "Store Locator Style"
3447
+ msgstr "Намирач на магазини"
3448
+
3449
+ #: ../../wp-google-maps-pro/legacy-core.php:1402
3450
+ #: ../../wp-google-maps-pro/legacy-core.php:1481
3451
+ #: ../../wp-google-maps-pro/legacy-core.php:5687
3452
+ #: ../html/settings-page.html.php:103 ../includes/legacy/settings-page.php:255
3453
+ #: ../legacy-core.php:3609 ../legacy-core.php:3650
3454
+ msgid "Legacy"
3455
+ msgstr ""
3456
+
3457
+ #: ../../wp-google-maps-pro/legacy-core.php:1425 ../legacy-core.php:3632
3458
+ #, php-format
3459
+ msgid ""
3460
+ "Looking for styling settings? Try our new <a href='%s' target='_blank'>User "
3461
+ "Interface Style</a> setting."
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/legacy-core.php:1459
3481
+ msgid "Auto"
3482
+ msgstr ""
3483
+
3484
+ #: ../../wp-google-maps-pro/legacy-core.php:1463
3485
+ msgid "Intelligently detects the zoom level based on the location entered"
3486
+ msgstr ""
3487
+
3488
+ #: ../../wp-google-maps-pro/legacy-core.php:1472 ../legacy-core.php:3641
3489
+ #, fuzzy
3490
+ #| msgid "Radius"
3491
+ msgid "Radius Style"
3492
+ msgstr "Радиус"
3493
+
3494
+ #: ../../wp-google-maps-pro/legacy-core.php:1497 ../legacy-core.php:3694
3495
+ #, fuzzy
3496
+ #| msgid "Default 'To' address"
3497
+ msgid "Default radius"
3498
+ msgstr "по подразбиране 'до' адрес"
3499
+
3500
+ #: ../../wp-google-maps-pro/legacy-core.php:1521
3501
+ #, fuzzy
3502
+ #| msgid "Maximum Zoom Level"
3503
+ msgid "Maximum zoom"
3504
+ msgstr "Максимален зум нивоl"
3505
+
3506
+ #: ../../wp-google-maps-pro/legacy-core.php:1533 ../legacy-core.php:3666
3507
+ msgid "Restrict to country"
3508
+ msgstr "Ограничи до държава"
3509
+
3510
+ #: ../../wp-google-maps-pro/legacy-core.php:1542 ../legacy-core.php:3672
3511
+ #, fuzzy
3512
+ msgid "No country selected"
3513
+ msgstr "Позволи избор на категории"
3514
+
3515
+ #: ../../wp-google-maps-pro/legacy-core.php:1554
3516
+ msgid "Insert country TLD. For example, use DE for Germany."
3517
+ msgstr "Въведи TLD на държава. Пример, DE за Германия."
3518
+
3519
+ #: ../../wp-google-maps-pro/legacy-core.php:1554
3520
+ msgid "Leave blank for no restrictions."
3521
+ msgstr "Остави празно за без ограничения."
3522
+
3523
+ #: ../../wp-google-maps-pro/legacy-core.php:1560 ../legacy-core.php:3686
3524
+ msgid "Show distance in"
3525
+ msgstr "Покажи разстояния в"
3526
+
3527
+ #: ../../wp-google-maps-pro/legacy-core.php:1568
3528
+ #, fuzzy
3529
+ msgid "Store Locator Placement"
3530
+ msgstr "Документация намирач на магазини"
3531
+
3532
+ #: ../../wp-google-maps-pro/legacy-core.php:1571
3533
+ #: ../../wp-google-maps-pro/legacy-core.php:2258
3534
+ msgid "Below Map"
3535
+ msgstr ""
3536
+
3537
+ #: ../../wp-google-maps-pro/legacy-core.php:1571
3538
+ #: ../../wp-google-maps-pro/legacy-core.php:2258
3539
+ #, fuzzy
3540
+ msgid "Above Map"
3541
+ msgstr "Запиши карта"
3542
+
3543
+ #: ../../wp-google-maps-pro/legacy-core.php:1577
3544
+ msgid "Allow category selection"
3545
+ msgstr "Позволи избор на категории"
3546
+
3547
+ #: ../../wp-google-maps-pro/legacy-core.php:1585
3548
+ msgid "Allow users to use their location as the starting point"
3549
+ msgstr "Позволи потребителите да ползват тяхната позиция като стартова точка"
3550
+
3551
+ #: ../../wp-google-maps-pro/legacy-core.php:1593
3552
+ msgid "Show center point as an icon"
3553
+ msgstr ""
3554
+
3555
+ #: ../../wp-google-maps-pro/legacy-core.php:1601
3556
+ #, fuzzy
3557
+ msgid "Default Icon"
3558
+ msgstr "Дифолт инфо прозорец"
3559
+
3560
+ #: ../../wp-google-maps-pro/legacy-core.php:1602
3561
+ #: ../../wp-google-maps-pro/legacy-core.php:1761
3562
+ #, fuzzy
3563
+ msgid "Upload Icon"
3564
+ msgstr "качи снимка"
3565
+
3566
+ #: ../../wp-google-maps-pro/legacy-core.php:1605
3567
+ #, fuzzy
3568
+ #| msgid "Marker Listing"
3569
+ msgid "Marker animation"
3570
+ msgstr "Списък маркери"
3571
+
3572
+ #: ../../wp-google-maps-pro/legacy-core.php:1615
3573
+ msgid "Hide all markers until a search is done"
3574
+ msgstr "Скрий всички маркери докато не се направи търсенето"
3575
+
3576
+ #: ../../wp-google-maps-pro/legacy-core.php:1629
3577
+ msgid "Query String"
3578
+ msgstr "Куери стринг"
3579
+
3580
+ #: ../../wp-google-maps-pro/legacy-core.php:1634 ../legacy-core.php:3724
3581
+ #, fuzzy
3582
+ #| msgid "Default 'To' address"
3583
+ msgid "Default address"
3584
+ msgstr "по подразбиране 'до' адрес"
3585
+
3586
+ #: ../../wp-google-maps-pro/legacy-core.php:1640
3587
+ msgid "Enable title search"
3588
+ msgstr "Включи търсене по заглавие"
3589
+
3590
+ #: ../../wp-google-maps-pro/legacy-core.php:1649
3591
+ msgid "Title search String"
3592
+ msgstr "Търсене по заглавие стринг"
3593
+
3594
+ #: ../../wp-google-maps-pro/legacy-core.php:1654 ../legacy-core.php:3729
3595
+ msgid "Not found message"
3596
+ msgstr ""
3597
+
3598
+ #: ../../wp-google-maps-pro/legacy-core.php:1659
3599
+ msgid "Style options"
3600
+ msgstr "Опции стил"
3601
+
3602
+ #: ../../wp-google-maps-pro/legacy-core.php:1664
3603
+ msgid "Line color"
3604
+ msgstr "Цвят на линия"
3605
+
3606
+ #: ../../wp-google-maps-pro/legacy-core.php:1672
3607
+ msgid "Line opacity"
3608
+ msgstr "Линия непрозрачност"
3609
+
3610
+ #: ../../wp-google-maps-pro/legacy-core.php:1675
3611
+ #: ../../wp-google-maps-pro/legacy-core.php:1691
3612
+ msgid "(0 - 1.0) example: 0.5 for 50%"
3613
+ msgstr "(0 - 1.0) пример: 0.5 за 50%"
3614
+
3615
+ #: ../../wp-google-maps-pro/legacy-core.php:1680
3616
+ msgid "Fill color"
3617
+ msgstr "Запълни цвят"
3618
+
3619
+ #: ../../wp-google-maps-pro/legacy-core.php:1688
3620
+ msgid "Fill opacity"
3621
+ msgstr "Запълни непрозрачност"
3622
+
3623
+ #: ../../wp-google-maps-pro/legacy-core.php:1697 ../legacy-core.php:3744
3624
+ msgid "View"
3625
+ msgstr "Виж"
3626
+
3627
+ #: ../../wp-google-maps-pro/legacy-core.php:1697 ../legacy-core.php:3744
3628
+ msgid "Store Locator Documentation"
3629
+ msgstr "Документация намирач на магазини"
3630
+
3631
+ #: ../../wp-google-maps-pro/legacy-core.php:1708
3632
+ #, fuzzy
3633
+ #| msgid "Advanced Settings"
3634
+ msgid "Advanced Settings:"
3635
+ msgstr "Допълнителни настройки"
3636
+
3637
+ #: ../../wp-google-maps-pro/legacy-core.php:1711 ../legacy-core.php:3845
3638
+ msgid "Default Marker Image"
3639
+ msgstr "По подразбиране картинка на маркер"
3640
+
3641
+ #: ../../wp-google-maps-pro/legacy-core.php:1718 ../legacy-core.php:3520
3642
+ msgid "Map type"
3643
+ msgstr "Вид карта"
3644
+
3645
+ #: ../../wp-google-maps-pro/legacy-core.php:1721
3646
+ #: ../../wp-google-maps-pro/legacy-core.php:7705 ../legacy-core.php:3053
3647
+ #: ../legacy-core.php:3522
3648
+ msgid "Roadmap"
3649
+ msgstr "Пътна карта"
3650
+
3651
+ #: ../../wp-google-maps-pro/legacy-core.php:1722
3652
+ #: ../../wp-google-maps-pro/legacy-core.php:7706 ../legacy-core.php:3054
3653
+ #: ../legacy-core.php:3523
3654
+ msgid "Satellite"
3655
+ msgstr "Сателит"
3656
+
3657
+ #: ../../wp-google-maps-pro/legacy-core.php:1723
3658
+ #: ../../wp-google-maps-pro/legacy-core.php:7707 ../legacy-core.php:3055
3659
+ #: ../legacy-core.php:3524
3660
+ msgid "Hybrid"
3661
+ msgstr "Хибрид"
3662
+
3663
+ #: ../../wp-google-maps-pro/legacy-core.php:1724
3664
+ #: ../../wp-google-maps-pro/legacy-core.php:7708 ../legacy-core.php:3056
3665
+ #: ../legacy-core.php:3525
3666
+ msgid "Terrain"
3667
+ msgstr "Терен"
3668
+
3669
+ #: ../../wp-google-maps-pro/legacy-core.php:1732 ../legacy-core.php:3510
3670
+ msgid "Map Alignment"
3671
+ msgstr "Подравняване на карта"
3672
+
3673
+ #: ../../wp-google-maps-pro/legacy-core.php:1734 ../legacy-core.php:3512
3674
+ msgid "Left"
3675
+ msgstr "Ляво"
3676
+
3677
+ #: ../../wp-google-maps-pro/legacy-core.php:1735 ../legacy-core.php:3513
3678
+ #: ../legacy-core.php:5766
3679
+ msgid "Center"
3680
+ msgstr "Център"
3681
+
3682
+ #: ../../wp-google-maps-pro/legacy-core.php:1736 ../legacy-core.php:3514
3683
+ msgid "Right"
3684
+ msgstr "Вдясно"
3685
+
3686
+ #: ../../wp-google-maps-pro/legacy-core.php:1743 ../legacy-core.php:3850
3687
+ msgid "Show User's Location?"
3688
+ msgstr "Покажи позиция на потребител?"
3689
+
3690
+ #: ../../wp-google-maps-pro/legacy-core.php:1760
3691
+ msgid "Default User Location Icon"
3692
+ msgstr ""
3693
+
3694
+ #: ../../wp-google-maps-pro/legacy-core.php:1766
3695
+ msgid "Jump to nearest marker on initialization?"
3696
+ msgstr ""
3697
+
3698
+ #: ../../wp-google-maps-pro/legacy-core.php:1784
3699
+ msgid "Automatically pan to users location?"
3700
+ msgstr ""
3701
+
3702
+ #: ../../wp-google-maps-pro/legacy-core.php:1798
3703
+ msgid "Override the zoom level when the users location is detected: "
3704
+ msgstr ""
3705
+
3706
+ #: ../../wp-google-maps-pro/legacy-core.php:1807
3707
+ msgid "Override users location zoom level:"
3708
+ msgstr ""
3709
+
3710
+ #: ../../wp-google-maps-pro/legacy-core.php:1838
3711
+ #, fuzzy
3712
+ #| msgid "Show distance in"
3713
+ msgid "Show distance from location?"
3714
+ msgstr "Покажи разстояния в"
3715
+
3716
+ #: ../../wp-google-maps-pro/legacy-core.php:1857
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-pro/legacy-core.php:1866
3723
+ msgid "Click marker opens link"
3724
+ msgstr "Кликане на маркера отваря линк"
3725
+
3726
+ #: ../../wp-google-maps-pro/legacy-core.php:1874
3727
+ msgid "Fit map bounds to markers?"
3728
+ msgstr ""
3729
+
3730
+ #: ../../wp-google-maps-pro/legacy-core.php:1882
3731
+ msgid "Fit map bounds to markers after filtering?"
3732
+ msgstr ""
3733
+
3734
+ #: ../../wp-google-maps-pro/legacy-core.php:1890
3735
+ msgid "Hide point of interest"
3736
+ msgstr ""
3737
+
3738
+ #: ../../wp-google-maps-pro/legacy-core.php:1899
3739
+ #, fuzzy
3740
+ msgid "Maximum Zoom Out Level"
3741
+ msgstr "Максимален зум нивоl"
3742
+
3743
+ #: ../../wp-google-maps-pro/legacy-core.php:1928
3744
+ #, fuzzy
3745
+ msgid "Maximum Zoom In Level"
3746
+ msgstr "Максимален зум нивоl"
3747
+
3748
+ #: ../../wp-google-maps-pro/legacy-core.php:1963
3749
+ msgid "Enable Layers"
3750
+ msgstr "Включи слоеве"
3751
+
3752
+ #: ../../wp-google-maps-pro/legacy-core.php:1967
3753
+ msgid "Bicycle Layer"
3754
+ msgstr "Слой колоездач"
3755
+
3756
+ #: ../../wp-google-maps-pro/legacy-core.php:1972
3757
+ msgid "Traffic Layer"
3758
+ msgstr "Слой трафик"
3759
+
3760
+ #: ../../wp-google-maps-pro/legacy-core.php:1976
3761
+ msgid "Transit Layer"
3762
+ msgstr "Слой транзит"
3763
+
3764
+ #: ../../wp-google-maps-pro/legacy-core.php:1984
3765
+ #, fuzzy
3766
+ #| msgid "Enable Layers"
3767
+ msgid "Enable Polygon Labels"
3768
+ msgstr "Включи слоеве"
3769
+
3770
+ #: ../../wp-google-maps-pro/legacy-core.php:1996 ../legacy-core.php:3864
3771
+ msgid "KML/GeoRSS URL"
3772
+ msgstr ""
3773
+
3774
+ #: ../../wp-google-maps-pro/legacy-core.php:1998 ../legacy-core.php:3866
3775
+ msgid "The KML/GeoRSS layer will over-ride most of your map settings"
3776
+ msgstr "KML/GeoRSS слой ще препокрие повече от твоите настройки на карти"
3777
+
3778
+ #: ../../wp-google-maps-pro/legacy-core.php:1998
3779
+ msgid "For multiple sources, separate each one by a comma."
3780
+ msgstr "За няколко избора, разделете ги със запетая."
3781
+
3782
+ #: ../../wp-google-maps-pro/legacy-core.php:2002 ../legacy-core.php:3870
3783
+ msgid "Fusion table ID"
3784
+ msgstr "Fusion таблица ID"
3785
+
3786
+ #: ../../wp-google-maps-pro/legacy-core.php:2004
3787
+ msgid ""
3788
+ "Read data directly from your Fusion Table. For more information, see <a "
3789
+ "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2012
3799
+ #, fuzzy
3800
+ #| msgid "General options"
3801
+ msgid "Integration"
3802
+ msgstr "Общи настройки"
3803
+
3804
+ #: ../../wp-google-maps-pro/legacy-core.php:2023
3805
+ #, fuzzy
3806
+ #| msgid "Save Marker Location"
3807
+ msgid "Enable Marker Ratings"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2070
3816
+ #, fuzzy
3817
+ msgid "Inherit Global Setting"
3818
+ msgstr "Основни настройки"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2120
3826
+ #, fuzzy
3827
+ msgid "Infowindow Colors"
3828
+ msgstr "Стил на инфопрозорец"
3829
+
3830
+ #: ../../wp-google-maps-pro/legacy-core.php:2124
3831
+ #, fuzzy
3832
+ msgid "Primary Color"
3833
+ msgstr "Цвят на линк"
3834
+
3835
+ #: ../../wp-google-maps-pro/legacy-core.php:2132
3836
+ #, fuzzy
3837
+ msgid "Accent Color"
3838
+ msgstr "Цвят на линк"
3839
+
3840
+ #: ../../wp-google-maps-pro/legacy-core.php:2140
3841
+ #, fuzzy
3842
+ msgid "Text Color"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2255
3852
+ #, fuzzy
3853
+ msgid "Marker Listing Placement"
3854
+ msgstr "Стилове на маркерите"
3855
+
3856
+ #: ../../wp-google-maps-pro/legacy-core.php:2264 ../legacy-core.php:3906
3857
+ msgid "Order markers by"
3858
+ msgstr "Подреди маркерите по"
3859
+
3860
+ #: ../../wp-google-maps-pro/legacy-core.php:2272
3861
+ #, fuzzy
3862
+ #| msgid "Category Marker"
3863
+ msgid "Category Priority"
3864
+ msgstr "Категория маркер"
3865
+
3866
+ #: ../../wp-google-maps-pro/legacy-core.php:2273
3867
+ msgid "Distance"
3868
+ msgstr ""
3869
+
3870
+ #: ../../wp-google-maps-pro/legacy-core.php:2276
3871
+ #, fuzzy
3872
+ msgid "Rating"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2296 ../legacy-core.php:3932
3888
+ msgid "Move your marker list inside the map area"
3889
+ msgstr "Премести твоя списък маркери вътре в картата"
3890
+
3891
+ #: ../../wp-google-maps-pro/legacy-core.php:2296
3892
+ msgid "(still in beta)"
3893
+ msgstr "(още се тества)"
3894
+
3895
+ #: ../../wp-google-maps-pro/legacy-core.php:2317 ../legacy-core.php:3934
3896
+ msgid "Placement: "
3897
+ msgstr "Разположение:"
3898
+
3899
+ #: ../../wp-google-maps-pro/legacy-core.php:2319 ../legacy-core.php:3936
3900
+ msgid "Top Center"
3901
+ msgstr "Горе център"
3902
+
3903
+ #: ../../wp-google-maps-pro/legacy-core.php:2320 ../legacy-core.php:3937
3904
+ msgid "Top Left"
3905
+ msgstr "Горе вляво"
3906
+
3907
+ #: ../../wp-google-maps-pro/legacy-core.php:2321 ../legacy-core.php:3938
3908
+ msgid "Top Right"
3909
+ msgstr "Горе вдясно"
3910
+
3911
+ #: ../../wp-google-maps-pro/legacy-core.php:2322 ../legacy-core.php:3939
3912
+ msgid "Left Top "
3913
+ msgstr "Ляво горе"
3914
+
3915
+ #: ../../wp-google-maps-pro/legacy-core.php:2323 ../legacy-core.php:3940
3916
+ msgid "Right Top"
3917
+ msgstr "Вдясно горе"
3918
+
3919
+ #: ../../wp-google-maps-pro/legacy-core.php:2324 ../legacy-core.php:3941
3920
+ msgid "Left Center"
3921
+ msgstr "Ляво център"
3922
+
3923
+ #: ../../wp-google-maps-pro/legacy-core.php:2325 ../legacy-core.php:3942
3924
+ msgid "Right Center"
3925
+ msgstr "Дясно център"
3926
+
3927
+ #: ../../wp-google-maps-pro/legacy-core.php:2326 ../legacy-core.php:3943
3928
+ msgid "Left Bottom"
3929
+ msgstr "Ляво долу"
3930
+
3931
+ #: ../../wp-google-maps-pro/legacy-core.php:2327 ../legacy-core.php:3944
3932
+ msgid "Right Bottom"
3933
+ msgstr "Дясно долу"
3934
+
3935
+ #: ../../wp-google-maps-pro/legacy-core.php:2328 ../legacy-core.php:3945
3936
+ msgid "Bottom Center"
3937
+ msgstr "Долу център"
3938
+
3939
+ #: ../../wp-google-maps-pro/legacy-core.php:2329 ../legacy-core.php:3946
3940
+ msgid "Bottom Left"
3941
+ msgstr "Долу ляво"
3942
+
3943
+ #: ../../wp-google-maps-pro/legacy-core.php:2330 ../legacy-core.php:3947
3944
+ msgid "Bottom Right"
3945
+ msgstr "Дясно долу"
3946
+
3947
+ #: ../../wp-google-maps-pro/legacy-core.php:2332
3948
+ msgid "Container Width: "
3949
+ msgstr "Широчина на контейнер:"
3950
+
3951
+ #: ../../wp-google-maps-pro/legacy-core.php:2333
3952
+ msgid "Container Height: "
3953
+ msgstr "Височина контейнер:"
3954
+
3955
+ #: ../../wp-google-maps-pro/legacy-core.php:2343 ../legacy-core.php:3898
3956
+ msgid "Filter by Category"
3957
+ msgstr "Филтър по категория"
3958
+
3959
+ #: ../../wp-google-maps-pro/legacy-core.php:2346 ../legacy-core.php:3901
3960
+ msgid "Allow users to filter by category?"
3961
+ msgstr "Позволи на потребителите да филтрират по категория?"
3962
+
3963
+ #: ../../wp-google-maps-pro/legacy-core.php:2375 ../legacy-core.php:4129
3964
+ msgid "Save Map"
3965
+ msgstr "Запиши карта"
3966
+
3967
+ #: ../../wp-google-maps-pro/legacy-core.php:2378 ../legacy-core.php:4134
3968
+ msgid ""
3969
+ "Tip: Use your mouse to change the layout of your map. When you have "
3970
+ "positioned the map to your desired location, press \"Save Map\" to keep your "
3971
+ "settings."
3972
+ msgstr ""
3973
+ "Съвет: Ползвай мишката си за да смениш вида на картата. Когато си \"\n"
3974
+ "\"позициониран на желаното място, натисни \"запиши карта\" за да ти се "
3975
+ "запазят \"\n"
3976
+ "\"настройките.\""
3977
+
3978
+ #: ../../wp-google-maps-pro/legacy-core.php:2391 ../legacy-core.php:4148
3979
+ #: ../legacy-core.php:4311
3980
+ msgid "Heatmaps"
3981
+ msgstr ""
3982
+
3983
+ #: ../../wp-google-maps-pro/legacy-core.php:2400 ../legacy-core.php:4285
3984
+ msgid "Add a New Polygon"
3985
+ msgstr "Добави нов полигон"
3986
+
3987
+ #: ../../wp-google-maps-pro/legacy-core.php:2405 ../legacy-core.php:4290
3988
+ msgid "Add a New Polyline"
3989
+ msgstr "Добави нов полином"
3990
+
3991
+ #: ../../wp-google-maps-pro/legacy-core.php:2409
3992
+ #, fuzzy
3993
+ msgid "Add a dataset"
3994
+ msgstr "Добави маркер"
3995
+
3996
+ #: ../../wp-google-maps-pro/legacy-core.php:2415
3997
+ #: ../../wp-google-maps-pro/legacy-core.php:2417
3998
+ #: ../includes/compat/backwards_compat_v6.php:65
3999
+ #: ../includes/compat/backwards_compat_v6.php:67 ../legacy-core.php:4296
4000
+ #: ../legacy-core.php:4298
4001
+ #, fuzzy
4002
+ #| msgid "Add a marker"
4003
+ msgid "Add a Circle"
4004
+ msgstr "Добави маркер"
4005
+
4006
+ #: ../../wp-google-maps-pro/legacy-core.php:2423
4007
+ #: ../../wp-google-maps-pro/legacy-core.php:2425
4008
+ #: ../includes/compat/backwards_compat_v6.php:73
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
+ #: ../../wp-google-maps-pro/legacy-core.php:2447 ../legacy-core.php:4342
4016
+ msgid "Your Markers"
4017
+ msgstr "Твоите маркери"
4018
+
4019
+ #: ../../wp-google-maps-pro/legacy-core.php:2457 ../legacy-core.php:4378
4020
+ #, fuzzy
4021
+ #| msgid ""
4022
+ #| "WP Google Maps encourages you to make use of the amazing icons created by "
4023
+ #| "Nicolas Mollet's Maps Icons Collection"
4024
+ msgid "WP Google Maps encourages you to make use of the amazing icons at "
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
+ #: ../../wp-google-maps-pro/legacy-core.php:3186
4038
+ msgid "Filter by"
4039
+ msgstr "Филтър по"
4040
+
4041
+ #: ../../wp-google-maps-pro/legacy-core.php:3397
4042
+ msgid "Get directions to"
4043
+ msgstr "Вземи ъпъватния до"
4044
+
4045
+ #: ../../wp-google-maps-pro/legacy-core.php:3467
4046
+ #: ../../wp-google-maps-pro/legacy-core.php:3495
4047
+ #: ../includes/class.strings.php:54
4048
+ msgid "Fetching directions..."
4049
+ msgstr "Изтегляне на упътвания..."
4050
+
4051
+ #: ../../wp-google-maps-pro/legacy-core.php:3588
4052
+ msgid "Thank you. Your marker is awaiting approval."
4053
+ msgstr "Благодаря. Твоят маркер чака одобрение."
4054
+
4055
+ #: ../../wp-google-maps-pro/legacy-core.php:3916
4056
+ msgid "No results found"
4057
+ msgstr ""
4058
+
4059
+ #: ../../wp-google-maps-pro/legacy-core.php:3917
4060
+ msgid "Zero results"
4061
+ msgstr ""
4062
+
4063
+ #: ../../wp-google-maps-pro/legacy-core.php:3918
4064
+ msgid "Max waypoints exceeded"
4065
+ msgstr ""
4066
+
4067
+ #: ../../wp-google-maps-pro/legacy-core.php:3919
4068
+ msgid "Max route length exceeded"
4069
+ msgstr ""
4070
+
4071
+ #: ../../wp-google-maps-pro/legacy-core.php:3920
4072
+ msgid "Invalid request"
4073
+ msgstr ""
4074
+
4075
+ #: ../../wp-google-maps-pro/legacy-core.php:3921
4076
+ msgid "Over query limit"
4077
+ msgstr ""
4078
+
4079
+ #: ../../wp-google-maps-pro/legacy-core.php:3922
4080
+ msgid "Request denied"
4081
+ msgstr ""
4082
+
4083
+ #: ../../wp-google-maps-pro/legacy-core.php:3923
4084
+ #, fuzzy
4085
+ #| msgid "An unknown error occurred"
4086
+ msgid "Unknown error"
4087
+ msgstr "Възникна неочаквана грешка"
4088
+
4089
+ #: ../../wp-google-maps-pro/legacy-core.php:3927
4090
+ msgid "Zoom"
4091
+ msgstr ""
4092
+
4093
+ #: ../../wp-google-maps-pro/legacy-core.php:4282
4094
+ msgid "Get directions"
4095
+ msgstr "Вземи упътвания"
4096
+
4097
+ #: ../../wp-google-maps-pro/legacy-core.php:4284
4098
+ #: ../includes/class.strings.php:36 ../legacy-core.php:885
4099
+ #: ../legacy-core.php:1009 ../legacy-core.php:1864
4100
+ msgid "km away"
4101
+ msgstr "km разстояние"
4102
+
4103
+ #: ../../wp-google-maps-pro/legacy-core.php:4285
4104
+ #: ../includes/class.strings.php:37 ../legacy-core.php:886
4105
+ #: ../legacy-core.php:1010 ../legacy-core.php:1865
4106
+ msgid "miles away"
4107
+ msgstr "мили разстояние"
4108
+
4109
+ #: ../../wp-google-maps-pro/legacy-core.php:4289
4110
+ msgid "Getting your current location address..."
4111
+ msgstr "Взимане на твоето местоположение ..."
4112
+
4113
+ #: ../../wp-google-maps-pro/legacy-core.php:4295
4114
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:785
4115
+ msgid "Please prove that you are human by checking the checkbox above"
4116
+ msgstr "Моля, докажи че си човек кликайки горния чекбокс."
4117
+
4118
+ #: ../../wp-google-maps-pro/legacy-core.php:4715
4119
+ msgid "Download ALL marker data to a CSV file"
4120
+ msgstr "Изтегли всички данни за маркери в CSV файл."
4121
+
4122
+ #: ../../wp-google-maps-pro/legacy-core.php:4716
4123
+ #, fuzzy
4124
+ msgid "Download ALL map data to a CSV file"
4125
+ msgstr "Изтегли всички данни за маркери в CSV файл."
4126
+
4127
+ #: ../../wp-google-maps-pro/legacy-core.php:4717
4128
+ #, fuzzy
4129
+ msgid "Download ALL polygon data to a CSV file"
4130
+ msgstr "Изтегли всички данни за маркери в CSV файл."
4131
+
4132
+ #: ../../wp-google-maps-pro/legacy-core.php:4718
4133
+ #, fuzzy
4134
+ msgid "Download ALL polyline data to a CSV file"
4135
+ msgstr "Изтегли всички данни за маркери в CSV файл."
4136
+
4137
+ #: ../../wp-google-maps-pro/legacy-core.php:4721
4138
+ msgid "Advanced Options"
4139
+ msgstr "Специални опции"
4140
+
4141
+ #: ../../wp-google-maps-pro/legacy-core.php:4744
4142
+ #, fuzzy
4143
+ msgid "Marker Data"
4144
+ msgstr "Marker данни локация"
4145
+
4146
+ #: ../../wp-google-maps-pro/legacy-core.php:4747
4147
+ #: ../../wp-google-maps-pro/legacy-core.php:4836
4148
+ msgid "Utilities"
4149
+ msgstr ""
4150
+
4151
+ #: ../../wp-google-maps-pro/legacy-core.php:4762
4152
+ #, fuzzy
4153
+ msgid "Upload Map CSV File"
4154
+ msgstr "Качи CSV файл"
4155
+
4156
+ #: ../../wp-google-maps-pro/legacy-core.php:4770
4157
+ #: ../../wp-google-maps-pro/legacy-core.php:4785
4158
+ #: ../../wp-google-maps-pro/legacy-core.php:4806
4159
+ #: ../../wp-google-maps-pro/legacy-core.php:4825
4160
+ msgid "Replace existing data with data in file"
4161
+ msgstr "Замени сегашните данни с данните от файла"
4162
+
4163
+ #: ../../wp-google-maps-pro/legacy-core.php:4773
4164
+ #: ../../wp-google-maps-pro/legacy-core.php:4790
4165
+ #: ../../wp-google-maps-pro/legacy-core.php:4809
4166
+ #: ../../wp-google-maps-pro/legacy-core.php:4828
4167
+ msgid "Upload File"
4168
+ msgstr "качи файл"
4169
+
4170
+ #: ../../wp-google-maps-pro/legacy-core.php:4781
4171
+ #, fuzzy
4172
+ msgid "Upload Marker CSV File"
4173
+ msgstr "Качи CSV файл"
4174
+
4175
+ #: ../../wp-google-maps-pro/legacy-core.php:4786
4176
+ msgid ""
4177
+ "Automatically geocode addresses to GPS co-ordinates if none are supplied"
4178
+ msgstr "Автоматично геокодиране на адресите до GPS координати ако не са дадени"
4179
+
4180
+ #: ../../wp-google-maps-pro/legacy-core.php:4788
4181
+ msgid "Google API Key (Required)"
4182
+ msgstr "Google API Key (задължително)"
4183
+
4184
+ #: ../../wp-google-maps-pro/legacy-core.php:4789
4185
+ #, fuzzy
4186
+ msgid ""
4187
+ "You will need a Google Maps Geocode API key for this to work. See <a "
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
+ #: ../../wp-google-maps-pro/legacy-core.php:4798
4199
+ #, fuzzy
4200
+ msgid "Upload Polygon CSV File"
4201
+ msgstr "Качи CSV файл"
4202
+
4203
+ #: ../../wp-google-maps-pro/legacy-core.php:4817
4204
+ #, fuzzy
4205
+ msgid "Upload Polyline CSV File"
4206
+ msgstr "Качи CSV файл"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:4843
4215
+ msgid "Remove duplicate markers"
4216
+ msgstr ""
4217
+
4218
+ #: ../../wp-google-maps-pro/legacy-core.php:4850
4219
+ msgid "Please update the core plugin to 8.0.4 or above to use utilities."
4220
+ msgstr ""
4221
+
4222
+ #: ../../wp-google-maps-pro/legacy-core.php:4857
4223
+ msgid "Need help? Read the documentation."
4224
+ msgstr "Трябва ти помощ? Прочети документацията."
4225
+
4226
+ #: ../../wp-google-maps-pro/legacy-core.php:4867 ../legacy-core.php:5261
4227
+ msgid "WP Google Maps Support"
4228
+ msgstr "WP Google Maps Support"
4229
+
4230
+ #: ../../wp-google-maps-pro/legacy-core.php:4871
4231
+ #: ../base/includes/credits.php:115 ../includes/class.strings.php:27
4232
+ #: ../legacy-core.php:5265
4233
+ msgid "Documentation"
4234
+ msgstr "Документация"
4235
+
4236
+ #: ../../wp-google-maps-pro/legacy-core.php:4872 ../legacy-core.php:5266
4237
+ msgid ""
4238
+ "Getting started? Read through some of these articles to help you along your "
4239
+ "way."
4240
+ msgstr "Започваш ли? Поразгледай някои статии за начално запознаване."
4241
+
4242
+ #: ../../wp-google-maps-pro/legacy-core.php:4873 ../legacy-core.php:5267
4243
+ msgid "Documentation:"
4244
+ msgstr "Документация:"
4245
+
4246
+ #: ../../wp-google-maps-pro/legacy-core.php:4875 ../legacy-core.php:5269
4247
+ msgid "Creating your first map"
4248
+ msgstr "Създаване на твоята първа карта"
4249
+
4250
+ #: ../../wp-google-maps-pro/legacy-core.php:4876 ../legacy-core.php:5270
4251
+ msgid "Using your map as a Widget"
4252
+ msgstr "Ползване на картата ти като уиджет"
4253
+
4254
+ #: ../../wp-google-maps-pro/legacy-core.php:4877 ../legacy-core.php:5271
4255
+ msgid "Changing the Google Maps language"
4256
+ msgstr "Смяна на Google Maps езика"
4257
+
4258
+ #: ../../wp-google-maps-pro/legacy-core.php:4878 ../legacy-core.php:5272
4259
+ msgid "WP Google Maps Documentation"
4260
+ msgstr "WP Google Maps документацията"
4261
+
4262
+ #: ../../wp-google-maps-pro/legacy-core.php:4878 ../legacy-core.php:5272
4263
+ msgid "View all documentation."
4264
+ msgstr "Виж всички документи."
4265
+
4266
+ #: ../../wp-google-maps-pro/legacy-core.php:4884 ../legacy-core.php:5278
4267
+ msgid "Troubleshooting"
4268
+ msgstr "Отстраняване на проблеми"
4269
+
4270
+ #: ../../wp-google-maps-pro/legacy-core.php:4885 ../legacy-core.php:5279
4271
+ msgid ""
4272
+ "WP Google Maps has a diverse and wide range of features which may, from time "
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
+ #: ../../wp-google-maps-pro/legacy-core.php:4886 ../legacy-core.php:5280
4281
+ msgid "Common issues:"
4282
+ msgstr "Чести проблеми:"
4283
+
4284
+ #: ../../wp-google-maps-pro/legacy-core.php:4888 ../legacy-core.php:5282
4285
+ msgid "My map is not showing on my website"
4286
+ msgstr "Картата ми не се показва на сайта ми"
4287
+
4288
+ #: ../../wp-google-maps-pro/legacy-core.php:4889 ../legacy-core.php:5283
4289
+ msgid "My markers are not showing on my map in the front-end"
4290
+ msgstr "Маркерите ми не се показват на картата пред потребителите"
4291
+
4292
+ #: ../../wp-google-maps-pro/legacy-core.php:4890 ../legacy-core.php:5284
4293
+ msgid "I'm getting jQuery errors showing on my website"
4294
+ msgstr "Получавам jQuery грешки, които се показват на сайта ми"
4295
+
4296
+ #: ../../wp-google-maps-pro/legacy-core.php:4896 ../legacy-core.php:2685
4297
+ #: ../legacy-core.php:5290
4298
+ msgid "Support"
4299
+ msgstr "Съпорт"
4300
+
4301
+ #: ../../wp-google-maps-pro/legacy-core.php:4897 ../legacy-core.php:5291
4302
+ msgid "Still need help? Use one of these links below."
4303
+ msgstr "Все още ти трябва помощ? Ползвай някой от линковете долу."
4304
+
4305
+ #: ../../wp-google-maps-pro/legacy-core.php:4899 ../legacy-core.php:5293
4306
+ msgid "Support forum"
4307
+ msgstr "Форум за съпорт"
4308
+
4309
+ #: ../../wp-google-maps-pro/legacy-core.php:4900 ../legacy-core.php:5294
4310
+ msgid "Contact us"
4311
+ msgstr "Свържи се с нас"
4312
+
4313
+ #: ../../wp-google-maps-pro/legacy-core.php:4914
4314
+ #: ../includes/legacy/settings-page.php:9
4315
+ msgid "WP Google Map Settings"
4316
+ msgstr "WP Google Map настройки"
4317
+
4318
+ #: ../../wp-google-maps-pro/legacy-core.php:4947
4319
+ #: ../html/theme-panel.html.php:394 ../includes/legacy/settings-page.php:157
4320
+ #: ../legacy-core.php:2668
4321
+ msgid "Advanced"
4322
+ msgstr "Напреднал"
4323
+
4324
+ #: ../../wp-google-maps-pro/legacy-core.php:4948
4325
+ msgid "Visitor Generated Markers"
4326
+ msgstr "Посетител генерирал маркери"
4327
+
4328
+ #: ../../wp-google-maps-pro/legacy-core.php:4979
4329
+ #: ../includes/legacy/settings-page.php:592
4330
+ msgid "Save Settings"
4331
+ msgstr "Запиши настройките"
4332
+
4333
+ #: ../../wp-google-maps-pro/legacy-core.php:5093
4334
+ msgid "Visitor Generated Markers Settings"
4335
+ msgstr "Посетителски настройки за генерирани маркери"
4336
+
4337
+ #: ../../wp-google-maps-pro/legacy-core.php:5094
4338
+ msgid "Purchase the Visitor Generated Markers Add-on"
4339
+ msgstr "Поръчки на посетителски добавки за маркери"
4340
+
4341
+ #: ../../wp-google-maps-pro/legacy-core.php:5094
4342
+ msgid ""
4343
+ "to enable this feature. <br /><br />If you have already purchased it please "
4344
+ "ensure that you have uploaded activated the plugin."
4345
+ msgstr ""
4346
+ "за включване на тази екстра. <br /><br />Ако вече сте поръчали, моля убедете "
4347
+ "се че сте ъплоуднали и активирали този плъгин"
4348
+
4349
+ #: ../../wp-google-maps-pro/legacy-core.php:5175
4350
+ #: ../includes/legacy/settings-page.php:407
4351
+ msgid "Marker Listing Settings"
4352
+ msgstr "настройки по маркерите списък"
4353
+
4354
+ #: ../../wp-google-maps-pro/legacy-core.php:5176
4355
+ #: ../includes/legacy/settings-page.php:408
4356
+ msgid ""
4357
+ "Changing these settings will alter the way the marker list appears on your "
4358
+ "website."
4359
+ msgstr ""
4360
+ "Променяйки тези настройки ще се отразят на това как излизат в твоя сайт."
4361
+
4362
+ #: ../../wp-google-maps-pro/legacy-core.php:5179
4363
+ #: ../includes/legacy/settings-page.php:414
4364
+ msgid "Advanced Marker Listing"
4365
+ msgstr "Напреднали маркерни списъци"
4366
+
4367
+ #: ../../wp-google-maps-pro/legacy-core.php:5179
4368
+ msgid "Basic Marker Listings"
4369
+ msgstr "Основни маркерни списъци"
4370
+
4371
+ #: ../../wp-google-maps-pro/legacy-core.php:5182
4372
+ #: ../includes/legacy/settings-page.php:417
4373
+ msgid "Column settings"
4374
+ msgstr "Настройки колона"
4375
+
4376
+ #: ../../wp-google-maps-pro/legacy-core.php:5184
4377
+ #: ../includes/legacy/settings-page.php:419
4378
+ msgid "Hide the Icon column"
4379
+ msgstr "Скрий иконата за колоната"
4380
+
4381
+ #: ../../wp-google-maps-pro/legacy-core.php:5185
4382
+ #, fuzzy
4383
+ #| msgid "Hide the Icon column"
4384
+ msgid "Hide the Link column"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5187
4393
+ #: ../includes/legacy/settings-page.php:421
4394
+ msgid "Hide the Address column"
4395
+ msgstr "Скрий колона адрес"
4396
+
4397
+ #: ../../wp-google-maps-pro/legacy-core.php:5188
4398
+ #: ../includes/legacy/settings-page.php:422
4399
+ msgid "Hide the Category column"
4400
+ msgstr "Скрий колона категория"
4401
+
4402
+ #: ../../wp-google-maps-pro/legacy-core.php:5189
4403
+ #: ../includes/legacy/settings-page.php:423
4404
+ msgid "Hide the Description column"
4405
+ msgstr "Скрий колона описание"
4406
+
4407
+ #: ../../wp-google-maps-pro/legacy-core.php:5190
4408
+ msgid "Do not Enqueue Datatables"
4409
+ msgstr ""
4410
+
4411
+ #: ../../wp-google-maps-pro/legacy-core.php:5194
4412
+ msgid "Show X items by default"
4413
+ msgstr "Покажи X неща по дифолт"
4414
+
4415
+ #: ../../wp-google-maps-pro/legacy-core.php:5209
4416
+ #: ../includes/legacy/settings-page.php:429
4417
+ msgid "Carousel Marker Listing"
4418
+ msgstr "Въртележка маркер списъци"
4419
+
4420
+ #: ../../wp-google-maps-pro/legacy-core.php:5212
4421
+ #: ../includes/legacy/settings-page.php:432
4422
+ msgid "Theme selection"
4423
+ msgstr "Избор на тема"
4424
+
4425
+ #: ../../wp-google-maps-pro/legacy-core.php:5215
4426
+ #: ../includes/legacy/settings-page.php:435
4427
+ msgid "Sky"
4428
+ msgstr "Небе"
4429
+
4430
+ #: ../../wp-google-maps-pro/legacy-core.php:5216
4431
+ #: ../includes/legacy/settings-page.php:436
4432
+ msgid "Sun"
4433
+ msgstr "Слънце"
4434
+
4435
+ #: ../../wp-google-maps-pro/legacy-core.php:5217
4436
+ #: ../includes/legacy/settings-page.php:437
4437
+ msgid "Earth"
4438
+ msgstr "Земя"
4439
+
4440
+ #: ../../wp-google-maps-pro/legacy-core.php:5218
4441
+ #: ../includes/legacy/settings-page.php:438
4442
+ msgid "Monotone"
4443
+ msgstr "Монотон"
4444
+
4445
+ #: ../../wp-google-maps-pro/legacy-core.php:5219
4446
+ #: ../includes/legacy/settings-page.php:439
4447
+ msgid "PinkPurple"
4448
+ msgstr "Розововиолетова"
4449
+
4450
+ #: ../../wp-google-maps-pro/legacy-core.php:5220
4451
+ #: ../includes/legacy/settings-page.php:440
4452
+ msgid "White"
4453
+ msgstr "Бяла"
4454
+
4455
+ #: ../../wp-google-maps-pro/legacy-core.php:5221
4456
+ #: ../includes/legacy/settings-page.php:441
4457
+ msgid "Black"
4458
+ msgstr "Черна"
4459
+
4460
+ #: ../../wp-google-maps-pro/legacy-core.php:5226
4461
+ #: ../includes/legacy/settings-page.php:446
4462
+ msgid "Carousel settings"
4463
+ msgstr "Настройка въртележка"
4464
+
4465
+ #: ../../wp-google-maps-pro/legacy-core.php:5228
4466
+ #: ../includes/legacy/settings-page.php:448
4467
+ msgid "Hide the Image"
4468
+ msgstr "Скрий снимка"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5231
4481
+ #: ../includes/legacy/settings-page.php:451
4482
+ msgid "Hide the Address"
4483
+ msgstr "Скрий адреса"
4484
+
4485
+ #: ../../wp-google-maps-pro/legacy-core.php:5232
4486
+ #: ../includes/legacy/settings-page.php:452
4487
+ msgid "Hide the Description"
4488
+ msgstr "Скрий описанието"
4489
+
4490
+ #: ../../wp-google-maps-pro/legacy-core.php:5233
4491
+ #: ../includes/legacy/settings-page.php:453
4492
+ msgid "Hide the Marker Link"
4493
+ msgstr "Скрий линка на маркера"
4494
+
4495
+ #: ../../wp-google-maps-pro/legacy-core.php:5234
4496
+ #: ../includes/legacy/settings-page.php:454
4497
+ msgid "Hide the Directions Link"
4498
+ msgstr "Скрий линка упътвания"
4499
+
4500
+ #: ../../wp-google-maps-pro/legacy-core.php:5236
4501
+ #: ../includes/legacy/settings-page.php:455
4502
+ msgid "Enable lazyload of images"
4503
+ msgstr "Включи lazyload на снимки"
4504
+
4505
+ #: ../../wp-google-maps-pro/legacy-core.php:5237
4506
+ #: ../includes/legacy/settings-page.php:456
4507
+ msgid "Enable autoheight"
4508
+ msgstr "Включи автовисочина"
4509
+
4510
+ #: ../../wp-google-maps-pro/legacy-core.php:5238
4511
+ #: ../includes/legacy/settings-page.php:457
4512
+ msgid "Enable pagination"
4513
+ msgstr "Включи на страници"
4514
+
4515
+ #: ../../wp-google-maps-pro/legacy-core.php:5239
4516
+ #: ../includes/legacy/settings-page.php:458
4517
+ msgid "Enable navigation"
4518
+ msgstr "Включи навигация"
4519
+
4520
+ #: ../../wp-google-maps-pro/legacy-core.php:5240
4521
+ #: ../includes/legacy/settings-page.php:459
4522
+ msgid "Items"
4523
+ msgstr "Неща"
4524
+
4525
+ #: ../../wp-google-maps-pro/legacy-core.php:5241
4526
+ msgid "Items (Tablet)"
4527
+ msgstr ""
4528
+
4529
+ #: ../../wp-google-maps-pro/legacy-core.php:5242
4530
+ msgid "Items (Mobile)"
4531
+ msgstr ""
4532
+
4533
+ #: ../../wp-google-maps-pro/legacy-core.php:5243
4534
+ #: ../includes/legacy/settings-page.php:460
4535
+ msgid "Autoplay after x milliseconds (1000 = 1 second)"
4536
+ msgstr "Автоплей след x милисекунди (1000 = 1 секунда)"
4537
+
4538
+ #: ../../wp-google-maps-pro/legacy-core.php:5259
4539
+ #: ../../wp-google-maps-pro/legacy-core.php:5260
4540
+ #: ../html/settings-page.html.php:454 ../html/settings-page.html.php:474
4541
+ #: ../includes/legacy/settings-page.php:535
4542
+ #: ../includes/legacy/settings-page.php:545
4543
+ msgid "You can use the following"
4544
+ msgstr "Може да ползваш следните"
4545
+
4546
+ #: ../../wp-google-maps-pro/legacy-core.php:5288
4547
+ #: ../includes/legacy/settings-page.php:119 ../legacy-core.php:5246
4548
+ msgid "This folder does not exist. Please create it."
4549
+ msgstr "Тази директория не същестува. Моля, създайте я."
4550
+
4551
+ #: ../../wp-google-maps-pro/legacy-core.php:5294
4552
+ #: ../includes/legacy/settings-page.php:122
4553
+ msgid "File Permissions:"
4554
+ msgstr "Файл пермишъни:"
4555
+
4556
+ #: ../../wp-google-maps-pro/legacy-core.php:5294
4557
+ #: ../includes/legacy/settings-page.php:122
4558
+ msgid ""
4559
+ " - The plugin does not have write access to this folder. Please CHMOD this "
4560
+ "folder to 755 or 777, or change the location"
4561
+ msgstr ""
4562
+ "- Плъгинът няма права на писане в тази директория. Моля, CHMOD тази "
4563
+ "директория до 755 или 777, или смени и мястото."
4564
+
4565
+ #: ../../wp-google-maps-pro/legacy-core.php:5315
4566
+ #: ../includes/legacy/settings-page.php:486
4567
+ #, fuzzy
4568
+ msgid "Google Maps API Key"
4569
+ msgstr "Ползвай Google Maps API"
4570
+
4571
+ #: ../../wp-google-maps-pro/legacy-core.php:5318
4572
+ #: ../includes/legacy/settings-page.php:495
4573
+ msgid ""
4574
+ "This API key can be obtained from the <a href='https://console.developers."
4575
+ "google.com' target='_BLANK'>Google Developers Console</a>. Our <a "
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5325
4582
+ msgid "OpenRouteService Key"
4583
+ msgstr ""
4584
+
4585
+ #: ../../wp-google-maps-pro/legacy-core.php:5328
4586
+ msgid ""
4587
+ "This API key can be obtained from the <a href='https://openrouteservice.org/"
4588
+ "dev/#/login' target='_BLANK'>OpenRouteService Developers Console</a>."
4589
+ msgstr ""
4590
+
4591
+ #: ../../wp-google-maps-pro/legacy-core.php:5334
4592
+ #: ../html/settings-page.html.php:426 ../includes/legacy/settings-page.php:511
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5339
4606
+ #: ../html/settings-page.html.php:436 ../includes/legacy/settings-page.php:507
4607
+ msgid "Database (Great for small amounts of markers)"
4608
+ msgstr "База данни (подходящо за малко количества от маркери)"
4609
+
4610
+ #: ../../wp-google-maps-pro/legacy-core.php:5340
4611
+ #: ../html/settings-page.html.php:442 ../includes/legacy/settings-page.php:508
4612
+ msgid "XML File (Great for large amounts of markers)"
4613
+ msgstr "XML File (подходящо за големи количества от маркери)"
4614
+
4615
+ #: ../../wp-google-maps-pro/legacy-core.php:5346
4616
+ #: ../html/settings-page.html.php:521 ../includes/legacy/settings-page.php:516
4617
+ msgid "Disable Compressed Path Variables"
4618
+ msgstr ""
4619
+
4620
+ #: ../../wp-google-maps-pro/legacy-core.php:5356
4621
+ #: ../html/settings-page.html.php:527 ../includes/legacy/settings-page.php:525
4622
+ msgid ""
4623
+ "We recommend using this setting if you frequently experience HTTP 414 - "
4624
+ "Request URI too long. We do not recommend using this setting if your site "
4625
+ "uses REST caching or a CDN."
4626
+ msgstr ""
4627
+
4628
+ #: ../../wp-google-maps-pro/legacy-core.php:5357
4629
+ msgid "Requires WP Google Maps 7.11.29 or above."
4630
+ msgstr ""
4631
+
4632
+ #: ../../wp-google-maps-pro/legacy-core.php:5362
4633
+ #: ../html/settings-page.html.php:535 ../includes/legacy/settings-page.php:551
4634
+ msgid "Disable Autopimize Compatibility Fix"
4635
+ msgstr ""
4636
+
4637
+ #: ../../wp-google-maps-pro/legacy-core.php:5369
4638
+ #: ../html/settings-page.html.php:541 ../includes/legacy/settings-page.php:558
4639
+ msgid ""
4640
+ "Use this setting if you are experiencing issues with Autoptimize's CSS "
4641
+ "aggregation. This may cause issues on setups with a large amount of marker "
4642
+ "data."
4643
+ msgstr ""
4644
+
4645
+ #: ../../wp-google-maps-pro/legacy-core.php:5374
4646
+ #: ../html/settings-page.html.php:450 ../includes/legacy/settings-page.php:531
4647
+ msgid "Marker data XML directory"
4648
+ msgstr "Данни за маркери в XML директория"
4649
+
4650
+ #: ../../wp-google-maps-pro/legacy-core.php:5380
4651
+ #: ../../wp-google-maps-pro/legacy-core.php:5390
4652
+ #: ../html/settings-page.html.php:460 ../html/settings-page.html.php:480
4653
+ #: ../includes/legacy/settings-page.php:536
4654
+ #: ../includes/legacy/settings-page.php:546
4655
+ msgid "Currently using"
4656
+ msgstr "В момента ползва"
4657
+
4658
+ #: ../../wp-google-maps-pro/legacy-core.php:5384
4659
+ #: ../html/settings-page.html.php:470 ../includes/legacy/settings-page.php:540
4660
+ msgid "Marker data XML URL"
4661
+ msgstr "Маркер данни от XML URL"
4662
+
4663
+ #: ../../wp-google-maps-pro/legacy-core.php:5394
4664
+ #: ../html/settings-page.html.php:491 ../includes/legacy/settings-page.php:565
4665
+ #, fuzzy
4666
+ #| msgid "Custom CSS"
4667
+ msgid "Custom Scripts"
4668
+ msgstr "Къстъм CSS"
4669
+
4670
+ #: ../../wp-google-maps-pro/legacy-core.php:5397
4671
+ #: ../../wp-google-maps-pro/legacy-core.php:5399
4672
+ #: ../html/settings-page.html.php:495 ../includes/legacy/settings-page.php:568
4673
+ msgid "Custom CSS"
4674
+ msgstr "Къстъм CSS"
4675
+
4676
+ #: ../../wp-google-maps-pro/legacy-core.php:5403
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
+ #| msgid "Custom CSS"
4681
+ msgid "Custom JS"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5412
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5415
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5562
4703
+ #: ../includes/legacy/settings-page.php:174
4704
+ msgid "Maps Engine:"
4705
+ msgstr ""
4706
+
4707
+ #: ../../wp-google-maps-pro/legacy-core.php:5576
4708
+ #: ../html/settings-page.html.php:38 ../includes/legacy/settings-page.php:191
4709
+ msgid "General Map Settings"
4710
+ msgstr "Главни настройки на карта"
4711
+
4712
+ #: ../../wp-google-maps-pro/legacy-core.php:5587
4713
+ #: ../html/settings-page.html.php:54 ../includes/legacy/settings-page.php:193
4714
+ #, fuzzy
4715
+ #| msgid "Disable Pan Controls"
4716
+ msgid "Disable Full Screen Control"
4717
+ msgstr "Изключи Pan контрол"
4718
+
4719
+ #: ../../wp-google-maps-pro/legacy-core.php:5599
4720
+ #: ../html/settings-page.html.php:59 ../includes/legacy/settings-page.php:207
4721
+ msgid "Disable StreetView"
4722
+ msgstr "Изключи StreetView"
4723
+
4724
+ #: ../../wp-google-maps-pro/legacy-core.php:5611
4725
+ #: ../html/settings-page.html.php:64 ../includes/legacy/settings-page.php:213
4726
+ msgid "Disable Zoom Controls"
4727
+ msgstr "Изключи Zoom контрол"
4728
+
4729
+ #: ../../wp-google-maps-pro/legacy-core.php:5624
4730
+ #: ../html/settings-page.html.php:69 ../includes/legacy/settings-page.php:220
4731
+ msgid "Disable Pan Controls"
4732
+ msgstr "Изключи Pan контрол"
4733
+
4734
+ #: ../../wp-google-maps-pro/legacy-core.php:5637
4735
+ #: ../html/settings-page.html.php:74 ../includes/legacy/settings-page.php:238
4736
+ msgid "Disable Map Type Controls"
4737
+ msgstr "Изключи Map Type контрол"
4738
+
4739
+ #: ../../wp-google-maps-pro/legacy-core.php:5650
4740
+ #: ../html/settings-page.html.php:79 ../includes/legacy/settings-page.php:243
4741
+ msgid "Disable Mouse Wheel Zoom"
4742
+ msgstr "Изключи Mouse Wheel Zoom"
4743
+
4744
+ #: ../../wp-google-maps-pro/legacy-core.php:5663
4745
+ #: ../html/settings-page.html.php:84 ../includes/legacy/settings-page.php:244
4746
+ msgid "Disable Mouse Dragging"
4747
+ msgstr "Изключи Mouse влачене"
4748
+
4749
+ #: ../../wp-google-maps-pro/legacy-core.php:5676
4750
+ #: ../html/settings-page.html.php:89 ../includes/legacy/settings-page.php:245
4751
+ msgid "Disable Mouse Double Click Zooming"
4752
+ msgstr "Изключи Mouse двоен клик Zooming"
4753
+
4754
+ #: ../../wp-google-maps-pro/legacy-core.php:5683
4755
+ #: ../includes/legacy/settings-page.php:251
4756
+ msgid "User Interface Style:"
4757
+ msgstr ""
4758
+
4759
+ #: ../../wp-google-maps-pro/legacy-core.php:5686
4760
+ #: ../html/settings-page.html.php:100 ../includes/legacy/settings-page.php:254
4761
+ msgid "Bare Bones"
4762
+ msgstr ""
4763
+
4764
+ #: ../../wp-google-maps-pro/legacy-core.php:5689
4765
+ #: ../html/settings-page.html.php:112 ../includes/legacy/settings-page.php:258
4766
+ msgid "Compact"
4767
+ msgstr ""
4768
+
4769
+ #: ../../wp-google-maps-pro/legacy-core.php:5691
4770
+ #: ../html/settings-page.html.php:115 ../includes/legacy/settings-page.php:259
4771
+ msgid "Minimal"
4772
+ msgstr ""
4773
+
4774
+ #: ../../wp-google-maps-pro/legacy-core.php:5697
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 "Allow category selection"
4788
+ msgid "Category Selection Logic"
4789
+ msgstr "Позволи избор на категории"
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5708
4800
+ msgid "AND"
4801
+ msgstr ""
4802
+
4803
+ #: ../../wp-google-maps-pro/legacy-core.php:5708
4804
+ msgid "Example: Only show the marker if it belongs to Cat A _AND_ Cat B."
4805
+ msgstr ""
4806
+
4807
+ #: ../../wp-google-maps-pro/legacy-core.php:5713
4808
+ msgid "Filter by category displayed as"
4809
+ msgstr "Филтър по категория показани като"
4810
+
4811
+ #: ../../wp-google-maps-pro/legacy-core.php:5721
4812
+ #, fuzzy
4813
+ #| msgid "Order markers by"
4814
+ msgid "Order category filter items by"
4815
+ msgstr "Подреди маркерите по"
4816
+
4817
+ #: ../../wp-google-maps-pro/legacy-core.php:5738
4818
+ msgid "Additional Category Settings"
4819
+ msgstr ""
4820
+
4821
+ #: ../../wp-google-maps-pro/legacy-core.php:5740
4822
+ #, fuzzy
4823
+ #| msgid "Save Category"
4824
+ msgid "Enable Category Count"
4825
+ msgstr "Запиши категория"
4826
+
4827
+ #: ../../wp-google-maps-pro/legacy-core.php:5745
4828
+ #: ../html/settings-page.html.php:122 ../includes/legacy/settings-page.php:284
4829
+ msgid "Troubleshooting Options"
4830
+ msgstr "Опции отстраняване на проблеми"
4831
+
4832
+ #: ../../wp-google-maps-pro/legacy-core.php:5747
4833
+ #: ../html/settings-page.html.php:135 ../includes/legacy/settings-page.php:307
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5755
4840
+ #: ../includes/legacy/settings-page.php:324
4841
+ msgid "Use FontAwesome:"
4842
+ msgstr ""
4843
+
4844
+ #: ../../wp-google-maps-pro/legacy-core.php:5769
4845
+ #: ../html/settings-page.html.php:330 ../includes/legacy/settings-page.php:346
4846
+ msgid "Lowest level of access to the map editor"
4847
+ msgstr "Най-ниско ниво на достъп до редакция на картата"
4848
+
4849
+ #: ../../wp-google-maps-pro/legacy-core.php:5781
4850
+ msgid "Retina Icon Width"
4851
+ msgstr "Retina Icon Широчина"
4852
+
4853
+ #: ../../wp-google-maps-pro/legacy-core.php:5785
4854
+ msgid "Retina Icon Height"
4855
+ msgstr "Retina Icon Височина"
4856
+
4857
+ #: ../../wp-google-maps-pro/legacy-core.php:5790
4858
+ #: ../html/settings-page.html.php:343 ../includes/legacy/settings-page.php:367
4859
+ msgid "Greedy Gesture Handling"
4860
+ msgstr ""
4861
+
4862
+ #: ../../wp-google-maps-pro/legacy-core.php:5792
4863
+ #: ../includes/legacy/settings-page.php:369
4864
+ msgid ""
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
+ #: ../../wp-google-maps-pro/legacy-core.php:5866
4870
+ #: ../../wp-google-maps-pro/legacy-core.php:5868
4871
+ #: ../../wp-google-maps-pro/legacy-core.php:7340
4872
+ #, fuzzy
4873
+ msgid "No Global Setting"
4874
+ msgstr "Основни настройки"
4875
+
4876
+ #: ../../wp-google-maps-pro/legacy-core.php:5881
4877
+ msgid "InfoWindow Settings"
4878
+ msgstr "Инфопрозорец Настройки"
4879
+
4880
+ #: ../../wp-google-maps-pro/legacy-core.php:5901
4881
+ #, fuzzy
4882
+ #| msgid "Modern Infowindow"
4883
+ msgid "Modern InfoWindow"
4884
+ msgstr "Модерен инфо прозорец"
4885
+
4886
+ #: ../../wp-google-maps-pro/legacy-core.php:5948
4887
+ msgid "Resize Images"
4888
+ msgstr "Рисайз картинки"
4889
+
4890
+ #: ../../wp-google-maps-pro/legacy-core.php:5950
4891
+ msgid "Resize all images to the below sizes"
4892
+ msgstr "Рисайз всички картинки до по долу размера"
4893
+
4894
+ #: ../../wp-google-maps-pro/legacy-core.php:5954
4895
+ msgid "Default Image Width"
4896
+ msgstr "Дифолт снимка Широчина"
4897
+
4898
+ #: ../../wp-google-maps-pro/legacy-core.php:5955
4899
+ msgid "(can be left blank - max width will be limited to max infowindow width)"
4900
+ msgstr ""
4901
+ "не може да е празно - max Широчина ще бъде ограничена до max Инфопрозорец "
4902
+ "Широчина)"
4903
+
4904
+ #: ../../wp-google-maps-pro/legacy-core.php:5958
4905
+ msgid "Default Image Height"
4906
+ msgstr "Дифолт Снимка Височина"
4907
+
4908
+ #: ../../wp-google-maps-pro/legacy-core.php:5959
4909
+ msgid ""
4910
+ "(can be left blank - leaving both the width and height blank will revert to "
4911
+ "full size images being used)"
4912
+ msgstr ""
4913
+ "(не може да е празни - оставяйки и двете Широчина и Височина празно ще върне "
4914
+ "до пълния размер на картинките които са ползвани)"
4915
+
4916
+ #: ../../wp-google-maps-pro/legacy-core.php:5962
4917
+ msgid "Max InfoWindow Width"
4918
+ msgstr "Max Инфопрозорец Широчина"
4919
+
4920
+ #: ../../wp-google-maps-pro/legacy-core.php:5963
4921
+ msgid "(Minimum: 200px)"
4922
+ msgstr "(Минимум: 200px)"
4923
+
4924
+ #: ../../wp-google-maps-pro/legacy-core.php:5966
4925
+ msgid "Other settings"
4926
+ msgstr "Други настройки"
4927
+
4928
+ #: ../../wp-google-maps-pro/legacy-core.php:5968
4929
+ msgid "Open links in a new window"
4930
+ msgstr "Отвори линковете в нов прозорец"
4931
+
4932
+ #: ../../wp-google-maps-pro/legacy-core.php:5969
4933
+ msgid "(Tick this if you want to open your links in a new window)"
4934
+ msgstr "(Отбележи тук ако искаш да се отварят линковете в нов прозорец)"
4935
+
4936
+ #: ../../wp-google-maps-pro/legacy-core.php:5970
4937
+ msgid "Hide the address field"
4938
+ msgstr "Скрий поле адрес"
4939
+
4940
+ #: ../../wp-google-maps-pro/legacy-core.php:5974
4941
+ msgid "Link text"
4942
+ msgstr "Текст за линк"
4943
+
4944
+ #: ../../wp-google-maps-pro/legacy-core.php:5982
4945
+ #: ../html/settings-page.html.php:363 ../includes/legacy/settings-page.php:387
4946
+ #, fuzzy
4947
+ #| msgid "InfoWindows"
4948
+ msgid "Disable InfoWindows"
4949
+ msgstr "Инфопрозорци"
4950
+
4951
+ #: ../../wp-google-maps-pro/legacy-core.php:6014
4952
+ #: ../html/settings-page.html.php:387 ../includes/legacy/settings-page.php:470
4953
+ #, fuzzy
4954
+ #| msgid "Store Locator"
4955
+ msgid "Store Locator Radii"
4956
+ msgstr "Намирач на магазини"
4957
+
4958
+ #: ../../wp-google-maps-pro/legacy-core.php:6017
4959
+ #: ../html/settings-page.html.php:392 ../includes/legacy/settings-page.php:473
4960
+ msgid "Use a comma to separate values, eg: 1, 5, 10, 50, 100"
4961
+ msgstr ""
4962
+
4963
+ #: ../../wp-google-maps-pro/legacy-core.php:6392 ../legacy-core.php:2153
4964
+ #: ../legacy-core.php:2289 ../legacy-core.php:2320 ../legacy-core.php:2383
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
+ #: ../../wp-google-maps-pro/legacy-core.php:6691 ../legacy-core.php:2314
4971
+ msgid "Your marker location has been saved."
4972
+ msgstr "Твоя маркер локация беше записан."
4973
+
4974
+ #: ../../wp-google-maps-pro/legacy-core.php:6701
4975
+ #: ../../wp-google-maps-pro/legacy-core.php:6767 ../legacy-core.php:2327
4976
+ #: ../legacy-core.php:2392
4977
+ msgid "You cannot save a blank polygon"
4978
+ msgstr "не може да запишеш празен полигон"
4979
+
4980
+ #: ../../wp-google-maps-pro/legacy-core.php:6755 ../legacy-core.php:2374
4981
+ msgid "Your polygon has been created."
4982
+ msgstr "Твоят полигон беше създаден."
4983
+
4984
+ #: ../../wp-google-maps-pro/legacy-core.php:6824 ../legacy-core.php:2439
4985
+ msgid "Your polygon has been saved."
4986
+ msgstr "Твоят полигон беше записан."
4987
+
4988
+ #: ../../wp-google-maps-pro/legacy-core.php:6835
4989
+ #: ../../wp-google-maps-pro/legacy-core.php:6876 ../legacy-core.php:2457
4990
+ #: ../legacy-core.php:2509
4991
+ msgid "You cannot save a blank polyline"
4992
+ msgstr "Не може да запишеш празен полином"
4993
+
4994
+ #: ../../wp-google-maps-pro/legacy-core.php:6865 ../legacy-core.php:2489
4995
+ msgid "Your polyline has been created."
4996
+ msgstr "Твоят полином беше създаден."
4997
+
4998
+ #: ../../wp-google-maps-pro/legacy-core.php:6907 ../legacy-core.php:2538
4999
+ msgid "Your polyline has been saved."
5000
+ msgstr "Твоят полином беше записан."
5001
+
5002
+ #: ../../wp-google-maps-pro/legacy-core.php:6951
5003
+ #, fuzzy
5004
+ msgid "Your dataset has been created."
5005
+ msgstr "Твоята категория беше създадена."
5006
+
5007
+ #: ../../wp-google-maps-pro/legacy-core.php:6996
5008
+ #, fuzzy
5009
+ msgid "Your dataset has been saved."
5010
+ msgstr "Твоята категория беше записана."
5011
+
5012
+ #: ../../wp-google-maps-pro/legacy-core.php:7162
5013
+ #: ../../wp-google-maps-pro/legacy-core.php:7254
5014
+ #: ../base/includes/wp-google-maps-polygons.php:57
5015
+ #: ../base/includes/wp-google-maps-polygons.php:147
5016
+ msgid "Line Opacity"
5017
+ msgstr "Непрозрачност на линията"
5018
+
5019
+ #: ../../wp-google-maps-pro/legacy-core.php:7171
5020
+ #: ../../wp-google-maps-pro/legacy-core.php:7263
5021
+ #: ../base/includes/wp-google-maps-polygons.php:66
5022
+ #: ../base/includes/wp-google-maps-polygons.php:156
5023
+ msgid "On Hover Line Color"
5024
+ msgstr "При ховър цвят на линията"
5025
+
5026
+ #: ../../wp-google-maps-pro/legacy-core.php:7174
5027
+ #: ../../wp-google-maps-pro/legacy-core.php:7266
5028
+ #: ../base/includes/wp-google-maps-polygons.php:69
5029
+ #: ../base/includes/wp-google-maps-polygons.php:159
5030
+ msgid "On Hover Fill Color"
5031
+ msgstr "При ховър запълни цвят"
5032
+
5033
+ #: ../../wp-google-maps-pro/legacy-core.php:7177
5034
+ #: ../../wp-google-maps-pro/legacy-core.php:7269
5035
+ #: ../base/includes/wp-google-maps-polygons.php:72
5036
+ #: ../base/includes/wp-google-maps-polygons.php:162
5037
+ msgid "On Hover Opacity"
5038
+ msgstr "При ховър прозрачност"
5039
+
5040
+ #: ../../wp-google-maps-pro/legacy-core.php:7186
5041
+ #: ../../wp-google-maps-pro/legacy-core.php:7290
5042
+ #: ../base/includes/wp-google-maps-polygons.php:84
5043
+ msgid "Click on the map to insert a vertex."
5044
+ msgstr "Кликни на картата за да въведеш връх."
5045
+
5046
+ #: ../../wp-google-maps-pro/legacy-core.php:7187
5047
+ #: ../../wp-google-maps-pro/legacy-core.php:7291
5048
+ #: ../base/includes/wp-google-maps-polygons.php:85
5049
+ msgid "Click on a vertex to remove it."
5050
+ msgstr "Кликни на връх за да премахнеш."
5051
+
5052
+ #: ../../wp-google-maps-pro/legacy-core.php:7188
5053
+ #: ../../wp-google-maps-pro/legacy-core.php:7292
5054
+ #: ../base/includes/wp-google-maps-polygons.php:86
5055
+ msgid "Drag a vertex to move it."
5056
+ msgstr "Извлачи връх за да преместиш."
5057
+
5058
+ #: ../../wp-google-maps-pro/legacy-core.php:7273
5059
+ #: ../base/includes/wp-google-maps-polygons.php:165
5060
+ #, fuzzy
5061
+ #| msgid "Save Polygon"
5062
+ msgid "Show Polygon"
5063
+ msgstr "Запази полигон"
5064
+
5065
+ #: ../../wp-google-maps-pro/legacy-core.php:7278
5066
+ #: ../base/includes/wp-google-maps-polygons.php:170
5067
+ #: ../base/includes/wp-google-maps-polylines.php:174 ../legacy-core.php:5773
5068
+ #: ../legacy-core.php:6028
5069
+ msgid "Fit map bounds to shape"
5070
+ msgstr ""
5071
+
5072
+ #: ../../wp-google-maps-pro/legacy-core.php:7337 ../legacy-core.php:4472
5073
+ msgid "Copied to clipboard"
5074
+ msgstr ""
5075
+
5076
+ #: ../../wp-google-maps-pro/legacy-core.php:7512 ../legacy-core.php:1978
5077
+ msgid "Search"
5078
+ msgstr "Търси"
5079
+
5080
+ #: ../../wp-google-maps-pro/legacy-core.php:7697 ../legacy-core.php:3045
5081
+ msgid "Type"
5082
+ msgstr "Вид"
5083
+
5084
+ #: ../../wp-google-maps-pro/legacy-core.php:7699 ../legacy-core.php:3047
5085
+ #, fuzzy
5086
+ msgid "Shortcode"
5087
+ msgstr "Шорткод"
5088
+
5089
+ #: ../../wp-google-maps-pro/legacy-core.php:7710
5090
+ msgid "Duplicate"
5091
+ msgstr "Дупликейт"
5092
+
5093
+ #: ../../wp-google-maps-pro/legacy-core.php:7916
5094
+ #, fuzzy
5095
+ msgid "Delete this dataset"
5096
+ msgstr "Изтрий този маркер"
5097
+
5098
+ #: ../../wp-google-maps-pro/legacy-core.php:8491
5099
+ msgid "Add heatmap data"
5100
+ msgstr ""
5101
+
5102
+ #: ../../wp-google-maps-pro/legacy-core.php:8505
5103
+ #: ../../wp-google-maps-pro/legacy-core.php:8590
5104
+ msgid "Gradient"
5105
+ msgstr ""
5106
+
5107
+ #: ../../wp-google-maps-pro/legacy-core.php:8508
5108
+ #: ../../wp-google-maps-pro/legacy-core.php:8593
5109
+ #: ../html/theme-panel.html.php:36
5110
+ msgid "Blue"
5111
+ msgstr ""
5112
+
5113
+ #: ../../wp-google-maps-pro/legacy-core.php:8548
5114
+ #: ../../wp-google-maps-pro/legacy-core.php:8630
5115
+ #, fuzzy
5116
+ msgid "Save Dataset"
5117
+ msgstr "Запиши категория"
5118
+
5119
+ #: ../../wp-google-maps-pro/legacy-core.php:8575
5120
+ msgid "Edit Dataset"
5121
+ msgstr ""
5122
+
5123
+ #: ../../wp-google-maps-pro/legacy-core.php:8667
5124
+ msgid "On click, change icon to"
5125
+ msgstr ""
5126
+
5127
+ #: ../../wp-google-maps-pro/legacy-core.php:8670
5128
+ #, fuzzy
5129
+ #| msgid "ignore if you want to use the default marker"
5130
+ msgid "ignore if you want to use the normal marker"
5131
+ msgstr "игнорирай ако искаш да ползваш дифолт маркера"
5132
+
5133
+ #: ../../wp-google-maps-pro/wp-google-maps-pro.php:1845
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
+ #: ../../wp-google-maps-pro/wp-google-maps-pro.php:1889
5142
+ #: ../wpGoogleMaps.php:1244
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
+ #: ../../wp-google-maps-pro/wp-google-maps-pro.php:1905
5149
+ #: ../wpGoogleMaps.php:1260
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
+ #: ../../wp-google-maps-pro/wp-google-maps-pro.php:1919
5157
+ msgid ""
5158
+ "<strong>WP Google Maps:</strong> Due to a known issue with PHP 5.4.45 and "
5159
+ "JSON serialization, the Pro add-on cannot function correctly. We strongly "
5160
+ "recommend you switch to more up to date version of PHP."
5161
+ msgstr ""
5162
+
5163
+ #: ../../wp-google-maps-pro/wp-google-maps-pro.php:2093
5164
+ msgid ""
5165
+ "The Pro add-on cannot be loaded due to a fatal error. This is usually due to "
5166
+ "missing files. Please re-install the Pro add-on. Technical details are as "
5167
+ "follows: "
5168
+ msgstr ""
5169
+
5170
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:265
5171
+ msgid "VGM"
5172
+ msgstr ""
5173
+
5174
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:315
5175
+ #, fuzzy
5176
+ msgid "Visitor Generated Markers - Settings"
5177
+ msgstr "Посетителски настройки за генерирани маркери"
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
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:335
5194
+ msgid "Registered Users"
5195
+ msgstr ""
5196
+
5197
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:340
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 users to select a marker category?"
5205
+ msgstr "Позволи на потребителите да филтрират по категория?"
5206
+
5207
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:358
5208
+ #, fuzzy
5209
+ msgid "Allow users to upload images?"
5210
+ msgstr "Позволи на потребителите да филтрират по категория?"
5211
+
5212
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:367
5213
+ #, fuzzy
5214
+ msgid "Allow users to add a link to markers?"
5215
+ msgstr "Позволи на потребителите да филтрират по категория?"
5216
+
5217
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:376
5218
+ msgid "Zoom in after UGM submission"
5219
+ msgstr ""
5220
+
5221
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:386
5222
+ msgid "Form Text Overrides"
5223
+ msgstr ""
5224
+
5225
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:389
5226
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:613
5227
+ #, fuzzy
5228
+ msgid "Add your own marker"
5229
+ msgstr "Добави маркер"
5230
+
5231
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:393
5232
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:614
5233
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:615
5234
+ #, fuzzy
5235
+ msgid "Marker Title"
5236
+ msgstr "Маркер Latitude"
5237
+
5238
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:397
5239
+ #, fuzzy
5240
+ msgid "Marker Title (Placeholder)"
5241
+ msgstr "Стилове на маркерите"
5242
+
5243
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:401
5244
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:616
5245
+ #, fuzzy
5246
+ msgid "Marker Address or GPS Location"
5247
+ msgstr "Marker данни локация"
5248
+
5249
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:405
5250
+ #, fuzzy
5251
+ msgid "Marker Address (Placeholder)"
5252
+ msgstr "Адрес"
5253
+
5254
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:409
5255
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:618
5256
+ #, fuzzy
5257
+ msgid "Or click on the map and drag to add a marker"
5258
+ msgstr "Кликни на картата за да въведеш връх."
5259
+
5260
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:413
5261
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:619
5262
+ #, fuzzy
5263
+ msgid "Marker Description"
5264
+ msgstr "Описание"
5265
+
5266
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:417
5267
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:620
5268
+ #, fuzzy
5269
+ #| msgid "Marker Listing"
5270
+ msgid "Marker Link"
5271
+ msgstr "Списък маркери"
5272
+
5273
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:421
5274
+ msgid "URL (Placeholder)"
5275
+ msgstr ""
5276
+
5277
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:425
5278
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:622
5279
+ #: ../includes/tables/class.admin-marker-datatable.php:40
5280
+ #: ../legacy-core.php:4757
5281
+ msgid "Image"
5282
+ msgstr "Снимка"
5283
+
5284
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:429
5285
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:623
5286
+ #, fuzzy
5287
+ msgid "Marker Category"
5288
+ msgstr "Категории маркери"
5289
+
5290
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:617
5291
+ #, fuzzy
5292
+ msgid "Marker Address"
5293
+ msgstr "Адрес"
5294
+
5295
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:751
5296
+ msgid "GDPR Agreement"
5297
+ msgstr ""
5298
+
5299
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:758
5300
+ msgid "Please tick this box to prove you are human"
5301
+ msgstr ""
5302
+
5303
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:762
5304
+ #, fuzzy
5305
+ msgid "Add marker"
5306
+ msgstr "Добави маркер"
5307
+
5308
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:762 ../legacy-core.php:4189
5309
+ msgid "Adding"
5310
+ msgstr "Добавяне"
5311
+
5312
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:948
5313
+ #, php-format
5314
+ msgid "A new marker has been submitted for your map (%s)"
5315
+ msgstr ""
5316
+
5317
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:949
5318
+ msgid "A new marker has been submitted for your map"
5319
+ msgstr ""
5320
+
5321
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:950
5322
+ #, php-format
5323
+ msgid "Map: %s"
5324
+ msgstr ""
5325
+
5326
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:951
5327
+ #, fuzzy, php-format
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
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:959
5352
+ #, php-format
5353
+ msgid ""
5354
+ "To approve, edit or delete the marker, please click the following link: %s"
5355
+ msgstr ""
5356
+
5357
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:992
5358
+ #, fuzzy
5359
+ #| msgid "Thank you. Your marker is awaiting approval."
5360
+ msgid "Your marker is pending approval."
5361
+ msgstr "Благодаря. Твоят маркер чака одобрение."
5362
+
5363
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:994
5364
+ msgid "Marker successfully submitted."
5365
+ msgstr ""
5366
+
5367
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1184
5368
+ #, fuzzy
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
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1188
5377
+ #, fuzzy
5378
+ msgid "Visitor Generated Marker Settings"
5379
+ msgstr "Посетителски настройки за генерирани маркери"
5380
+
5381
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1192
5382
+ #, fuzzy
5383
+ msgid "Visitor Marker Input Settings"
5384
+ msgstr "Посетителски настройки за генерирани маркери"
5385
+
5386
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1194
5387
+ msgid "Strip all HTML tags in descriptions and titles"
5388
+ msgstr ""
5389
+
5390
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1195
5391
+ #, fuzzy
5392
+ msgid "Automatically approve visitor generated markers"
5393
+ msgstr "Посетител генерирал маркери"
5394
+
5395
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1196
5396
+ msgid "Email me whenever there is a new marker"
5397
+ msgstr ""
5398
+
5399
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1196
5400
+ msgid "Email address:"
5401
+ msgstr ""
5402
+
5403
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1228
5404
+ msgid "VGM Add-on Compliance"
5405
+ msgstr ""
5406
+
5407
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1233
5408
+ msgid "Require consent before user submission"
5409
+ msgstr ""
5410
+
5411
+ #: ../../wp-google-maps-ugm/wp-google-maps-ugm.php:1235
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
+ #: ../base/classes/WPGM_templates.php:40
5419
+ msgid "Welcome to"
5420
+ msgstr "Добре дошли в"
5421
+
5422
+ #: ../base/classes/WPGM_templates.php:42
5423
+ msgid ""
5424
+ "Amazing maps. Simple interface. Powerful functionality. World Class Support."
5425
+ msgstr ""
5426
+ "Невероятни карти. Лесен интерфейс. Супер функционалности. Невероятен съпорт."
5427
+
5428
+ #: ../base/classes/WPGM_templates.php:44
5429
+ msgid "What's new?"
5430
+ msgstr "Какво ново?"
5431
+
5432
+ #: ../base/classes/WPGM_templates.php:49 ../base/includes/welcome.php:44
5433
+ msgid "Let users search for products, branches and stores near them"
5434
+ msgstr "Нека потребителите да търсят за продукти, магазини около тях."
5435
+
5436
+ #: ../base/classes/WPGM_templates.php:54
5437
+ msgid "Create service areas or coverage maps with polygons"
5438
+ msgstr "Създай зона на обслужване с помощта на полигоните."
5439
+
5440
+ #: ../base/classes/WPGM_templates.php:59
5441
+ msgid "Create custom routes or outlines using polylines"
5442
+ msgstr "Създай къстъм пътища или очертания с полиномите"
5443
+
5444
+ #: ../base/classes/WPGM_templates.php:74 ../base/includes/welcome.php:74
5445
+ msgid "How did you find out about us?"
5446
+ msgstr "Как научихте за нас?"
5447
+
5448
+ #: ../base/classes/WPGM_templates.php:81 ../base/includes/welcome.php:81
5449
+ msgid "WordPress.org plugin repository"
5450
+ msgstr "WordPress.org plugin repository"
5451
+
5452
+ #: ../base/classes/WPGM_templates.php:82 ../base/includes/welcome.php:82
5453
+ msgid "What search term did you use?"
5454
+ msgstr "Какво търсехте?"
5455
+
5456
+ #: ../base/classes/WPGM_templates.php:86 ../base/includes/welcome.php:86
5457
+ msgid "Google or other search engine"
5458
+ msgstr "Google или друга търсачка"
5459
+
5460
+ #: ../base/classes/WPGM_templates.php:90 ../base/includes/welcome.php:90
5461
+ msgid "Friend recommendation"
5462
+ msgstr "Препоръка на приятел"
5463
+
5464
+ #: ../base/classes/WPGM_templates.php:94 ../base/includes/welcome.php:94
5465
+ #: ../lib/codecabin/deactivate-feedback-form.php:61
5466
+ msgid "Other"
5467
+ msgstr "Друго"
5468
+
5469
+ #: ../base/classes/WPGM_templates.php:95 ../base/includes/welcome.php:95
5470
+ msgid "Please explain"
5471
+ msgstr "Моля, опиши"
5472
+
5473
+ #: ../base/classes/WPGM_templates.php:117 ../base/includes/welcome.php:118
5474
+ msgid "New to WP Google Maps?"
5475
+ msgstr "Нов в WP Google Maps?"
5476
+
5477
+ #: ../base/classes/WPGM_templates.php:118 ../base/includes/welcome.php:119
5478
+ msgid "You may want to"
5479
+ msgstr "Може да искате да"
5480
+
5481
+ #: ../base/classes/WPGM_templates.php:118 ../base/includes/welcome.php:119
5482
+ msgid "review our documentation"
5483
+ msgstr "преглед на нашата документация"
5484
+
5485
+ #: ../base/classes/WPGM_templates.php:118 ../base/includes/welcome.php:119
5486
+ msgid ""
5487
+ "before you get started. If you're a tech-savvy individual, you may skip this "
5488
+ "step."
5489
+ msgstr "преди да почнеш. Ако си напреданал, може да прескочиш"
5490
+
5491
+ #: ../base/classes/WPGM_templates.php:121 ../base/includes/welcome.php:124
5492
+ msgid "Help me!"
5493
+ msgstr "Помогни ми!"
5494
+
5495
+ #: ../base/classes/WPGM_templates.php:122 ../base/includes/welcome.php:125
5496
+ msgid "Visit our"
5497
+ msgstr "Посети нашия"
5498
+
5499
+ #: ../base/classes/WPGM_templates.php:122
5500
+ msgid "Support Forum"
5501
+ msgstr "Форум за съпорт"
5502
+
5503
+ #: ../base/classes/WPGM_templates.php:122 ../base/includes/welcome.php:125
5504
+ msgid "for quick and friendly help. We'll answer your request within 24hours."
5505
+ msgstr "за бърз и добър съпорт. Ще отговорим в рамките на 24 часа."
5506
+
5507
+ #: ../base/classes/WPGM_templates.php:125 ../base/includes/welcome.php:130
5508
+ msgid "Feedback"
5509
+ msgstr "Фийдбек"
5510
+
5511
+ #: ../base/classes/WPGM_templates.php:126 ../base/includes/welcome.php:131
5512
+ msgid "We need you to help us make this plugin better."
5513
+ msgstr "Трябва ни помощта ти, за да работи този плъгин по-добре."
5514
+
5515
+ #: ../base/classes/WPGM_templates.php:126 ../base/includes/welcome.php:131
5516
+ msgid "Send us your feedback"
5517
+ msgstr "Изпрати ни твоя фийдбек."
5518
+
5519
+ #: ../base/classes/WPGM_templates.php:126 ../base/includes/welcome.php:131
5520
+ msgid "and we'll act on it as soon as humanly possible."
5521
+ msgstr "и ние ще действаме колкото може по-бързо."
5522
+
5523
+ #: ../base/classes/WPGM_templates.php:130 ../base/includes/credits.php:139
5524
+ #: ../base/includes/welcome.php:136
5525
+ msgid "OK! Let's start"
5526
+ msgstr "OK! Да почваме"
5527
+
5528
+ #: ../base/classes/widget_module.class.php:16
5529
+ msgid "Add your map as a widget"
5530
+ msgstr "Добави картата си като уиджет"
5531
+
5532
+ #: ../base/classes/widget_module.class.php:78
5533
+ msgid "Select your map:"
5534
+ msgstr "Избери твоята карта:"
5535
+
5536
+ #: ../base/includes/credits.php:13 ../base/includes/welcome.php:17
5537
+ #, fuzzy, php-format
5538
+ msgid "Welcome to WP Google Maps version %s"
5539
+ msgstr "Нов в WP Google Maps?"
5540
+
5541
+ #: ../base/includes/credits.php:18
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
+ #: ../base/includes/credits.php:24 ../base/includes/welcome.php:28
5548
+ #, fuzzy
5549
+ msgid "Welcome"
5550
+ msgstr "Добре дошли в"
5551
+
5552
+ #: ../base/includes/credits.php:27 ../base/includes/welcome.php:29
5553
+ msgid "Credits"
5554
+ msgstr ""
5555
+
5556
+ #: ../base/includes/credits.php:33
5557
+ msgid "WP Google Maps is created by an international team of developers."
5558
+ msgstr ""
5559
+
5560
+ #: ../base/includes/credits.php:36
5561
+ msgid "Project Leaders"
5562
+ msgstr ""
5563
 
5564
+ #: ../base/includes/credits.php:49
5565
+ msgid "Founder &amp; Lead Developer"
5566
+ msgstr ""
5567
 
5568
+ #: ../base/includes/credits.php:61
5569
+ msgid "Lead Developer &amp; Support"
5570
+ msgstr ""
5571
 
5572
+ #: ../base/includes/credits.php:66
5573
+ msgid "Contributors"
5574
+ msgstr ""
5575
 
5576
+ #: ../base/includes/credits.php:79 ../base/includes/credits.php:103
5577
+ msgid "Support &amp; Developer"
5578
+ msgstr ""
 
5579
 
5580
+ #: ../base/includes/credits.php:91
 
5581
  #, fuzzy
5582
+ msgid "Marketing"
5583
+ msgstr "Списък маркери"
 
 
 
 
5584
 
5585
+ #: ../base/includes/credits.php:127
5586
+ msgid "Security suggestions"
 
 
 
5587
  msgstr ""
5588
 
5589
+ #: ../base/includes/credits.php:132
5590
+ msgid "Want to see your name on this page?"
5591
+ msgstr ""
 
5592
 
5593
+ #: ../base/includes/credits.php:134
5594
+ msgid "Get involved on GitHub."
5595
+ msgstr ""
 
5596
 
5597
+ #: ../base/includes/full-screen-module.php:33
5598
+ #: ../base/includes/full-screen-module.php:66
5599
+ #: ../base/includes/full-screen-module.php:90
5600
+ msgid "Full screen"
5601
+ msgstr ""
5602
 
5603
+ #: ../base/includes/full-screen-module.php:34
5604
+ #: ../base/includes/full-screen-module.php:67
5605
+ #: ../base/includes/full-screen-module.php:91
5606
+ msgid "Close full screen"
5607
+ msgstr ""
5608
 
5609
+ #: ../base/includes/full-screen-module.php:38
 
 
5610
  #, fuzzy
5611
+ #| msgid "Enable Directions?"
5612
+ msgid "Enable Full Screen Option"
5613
+ msgstr "Включи упътвания?"
 
 
 
5614
 
5615
+ #: ../base/includes/full-screen-module.php:44
5616
+ msgid "Open Full Screen String"
5617
+ msgstr ""
5618
 
5619
+ #: ../base/includes/full-screen-module.php:50
5620
+ msgid "Close Full Screen String"
5621
+ msgstr ""
5622
 
5623
+ #: ../base/includes/welcome.php:21
5624
+ #, fuzzy
5625
+ #| msgid ""
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
+ #: ../base/includes/welcome.php:23
5635
+ msgid "Skip intro and create a map"
5636
+ msgstr ""
5637
 
5638
+ #: ../base/includes/welcome.php:36
5639
+ #, fuzzy
5640
+ msgid "Unlimited Markers"
5641
+ msgstr "Списък маркери"
5642
 
5643
+ #: ../base/includes/welcome.php:37
5644
+ #, fuzzy
5645
+ msgid "Create as many markers as you like"
5646
+ msgstr "Създай маркер категории"
5647
 
5648
+ #: ../base/includes/welcome.php:53
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
+ #: ../base/includes/welcome.php:59
5655
+ msgid "and Squares"
5656
+ msgstr ""
5657
 
5658
+ #: ../base/includes/welcome.php:60
5659
+ msgid "Add custom shapes such as polygons, polylines, circles and squares!"
 
 
5660
  msgstr ""
 
 
5661
 
5662
+ #: ../base/includes/welcome.php:101
5663
+ msgid "Submit and create a map"
5664
+ msgstr ""
5665
 
5666
+ #: ../base/includes/welcome.php:125
5667
+ #, fuzzy
5668
+ msgid "Support Desk"
5669
+ msgstr "Съпорт"
5670
 
5671
+ #: ../base/includes/wp-google-maps-polygons.php:48
5672
+ #: ../base/includes/wp-google-maps-polygons.php:66
5673
+ #: ../base/includes/wp-google-maps-polygons.php:69
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
+ #: ../base/includes/wp-google-maps-polygons.php:48
5684
+ #: ../base/includes/wp-google-maps-polygons.php:135
5685
+ #: ../base/includes/wp-google-maps-polygons.php:138
5686
+ msgid "Get the Pro add-on"
5687
+ msgstr "Вземи Pro add-on"
5688
 
5689
+ #: ../base/includes/wp-google-maps-polylines.php:62
5690
+ #: ../base/includes/wp-google-maps-polylines.php:158
5691
+ msgid "Line Thickness"
5692
+ msgstr "Дебелина на линия"
5693
 
5694
+ #: ../base/includes/wp-google-maps-polylines.php:168
5695
+ #, fuzzy
5696
+ #| msgid "Save Polyline"
5697
+ msgid "Show Polyline"
5698
+ msgstr "Запиши полином"
5699
 
5700
+ #: ../html/gdpr-compliance-settings.html.php:9
5701
+ #: ../html/settings-page.html.php:30 ../includes/class.gdpr-compliance.php:169
5702
+ msgid "GDPR Compliance"
5703
+ msgstr ""
5704
 
5705
+ #: ../html/gdpr-compliance-settings.html.php:12
5706
+ msgid ""
5707
+ "Our GDPR notice will be displayed whenever the agreement cookie is not set. "
5708
+ "Agreeing to the notice will set this cookie."
5709
+ msgstr ""
5710
 
5711
+ #: ../html/gdpr-compliance-settings.html.php:17
5712
+ msgid ""
5713
+ "Some caching and optimization plugins will continue to serve your map page "
5714
+ "with the GDPR agreement, disregarding this cookie. In this instance, "
5715
+ "clicking \"I Agree\" will reload the page and appear to have no effect. To "
5716
+ "solve this issue, we recommend you exclude your map page from caching and "
5717
+ "optimization."
5718
+ msgstr ""
5719
 
5720
+ #: ../html/gdpr-compliance-settings.html.php:25
5721
+ #, fuzzy
5722
+ #| msgid "General options"
5723
+ msgid "General Complicance"
5724
+ msgstr "Общи настройки"
5725
 
5726
+ #: ../html/gdpr-compliance-settings.html.php:32
5727
+ msgid "Require consent before loading Maps API"
5728
+ msgstr ""
 
 
5729
 
5730
+ #: ../html/gdpr-compliance-settings.html.php:35
5731
+ msgid ""
5732
+ "The GDPR views IP Addresses as Personal Data, which requires consent before "
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/gdpr-compliance-settings.html.php:45
5740
+ msgid "GDPR Consent Notice"
5741
+ msgstr ""
 
5742
 
5743
+ #: ../html/gdpr-compliance-settings.html.php:51
5744
+ msgid "GDPR Notice"
5745
+ msgstr ""
 
5746
 
5747
+ #: ../html/gdpr-compliance-settings.html.php:54
5748
+ msgid ""
5749
+ "Users will be asked to accept the notice shown here, in the form of a check "
5750
+ "box."
5751
+ msgstr ""
 
 
 
 
 
 
 
 
5752
 
5753
+ #: ../html/gdpr-compliance-settings.html.php:63
5754
+ #, fuzzy
5755
+ #| msgid "Category Name"
5756
+ msgid "Company Name"
5757
+ msgstr "Име на категория"
 
 
 
 
5758
 
5759
+ #: ../html/gdpr-compliance-settings.html.php:73
5760
+ msgid "Retention Purpose(s)"
5761
+ msgstr ""
 
 
 
 
 
 
5762
 
5763
+ #: ../html/gdpr-compliance-settings.html.php:81
5764
+ msgid "The GDPR regulates that you need to state why you are processing data."
5765
+ msgstr ""
 
 
 
5766
 
5767
+ #: ../html/gdpr-compliance-settings.html.php:90
5768
+ msgid "Override GDPR Notice"
5769
+ msgstr ""
 
 
 
 
5770
 
5771
+ #: ../html/gdpr-compliance-settings.html.php:98
5772
+ msgid ""
5773
+ "By checking this box, you agree to take sole responsibility for GDPR "
5774
+ "Compliance with regards to this plugin."
5775
+ msgstr ""
 
 
 
 
 
 
5776
 
5777
+ #: ../html/gdpr-compliance-settings.html.php:107
5778
+ msgid "Override Text"
5779
+ msgstr ""
 
 
 
5780
 
5781
+ #: ../html/gdpr-compliance-settings.html.php:118
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/gdpr-default-notice.html.php:6
5789
+ msgid ""
5790
+ "I agree for my personal data to be processed by {COMPANY_NAME}.\n"
5791
+ "\t\t\n"
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&amp;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/google-maps-api-error-dialog.html.php:8
5824
+ msgid "Maps API Error"
5825
+ msgstr ""
 
 
5826
 
5827
+ #: ../html/google-maps-api-error-dialog.html.php:14
5828
+ msgid ""
5829
+ "One or more error(s) have occured attempting to initialize the Maps API:"
5830
+ msgstr ""
 
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/google-maps-api-error-dialog.html.php:90
5837
+ msgid "Dismiss"
5838
+ msgstr ""
 
 
 
 
 
5839
 
5840
+ #: ../html/google-maps-api-settings.html.php:8
5841
+ msgid "Load Maps Engine API:"
5842
+ msgstr ""
5843
 
5844
+ #: ../html/google-maps-api-settings.html.php:42
5845
+ msgid "Always include engine API on pages:"
 
5846
  msgstr ""
5847
 
5848
+ #: ../html/google-maps-api-settings.html.php:50
5849
+ msgid "Always exclude engine API on pages:"
5850
+ msgstr ""
 
 
 
5851
 
5852
+ #: ../html/google-maps-api-settings.html.php:58
5853
+ msgid "Prevent other plugins and theme loading API:"
5854
+ msgstr ""
 
5855
 
5856
+ #: ../html/ol-feature-coming-soon.html.php:9
5857
+ msgid ""
5858
+ "<strong>Coming soon</strong> to OpenLayers. If you need to use this feature, "
5859
+ "please go to settings then select and configure Google Maps to enable it."
5860
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5861
 
5862
+ #: ../html/ol-feature-unavailable.html.php:9
5863
+ msgid "Not available while using the OpenLayers engine."
5864
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5865
 
5866
+ #: ../html/settings-page.html.php:43
5867
+ msgid "Maps Engine"
5868
+ msgstr ""
 
5869
 
5870
+ #: ../html/settings-page.html.php:46
5871
+ #: ../includes/class.maps-engine-dialog.php:72
5872
  #, fuzzy
5873
+ #| msgid "Enable Layers"
5874
+ msgid "OpenLayers"
5875
+ msgstr "Включи слоеве"
 
 
 
 
 
 
 
 
 
5876
 
5877
+ #: ../html/settings-page.html.php:47
5878
+ #: ../includes/class.maps-engine-dialog.php:119
5879
+ #, fuzzy
5880
+ #| msgid "WP Google Maps"
5881
+ msgid "Google Maps"
5882
+ msgstr "WP Google Maps"
 
 
 
 
5883
 
5884
+ #: ../html/settings-page.html.php:96
5885
+ msgid "User Interface Style"
5886
+ msgstr ""
 
 
 
 
 
 
5887
 
5888
+ #: ../html/settings-page.html.php:128 ../includes/legacy/settings-page.php:286
5889
  #, fuzzy
5890
+ msgid ""
5891
+ "Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
5892
+ "receiving jQuery related errors after updating to WordPress 4.5)"
5893
+ msgstr ""
5894
+ "Презапис сегашното jQuery с версия 1.8.3 (Отметни това ако получаваш jQuery "
5895
+ "свързани грешки)"
5896
 
5897
+ #: ../html/settings-page.html.php:142
5898
+ msgid "Use FontAwesome"
5899
  msgstr ""
5900
 
5901
+ #: ../html/settings-page.html.php:155
5902
+ msgid "Tile Server URL"
 
5903
  msgstr ""
5904
 
5905
+ #: ../html/settings-page.html.php:163 ../html/tile-server-fieldset.html.php:16
5906
+ msgid "OpenStreetMap"
 
5907
  msgstr ""
5908
 
5909
+ #: ../html/settings-page.html.php:172 ../html/tile-server-fieldset.html.php:25
5910
+ msgid "Wikimedia Maps"
 
5911
  msgstr ""
5912
 
5913
+ #: ../html/settings-page.html.php:179 ../html/tile-server-fieldset.html.php:32
5914
+ msgid "OpenCycleMap"
5915
+ msgstr ""
 
 
5916
 
5917
+ #: ../html/settings-page.html.php:186 ../html/tile-server-fieldset.html.php:39
5918
+ msgid "Humanitarian"
5919
  msgstr ""
5920
 
5921
+ #: ../html/settings-page.html.php:193 ../html/tile-server-fieldset.html.php:46
5922
+ msgid "Mapnik OSM B&amp;W"
5923
+ msgstr ""
 
5924
 
5925
+ #: ../html/settings-page.html.php:200 ../html/tile-server-fieldset.html.php:53
5926
+ msgid "Mapnik OSM No Labels"
5927
+ msgstr ""
5928
 
5929
+ #: ../html/settings-page.html.php:207 ../html/tile-server-fieldset.html.php:60
5930
+ msgid "Stamen Toner"
5931
+ msgstr ""
 
 
 
5932
 
5933
+ #: ../html/settings-page.html.php:214 ../html/tile-server-fieldset.html.php:67
5934
+ msgid "Stamen Watercolor"
5935
+ msgstr ""
5936
 
5937
+ #: ../html/settings-page.html.php:221 ../html/tile-server-fieldset.html.php:74
5938
+ #, fuzzy
5939
+ #| msgid "Transit Layer"
5940
+ msgid "Transport Map"
5941
+ msgstr "Слой транзит"
5942
 
5943
+ #: ../html/settings-page.html.php:228 ../html/tile-server-fieldset.html.php:81
5944
+ msgid "Thunderforest Landscape"
5945
+ msgstr ""
 
5946
 
5947
+ #: ../html/settings-page.html.php:235 ../html/tile-server-fieldset.html.php:88
5948
+ msgid "Thunderforest Outdoors"
5949
+ msgstr ""
 
 
5950
 
5951
+ #: ../html/settings-page.html.php:242 ../html/tile-server-fieldset.html.php:95
5952
+ msgid "Öpnvkarte"
5953
+ msgstr ""
5954
 
5955
+ #: ../html/settings-page.html.php:249 ../html/tile-server-fieldset.html.php:102
5956
+ msgid "OpenPtMap"
5957
+ msgstr ""
5958
 
5959
+ #: ../html/settings-page.html.php:255 ../html/tile-server-fieldset.html.php:108
5960
+ msgid "Carto Light (Positron)"
5961
+ msgstr ""
5962
 
5963
+ #: ../html/settings-page.html.php:262 ../html/tile-server-fieldset.html.php:115
5964
+ msgid "Carto Dark (Dark Matter)"
5965
+ msgstr ""
5966
 
5967
+ #: ../html/settings-page.html.php:268 ../html/tile-server-fieldset.html.php:121
5968
+ msgid "Klokantech 3d"
5969
+ msgstr ""
 
5970
 
5971
+ #: ../html/settings-page.html.php:274 ../html/tile-server-fieldset.html.php:127
5972
+ msgid "Caltopo"
5973
+ msgstr ""
 
5974
 
5975
+ #: ../html/settings-page.html.php:283
5976
+ msgid "Load Maps Engine API"
 
 
 
5977
  msgstr ""
 
 
5978
 
5979
+ #: ../html/settings-page.html.php:315
5980
+ msgid "Always include engine API on pages"
5981
+ msgstr ""
 
5982
 
5983
+ #: ../html/settings-page.html.php:320
5984
+ msgid "Always exclude engine API on pages"
5985
+ msgstr ""
 
5986
 
5987
+ #: ../html/settings-page.html.php:325
5988
+ msgid "Prevent other plugins and theme loading API"
5989
+ msgstr ""
 
5990
 
5991
+ #: ../html/settings-page.html.php:332
5992
+ msgid "Admin"
5993
+ msgstr ""
 
5994
 
5995
+ #: ../html/settings-page.html.php:333
5996
  #, fuzzy
5997
+ #| msgid "Edit"
5998
+ msgid "Editor"
5999
+ msgstr "Промени"
6000
 
6001
+ #: ../html/settings-page.html.php:334
6002
+ msgid "Author"
6003
+ msgstr ""
6004
 
6005
+ #: ../html/settings-page.html.php:335
6006
+ msgid "Contributor"
6007
+ msgstr ""
6008
 
6009
+ #: ../html/settings-page.html.php:336
6010
+ msgid "Subscriber"
6011
+ msgstr ""
 
 
6012
 
6013
+ #: ../html/settings-page.html.php:358
6014
+ msgid "Hover"
6015
+ msgstr ""
 
6016
 
6017
+ #: ../html/settings-page.html.php:378
6018
+ msgid ""
6019
+ "Add Beautiful Marker Listings</a> to your maps with the Pro version for only "
6020
+ "$39.99 once off. Support and updates included forever."
6021
+ msgstr ""
6022
 
6023
+ #: ../html/settings-page.html.php:400
6024
+ msgid "API Keys"
6025
+ msgstr ""
 
 
 
6026
 
6027
+ #: ../html/settings-page.html.php:403 ../includes/legacy/settings-page.php:490
6028
+ #, fuzzy
6029
+ msgid "Google Maps API Key (required)"
6030
+ msgstr "Google API Key (задължително)"
6031
 
6032
+ #: ../html/settings-page.html.php:409
6033
+ msgid ""
6034
+ "This API key can be obtained from the <a href='https://console.developers."
6035
+ "google.com' target='_BLANK'>Google Developers Console</a>. Our <a "
6036
+ "href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
6037
+ "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
6038
+ "this."
6039
+ msgstr ""
6040
 
6041
+ #: ../html/settings-page.html.php:420 ../includes/legacy/settings-page.php:502
6042
+ msgid "Marker Data Location"
6043
+ msgstr "Marker данни локация"
6044
 
6045
+ #: ../html/settings-page.html.php:507
6046
+ #, fuzzy
6047
+ #| msgid "Other settings"
6048
+ msgid "Other Caching"
6049
+ msgstr "Други настройки"
6050
 
6051
+ #: ../html/settings-page.html.php:511 ../includes/legacy/settings-page.php:564
6052
+ msgid "Flush Geocode Cache"
6053
+ msgstr ""
6054
 
6055
+ #: ../html/settings-page.html.php:514
6056
+ msgid "Flush"
6057
+ msgstr ""
6058
 
6059
+ #: ../html/settings-page.html.php:518
6060
+ #, fuzzy
6061
+ #| msgid "Map Settings"
6062
+ msgid "Miscellaneous Settings"
6063
+ msgstr "Настройки карта"
6064
 
6065
+ #: ../html/settings-page.html.php:555
6066
+ msgid ""
6067
+ "Always rebuilds combined script files and script cache, does not load "
6068
+ "combined and minified scripts. Includes database query SQL with REST API "
6069
+ "responses."
6070
+ msgstr ""
6071
 
6072
+ #: ../html/theme-panel.html.php:5
6073
+ #, fuzzy
6074
+ #| msgid "Theme selection"
6075
+ msgid "Theme Presets"
6076
+ msgstr "Избор на тема"
6077
 
6078
+ #: ../html/theme-panel.html.php:27 ../html/theme-panel.html.php:49
6079
+ #: ../html/theme-panel.html.php:71 ../html/theme-panel.html.php:93
6080
+ #: ../html/theme-panel.html.php:115 ../html/theme-panel.html.php:137
6081
+ #: ../html/theme-panel.html.php:159 ../html/theme-panel.html.php:181
6082
+ #: ../html/theme-panel.html.php:203 ../html/theme-panel.html.php:225
6083
+ #, fuzzy
6084
+ #| msgid "Select"
6085
+ msgid "Select Preset"
6086
+ msgstr "Избери"
6087
 
6088
+ #: ../html/theme-panel.html.php:58
6089
+ #, fuzzy
6090
+ msgid "Apple Maps"
6091
+ msgstr "Запиши карта"
6092
 
6093
+ #: ../html/theme-panel.html.php:80
6094
+ msgid "Grayscale"
6095
+ msgstr ""
6096
 
6097
+ #: ../html/theme-panel.html.php:102
6098
+ msgid "Pale"
6099
+ msgstr ""
6100
 
6101
+ #: ../html/theme-panel.html.php:124
6102
+ msgid "Red"
6103
+ msgstr ""
6104
 
6105
+ #: ../html/theme-panel.html.php:146
6106
+ msgid "Dark Grey"
6107
+ msgstr ""
6108
 
6109
+ #: ../html/theme-panel.html.php:168
6110
+ #, fuzzy
6111
+ #| msgid "Monotone"
6112
+ msgid "Monochrome"
6113
+ msgstr "Монотон"
6114
 
6115
+ #: ../html/theme-panel.html.php:190
6116
+ msgid "Old Fashioned"
6117
+ msgstr ""
6118
 
6119
+ #: ../html/theme-panel.html.php:212
6120
+ #, fuzzy
6121
+ #| msgid "Right Top"
6122
+ 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:242
6130
+ msgid "Customise Theme"
6131
+ msgstr ""
 
 
 
6132
 
6133
+ #: ../html/theme-panel.html.php:248
6134
+ msgid "Open Theme Editor"
6135
+ msgstr ""
 
6136
 
6137
+ #: ../html/theme-panel.html.php:258
6138
+ msgid "Feature"
6139
+ msgstr ""
 
6140
 
6141
+ #: ../html/theme-panel.html.php:272
6142
+ msgid "Visibility"
6143
+ msgstr ""
 
6144
 
6145
+ #: ../html/theme-panel.html.php:278
6146
+ msgid "Inherit"
6147
+ msgstr ""
 
 
 
6148
 
6149
+ #: ../html/theme-panel.html.php:283
6150
+ msgid "Off"
6151
+ msgstr ""
 
6152
 
6153
+ #: ../html/theme-panel.html.php:288
6154
+ msgid "Simplified"
6155
+ msgstr ""
 
6156
 
6157
+ #: ../html/theme-panel.html.php:293
6158
+ msgid "On"
6159
  msgstr ""
6160
 
6161
+ #: ../html/theme-panel.html.php:302
6162
+ msgid "Label"
6163
+ msgstr ""
 
6164
 
6165
+ #: ../html/theme-panel.html.php:310
6166
  #, fuzzy
6167
+ #| msgid "Height"
6168
+ msgid "Weight"
6169
+ msgstr "Височина"
6170
 
6171
+ #: ../html/theme-panel.html.php:322
6172
+ msgid "Gamma"
6173
+ msgstr ""
 
6174
 
6175
+ #: ../html/theme-panel.html.php:331
6176
  #, fuzzy
6177
+ msgid "Saturation"
6178
+ msgstr "Marker данни локация"
6179
 
6180
+ #: ../html/theme-panel.html.php:340
6181
  #, fuzzy
6182
+ #| msgid "Line Thickness"
6183
+ msgid "Lightness"
6184
+ msgstr "Дебелина на линия"
6185
 
6186
+ #: ../html/theme-panel.html.php:352 ../legacy-core.php:5657
6187
+ #: ../legacy-core.php:5781 ../legacy-core.php:5911 ../legacy-core.php:6006
6188
  #, fuzzy
6189
+ msgid "Color"
6190
+ msgstr "Цвят на линк"
6191
 
6192
+ #: ../html/theme-panel.html.php:364
6193
+ msgid "Hue"
6194
+ msgstr ""
6195
+
6196
+ #: ../html/theme-panel.html.php:375
6197
+ msgid "Invert Lightness"
6198
+ msgstr ""
6199
 
6200
+ #: ../html/theme-panel.html.php:401
6201
  #, fuzzy
6202
+ #| msgid "Themes"
6203
+ msgid "Theme Data"
6204
+ msgstr "Теми"
6205
 
6206
+ #: ../html/tile-server-fieldset.html.php:7
6207
+ msgid "Tile Server URL:"
6208
  msgstr ""
6209
 
6210
+ #: ../includes/class.auto-loader.php:196
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"
6220
+ "\tI agree for my personal data to be processed by <span name="
6221
+ "\"wpgmza_gdpr_company_name\"></span>, for the purpose(s) of <span name="
6222
+ "\"wpgmza_gdpr_retention_purpose\"></span>.\n"
6223
+ "</p>\n"
6224
+ "\n"
6225
+ "<p>\t\n"
6226
+ "\tI agree for my personal data, provided via map API calls, to be processed "
6227
+ "by the API provider, for the purposes of geocoding (converting addresses to "
6228
+ "coordinates), reverse geocoding and\tgenerating directions.\n"
6229
+ "</p>\n"
6230
+ "<p>\n"
6231
+ "\tSome visual components of WP Google Maps use 3rd party libraries which are "
6232
+ "loaded over the network. At present the libraries are Google Maps, Open "
6233
+ "Street Map, jQuery DataTables and FontAwesome. When loading resources over a "
6234
+ "network, the 3rd party server will receive your IP address and User Agent "
6235
+ "string amongst other details. Please refer to the Privacy Policy of the "
6236
+ "respective libraries for details on how they use data and the process to "
6237
+ "exercise your rights under the GDPR regulations.\n"
6238
+ "</p>\n"
6239
+ "<p>\n"
6240
+ "\tWP Google Maps uses jQuery DataTables to display sortable, searchable "
6241
+ "tables, such as that seen in the Advanced Marker Listing and on the Map Edit "
6242
+ "Page. jQuery DataTables in certain circumstances uses a cookie to save and "
6243
+ "later recall the \"state\" of a given table - that is, the search term, sort "
6244
+ "column and order and current page. This data is held in local storage and "
6245
+ "retained until this is cleared manually. No libraries used by WP Google Maps "
6246
+ "transmit this information.\n"
6247
+ "</p>\n"
6248
+ "<p>\n"
6249
+ "\tPlease <a href=\"https://developers.google.com/maps/terms\">see here</a> "
6250
+ "and <a href=\"https://maps.google.com/help/terms_maps.html\">here</a> for "
6251
+ "Google's terms. Please also see <a href=\"https://policies.google.com/"
6252
+ "privacy?hl=en-GB&amp;gl=uk\">Google's Privacy Policy</a>. We do not send the "
6253
+ "API provider any personally identifying information, or information that "
6254
+ "could uniquely identify your device.\n"
6255
+ "</p>\n"
6256
+ "<p>\n"
6257
+ "\tWhere this notice is displayed in place of a map, agreeing to this notice "
6258
+ "will store a cookie recording your agreement so you are not prompted again.\n"
6259
+ "</p>"
6260
+ msgstr ""
6261
 
6262
+ #: ../includes/class.gdpr-compliance.php:148
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:159
6270
+ msgid "I agree"
6271
+ msgstr ""
 
 
6272
 
6273
+ #: ../includes/class.map.php:213
6274
+ #, fuzzy
6275
+ #| msgid "WP Google Maps"
6276
+ msgid "WP Google Maps:"
6277
+ msgstr "WP Google Maps"
6278
 
6279
+ #: ../includes/class.map.php:216
6280
+ #, php-format
6281
  msgid ""
6282
+ "The plugin couldn't find the directory %s, which is the directory your "
6283
+ "settings specify to use for XML caching. Please make sure the directory "
6284
+ "exists, and that you assign file permissions of 755 to this directory."
6285
  msgstr ""
 
6286
 
6287
+ #: ../includes/class.maps-engine-dialog.php:57
6288
+ msgid "Choose a maps engine"
6289
+ msgstr ""
6290
 
6291
+ #: ../includes/class.maps-engine-dialog.php:80
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:127
6306
+ msgid "Full functionality"
6307
+ msgstr ""
 
6308
 
6309
+ #: ../includes/class.maps-engine-dialog.php:133
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:141
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:159
6322
+ #, fuzzy
6323
+ #| msgid "Select"
6324
+ msgid "Select Engine"
6325
+ msgstr "Избери"
6326
 
6327
+ #: ../includes/class.plugin.php:127
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:136
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:145
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:487
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 "
6351
+ "relevant add-ons. We recommend that you use at least PHP 5.6. Technical "
6352
+ "details are as follows: "
6353
+ msgstr ""
6354
 
6355
+ #: ../includes/class.rest-api.php:547 ../includes/class.rest-api.php:561
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"
6365
+ "\t\t\t\t\t\t\t\t<strong>WP Google Maps:</strong> Failed to build combined "
6366
+ "script file, the resulting file would be blank.\n"
6367
+ "\t\t\t\t\t\t\t</p>\n"
6368
+ "\t\t\t\t\t\t\t<p>\n"
6369
+ "\t\t\t\t\t\t\t\t<strong>Developers:</strong> Please check that the file is "
6370
+ "writable and that all script dependencies are resolved.\n"
6371
+ "\t\t\t\t\t\t\t</p>\n"
6372
+ "\t\t\t\t\t\t\t<p>\n"
6373
+ "\t\t\t\t\t\t\t\t<strong>Users:</strong> Please disable \"Developer Mode\" in "
6374
+ "Maps &rarr; Settings &rarr; Advanced.\n"
6375
+ "\t\t\t\t\t\t\t</p>\n"
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 "
6382
+ "will need to secure your site with an SSL certificate (HTTPS) or this "
6383
+ "feature may not work for your visitors"
6384
+ msgstr ""
6385
+
6386
+ #: ../includes/class.strings.php:22
6387
+ msgid "Use my location"
6388
+ msgstr "Използвай моята позиция"
6389
+
6390
+ #: ../includes/class.strings.php:24
6391
+ msgid ""
6392
+ "The map cannot be initialized because the Maps API has not been loaded. "
6393
+ "Please check your settings."
6394
+ msgstr ""
6395
+
6396
+ #: ../includes/class.strings.php:25
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.<br /><br />Alternatively, choose the Open "
6401
+ "Layers engine to avoid getting an API key."
6402
+ msgstr ""
6403
+
6404
+ #: ../includes/class.strings.php:28
6405
+ msgid "API Dashboard"
6406
+ msgstr ""
6407
 
6408
+ #: ../includes/class.strings.php:29
6409
+ msgid "Verify Project"
6410
+ msgstr ""
 
 
 
6411
 
6412
+ #: ../includes/class.strings.php:31
6413
+ #, fuzzy
6414
+ #| msgid "Hide the Address"
6415
+ msgid "Failed to get address"
6416
+ msgstr "Скрий адреса"
6417
 
6418
+ #: ../includes/class.strings.php:32
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:34
6424
+ #, fuzzy
6425
+ #| msgid "My location"
6426
+ msgid "My Location"
6427
+ msgstr "Моето местоположение"
6428
 
6429
+ #: ../includes/class.strings.php:42
6430
+ #, fuzzy
6431
+ #| msgid "Hide the address field"
6432
+ msgid "No address specified"
6433
+ msgstr "Скрий поле адрес"
6434
 
6435
+ #: ../includes/class.strings.php:44 ../legacy-core.php:4190
6436
+ msgid "Save Marker"
6437
+ msgstr "Запиши маркер"
 
6438
 
6439
+ #: ../includes/class.strings.php:45
6440
+ #, fuzzy
6441
+ #| msgid "Please explain"
6442
+ msgid "Please Wait..."
6443
+ msgstr "Моля, опиши"
6444
 
6445
+ #: ../includes/class.strings.php:46
6446
+ msgid "No results found for this address"
6447
+ msgstr ""
 
6448
 
6449
+ #: ../includes/class.strings.php:47
6450
+ msgid "Couldn't find this address"
6451
+ msgstr ""
 
6452
 
6453
+ #: ../includes/class.strings.php:48
6454
+ msgid "Geocode failed due to technical reasons"
6455
+ msgstr ""
 
6456
 
6457
+ #: ../includes/class.strings.php:50
6458
+ msgid "You must check the GDPR consent box to continue"
6459
+ msgstr ""
6460
 
6461
+ #: ../includes/class.strings.php:52
6462
+ msgid "No GPS coordinates found"
6463
+ msgstr ""
6464
 
6465
+ #: ../includes/class.strings.php:55
6466
+ msgid "Unknown directions service status"
6467
+ msgstr ""
6468
+
6469
+ #: ../includes/class.strings.php:56
6470
  #, fuzzy
6471
+ msgid "Please fill out both the \"from\" and \"to\" fields"
6472
+ msgstr "оля, попълни и двете полета 'от' и 'до'"
6473
 
6474
+ #: ../includes/class.strings.php:58
6475
+ msgid "No picture found"
 
 
 
 
6476
  msgstr ""
6477
 
6478
+ #: ../includes/class.strings.php:59
 
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:61
6485
+ #, fuzzy
6486
+ #| msgid "Upload File"
6487
+ msgid "Upload Complete"
6488
+ msgstr "качи файл"
6489
 
6490
+ #: ../includes/class.strings.php:62
6491
+ #, fuzzy
6492
+ #| msgid "Upload File"
6493
+ msgid "Uploading file"
6494
+ msgstr "качи файл"
6495
+
6496
+ #: ../includes/class.strings.php:63
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:71
6503
+ msgid "Requires WP Google Maps - Gold add-on 5.0.0 or above"
6504
  msgstr ""
6505
 
6506
+ #: ../includes/class.strings.php:73
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:75
6513
+ msgid "Invalid theme data"
6514
  msgstr ""
6515
 
6516
+ #: ../includes/class.strings.php:77
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:79
6523
+ msgid "Some interactions are disabled."
6524
  msgstr ""
6525
 
6526
+ #: ../includes/class.strings.php:80
6527
+ msgid "Interactions Enabled"
6528
  msgstr ""
6529
 
6530
+ #: ../includes/class.strings.php:81
6531
  #, fuzzy
6532
+ #| msgid "Enable Directions?"
6533
+ msgid "Re-Enable Interactions"
6534
+ msgstr "Включи упътвания?"
6535
 
6536
+ #: ../includes/class.strings.php:83
6537
+ msgid "Use two fingers to move the map"
6538
  msgstr ""
6539
 
6540
+ #: ../includes/class.strings.php:84
6541
+ msgid "Use ctrl + scroll to zoom the map"
6542
  msgstr ""
6543
 
6544
+ #: ../includes/class.strings.php:85
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:86
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/legacy/settings-page.php:359
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 "Edit this marker location"
6595
+ msgstr "Промяна маркер локация"
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
+ #: ../legacy-core.php:528
6617
+ #, fuzzy
6618
+ #| msgid "Pro Version"
6619
+ msgid "Get Pro Version"
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>"
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."
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 "
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"
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
+ #: ../legacy-core.php:2752
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
  "We have detected a conflict between your current theme's version and our "
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"
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 "
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
+ #: ../legacy-core.php:3550
6830
+ msgid "Enable Directions?"
6831
+ msgstr "Включи упътвания?"
6832
+
6833
+ #: ../legacy-core.php:3719
6834
  msgid "Query string"
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
+ #: ../legacy-core.php:3835
6862
+ #, fuzzy, php-format
6863
+ #| msgid ""
6864
+ #| "Get the rest of these advanced features with the Pro version for only <a "
6865
+ #| "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
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
+ #: ../legacy-core.php:3872
6879
  msgid "Read data directly from your Fusion Table."
6880
  msgstr "Прочети данните директно от твоята Fusion таблица."
6881
 
6882
+ #: ../legacy-core.php:3880
6883
+ msgid "Enable Marker Listing with the <a href=\""
 
 
 
 
6884
  msgstr ""
 
 
 
 
6885
 
6886
+ #: ../legacy-core.php:3886
6887
  msgid "List Markers"
6888
  msgstr "Списък маркери"
6889
 
6890
+ #: ../legacy-core.php:3891
6891
  msgid "Advanced table with real time search and filtering"
6892
  msgstr "Специална таблица с риъл тайм сърч и филтриране"
6893
 
6894
+ #: ../legacy-core.php:3892
6895
  msgid "beta"
6896
  msgstr "бета"
6897
 
6898
+ #: ../legacy-core.php:3963
6899
+ msgid "Basic"
6900
+ msgstr "Основна"
6901
+
6902
+ #: ../legacy-core.php:3964
6903
+ msgid "Show a basic list of your markers"
6904
+ msgstr "Покажи основен списък на твоите маркери"
6905
+
6906
+ #: ../legacy-core.php:3973
6907
+ msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
6908
+ msgstr "Красив, риспонсив, mobile-friendly въртележка с маркери"
6909
+
6910
+ #: ../legacy-core.php:3981
6911
+ msgid "Tabular"
6912
+ msgstr "Табуларен"
6913
+
6914
+ #: ../legacy-core.php:3982
6915
+ msgid "Advanced, tabular marker listing functionality with real time filtering"
6916
+ msgstr "Специален, табуларен маркер с риъл тайм сърч и филтриране"
6917
+
6918
+ #: ../legacy-core.php:3995
6919
+ #, php-format
6920
+ msgid ""
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
+ #: ../legacy-core.php:4006
6929
+ #, fuzzy
6930
+ #| msgid "Create custom routes or outlines using polylines"
6931
+ msgid "Create custom markers with detailed info windows"
6932
+ msgstr "Създай къстъм пътища или очертания с полиномите"
6933
+
6934
+ #: ../legacy-core.php:4007
6935
+ #, fuzzy
6936
+ #| msgid ""
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
+ #: ../legacy-core.php:4016
6947
+ msgid ""
6948
+ "Allow your visitors to get directions to your markers. Either use their "
6949
+ "location as the starting point or allow them to type in an address."
6950
+ msgstr ""
6951
+
6952
+ #: ../legacy-core.php:4025
6953
+ #, fuzzy
6954
+ msgid "Create as many maps as you like."
6955
+ msgstr "Създай маркер категории"
6956
+
6957
+ #: ../legacy-core.php:4034
6958
+ msgid "Choose between three methods of listing your markers."
6959
+ msgstr ""
6960
+
6961
+ #: ../legacy-core.php:4042
6962
+ #, fuzzy
6963
+ #| msgid "Add detailed information to your markers!"
6964
+ msgid "Add categories to your markers"
6965
+ msgstr "Добави детайлна информация към твоите маркери!"
6966
+
6967
+ #: ../legacy-core.php:4043
6968
+ msgid ""
6969
+ "Create and assign categories to your markers which can then be filtered on "
6970
+ "your map."
6971
+ msgstr ""
6972
+
6973
+ #: ../legacy-core.php:4051
6974
+ #, fuzzy
6975
+ #| msgid "Advanced Options"
6976
+ msgid "Advanced options"
6977
+ msgstr "Специални опции"
6978
+
6979
+ #: ../legacy-core.php:4052
6980
+ msgid ""
6981
+ "Enable advanced options such as showing your visitor's location, marker "
6982
+ "sorting, bicycle layers, traffic layers and more!"
6983
+ msgstr ""
6984
+
6985
+ #: ../legacy-core.php:4060
6986
+ msgid "Import / Export"
6987
+ msgstr ""
6988
+
6989
+ #: ../legacy-core.php:4061
6990
+ msgid ""
6991
+ "Export your markers to a CSV file for quick and easy editing. Import large "
6992
+ "quantities of markers at once."
6993
+ msgstr ""
6994
+
6995
+ #: ../legacy-core.php:4069
6996
+ msgid "Add KML & Fusion Tables"
6997
+ msgstr ""
6998
+
6999
+ #: ../legacy-core.php:4070
7000
+ msgid "Add your own KML layers or Fusion Table data to your map"
7001
+ msgstr ""
7002
+
7003
+ #: ../legacy-core.php:4078
7004
+ #, fuzzy
7005
+ msgid "Polygons and Polylines"
7006
+ msgstr "Полином данни"
7007
+
7008
+ #: ../legacy-core.php:4079
7009
+ msgid ""
7010
+ "Add custom polygons and polylines to your map by simply clicking on the map. "
7011
+ "Perfect for displaying routes and serviced areas."
7012
+ msgstr ""
7013
+
7014
+ #: ../legacy-core.php:4087
7015
+ #, fuzzy
7016
+ #| msgid "Support"
7017
+ msgid "Amazing Support"
7018
+ msgstr "Съпорт"
7019
+
7020
+ #: ../legacy-core.php:4088
7021
+ msgid ""
7022
+ "We pride ourselves on providing quick and amazing support. <a target=\"_BLANK"
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-core.php:4096
7028
+ #, fuzzy
7029
+ #| msgid "Pro Upgrade"
7030
+ msgid "Easy Upgrade"
7031
+ msgstr "Pro ъпгрейд"
7032
+
7033
+ #: ../legacy-core.php:4097
7034
+ msgid ""
7035
+ "You'll receive a download link immediately. Simply upload and activate the "
7036
+ "Pro plugin to your WordPress admin area and you're done!"
7037
+ msgstr ""
7038
+
7039
+ #: ../legacy-core.php:4105
7040
+ msgid "Free updates and support forever"
7041
+ msgstr ""
7042
+
7043
+ #: ../legacy-core.php:4106
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-core.php:4113
7050
+ msgid "Upgrade now for only $39.99 once off"
7051
+ msgstr ""
7052
 
7053
+ #: ../legacy-core.php:4114
7054
+ #, fuzzy
7055
+ #| msgid "Pro Upgrade"
7056
+ msgid "Upgrade Now"
7057
+ msgstr "Pro ъпгрейд"
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-core.php:4119
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-core.php:4145 ../legacy-core.php:4211
 
7073
  msgid "Advanced markers"
7074
  msgstr "Специални маркери"
7075
 
7076
+ #: ../legacy-core.php:4146
7077
  msgid "Polygon"
7078
  msgstr "Полигон"
7079
 
7080
+ #: ../legacy-core.php:4160
7081
+ msgid "Or right click on the map"
7082
+ msgstr "или десен клик върху картата"
7083
+
7084
+ #: ../legacy-core.php:4190
7085
+ msgid "Saving"
7086
+ msgstr "Запазване"
7087
+
7088
+ #: ../legacy-core.php:4193
7089
+ msgid "Remember to save your marker"
7090
+ msgstr "Не забравяй да запишеш маркера си"
7091
+
7092
+ #: ../legacy-core.php:4199
7093
  msgid "Please add the current marker before trying to add another marker"
7094
  msgstr "Моля, добави сегашния маркер преди да опитваш да добавиш друг"
7095
 
7096
+ #: ../legacy-core.php:4213
7097
  msgid "Add advanced markers"
7098
  msgstr "Добави специални маркери"
7099
 
7100
+ #: ../legacy-core.php:4213
7101
  msgid "with the Pro version"
7102
  msgstr "с Pro версия"
7103
 
7104
+ #: ../legacy-core.php:4249
7105
+ msgid "Pic URL"
7106
+ msgstr "Снимка URL"
7107
+
7108
+ #: ../legacy-core.php:4257
7109
+ msgid "My custom field:"
7110
+ msgstr ""
7111
+
7112
+ #: ../legacy-core.php:4267
7113
  msgid "Select"
7114
  msgstr "Избери"
7115
 
7116
+ #: ../legacy-core.php:4312
7117
  msgid "Add dynamic heatmap data"
7118
  msgstr ""
7119
 
7120
+ #: ../legacy-core.php:4312
7121
  #, fuzzy
7122
  msgid "with the Pro version."
7123
  msgstr "с Pro версия"
7124
 
7125
+ #: ../legacy-core.php:4313
7126
  #, fuzzy
7127
  msgid "View a demo."
7128
  msgstr "Виж всички документи."
7129
 
7130
+ #: ../legacy-core.php:4322 ../legacy-core.php:4434
 
7131
  msgid "The map could not load."
7132
  msgstr "Картата не може да бъде заредена."
7133
 
7134
+ #: ../legacy-core.php:4322
7135
  msgid ""
7136
  "This is normally caused by a conflict with another plugin or a JavaScript "
7137
  "error that is preventing our plugin's Javascript from executing. Please try "
7141
  "грешка, която спира изпълнението на плъгина. Моля, опитай изключи всички "
7142
  "плъгини един по един и виж дали проблема остава."
7143
 
7144
+ #: ../legacy-core.php:4328
7145
+ msgid "Remember to save your map!"
7146
+ msgstr "Не забравяй да запишеш картата си!"
7147
+
7148
+ #: ../legacy-core.php:4351
7149
  msgid "Add detailed information to your markers!"
7150
  msgstr "Добави детайлна информация към твоите маркери!"
7151
 
7152
+ #: ../legacy-core.php:4351 ../legacy-core.php:4357 ../legacy-core.php:4363
 
 
7153
  msgid "Add custom markers to your map!"
7154
  msgstr "Добави къстъм маркери към твоята карта!"
7155
 
7156
+ #: ../legacy-core.php:4352
7157
  msgid "Add detailed information to your markers for only"
7158
  msgstr "Добави детайлна информация към твоите маркери само за"
7159
 
7160
+ #: ../legacy-core.php:4352 ../legacy-core.php:4358 ../legacy-core.php:4364
 
 
 
 
 
 
 
 
7161
  msgid "here"
7162
  msgstr "тук"
7163
 
7164
+ #: ../legacy-core.php:4358
7165
  msgid ""
7166
  "Add different marker icons, or your own icons to make your map really stand "
7167
  "out!"
7169
  "Добави различни икони, или собствени икони за да направиш твоята карта "
7170
  "наистина готина!"
7171
 
7172
+ #: ../legacy-core.php:4364
7173
  msgid "Allow your visitors to get directions to your markers!"
7174
  msgstr "Позволи твоите потребители да получат упътвания до твоите маркери!"
7175
 
7176
+ #: ../legacy-core.php:4372
7177
+ msgid ""
7178
+ "Thank you for using <a href='https://www.wpgmaps.com'>WP Google Maps</a>! "
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:4374
7184
+ #, fuzzy
7185
+ #| msgid "WP Google Maps Error log"
7186
+ msgid "WP Google Maps is a product of <img src='"
7187
+ msgstr "WP Google Maps Error log"
7188
+
7189
+ #: ../legacy-core.php:4376
7190
+ msgid ""
7191
+ "Please refer to our <a href='https://www.wpgmaps.com/privacy-policy' "
7192
+ "target='_blank'>Privacy Policy</a> for information on Data Processing"
7193
+ msgstr ""
7194
+
7195
+ #: ../legacy-core.php:4408
7196
  msgid "Edit Marker Location"
7197
  msgstr "Промяна маркер локация"
7198
 
7199
+ #: ../legacy-core.php:4418
7200
  msgid "Marker Latitude"
7201
  msgstr "Маркер Latitude"
7202
 
7203
+ #: ../legacy-core.php:4422
7204
  msgid "Marker Longitude"
7205
  msgstr "Маркер Longitude"
7206
 
7207
+ #: ../legacy-core.php:4427
7208
  msgid "Save Marker Location"
7209
  msgstr "Запиши маркер позиция"
7210
 
7211
+ #: ../legacy-core.php:4428
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
  "Съвет: Използвай твоята мишла за да смениш позицията на маркера. Просто "
7217
  "кликни и извлачи до желаната позиция."
7218
 
7219
+ #: ../legacy-core.php:4434
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
  "остава \n"
7231
  "свържи се с nick@wpgmaps.com за съпорт.\""
7232
 
7233
+ #: ../legacy-core.php:4698
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:4935
7248
  msgid "in order for this plugin to work! Please see "
7249
  msgstr "за да работи този плъгин! Моля, виж"
7250
 
7251
+ #: ../legacy-core.php:4939
7252
  msgid "for help on how to do it."
7253
  msgstr "за помощ как се прави."
7254
 
7255
+ #: ../legacy-core.php:5249
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
  "WP Google Maps няма права на запис за локации на маркерите директория. Това "
7261
  "е задължително за да запази маркер данните. Моля CHMOD директория"
7262
 
7263
+ #: ../legacy-core.php:5249
7264
  msgid ""
7265
  " to 755 or 777, or change the directory in the Maps->Settings page. (Current "
7266
  "file permissions are "
7268
  "на 755 или 777, или смени директорията в Карти->Настройки страница. "
7269
  "(Сегашните файл премишънии са"
7270
 
7271
+ #: ../legacy-core.php:5324
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7272
  msgid "United States of America"
7273
  msgstr ""
7274
 
7275
+ #: ../legacy-core.php:5340
7276
  #, fuzzy
7277
  msgid "View the instruction video"
7278
  msgstr "Скрий линка упътвания"
7279
 
7280
+ #: ../legacy-core.php:5341
7281
  #, fuzzy
7282
  msgid "Read the documentation"
7283
  msgstr "Трябва ти помощ? Прочети документацията."
7284
 
7285
+ #: ../legacy-core.php:5342
7286
  msgid "Important Notification"
7287
  msgstr ""
7288
 
7289
+ #: ../legacy-core.php:5343
7290
  msgid "You can read more about that here."
7291
  msgstr ""
7292
 
7293
+ #: ../legacy-core.php:5344
7294
+ msgid "*ALL* Google Maps now require an API key to function."
7295
+ msgstr ""
7296
+
7297
+ #: ../legacy-core.php:5346
7298
+ msgid "Before creating a map please follow these steps:"
7299
  msgstr ""
7300
 
7301
+ #: ../legacy-core.php:5349
7302
+ msgid "Create an API key now"
7303
  msgstr ""
7304
 
7305
+ #: ../legacy-core.php:5352
7306
+ msgid "Paste your API key here and press save:"
7307
  msgstr ""
7308
 
7309
+ #: ../legacy-core.php:5353
7310
+ #, fuzzy
7311
+ msgid "paste your Google Maps JavaScript API Key here"
7312
+ msgstr "Google API Key (задължително)"
7313
+
7314
+ #: ../legacy-core.php:5360
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:5362
7321
  #, php-format
7322
  msgid "Need help? %s or %s."
7323
  msgstr ""
7324
 
7325
+ #: ../legacy-core.php:5421
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:5423
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"
7423
+ msgid "Quick Feedback"
7424
+ msgstr "Фийдбек"
7425
+
7426
+ #: ../lib/codecabin/deactivate-feedback-form.php:37
7427
+ msgid "If you would be kind enough, please tell us why you're deactivating?"
7428
+ msgstr ""
7429
+
7430
+ #: ../lib/codecabin/deactivate-feedback-form.php:38
7431
+ msgid "Please tell us which plugin?"
7432
+ msgstr ""
7433
 
7434
+ #: ../lib/codecabin/deactivate-feedback-form.php:39
7435
+ msgid "Please tell us the reason so we can improve the plugin"
7436
+ msgstr ""
7437
+
7438
+ #: ../lib/codecabin/deactivate-feedback-form.php:40
7439
+ msgid "Do not send my e-mail address with this feedback"
7440
+ msgstr ""
7441
+
7442
+ #: ../lib/codecabin/deactivate-feedback-form.php:42
7443
+ msgid "Please give us any feedback that could help us improve"
7444
+ msgstr ""
7445
+
7446
+ #: ../lib/codecabin/deactivate-feedback-form.php:45
7447
+ msgid "Skip &amp; Deactivate"
7448
+ msgstr ""
7449
+
7450
+ #: ../lib/codecabin/deactivate-feedback-form.php:46
7451
+ msgid "Submit &amp; Deactivate"
7452
+ msgstr ""
7453
+
7454
+ #: ../lib/codecabin/deactivate-feedback-form.php:47
7455
  #, fuzzy
7456
+ #| msgid "Please note"
7457
+ msgid "Please wait"
7458
+ msgstr "Моля да се има предвид"
7459
+
7460
+ #: ../lib/codecabin/deactivate-feedback-form.php:48
7461
+ msgid "Thank you!"
7462
+ msgstr ""
7463
+
7464
+ #: ../lib/codecabin/deactivate-feedback-form.php:56
7465
+ msgid "The plugin suddenly stopped working"
7466
+ msgstr ""
7467
+
7468
+ #: ../lib/codecabin/deactivate-feedback-form.php:57
7469
+ msgid "The plugin broke my site"
7470
+ msgstr ""
7471
+
7472
+ #: ../lib/codecabin/deactivate-feedback-form.php:58
7473
+ msgid "I don't need this plugin any more"
7474
+ msgstr ""
7475
+
7476
+ #: ../lib/codecabin/deactivate-feedback-form.php:59
7477
+ msgid "I found a better plugin"
7478
+ msgstr ""
7479
+
7480
+ #: ../lib/codecabin/deactivate-feedback-form.php:60
7481
+ msgid "It's a temporary deactivation, I'm troubleshooting"
7482
+ msgstr ""
7483
+
7484
+ #: ../wpGoogleMaps.php:1340
7485
+ msgid ""
7486
+ "The plugin cannot load due to syntax which is not supported in PHP 5.6 and "
7487
+ "below. The plugin could not implement a workaround successfully. We strongly "
7488
+ "recommend you use PHP 5.6 or above. Technical details are as follows: "
7489
+ msgstr ""
7490
+
7491
+ #: ../wpGoogleMaps.php:1379
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 "Включи намирач на магазини"
7501
 
 
7502
  #, fuzzy
7503
+ #~ msgid "Route Opacity"
7504
+ #~ msgstr "Непрозрачност на линията"
7505
 
 
7506
  #, fuzzy
7507
+ #~ msgid "Route Thickness"
7508
+ #~ msgstr "Дебелина на линия"
7509
 
7510
+ #~ msgid "Select a theme for your map"
7511
+ #~ msgstr "избери тема за картата ви"
 
7512
 
 
7513
  #, fuzzy
7514
+ #~ msgid "Paste your custom theme data here:"
7515
+ #~ msgstr "Пейст JSON данните тук"
7516
 
7517
+ #, fuzzy
7518
+ #~ msgid "Preview"
7519
+ #~ msgstr "Предишен"
7520
+
7521
+ #~ msgid ""
7522
+ #~ "Please ensure that \"show user's location\" is enabled in the \"Advanced "
7523
+ #~ "Settings\" tab."
7524
+ #~ msgstr ""
7525
+ #~ "\"Моля, увери се че \"покажи позиция на потребител\" е включена в "
7526
+ #~ "\"Допълнителни \" \n"
7527
+ #~ "\"настройки\" таба."
7528
 
 
7529
  #, fuzzy
7530
+ #~ msgid ""
7531
+ #~ "Get great map markers <a href='http://www.wpgmaps.com/marker-icons/' "
7532
+ #~ "target='_BLANK' title='Great Google Map Markers'>here</a>"
7533
+ #~ msgstr ""
7534
+ #~ "Вземи маркери за карти <a href='http://mapicons.nicolasmollet.com/' "
7535
+ #~ "target='_BLANK' title='Great Google Map Markers'>тук</a>"
7536
+
7537
+ #~ msgid "Format: http://www.domain.com"
7538
+ #~ msgstr "Формат: http://www.domain.com"
7539
+
7540
+ #~ msgid "and to credit him when doing so."
7541
+ #~ msgstr "и да го поздравите ако ги като ги ползвате"
7542
+
7543
+ #~ msgid "Show _MENU_ entries"
7544
+ #~ msgstr "Покажи _MENU_ entries"
7545
+
7546
+ #~ msgid "Nothing found - sorry"
7547
+ #~ msgstr "Нищо не е намерено - сори"
7548
+
7549
+ #~ msgid "Showing _START_ to _END_ of _TOTAL_ records"
7550
+ #~ msgstr "Показване _START_ to _END_ of _TOTAL_ записа"
7551
+
7552
+ #~ msgid "Showing 0 to 0 of 0 records"
7553
+ #~ msgstr "Показване 0 to 0 от 0 записи"
7554
+
7555
+ #~ msgid "(filtered from _MAX_ total records)"
7556
+ #~ msgstr "(filtered from _MAX_ total records)"
7557
+
7558
+ #~ msgid "First"
7559
+ #~ msgstr "Първи"
7560
+
7561
+ #~ msgid "Next"
7562
+ #~ msgstr "Следващ"
7563
+
7564
+ #~ msgid "Previous"
7565
+ #~ msgstr "Предишен"
7566
+
7567
+ #~ msgid ""
7568
+ #~ "Please ensure you have <strong>both</strong> the <strong>Basic</strong> "
7569
+ #~ "and <strong>Pro</strong> versions of WP Google Maps installed and "
7570
+ #~ "activated at the same time in order for the plugin to function correctly."
7571
+ #~ msgstr ""
7572
+ #~ "Моля, убеди се че имаш и <strong>двете</strong> <strong>Основен</"
7573
+ #~ "strong> и \n"
7574
+ #~ "<strong>Про</strong> версии на WP Google Maps инсталирани и активирани "
7575
+ #~ "едновременно за да работят коректно"
7576
 
 
7577
  #, fuzzy
7578
+ #~ msgid "Download Marker Data"
7579
+ #~ msgstr "Изтегли всички данни за маркери в CSV файл."
7580
 
 
7581
  #, fuzzy
7582
+ #~ msgid "Download Polygon Data"
7583
+ #~ msgstr "Данни полигон"
7584
 
7585
+ #~ msgid "Exporting and Importing your map markers"
7586
+ #~ msgstr "Експорт и импорт на твоите картови маркери"
7587
+
7588
+ #~ msgid ""
7589
+ #~ "WP Google Maps Pro has a diverse and wide range of features which may, "
7590
+ #~ "from time to time, run into conflicts with the thousands of themes and "
7591
+ #~ "other plugins on the market."
7592
+ #~ msgstr ""
7593
+ #~ "WP Google Maps Pro има широк спектър от екстри които може да доведат до "
7594
+ #~ "конфликти от време на време, влизат в конфликти със стотици теме и други "
7595
+ #~ "плъгини."
7596
 
 
7597
  #, fuzzy
7598
+ #~ msgid "Support desk"
7599
+ #~ msgstr "Съпорт"
7600
 
7601
+ #~ msgid "Error Log"
7602
+ #~ msgstr "Error Log"
 
7603
 
7604
+ #~ msgid ""
7605
+ #~ "Having issues? Perhaps something below can give you a clue as to what's "
7606
+ #~ "wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
7607
+ #~ 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 (задължително)"
7617
+
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 "
7627
+ #~ "the settings below.)"
7628
+ #~ msgstr ""
7629
+ #~ "(Timthumb подръжката ще бдъе спряна в следващата pro версия. Моля, "
7630
+ #~ "отметни тук и направи нужните промени в ползваните картинки в Настройки "
7631
+ #~ "по долу.)"
7632
+
7633
+ #~ msgid "5mi"
7634
+ #~ msgstr "5 миля"
7635
+
7636
+ #~ msgid "10mi"
7637
+ #~ msgstr "10 миля"
7638
+
7639
+ #~ msgid "25mi"
7640
+ #~ msgstr "25 миля"
7641
+
7642
+ #~ msgid "50mi"
7643
+ #~ msgstr "50 мили"
7644
+
7645
+ #~ msgid "75mi"
7646
+ #~ msgstr "75 мили"
7647
+
7648
+ #~ msgid "100mi"
7649
+ #~ msgstr "100 мили"
7650
+
7651
+ #~ msgid "150mi"
7652
+ #~ msgstr "150 мили"
7653
+
7654
+ #~ msgid "200mi"
7655
+ #~ msgstr "200 мили"
7656
+
7657
+ #~ msgid "300mi"
7658
+ #~ msgstr "300 мили"
7659
+
7660
+ #~ msgid "5km"
7661
+ #~ msgstr "5 км"
7662
+
7663
+ #~ msgid "10km"
7664
+ #~ msgstr "10 км"
7665
+
7666
+ #~ msgid "25km"
7667
+ #~ msgstr "25 км"
7668
+
7669
+ #~ msgid "50km"
7670
+ #~ msgstr "50 км"
7671
+
7672
+ #~ msgid "75km"
7673
+ #~ msgstr "75 км"
7674
+
7675
+ #~ msgid "100km"
7676
+ #~ msgstr "100 км"
7677
+
7678
+ #~ msgid "150km"
7679
+ #~ msgstr "150 км"
7680
+
7681
+ #~ msgid "200km"
7682
+ #~ msgstr "200 км"
7683
+
7684
+ #~ msgid "300km"
7685
+ #~ msgstr "300 км"
7686
+
7687
+ #~ msgid ""
7688
+ #~ "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
7689
+ #~ "target='_BLANK' title='Great Google Map Markers'>here</a>"
7690
+ #~ msgstr ""
7691
+ #~ "Вземи маркери за карти <a href='http://mapicons.nicolasmollet.com/' "
7692
+ #~ "target='_BLANK' title='Great Google Map Markers'>тук</a>"
7693
+
7694
+ #~ msgid "<em><small>No categories found</small></em>"
7695
+ #~ msgstr "<em><small>Няма намерени категории</small></em>"
7696
+
7697
+ #~ msgid "DOMDocument is not enabled"
7698
+ #~ msgstr "DOMDocument не е включено"
7699
+
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 "
7724
+ #~ "that could crash your browser. In order to edit your markers, you would "
7725
+ #~ "need to download the table in CSV format, edit it and re-upload it."
7726
+ #~ msgstr ""
7727
+ #~ "Има прекалено много маркери за да се ползва на живо тази функция. "
7728
+ #~ "максималното число за тази функционалност е 5000 маркера. Всичко над "
7729
+ #~ "може да крашне твоя браузер. За да промениш твоите маркери, ще ти трябва "
7730
+ #~ "за да свалиш таблицата в CSV формат, промени и пак качи."
7731
 
7732
  #~ msgid ""
7733
  #~ "Use the <a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/"
7738
  #~ "styledmaps/wizard/index.html' target='_BLANK'>Google Maps API Styled Map "
7739
  #~ "Wizard</a> за да вземеш твоите стилови настройки"
7740
 
 
 
 
 
 
 
7741
  #~ msgid "Weather Layer"
7742
  #~ msgstr "Слой време"
7743
 
7750
  #~ msgid "Cloud Layer"
7751
  #~ msgstr "Слой облак"
7752
 
 
 
 
7753
  #~ msgid ""
7754
  #~ "Dont have time to wait? Jump the queue with <a href='http://www.wpgmaps."
7755
  #~ "com/priority-support/' title='Priority Support' target='_BLANK'>priority "
languages/wp-google-maps-ca.po CHANGED
@@ -8,19 +8,15 @@ msgstr ""
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: Poedit 2.2.1\n"
11
- "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
12
  "X-Poedit-Basepath: .\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
  "Language: ca_ES\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-SearchPath-0: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
17
- "maps\n"
18
- "X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
19
- "maps-pro\n"
20
- "X-Poedit-SearchPath-2: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
21
- "maps-gold\n"
22
- "X-Poedit-SearchPath-3: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
23
- "maps-ugm\n"
24
 
25
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
26
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
@@ -147,9 +143,9 @@ msgstr "Desa"
147
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
148
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
149
  msgid ""
150
- "An Unexpected HTTP Error occurred during the API request.</p> <p>"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
151
  msgstr ""
152
- "Ha aparegut un error desconegut durant la petició d’API.</p> <p>"\" onclick=\"document.location.reload(); return false;\">Torna-ho a provar"a>"
153
 
154
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
155
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
@@ -310,7 +306,7 @@ msgstr "inclòs el complement professional"
310
 
311
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
312
  msgid ""
313
- "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."
314
  msgstr ""
315
  "Si us plau <a href='update-core.php'>actualitza la versió del teu WP Google "
316
  "Maps GOLD</a>. La versió actual de Gold no és compatible amb la versió "
@@ -729,9 +725,9 @@ msgstr "Puja una imatge"
729
 
730
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
731
  msgid ""
732
- "Get great map markers "target='_BLANK' title='Great Google Map Markers'>here</a>"
733
  msgstr ""
734
- "Aconsegueix grans marcadors "target='_BLANK' title='Great Google Map Markers'>aquí</a>"
735
 
736
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
737
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4851
@@ -849,11 +845,11 @@ msgstr "ID de la taula de fusió"
849
 
850
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
851
  msgid ""
852
- "Read data directly from your Fusion Table. For more information, see "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
  msgstr ""
856
- "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-"
857
  "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
858
  "maps-api.html</a>"
859
 
@@ -1444,7 +1440,7 @@ msgid ""
1444
  "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1445
  "the same time in order for the plugin to function correctly."
1446
  msgstr ""
1447
- "Assegureu-vos de tenir <strong>les dues</strong> versions <strong>Basic"strong> i <strong>Pro</strong> del WP Google Maps instal·lades i activades "
1448
  "al mateix temps perquè el connector funcioni correctament."
1449
 
1450
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
@@ -1523,7 +1519,7 @@ msgstr "Clau API de Google (obligatòria)"
1523
 
1524
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1525
  msgid ""
1526
- "You will need a Google Maps Geocode API key for this to work. See "href='https://developers.google.com/maps/documentation/geocoding/"
1527
  "#Limits'>Geocoding Documentation</a>"
1528
  msgstr ""
1529
  "Necessitareu una clau de l’API de Geocode de Google Maps perquè funcioni. "
@@ -1955,11 +1951,11 @@ msgstr "Clau API de Google Maps (opcional)"
1955
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
1956
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
1957
  msgid ""
1958
- "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/' "
1959
  "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
1960
  "this. "
1961
  msgstr ""
1962
- "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/' "
1963
  "target='_BLANK'>documentació</a> us pot ensenyar com obtenir-la. "
1964
 
1965
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
@@ -2607,9 +2603,9 @@ msgstr "Marcador de Categoria"
2607
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
2608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
2609
  msgid ""
2610
- "Get great map markers "target='_BLANK' title='Great Google Map Markers'>here</a>"
2611
  msgstr ""
2612
- "Aconsegueix grans marcadors "target='_BLANK' title='Great Google Map Markers'>aquí</a>"
2613
 
2614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
2615
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
@@ -3164,9 +3160,9 @@ msgstr "Crea tants marcadors com vulguis"
3164
 
3165
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
3166
  msgid ""
3167
- "Select from various "target='_BLANK'>map themes</a>, or make your own."
3168
  msgstr ""
3169
- "Selecciona un dels diferents "target='_BLANK'>mapes de temes</a>, o bé crea el teu propi tema."
3170
 
3171
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3172
  msgid "Support Desk"
@@ -3372,14 +3368,13 @@ msgstr "Ubicació de les dades del marcador"
3372
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
3373
  #, php-format
3374
  msgid ""
3375
- "<h3>We need your love!</h3><p>If you are enjoying our plugin, please "
3376
- "consider "\">reviewing WP Google Maps</a>. It would mean the world to us! If you are "
3377
- "experiencing issues with the plugin, please "\" class=\"button button-secondary\">contact us</a> and we will help you as "
3378
  "soon as humanly possible!</p>"
3379
  msgstr ""
3380
  "<h3>Necessitem la teva ajuda!</h3><p>Si t’agrada el nostre plugin, escriu "
3381
- "una opinió "\">sobre WP Google Maps</a>. Val molt per a nosaltres! Si tens algun "
3382
- "problema, si us plau, "button-secondary\">contacta’ns</a> i t’ajudarem tan aviat com sigui possible!"
3383
  "</p>"
3384
 
3385
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
@@ -3409,14 +3404,14 @@ msgstr "Assistent d’instal·lació"
3409
  msgid ""
3410
  "We have detected a conflict between your current theme's version and our "
3411
  "plugin. Should you be experiencing issues with your maps displaying, please "
3412
- "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 "
3413
  "need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to the "
3414
  "'<strong>rejected files</strong>' list in the CDN settings page</a> of W3 Total Cache"
3415
  msgstr ""
3416
  "Hem detectat que esteu usant el “W3 Total Cache” i que teniu el CDN "
3417
  "habilitat.<br /><br />Si voleu que apareguin els marcadors al vostre mapa, "
3418
  "heu d’afegir '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' a la "
3419
- "'<strong>llista d’arxius rebutjats</strong>' que trobareu a la pàgina "href='admin.php?page=w3tc_cdn#advanced'>d’ajustaments del CDN</a> o al caché "
3420
  "de W3 Total"
3421
 
3422
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
@@ -3449,11 +3444,11 @@ msgstr "Nivell de zoom màxim"
3449
 
3450
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
3451
  msgid ""
3452
- "Get the rest of these advanced features with the Pro version for only "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
3453
- "utm_source=plugin&utm_medium=link&utm_campaign­vanced\">$39.99 once off"a>. Support and updates included forever."
3454
  msgstr ""
3455
  "Aconsegueix la resta de funcions avançades amb la Versió Professional per "
3456
- "només "utm_source=plugin&utm_medium=link&utm_campaign­vanced\">39,99$ (un únic "
3457
  "pagament)</a>. Inclou el suport i actualitzacions per sempre."
3458
 
3459
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
@@ -3462,11 +3457,11 @@ msgstr "Llegiu les dades directament des de la vostra taula de fusió."
3462
 
3463
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
3464
  msgid ""
3465
- "Enable Marker Listing with the "professional-version/?"
3466
  "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
3467
  "for only $39.99 once off</a>. Support and updates included forever."
3468
  msgstr ""
3469
- "Permetre llistar els marcadors com el "purchase-professional-version/?"
3470
  "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Versió "
3471
  "Professional per només 39,99$ (un únic pagament)</a>. Inclou el suport i "
3472
  "actualitzacions per sempre."
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
  "X-Generator: Poedit 2.2.1\n"
 
11
  "X-Poedit-Basepath: .\n"
12
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
  "Language: ca_ES\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html__\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+ "X-Poedit-SearchPath-1: ../../wp-google-maps-pro\n"
18
+ "X-Poedit-SearchPath-2: ../../wp-google-maps-gold\n"
19
+ "X-Poedit-SearchPath-3: ../../wp-google-maps-ugm\n"
 
 
 
20
 
21
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
22
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
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
+ "An Unexpected HTTP Error occurred during the API request.</p> <p>\"\" onclick=\"document.location.reload(); return false;\">Try again</a>"
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
306
 
307
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
308
  msgid ""
309
+ "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."
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ó "
725
 
726
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
727
  msgid ""
728
+ "Get great map markers \"target='_BLANK' title='Great Google Map Markers'>here</a>"
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
845
 
846
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
847
  msgid ""
848
+ "Read data directly from your Fusion Table. For more information, see \"href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
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
 
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
1519
 
1520
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1521
  msgid ""
1522
+ "You will need a Google Maps Geocode API key for this to work. See \"href='https://developers.google.com/maps/documentation/geocoding/"
1523
  "#Limits'>Geocoding Documentation</a>"
1524
  msgstr ""
1525
  "Necessitareu una clau de l’API de Geocode de Google Maps perquè funcioni. "
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
+ "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/' "
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
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
+ "Get great map markers \"target='_BLANK' title='Great Google Map Markers'>here</a>"
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
3160
 
3161
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
3162
  msgid ""
3163
+ "Select from various \"target='_BLANK'>map themes</a>, or make your own."
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"
3368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
3369
  #, php-format
3370
  msgid ""
3371
+ "<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 "
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
3404
  msgid ""
3405
  "We have detected a conflict between your current theme's version and our "
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
3444
 
3445
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
3446
  msgid ""
3447
+ "Get the rest of these advanced features with the Pro version for only <a href=\"http://www.wpgmaps.com/purchase-professional-version/?"
3448
+ "utm_source=plugin&utm_medium=link&utm_campaign­vanced\">$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_campaign­vanced\">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
3457
 
3458
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
3459
  msgid ""
3460
+ "Enable Marker Listing with the \"professional-version/?"
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."
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: 2016-07-18 13:47+0200\n"
6
- "PO-Revision-Date: 2018-02-12 18:53+0100\n"
7
  "Last-Translator: patrick <patrick_jepsen@hotmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: da_DK\n"
@@ -11,339 +11,3322 @@ 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.0.6\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
- "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
  "X-Poedit-Basepath: ..\n"
19
  "X-Textdomain-Support: yes\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
22
- "maps\n"
23
- "X-Poedit-SearchPath-2: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
24
- "maps-pro\n"
25
- "X-Poedit-SearchPath-3: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
26
- "maps-gold\n"
27
- "X-Poedit-SearchPath-4: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
28
- "maps-ugm\n"
29
-
30
- # @ wp-google-maps
31
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
32
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
33
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:764
34
- #: wpGoogleMaps.php:764
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  msgid "settings"
36
  msgstr "indstillinger"
37
 
38
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:244
39
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
40
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:765
41
- #: wpGoogleMaps.php:765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #, php-format
43
- msgid ""
44
- "Your Google Maps API key has been successfully saved. This API key can be "
45
- "changed in the %s page"
46
- msgstr ""
47
- "Din Google Maps API-nøgle er blevet gemt. Denne API-nøgle kan ændres på %s "
48
- "siden"
49
 
50
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
51
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
52
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4217
53
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4341
54
- msgid "Geocode was not successful for the following reason"
55
- msgstr "Geocode car ikke vellykket grundet følgende årsag"
56
 
57
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1173
58
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1335
59
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2550
60
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3636
61
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4704
62
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4867
63
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5825
64
- msgid "More details"
 
 
 
 
 
 
 
65
  msgstr "Flere detaljer"
66
 
67
  # @ wp-google-maps
68
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1595
69
- msgid "Advanced Map Settings"
70
- msgstr "Generelle kort indstillinger"
 
 
 
 
71
 
72
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1600
73
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1950
74
- msgid "Enable Mass Marker Support"
75
- msgstr "Aktivér Massemarkør Support"
 
 
 
 
 
 
 
 
 
 
76
 
77
  # @ wp-google-maps
78
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1603
79
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1843
80
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1953
81
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1537
82
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1594
83
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1791
84
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1803
85
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1878
86
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1881
87
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1884
88
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2207
89
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
90
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
91
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
92
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:178
93
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:196
94
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:205
95
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
96
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
97
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
98
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
99
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
100
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4931
101
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4971
102
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5012
103
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5030
104
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5039
105
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5050
106
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5103
107
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5107
108
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5396
109
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5451
110
- #: wpGoogleMaps.php:3861 wpGoogleMaps.php:3976 wpGoogleMaps.php:4174
111
- #: wpGoogleMaps.php:4181 wpGoogleMaps.php:4212 wpGoogleMaps.php:4931
112
- #: wpGoogleMaps.php:4971 wpGoogleMaps.php:5012 wpGoogleMaps.php:5030
113
- #: wpGoogleMaps.php:5039 wpGoogleMaps.php:5050 wpGoogleMaps.php:5103
114
- #: wpGoogleMaps.php:5107 wpGoogleMaps.php:5396 wpGoogleMaps.php:5451
115
- msgid "Yes"
116
- msgstr "Ja"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
  # @ wp-google-maps
119
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1604
120
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1843
121
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1954
122
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1538
123
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1551
124
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1594
125
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1791
126
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1803
127
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1878
128
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1881
129
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1884
130
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2206
131
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
132
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
133
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
134
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:179
135
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:197
136
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:206
137
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
138
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
139
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
140
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
141
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
142
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4930
143
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4934
144
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4944
145
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4971
146
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5012
147
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5030
148
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5039
149
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5050
150
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5102
151
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5107
152
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5395
153
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5450
154
- #: wpGoogleMaps.php:3861 wpGoogleMaps.php:3976 wpGoogleMaps.php:4174
155
- #: wpGoogleMaps.php:4181 wpGoogleMaps.php:4212 wpGoogleMaps.php:4930
156
- #: wpGoogleMaps.php:4934 wpGoogleMaps.php:4944 wpGoogleMaps.php:4971
157
- #: wpGoogleMaps.php:5012 wpGoogleMaps.php:5030 wpGoogleMaps.php:5039
158
- #: wpGoogleMaps.php:5050 wpGoogleMaps.php:5102 wpGoogleMaps.php:5107
159
- #: wpGoogleMaps.php:5395 wpGoogleMaps.php:5450
160
- msgid "No"
161
- msgstr "Nej"
162
 
163
  # @ wp-google-maps
164
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1610
165
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6677
166
- #: wpGoogleMaps.php:6677
167
- msgid "Save"
168
- msgstr "Gem"
169
-
170
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
171
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
172
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
173
- msgid ""
174
- "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
175
- "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
176
- msgstr ""
177
- "En uventet HTTP Fejl er opstået under anmodningen om API. </p> <p><a "
178
- "href=“?” onclick=“document.location.reload(); return false;”>Try again</a>"
179
 
180
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
181
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
182
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:556
183
- msgid "An unknown error occurred"
184
- msgstr "En uventet fejl er opstået"
185
 
186
  # @ wp-google-maps
187
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1756
188
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6186
189
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6562
190
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3193
191
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3445
192
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3623
193
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3807
194
- #: wpGoogleMaps.php:3193 wpGoogleMaps.php:3445 wpGoogleMaps.php:3623
195
- #: wpGoogleMaps.php:3807
196
- msgid "Your settings have been saved."
197
- msgstr "Dine indstillinger er blevet gemt."
198
 
199
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1811
200
- msgid "Location Tracking"
201
- msgstr "Placering Sporing"
 
 
 
 
202
 
203
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1838
204
- msgid "Real time location tracking"
205
- msgstr "Reel tid placering sporing"
206
 
207
  # @ wp-google-maps
208
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1841
209
- msgid "Enable Location Tracking"
210
- msgstr "Aktiver Placering Sporing"
211
 
212
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1849
213
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1796
214
- msgid "Default User Location Icon"
215
- msgstr "Standart Bruger Lokations Ikon"
 
 
 
 
 
 
216
 
217
  # @ wp-google-maps
218
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1850
219
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1670
220
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1797
221
- msgid "Upload Icon"
222
- msgstr "Upload ikon"
 
 
 
223
 
224
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1854
225
- msgid "Show"
226
- msgstr "Vis"
 
 
 
227
 
228
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
229
- msgid "Route"
230
- msgstr "Rute"
 
 
231
 
232
- # @ wp-google-maps
233
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
234
- msgid "Last Location"
235
- msgstr "Sidste Lokation"
 
236
 
237
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1862
238
- msgid "Route Styling"
239
- msgstr "Rute Stil"
 
 
 
 
 
240
 
241
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1870
242
- msgid "Route Colour - Normal"
243
- msgstr "Rute Farve - Normal"
 
 
244
 
245
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1877
246
- msgid "Route Colour - Hover"
247
- msgstr "Rute Farve - Hold over"
 
 
248
 
249
  # @ wp-google-maps
250
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1884
251
- msgid "Route Opacity"
252
- msgstr "Rute Opacitet"
 
 
 
 
253
 
254
  # @ wp-google-maps
255
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1891
256
- msgid "Route Thickness"
257
- msgstr "Rute Tykkelse"
258
-
259
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1906
260
- msgid "Devices"
261
- msgstr "Enheder"
 
262
 
263
  # @ wp-google-maps
264
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1924
265
- msgid "Marker Clustering"
266
- msgstr "Markør Gruppering"
267
-
268
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1984
269
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1987
270
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1990
271
- msgid "Real Time Location Tracking"
272
- msgstr "Reel Tid Placering Sporing"
273
 
274
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
 
275
  msgid ""
276
- "Track your location via our app and plot your current location on a map, "
277
- "publicly or privately."
 
 
278
  msgstr ""
279
- "Spor din lokation via vores app og plot din nuværende lokation ind på "
280
- "kortet, offentligt eller privat."
281
 
282
  # @ wp-google-maps
283
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
284
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
285
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:221
286
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:264
287
- msgid "Create Map"
288
- msgstr "Opret kort"
289
-
290
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2049
291
- #, php-format
292
- msgid "Location as at %1$s"
293
- msgstr "Lokation som %1$s"
294
-
295
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2131
296
- msgid "Successfully accepted the device. Thank you"
297
- msgstr "Vellykket accept af enheden. Mange tak"
298
 
299
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2172
300
- msgid "Device has been removed. Thank you"
301
- msgstr "Enheden er blevet fjernet. Mange tak"
 
302
 
303
- # @ wp-google-maps
304
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2193
305
- msgid "Marker Data Cleared."
306
- msgstr "Markørdata Slettet"
 
 
 
307
 
308
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
309
- msgid "A new device needs your approval to enable real time location tracking."
 
 
 
310
  msgstr ""
311
- "En ny enhed skal bruge din accept for a aktivere reel tid placering sporing."
312
 
313
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
314
- msgid "Device ID:"
315
- msgstr "Enheds ID:"
 
 
 
316
 
317
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2232
318
- #, php-format
319
- msgid "To accept this device, Please follow this link: %1$s"
320
- msgstr "For at acceptere denne enhed, venligst følg dette link: %1$s"
 
 
321
 
322
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
323
- msgid "To reject the device, simply ignore this email."
324
- msgstr "For a afvise enheden, skal du blot ignorere denne email."
 
 
 
325
 
326
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
327
  msgid ""
328
- "A new device needs your approval to enable real time location tracking - WP "
329
- "Google Maps"
 
330
  msgstr ""
331
- "En ny enhed har brug for din accept for at aktivere reel tid placering "
332
- "sporing - WP Google Maps"
333
-
334
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
335
- msgid "No devices"
336
- msgstr "Ingen enheder"
337
 
338
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
339
  msgid "including Pro &amp; Gold add-ons"
340
  msgstr "inklusiv Pro &amp; Guld add-ons"
341
 
342
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
343
  msgid "including Pro add-on"
344
  msgstr "inklusiv Pro add-on"
345
 
346
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
347
  msgid ""
348
  "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
349
  "a>. Your current Gold version is not compatible with the current Pro version."
@@ -353,228 +3336,136 @@ msgstr ""
353
  "version."
354
 
355
  # @ wp-google-maps
356
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
357
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6983
358
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2991
359
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4619
360
- #: wpGoogleMaps.php:2991 wpGoogleMaps.php:4619
361
- msgid "ZIP / Address:"
362
- msgstr "Postnummer / Adresse:"
363
-
364
- # @ wp-google-maps
365
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1140
366
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6984
367
- msgid "Title / Description:"
368
- msgstr "Titel / Beskrivelse:"
369
-
370
- # @ wp-google-maps
371
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1189
372
  msgid "No marker list"
373
  msgstr "Ingen markør liste"
374
 
375
  # @ wp-google-maps
376
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1192
377
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6915
378
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5145
379
- #: wpGoogleMaps.php:5145
380
  msgid "Basic table"
381
  msgstr "Basis table"
382
 
383
  # @ wp-google-maps
384
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1195
385
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6914
 
 
386
  msgid "Basic list"
387
  msgstr "Basis liste"
388
 
389
  # @ wp-google-maps
390
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1198
391
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6916
 
 
392
  msgid "Advanced table"
393
  msgstr "Avancerede markører"
394
 
395
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1201
396
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6912
397
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:255
398
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
399
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5227
400
- #: wpGoogleMaps.php:5147 wpGoogleMaps.php:5227
401
- msgid "Carousel"
402
- msgstr "Karrusel"
403
-
404
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1280
405
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5845
406
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6917
407
  msgid "Default Infowindow"
408
  msgstr "Standart info vindue"
409
 
410
  # @ wp-google-maps
411
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1282
412
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5847
413
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6918
 
414
  msgid "Modern Infowindow"
415
  msgstr "Moderne info vindue"
416
 
417
  # @ wp-google-maps
418
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1284
419
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5849
420
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6920
 
 
421
  msgid "Modern Plus Infowindow"
422
  msgstr "Moderne plus info vindue "
423
 
424
  # @ wp-google-maps
425
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1286
426
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5851
427
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6921
 
 
428
  msgid "Circular Infowindow"
429
  msgstr "Cirkulær info vindue "
430
 
431
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
432
  msgid "Currently using your selection chosen in the global settings"
433
  msgstr "Bruger i øjeblikket de udvalgte valg i de globale indstillinger"
434
 
435
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
436
  msgid "Download this as a CSV file"
437
  msgstr "Download denne som en CSV fil"
438
 
439
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
440
  msgid "Download this data as a CSV file"
441
  msgstr "Download denne data som en CSV fil"
442
 
443
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
444
  msgid "Please update your basic version to use this function."
445
  msgstr "Venligst opdater din basis version for a benytte denne funktion."
446
 
447
  # @ wp-google-maps
448
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
449
  msgid "Add a New Dataset"
450
  msgstr "Tilføj et nyt dataset"
451
 
452
  # @ wp-google-maps
453
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
454
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4762
455
- #: wpGoogleMaps.php:4762
456
- msgid "Create your Map"
457
- msgstr "Opret dit kort"
458
-
459
- # @ wp-google-maps
460
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
461
  msgid "New"
462
  msgstr "Ny"
463
 
464
  # @ wp-google-maps
465
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1388
466
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4767
467
- #: wpGoogleMaps.php:4767
468
  msgid "General Settings"
469
  msgstr "Generelle Indstillinger"
470
 
471
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1389
472
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:30
473
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4768
474
- #: base/includes/welcome.php:30 wpGoogleMaps.php:4768
475
  msgid "Themes"
476
  msgstr "Temaer"
477
 
478
  # @ wp-google-maps
479
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1390
480
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2596
481
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2846
482
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3645
483
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:197
484
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:200
485
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:278
486
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
487
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4769
488
- #: wpGoogleMaps.php:4769
489
- msgid "Directions"
490
- msgstr "Vejvisninger"
491
-
492
- # @ wp-google-maps
493
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1391
494
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:138
495
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:141
496
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:30
497
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:23
498
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4770
499
- #: base/classes/WPGM_templates.php:30 base/includes/welcome.php:23
500
- #: wpGoogleMaps.php:4770
501
- msgid "Store Locator"
502
- msgstr "Find butik"
503
-
504
- # @ default
505
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1392
506
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5595
507
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4294
508
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4771
509
- #: wpGoogleMaps.php:4294 wpGoogleMaps.php:4771
510
- msgid "Advanced Settings"
511
- msgstr "Avanceret Indstillinger"
512
-
513
- # @ wp-google-maps
514
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1393
515
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4772
516
- #: wpGoogleMaps.php:4772
517
  msgid "Marker Listing Options"
518
  msgstr "Listemarkør muligheder"
519
 
520
  # @ wp-google-maps
521
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1431
522
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4805
523
- #: wpGoogleMaps.php:4805
524
  msgid "Short code"
525
  msgstr "Kort kode"
526
 
527
  # @ wp-google-maps
528
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1432
529
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4806
530
- #: wpGoogleMaps.php:4806
531
  msgid "copy this into your post or page to display the map"
532
  msgstr "kopier dette ind i dit indlæg eller din side for at vise kortet"
533
 
534
  # @ wp-google-maps
535
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1436
536
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4809
537
- #: wpGoogleMaps.php:4809
538
  msgid "Map Name"
539
  msgstr "Kort Navn"
540
 
541
  # @ wp-google-maps
542
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1440
543
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4835
544
- #: wpGoogleMaps.php:4835
545
  msgid "Zoom Level"
546
  msgstr "Zoom niveau"
547
 
548
  # @ wp-google-maps
549
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1447
550
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7208
551
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4510
552
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4813
553
- #: wpGoogleMaps.php:4510 wpGoogleMaps.php:4813
554
- msgid "Width"
555
- msgstr "Bredde"
556
-
557
- # @ wp-google-maps
558
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1454
559
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4820
560
- #: wpGoogleMaps.php:4820
561
  #, php-format
562
  msgid "Set to 100% for a responsive map"
563
  msgstr "Sat til 100% for et responsivt kort"
564
 
565
  # @ wp-google-maps
566
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1459
567
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7209
568
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4511
569
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4825
570
- #: wpGoogleMaps.php:4511 wpGoogleMaps.php:4825
571
- msgid "Height"
572
- msgstr "Højde"
573
-
574
- # @ wp-google-maps
575
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1464
576
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4830
577
- #: wpGoogleMaps.php:4830
578
  #, php-format
579
  msgid ""
580
  "We recommend that you leave your height in PX. Depending on your theme, "
@@ -584,431 +3475,388 @@ msgstr ""
584
  "at bruge % for højden ødelægge dit kort."
585
 
586
  # @ wp-google-maps
587
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
588
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
589
- #: wpGoogleMaps.php:4864
590
- msgid "Select a theme for your map"
591
- msgstr "Vælg et tema for dit kort"
592
-
593
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1513
594
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4898
595
- #: wpGoogleMaps.php:4898
596
- msgid "Or use a custom theme"
597
- msgstr "Eller benyt et brugerdefineret tema"
598
-
599
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1514
600
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4899
601
- #: wpGoogleMaps.php:4899
602
- msgid "Browse the theme directory"
603
- msgstr "Gennemse temakataloget"
604
-
605
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1515
606
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4900
607
- #: wpGoogleMaps.php:4900
608
- msgid "Paste your custom theme data here:"
609
- msgstr "Indset dit brugerdefineret temadata her:"
610
-
611
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1517
612
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4902
613
- #: wpGoogleMaps.php:4902
614
- msgid "Preview"
615
- msgstr "Forhåndsvisning"
616
-
617
- # @ wp-google-maps
618
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1535
619
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4928
620
- #: wpGoogleMaps.php:4928
621
- msgid "Enable Directions?"
622
- msgstr "Aktiver vejvisning"
623
 
624
  # @ wp-google-maps
625
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1547
626
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4940
627
- #: wpGoogleMaps.php:4940
628
- msgid "Directions Box Open by Default?"
629
- msgstr "Skal vejvisnings boksen åbne som standard?"
630
 
631
  # @ wp-google-maps
632
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1552
633
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4945
634
- #: wpGoogleMaps.php:4945
635
- msgid "Yes, on the left"
636
- msgstr "Ja, til venstre"
 
637
 
638
- # @ wp-google-maps
639
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1553
640
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4946
641
- #: wpGoogleMaps.php:4946
642
- msgid "Yes, on the right"
643
- msgstr "Ja, til højre."
644
 
645
- # @ wp-google-maps
646
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1554
647
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4947
648
- #: wpGoogleMaps.php:4947
649
- msgid "Yes, above"
650
- msgstr "Ja, ovenover"
651
 
652
  # @ wp-google-maps
653
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1555
654
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4948
655
- #: wpGoogleMaps.php:4948
656
- msgid "Yes, below"
657
- msgstr "Ja, under"
658
 
659
  # @ wp-google-maps
660
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1561
661
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4954
662
- #: wpGoogleMaps.php:4954
663
- msgid "Directions Box Width"
664
- msgstr "Vejvisnings boks bredde"
665
 
666
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1566
667
- msgid "px"
668
- msgstr "px"
669
 
670
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1567
671
- msgid "%"
672
- msgstr "%"
673
 
674
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1572
675
- msgid "Default 'To' address"
676
- msgstr "Standart sat til “Til” adresse"
677
 
678
  # @ wp-google-maps
679
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1588
680
- msgid "General options"
681
- msgstr "Generelle muligheder"
 
 
682
 
683
  # @ wp-google-maps
684
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1592
685
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4968
686
- #: wpGoogleMaps.php:4968
687
- msgid "Enable Store Locator"
688
- msgstr "Aktiver Butiks Lokalisering"
 
 
 
 
 
 
 
689
 
690
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1599
691
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4976
692
- #: wpGoogleMaps.php:4976
693
  msgid "Restrict to country"
694
  msgstr "Begrænset til land"
695
 
696
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1608
697
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4982
698
- #: wpGoogleMaps.php:4982
699
  msgid "No country selected"
700
  msgstr "Intet land er valgt"
701
 
702
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
703
  msgid "Insert country TLD. For example, use DE for Germany."
704
  msgstr "Indset land TLD. For exempel, brug DE for Tyskland."
705
 
706
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
707
  msgid "Leave blank for no restrictions."
708
  msgstr "Lad være tom for ingen begrænsninger."
709
 
710
  # @ wp-google-maps
711
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1626
712
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4996
713
- #: wpGoogleMaps.php:4996
714
  msgid "Show distance in"
715
  msgstr "Vis distance i"
716
 
717
  # @ wp-google-maps
718
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
719
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
720
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
721
- #: wpGoogleMaps.php:4999
722
- msgid "Miles"
723
- msgstr "Mil"
724
-
725
- # @ wp-google-maps
726
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
727
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
728
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
729
- #: wpGoogleMaps.php:4999
730
- msgid "Kilometers"
731
- msgstr "Kilometer"
732
-
733
- # @ wp-google-maps
734
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1635
735
  msgid "Store Locator Placement"
736
  msgstr "Butiks lokations placering"
737
 
738
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
739
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
740
  msgid "Below Map"
741
  msgstr "Nedenfor Kort"
742
 
743
  # @ wp-google-maps
744
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
745
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
746
  msgid "Above Map"
747
  msgstr "Ovenfor Kort"
748
 
749
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1644
750
  msgid "Allow category selection"
751
  msgstr "Tillad valg af kategori"
752
 
753
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
754
  msgid "Allow users to use their location as the starting point"
755
  msgstr "Tillad brugere at bruge deres placering som udgangspunkt"
756
 
757
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
758
- msgid ""
759
- "Please ensure that \"show user's location\" is enabled in the \"Advanced "
760
- "Settings\" tab."
761
- msgstr ""
762
- "Venligst sørg for at “vis bruger lokation” er slået til under “Avanceret "
763
- "Indstillinger”."
764
-
765
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
766
  msgid "Show center point as an icon"
767
  msgstr "Vis midtpunktet som et ikon"
768
 
769
  # @ wp-google-maps
770
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1669
771
  msgid "Default Icon"
772
  msgstr "Standard ikon"
773
 
774
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1674
 
 
 
 
 
 
 
 
 
 
 
 
 
775
  msgid "Hide all markers until a search is done"
776
  msgstr "Skjul all markørerne indtil søgningen er færdig"
777
 
778
  # @ wp-google-maps
779
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1688
780
  msgid "Query String"
781
  msgstr "Query String"
782
 
 
 
 
 
 
 
783
  # @ wp-google-maps
784
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1693
785
  msgid "Enable title search"
786
  msgstr "Aktiver titel søgning"
787
 
788
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1702
789
  msgid "Title search String"
790
  msgstr "Titel søgning String"
791
 
792
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1707
 
 
 
 
793
  msgid "Style options"
794
  msgstr "Stil muligheder"
795
 
796
  # @ wp-google-maps
797
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1712
798
  msgid "Line color"
799
  msgstr "Linje farve"
800
 
801
  # @ wp-google-maps
802
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1720
803
  msgid "Line opacity"
804
  msgstr "Linie opacitet"
805
 
806
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1723
807
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1739
808
  msgid "(0 - 1.0) example: 0.5 for 50%"
809
  msgstr "(0 - 1.0) eksempel: 0.5 for 50%"
810
 
811
  # @ wp-google-maps
812
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1728
813
  msgid "Fill color"
814
  msgstr "Udfyld farve"
815
 
816
  # @ wp-google-maps
817
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1736
818
  msgid "Fill opacity"
819
  msgstr "Fil opacitet"
820
 
821
  # @ wp-google-maps
822
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
823
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
824
- #: wpGoogleMaps.php:5019
825
  msgid "View"
826
  msgstr "Vis"
827
 
828
  # @ wp-google-maps
829
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
830
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
831
- #: wpGoogleMaps.php:5019
832
  msgid "Store Locator Documentation"
833
  msgstr "Butiks Location Dokumentation"
834
 
 
 
 
 
 
 
 
835
  # @ wp-google-maps
836
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1761
837
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5095
838
- #: wpGoogleMaps.php:5095
839
  msgid "Default Marker Image"
840
  msgstr "Standard markør billede"
841
 
842
  # @ wp-google-maps
843
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
844
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2180
845
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2184
846
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
847
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
848
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5096
849
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5463
850
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5467
851
- #: wpGoogleMaps.php:5096 wpGoogleMaps.php:5463 wpGoogleMaps.php:5467
852
- msgid "Upload Image"
853
- msgstr "Upload Billede"
854
-
855
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
856
- msgid ""
857
- "Get great map markers <a href='http://www.wpgmaps.com/marker-icons/' "
858
- "target='_BLANK' title='Great Google Map Markers'>here</a>"
859
- msgstr ""
860
- "Find fantastiske kort markører <a href=‘http://www.wpgmaps.com/marker-"
861
- "icons/' target=‘_BLANK’ title=‘Great Google Map Markers’>her</a>"
862
-
863
- # @ wp-google-maps
864
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
865
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4851
866
- #: wpGoogleMaps.php:4851
867
  msgid "Map type"
868
  msgstr "Kort type"
869
 
870
  # @ wp-google-maps
871
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1768
872
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7217
873
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4519
874
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4853
875
- #: wpGoogleMaps.php:4519 wpGoogleMaps.php:4853
876
  msgid "Roadmap"
877
  msgstr "Vej kort"
878
 
879
  # @ wp-google-maps
880
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1769
881
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7218
882
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4520
883
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4854
884
- #: wpGoogleMaps.php:4520 wpGoogleMaps.php:4854
885
  msgid "Satellite"
886
  msgstr "Sattelit"
887
 
888
  # @ wp-google-maps
889
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1770
890
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7219
891
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4521
892
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4855
893
- #: wpGoogleMaps.php:4521 wpGoogleMaps.php:4855
894
  msgid "Hybrid"
895
  msgstr "hybrid"
896
 
897
  # @ wp-google-maps
898
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1771
899
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7220
900
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4522
901
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4856
902
- #: wpGoogleMaps.php:4522 wpGoogleMaps.php:4856
903
  msgid "Terrain"
904
  msgstr "terræn"
905
 
906
  # @ wp-google-maps
907
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1777
908
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4841
909
- #: wpGoogleMaps.php:4841
910
  msgid "Map Alignment"
911
  msgstr "Kort justering"
912
 
913
  # @ wp-google-maps
914
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1779
915
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4843
916
- #: wpGoogleMaps.php:4843
917
  msgid "Left"
918
  msgstr "Venstre"
919
 
920
  # @ wp-google-maps
921
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1780
922
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4844
923
- #: wpGoogleMaps.php:4844
924
  msgid "Center"
925
  msgstr "Center"
926
 
927
  # @ wp-google-maps
928
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1781
929
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4845
930
- #: wpGoogleMaps.php:4845
931
  msgid "Right"
932
  msgstr "Højre"
933
 
934
  # @ wp-google-maps
935
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1782
936
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2197
937
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4846
938
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5144
939
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5384
940
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5439
941
- #: wpGoogleMaps.php:4846 wpGoogleMaps.php:5144 wpGoogleMaps.php:5384
942
- #: wpGoogleMaps.php:5439
943
- msgid "None"
944
- msgstr "Ingen"
945
-
946
- # @ wp-google-maps
947
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1788
948
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5100
949
- #: wpGoogleMaps.php:5100
950
  msgid "Show User's Location?"
951
  msgstr "Vis brugerens Lokation?"
952
 
953
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1800
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
954
  msgid "Click marker opens link"
955
  msgstr "Vælg markør åbner link"
956
 
 
 
 
 
 
 
 
 
 
 
 
 
957
  # @ wp-google-maps
958
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1811
959
  msgid "Maximum Zoom Out Level"
960
  msgstr "Maksimum Zoom Ud Niveau"
961
 
962
  # @ wp-google-maps
963
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1840
964
  msgid "Maximum Zoom In Level"
965
  msgstr "Maksimum Zoom Ind Niveau"
966
 
967
  # @ wp-google-maps
968
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1875
969
  msgid "Enable Layers"
970
  msgstr "Aktiver Lag"
971
 
972
  # @ wp-google-maps
973
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1879
974
  msgid "Bicycle Layer"
975
  msgstr "Cykel Lag"
976
 
977
  # @ wp-google-maps
978
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1882
979
  msgid "Traffic Layer"
980
  msgstr "Trafik Lag"
981
 
982
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1885
983
  msgid "Transit Layer"
984
  msgstr "Transitlag"
985
 
986
  # @ wp-google-maps
987
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1891
988
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5119
989
- #: wpGoogleMaps.php:5119
 
 
 
 
 
990
  msgid "KML/GeoRSS URL"
991
  msgstr "KML/GeoRSS URL"
992
 
993
  # @ wp-google-maps
994
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
995
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5121
996
- #: wpGoogleMaps.php:5121
997
  msgid "The KML/GeoRSS layer will over-ride most of your map settings"
998
  msgstr "KML/GeoRSS laget vil overskrive de fleste af dine kort indstillinger"
999
 
1000
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
1001
  msgid "For multiple sources, separate each one by a comma."
1002
  msgstr "For flere kilder skal du adskille hver med et komma."
1003
 
1004
  # @ wp-google-maps
1005
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1897
1006
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5125
1007
- #: wpGoogleMaps.php:5125
1008
  msgid "Fusion table ID"
1009
  msgstr "Fusion table ID"
1010
 
1011
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
1012
  msgid ""
1013
  "Read data directly from your Fusion Table. For more information, see <a "
1014
  "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
@@ -1020,299 +3868,199 @@ msgstr ""
1020
  "api.html’>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
1021
  "maps-api.html</a>"
1022
 
1023
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1909
1024
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5874
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1025
  msgid "Infowindow Style"
1026
  msgstr "Info vindue stil"
1027
 
1028
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1927
1029
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2024
1030
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5894
 
 
 
 
 
 
1031
  msgid "Your selection:"
1032
  msgstr "Dine valg:"
1033
 
1034
  # @ wp-google-maps
1035
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1960
1036
  msgid "Infowindow Colors"
1037
  msgstr "Info Vindue Farver"
1038
 
1039
  # @ wp-google-maps
1040
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1964
1041
  msgid "Primary Color"
1042
  msgstr "Primære Farver"
1043
 
1044
  # @ wp-google-maps
1045
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1972
1046
  msgid "Accent Color"
1047
  msgstr "Accent Farve"
1048
 
1049
  # @ wp-google-maps
1050
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1980
1051
  msgid "Text Color"
1052
  msgstr "Text Farve"
1053
 
1054
  # @ wp-google-maps
1055
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2003
1056
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
1057
- msgid "Marker Listing Style"
1058
- msgstr "Markør Liste Stil"
 
1059
 
1060
  # @ wp-google-maps
1061
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2033
1062
  msgid "Marker Listing Placement"
1063
  msgstr "Markør Liste Placering"
1064
 
1065
  # @ wp-google-maps
1066
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2042
1067
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5161
1068
- #: wpGoogleMaps.php:5161
1069
  msgid "Order markers by"
1070
  msgstr "Sorter markører efter"
1071
 
1072
  # @ wp-google-maps
1073
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2045
1074
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7206
1075
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7395
1076
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:527
1077
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:470
1078
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:491
1079
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:414
1080
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:673
1081
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:657
1082
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4508
1083
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4562
1084
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5164
1085
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5581
1086
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5867
1087
- #: base/includes/wp-google-maps-polygons.php:673
1088
- #: base/includes/wp-google-maps-polylines.php:657 wpGoogleMaps.php:4508
1089
- #: wpGoogleMaps.php:4562 wpGoogleMaps.php:5164 wpGoogleMaps.php:5581
1090
- #: wpGoogleMaps.php:5867
1091
- msgid "ID"
1092
- msgstr "ID"
1093
-
1094
- # @ wp-google-maps
1095
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2046
1096
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2161
1097
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6597
1098
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6682
1099
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7207
1100
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:416
1101
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:441
1102
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:464
1103
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:42
1104
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
1105
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
1106
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4509
1107
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4565
1108
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5165
1109
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5455
1110
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5869
1111
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5888
1112
- #: base/classes/widget_module.class.php:42
1113
- #: base/includes/wp-google-maps-polygons.php:38
1114
- #: base/includes/wp-google-maps-polygons.php:124 wpGoogleMaps.php:4509
1115
- #: wpGoogleMaps.php:4565 wpGoogleMaps.php:5165 wpGoogleMaps.php:5455
1116
- #: wpGoogleMaps.php:5869 wpGoogleMaps.php:5888
1117
- msgid "Title"
1118
- msgstr "Titel"
1119
-
1120
- # @ wp-google-maps
1121
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2047
1122
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:418
1123
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:443
1124
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:466
1125
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4566
1126
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5166
1127
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5871
1128
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5890
1129
- #: wpGoogleMaps.php:4566 wpGoogleMaps.php:5166 wpGoogleMaps.php:5871
1130
- #: wpGoogleMaps.php:5890
1131
- msgid "Address"
1132
- msgstr "adresse"
1133
 
1134
- # @ wp-google-maps
1135
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2048
1136
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2171
1137
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:419
1138
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:444
1139
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:467
1140
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5167
1141
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5460
1142
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5872
1143
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5891
1144
- #: wpGoogleMaps.php:5167 wpGoogleMaps.php:5460 wpGoogleMaps.php:5872
1145
- #: wpGoogleMaps.php:5891
1146
- msgid "Description"
1147
- msgstr "Beskrivelse"
1148
 
1149
  # @ wp-google-maps
1150
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2049
1151
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2188
1152
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7050
1153
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:528
1154
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:417
1155
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:442
1156
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:465
1157
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3039
1158
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5168
1159
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5469
1160
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5870
1161
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5889
1162
- #: wpGoogleMaps.php:3039 wpGoogleMaps.php:5168 wpGoogleMaps.php:5469
1163
- #: wpGoogleMaps.php:5870 wpGoogleMaps.php:5889
1164
- msgid "Category"
1165
- msgstr "kategori"
1166
 
1167
  # @ wp-google-maps
1168
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2052
1169
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5171
1170
- #: wpGoogleMaps.php:5171
1171
  msgid "Ascending"
1172
  msgstr "Stigende"
1173
 
1174
  # @ wp-google-maps
1175
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2053
1176
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5172
1177
- #: wpGoogleMaps.php:5172
1178
  msgid "Descending"
1179
  msgstr "Faldende"
1180
 
1181
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2064
1182
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5184
1183
- #: wpGoogleMaps.php:5184
1184
  msgid "Move list inside map"
1185
  msgstr "Flyt liste ind i kortet"
1186
 
1187
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1188
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5187
1189
- #: wpGoogleMaps.php:5187
1190
  msgid "Move your marker list inside the map area"
1191
  msgstr "Flyt din markør liste ind i kort området"
1192
 
1193
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1194
  msgid "(still in beta)"
1195
  msgstr "(stading i beta)"
1196
 
1197
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2088
1198
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5189
1199
- #: wpGoogleMaps.php:5189
1200
  msgid "Placement: "
1201
  msgstr "Placering:"
1202
 
1203
  # @ wp-google-maps
1204
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2090
1205
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5191
1206
- #: wpGoogleMaps.php:5191
1207
  msgid "Top Center"
1208
  msgstr "Top Center"
1209
 
1210
  # @ wp-google-maps
1211
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2091
1212
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5192
1213
- #: wpGoogleMaps.php:5192
1214
  msgid "Top Left"
1215
  msgstr "Top Venstre"
1216
 
1217
  # @ wp-google-maps
1218
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2092
1219
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5193
1220
- #: wpGoogleMaps.php:5193
1221
  msgid "Top Right"
1222
  msgstr "Top Højre"
1223
 
1224
  # @ wp-google-maps
1225
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2093
1226
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5194
1227
- #: wpGoogleMaps.php:5194
1228
  msgid "Left Top "
1229
  msgstr "Venstre Top"
1230
 
1231
  # @ wp-google-maps
1232
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2094
1233
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5195
1234
- #: wpGoogleMaps.php:5195
1235
  msgid "Right Top"
1236
  msgstr "Højre Top"
1237
 
1238
  # @ wp-google-maps
1239
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2095
1240
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5196
1241
- #: wpGoogleMaps.php:5196
1242
  msgid "Left Center"
1243
  msgstr "Venstre Center"
1244
 
1245
  # @ wp-google-maps
1246
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2096
1247
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5197
1248
- #: wpGoogleMaps.php:5197
1249
  msgid "Right Center"
1250
  msgstr "Højre Center"
1251
 
1252
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2097
1253
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5198
1254
- #: wpGoogleMaps.php:5198
1255
  msgid "Left Bottom"
1256
  msgstr "Venstre Bund"
1257
 
1258
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2098
1259
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5199
1260
- #: wpGoogleMaps.php:5199
1261
  msgid "Right Bottom"
1262
  msgstr "Højre Bund"
1263
 
1264
  # @ wp-google-maps
1265
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2099
1266
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5200
1267
- #: wpGoogleMaps.php:5200
1268
  msgid "Bottom Center"
1269
  msgstr "Center Bund"
1270
 
1271
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2100
1272
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5201
1273
- #: wpGoogleMaps.php:5201
1274
  msgid "Bottom Left"
1275
  msgstr "Bund Venstre"
1276
 
1277
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2101
1278
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5202
1279
- #: wpGoogleMaps.php:5202
1280
  msgid "Bottom Right"
1281
  msgstr "Bund Højre"
1282
 
1283
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2103
1284
  msgid "Container Width: "
1285
  msgstr "Beholder Bredde:"
1286
 
1287
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2104
1288
  msgid "Container Height: "
1289
  msgstr "Beholder Højde:"
1290
 
1291
  # @ wp-google-maps
1292
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2114
1293
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5153
1294
- #: wpGoogleMaps.php:5153
1295
  msgid "Filter by Category"
1296
  msgstr "Filtrer efter Kategori"
1297
 
1298
  # @ wp-google-maps
1299
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2117
1300
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5156
1301
- #: wpGoogleMaps.php:5156
1302
  msgid "Allow users to filter by category?"
1303
  msgstr "Tillad at brugere kan filtrere efter kategori?"
1304
 
1305
  # @ wp-google-maps
1306
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2136
1307
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5352
1308
- #: wpGoogleMaps.php:5352
1309
  msgid "Save Map"
1310
  msgstr "Gem Kort"
1311
 
1312
  # @ wp-google-maps
1313
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2138
1314
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5355
1315
- #: wpGoogleMaps.php:5355
1316
  msgid ""
1317
  "Tip: Use your mouse to change the layout of your map. When you have "
1318
  "positioned the map to your desired location, press \"Save Map\" to keep your "
@@ -1322,234 +4070,60 @@ msgstr ""
1322
  "kortet til den ønskede lokation så tryk på \"Gem Kort\" for at gemme dine "
1323
  "indstillinger."
1324
 
1325
- # @ wp-google-maps
1326
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2148
1327
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5362
1328
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5371
1329
- #: wpGoogleMaps.php:5362 wpGoogleMaps.php:5371
1330
- msgid "Markers"
1331
- msgstr "Markører"
1332
-
1333
- # @ wp-google-maps
1334
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2149
1335
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:35
1336
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5489
1337
- #: base/classes/WPGM_templates.php:35 wpGoogleMaps.php:5489
1338
- msgid "Polygons"
1339
- msgstr "Polygoner"
1340
-
1341
- # @ wp-google-maps
1342
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2150
1343
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:40
1344
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:35
1345
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5365
1346
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5494
1347
- #: base/classes/WPGM_templates.php:40 base/includes/welcome.php:35
1348
- #: wpGoogleMaps.php:5365 wpGoogleMaps.php:5494
1349
- msgid "Polylines"
1350
- msgstr "polylinier"
1351
-
1352
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2151
1353
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5366
1354
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5499
1355
- #: wpGoogleMaps.php:5366 wpGoogleMaps.php:5499
1356
  msgid "Heatmaps"
1357
  msgstr "Heatmaps"
1358
 
1359
  # @ wp-google-maps
1360
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2156
1361
- msgid "Add a marker"
1362
- msgstr "Tilføj markør"
1363
-
1364
- # @ wp-google-maps
1365
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2166
1366
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5375
1367
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5430
1368
- #: wpGoogleMaps.php:5375 wpGoogleMaps.php:5430
1369
- msgid "Address/GPS"
1370
- msgstr "Addresse/GPS"
1371
-
1372
- # @ wp-google-maps
1373
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2167
1374
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5376
1375
- #: wpGoogleMaps.php:5376
1376
- msgid "Or right click on the map"
1377
- msgstr "eller højre klik på kortet"
1378
-
1379
- # @ wp-google-maps
1380
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2179
1381
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5462
1382
- #: wpGoogleMaps.php:5462
1383
- msgid "Pic URL"
1384
- msgstr "billede URL"
1385
-
1386
- # @ wp-google-maps
1387
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2181
1388
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5464
1389
- #: wpGoogleMaps.php:5464
1390
- msgid "Link URL"
1391
- msgstr "Link URL"
1392
-
1393
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2182
1394
- msgid "Format: http://www.domain.com"
1395
- msgstr "Format: http://www.domain.com"
1396
-
1397
- # @ wp-google-maps
1398
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2183
1399
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5466
1400
- #: wpGoogleMaps.php:5466
1401
- msgid "Custom Marker"
1402
- msgstr "Brugerdefineret markør"
1403
-
1404
- # @ wp-google-maps
1405
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2184
1406
- msgid "ignore if you want to use the default marker"
1407
- msgstr "ignorer hvis du ønsker at se standart markører"
1408
-
1409
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2185
1410
- msgid "This is a retina ready marker"
1411
- msgstr "Dette er en retina klar markør"
1412
-
1413
- # @ wp-google-maps
1414
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2194
1415
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5381
1416
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5436
1417
- #: wpGoogleMaps.php:5381 wpGoogleMaps.php:5436
1418
- msgid "Animation"
1419
- msgstr "animation"
1420
-
1421
- # @ wp-google-maps
1422
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2198
1423
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5385
1424
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5440
1425
- #: wpGoogleMaps.php:5385 wpGoogleMaps.php:5440
1426
- msgid "Bounce"
1427
- msgstr "Hop"
1428
-
1429
- # @ wp-google-maps
1430
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2199
1431
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5386
1432
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5441
1433
- #: wpGoogleMaps.php:5386 wpGoogleMaps.php:5441
1434
- msgid "Drop"
1435
- msgstr "smid"
1436
-
1437
- # @ wp-google-maps
1438
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2203
1439
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5392
1440
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5447
1441
- #: wpGoogleMaps.php:5392 wpGoogleMaps.php:5447
1442
- msgid "InfoWindow open by default"
1443
- msgstr "skal InfoWindow åbne som standard"
1444
-
1445
- # @ wp-google-maps
1446
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2213
1447
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5402
1448
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5478
1449
- #: wpGoogleMaps.php:5402 wpGoogleMaps.php:5478
1450
- msgid "Add Marker"
1451
- msgstr "tilføj markør"
1452
-
1453
- # @ wp-google-maps
1454
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2213
1455
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
1456
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5402
1457
- #: wpGoogleMaps.php:5402
1458
- msgid "Adding"
1459
- msgstr "tilføjer"
1460
-
1461
- # @ wp-google-maps
1462
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2214
1463
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5403
1464
- #: wpGoogleMaps.php:5403
1465
- msgid "Save Marker"
1466
- msgstr "gem markør"
1467
-
1468
- # @ wp-google-maps
1469
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2214
1470
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5403
1471
- #: wpGoogleMaps.php:5403
1472
- msgid "Saving"
1473
- msgstr "Gemmer"
1474
-
1475
- # @ wp-google-maps
1476
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2217
1477
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5406
1478
- #: wpGoogleMaps.php:5406
1479
- msgid "Remember to save your marker"
1480
- msgstr "Husk at gemme din markør"
1481
-
1482
- # @ wp-google-maps
1483
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2227
1484
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6588
1485
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6672
1486
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:25
1487
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:29
1488
- #: base/includes/wp-google-maps-polygons.php:29
1489
- msgid "Add a Polygon"
1490
- msgstr "Tilføj en polygon"
1491
-
1492
- # @ wp-google-maps
1493
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2228
1494
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5490
1495
- #: wpGoogleMaps.php:5490
1496
  msgid "Add a New Polygon"
1497
  msgstr "Tilføj en ny polygon"
1498
 
1499
  # @ wp-google-maps
1500
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2232
1501
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:25
1502
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:28
1503
- #: base/includes/wp-google-maps-polylines.php:28
1504
- msgid "Add a Polyline"
1505
- msgstr "tiføj en polylinie"
1506
-
1507
- # @ wp-google-maps
1508
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2233
1509
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5495
1510
- #: wpGoogleMaps.php:5495
1511
  msgid "Add a New Polyline"
1512
  msgstr "tilføj en ny polylinie"
1513
 
1514
  # @ wp-google-maps
1515
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2237
1516
  msgid "Add a dataset"
1517
  msgstr "Tilføj dataset"
1518
 
1519
  # @ wp-google-maps
1520
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2251
1521
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5517
1522
- #: wpGoogleMaps.php:5517
1523
- msgid "Remember to save your map!"
1524
- msgstr "Husk at gemme dit kort!"
 
 
 
 
 
 
 
 
 
1525
 
1526
  # @ wp-google-maps
1527
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2259
1528
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5530
1529
- #: wpGoogleMaps.php:5530
1530
  msgid "Your Markers"
1531
  msgstr "Dine Markører"
1532
 
1533
  # @ wp-google-maps
1534
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
1535
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
1536
- #: wpGoogleMaps.php:5553
1537
- msgid ""
1538
- "WP Google Maps encourages you to make use of the amazing icons created by "
1539
- "Nicolas Mollet's Maps Icons Collection"
1540
  msgstr ""
1541
  "WP Google Maps opfordrer dig til at gøre brug af de fantastiske ikoner lavet "
1542
  "af Nicolas Mollet's Maps Icons Collection"
1543
 
1544
  # @ wp-google-maps
1545
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
1546
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
1547
- #: wpGoogleMaps.php:5553
1548
- msgid "and to credit him when doing so."
1549
- msgstr "og at kreditere ham når du gør det."
1550
-
1551
- # @ wp-google-maps
1552
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2442
1553
  msgid ""
1554
  "The map ID you have entered does not exist. Please enter a map ID that "
1555
  "exists."
@@ -1558,279 +4132,151 @@ msgstr ""
1558
  "eksistere."
1559
 
1560
  # @ wp-google-maps
1561
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
1562
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
1563
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7000
1564
- msgid "Use my location"
1565
- msgstr "Brug min lokation"
1566
-
1567
- # @ wp-google-maps
1568
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2677
1569
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2684
1570
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2692
1571
  msgid "Filter by"
1572
  msgstr "Filtrer efter"
1573
 
1574
  # @ wp-google-maps
1575
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2846
1576
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:278
1577
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
1578
  msgid "Get directions to"
1579
  msgstr "Een routebeschrijving opvragen"
1580
 
1581
- # @ wp-google-maps
1582
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2877
1583
- msgid "Get Directions"
1584
- msgstr "Routebeschrijving naar"
1585
-
1586
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2882
1587
- msgid "For"
1588
- msgstr "For"
1589
-
1590
- # @ wp-google-maps
1591
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2886
1592
- msgid "Driving"
1593
- msgstr "Kører"
1594
-
1595
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2887
1596
- msgid "Walking"
1597
- msgstr "Går"
1598
-
1599
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2888
1600
- msgid "Bicycling"
1601
- msgstr "Cykler"
1602
-
1603
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2891
1604
- msgid "show options"
1605
- msgstr "vis muligheder"
1606
 
1607
- # @ wp-google-maps
1608
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2892
1609
- msgid "hide options"
1610
- msgstr "Gem muligheder"
1611
 
1612
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2894
1613
- msgid "Avoid Tolls"
1614
- msgstr "Undgå Afgifter"
1615
 
1616
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2895
1617
- msgid "Avoid Highways"
1618
- msgstr "Undgå Motorveje"
1619
 
1620
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2901
1621
- msgid "From"
1622
- msgstr "Fra"
1623
 
1624
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2909
1625
- msgid "To"
1626
- msgstr "Til"
1627
 
1628
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2919
1629
- msgid "Go"
1630
- msgstr ""
1631
 
1632
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2962
1633
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2995
1634
- msgid "Fetching directions..."
1635
- msgstr "Routebeschrijving opvragen..."
1636
 
1637
- # @ wp-google-maps
1638
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2965
1639
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2997
1640
- msgid "Reset directions"
1641
- msgstr "Reset routebeschrijving"
1642
 
1643
- # @ wp-google-maps
1644
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2967
1645
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2999
1646
- msgid "Print directions"
1647
- msgstr "Routebeschrijving uitprinten"
1648
 
1649
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3073
1650
- msgid "Thank you. Your marker is awaiting approval."
1651
- msgstr "Mange tak. Dine markører venter på godkendelse."
1652
 
1653
  # @ wp-google-maps
1654
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3641
1655
  msgid "Get directions"
1656
  msgstr "Routebeschrijving naar"
1657
 
1658
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3642
1659
- msgid "My location"
1660
- msgstr "Min lokation"
1661
-
1662
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3643
1663
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2114
1664
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2255
1665
- #: wpGoogleMaps.php:2114 wpGoogleMaps.php:2255
1666
  msgid "km away"
1667
  msgstr "km væk"
1668
 
1669
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3644
1670
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2112
1671
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2253
1672
- #: wpGoogleMaps.php:2112 wpGoogleMaps.php:2253
1673
  msgid "miles away"
1674
  msgstr "mil væk"
1675
 
1676
- #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3648
2
  msgstr ""
3
  "Project-Id-Version: WP Google Maps v6.0.26\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-02-11 09:55+0000\n"
6
+ "PO-Revision-Date: 2020-02-11 09:55+0000\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.3\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
+
23
+ # @ wp-google-maps
24
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:4
25
+ #, fuzzy
26
+ #| msgid "General Settings"
27
+ msgid "Live Tracking Settings"
28
+ msgstr "Generelle Indstillinger"
29
+
30
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:10
31
+ msgid "Please use the setting below to control Live Tracking broadcasting."
32
+ msgstr ""
33
+
34
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:16
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 "
38
+ "receive your updated location as they view your pages."
39
+ msgstr ""
40
+
41
+ # @ wp-google-maps
42
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:23
43
+ #, fuzzy
44
+ #| msgid "Enable pagination"
45
+ msgid "Enable Broadcasting"
46
+ msgstr "Aktiver paginering"
47
+
48
+ # @ wp-google-maps
49
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:34
50
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:27
51
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:79
52
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:139
53
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:224
54
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:287
55
+ #: ../wp-google-maps-gold/legacy-core.php:1489
56
+ #: ../wp-google-maps-gold/legacy-core.php:1744
57
+ #: ../wp-google-maps-gold/legacy-core.php:2184
58
+ #: ../wp-google-maps-gold/legacy-core.php:2198
59
+ #: ../wp-google-maps-gold/legacy-core.php:2437
60
+ #: ../wp-google-maps-gold/legacy-core.php:2478
61
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:22
62
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:155
63
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:170
64
+ #: ../wp-google-maps-pro/includes/page.categories.php:37
65
+ #: ../wp-google-maps-pro/legacy-core.php:1386
66
+ #: ../wp-google-maps-pro/legacy-core.php:1754
67
+ #: ../wp-google-maps-pro/legacy-core.php:1777
68
+ #: ../wp-google-maps-pro/legacy-core.php:1787
69
+ #: ../wp-google-maps-pro/legacy-core.php:1791
70
+ #: ../wp-google-maps-pro/legacy-core.php:1801
71
+ #: ../wp-google-maps-pro/legacy-core.php:1852
72
+ #: ../wp-google-maps-pro/legacy-core.php:1869
73
+ #: ../wp-google-maps-pro/legacy-core.php:1877
74
+ #: ../wp-google-maps-pro/legacy-core.php:1885
75
+ #: ../wp-google-maps-pro/legacy-core.php:1893
76
+ #: ../wp-google-maps-pro/legacy-core.php:1966
77
+ #: ../wp-google-maps-pro/legacy-core.php:1971
78
+ #: ../wp-google-maps-pro/legacy-core.php:1975
79
+ #: ../wp-google-maps-pro/legacy-core.php:1990
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
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:35
94
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:28
95
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:80
96
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:140
97
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:225
98
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:288
99
+ #: ../wp-google-maps-gold/legacy-core.php:1490
100
+ #: ../wp-google-maps-gold/legacy-core.php:1745
101
+ #: ../wp-google-maps-gold/legacy-core.php:2184
102
+ #: ../wp-google-maps-gold/legacy-core.php:2198
103
+ #: ../wp-google-maps-gold/legacy-core.php:2437
104
+ #: ../wp-google-maps-gold/legacy-core.php:2478
105
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:23
106
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:65
107
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:150
108
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:175
109
+ #: ../wp-google-maps-pro/includes/page.categories.php:37
110
+ #: ../wp-google-maps-pro/legacy-core.php:1386
111
+ #: ../wp-google-maps-pro/legacy-core.php:1755
112
+ #: ../wp-google-maps-pro/legacy-core.php:1778
113
+ #: ../wp-google-maps-pro/legacy-core.php:1787
114
+ #: ../wp-google-maps-pro/legacy-core.php:1792
115
+ #: ../wp-google-maps-pro/legacy-core.php:1801
116
+ #: ../wp-google-maps-pro/legacy-core.php:1853
117
+ #: ../wp-google-maps-pro/legacy-core.php:1869
118
+ #: ../wp-google-maps-pro/legacy-core.php:1877
119
+ #: ../wp-google-maps-pro/legacy-core.php:1885
120
+ #: ../wp-google-maps-pro/legacy-core.php:1893
121
+ #: ../wp-google-maps-pro/legacy-core.php:1966
122
+ #: ../wp-google-maps-pro/legacy-core.php:1971
123
+ #: ../wp-google-maps-pro/legacy-core.php:1975
124
+ #: ../wp-google-maps-pro/legacy-core.php:1990
125
+ #: ../wp-google-maps-pro/legacy-core.php:5747
126
+ #: ../wp-google-maps-pro/legacy-core.php:5792
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
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:42
138
+ msgid "Live Tracking Devices"
139
+ msgstr ""
140
+
141
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:50
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
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:59
148
+ #, fuzzy
149
+ #| msgid "Device ID:"
150
+ msgid "Device ID"
151
+ msgstr "Enheds ID:"
152
+
153
+ # @ wp-google-maps
154
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:64
155
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:107
156
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:248
157
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:314
158
+ #: ../wp-google-maps-pro/legacy-core.php:268
159
+ #: ../wp-google-maps-pro/legacy-core.php:319
160
+ #: ../wp-google-maps-pro/legacy-core.php:5732
161
+ #: ../wp-google-maps-pro/legacy-core.php:7147
162
+ #: ../wp-google-maps-pro/legacy-core.php:7239
163
+ #: ../wp-google-maps-pro/legacy-core.php:7895
164
+ #: ../wp-google-maps-pro/legacy-core.php:8497
165
+ #: ../wp-google-maps-pro/legacy-core.php:8582
166
+ msgid "Name"
167
+ msgstr "Navn"
168
+
169
+ # @ wp-google-maps
170
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:69
171
+ #, fuzzy
172
+ #| msgid "Polylines"
173
+ msgid "Draw Polylines"
174
+ msgstr "polylinier"
175
+
176
+ # @ wp-google-maps
177
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:74
178
+ #, fuzzy
179
+ #| msgid "Line Color"
180
+ msgid "Line Color and Weight"
181
+ msgstr "Linie farve"
182
+
183
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:79
184
+ msgid "Approved"
185
+ msgstr ""
186
+
187
+ # @ wp-google-maps
188
+ #: ../wp-google-maps-gold/html/live-tracking-settings-panel.html.php:106
189
+ msgid "Settings"
190
+ msgstr "Indstillinger"
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:12
209
+ msgid "Minimum Rating"
210
+ msgstr ""
211
+
212
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:21
213
+ msgid "Maximum Rating"
214
+ msgstr ""
215
+
216
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:30
217
+ msgid ""
218
+ "Please note that changing these settings will not scale ratings which have "
219
+ "already been recorded."
220
+ msgstr ""
221
+
222
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:34
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:41
230
+ #, fuzzy
231
+ #| msgid "Carousel settings"
232
+ msgid "Example range settings:"
233
+ msgstr "Karusel indstillinger"
234
+
235
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:46
236
+ msgid "1 - 5 :- Traditional One to Five Stars"
237
+ msgstr ""
238
+
239
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:51
240
+ msgid "0 - 100 :- Percentage Rating"
241
+ msgstr ""
242
+
243
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:56
244
+ msgid "0 - 1 :- Like / Dislike, or Upvote / Downvote"
245
+ msgstr ""
246
+
247
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:68
248
+ msgid "Rating Step"
249
+ msgstr ""
250
+
251
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:77
252
+ msgid "The \"Stars\" widget style does not currently support \"Step\""
253
+ msgstr ""
254
+
255
+ # @ wp-google-maps
256
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:84
257
+ #, fuzzy
258
+ msgid "Example step settings:"
259
+ msgstr "Gem indstillinger"
260
+
261
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:89
262
+ msgid "0.01 :- Allow decimal / floating point ratings"
263
+ msgstr ""
264
+
265
+ #: ../wp-google-maps-gold/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:99
270
+ msgid "5 :- Round to nearest five (eg for percentage ratings)"
271
+ msgstr ""
272
+
273
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:110
274
+ msgid "Widget Style"
275
+ msgstr ""
276
+
277
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:126
278
+ msgid "Bar rating gradient colours:"
279
+ msgstr ""
280
+
281
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:131
282
+ msgid "Start -"
283
+ msgstr ""
284
+
285
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:136
286
+ msgid "End -"
287
+ msgstr ""
288
+
289
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:153
290
+ msgid "Background color:"
291
+ msgstr ""
292
+
293
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:167
294
+ msgid "Tampering Countermeasures"
295
+ msgstr ""
296
+
297
+ # @ wp-google-maps
298
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:175
299
+ #, fuzzy
300
+ #| msgid "Basic list"
301
+ msgid "Basic Only"
302
+ msgstr "Basis liste"
303
+
304
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:180
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:184
311
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:204
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:195
318
+ msgid "Anti-Spam"
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:220
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
+ #: ../wp-google-maps-gold/html/marker-rating-settings.html.php:224
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 "
342
+ "prevent fake accounts."
343
+ msgstr ""
344
+
345
+ # @ wp-google-maps
346
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:2
347
+ #: ../wp-google-maps-gold/legacy-core.php:2179
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
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:6
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 "
357
+ "open, separating the markers on screen. This is intended for when you have "
358
+ "several markers at the same address but would like the user to be able to "
359
+ "view data from all the markers."
360
+ msgstr ""
361
+
362
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:14
363
+ #: ../wp-google-maps-gold/legacy-core.php:2182
364
+ msgid "Enable Near-Vicinity Marker Control"
365
+ msgstr ""
366
+
367
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:36
368
+ #: ../wp-google-maps-gold/legacy-core.php:2189
369
+ msgid "Near-Vicinity Affected Radius"
370
+ msgstr ""
371
+
372
+ # @ wp-google-maps
373
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:50
374
+ #, fuzzy
375
+ #| msgid "Kilometers"
376
+ msgid "Meters"
377
+ msgstr "Kilometer"
378
+
379
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:56
380
+ msgid "Markers within this threshold of one another will be grouped together"
381
+ msgstr ""
382
+
383
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:66
384
+ msgid "Use Legacy Near-Vicinity Module"
385
+ msgstr ""
386
+
387
+ # @ wp-google-maps
388
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:88
389
+ #, fuzzy
390
+ #| msgid "Category Marker"
391
+ msgid "Placeholder Marker"
392
+ msgstr "Kategori Markør"
393
+
394
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:100
395
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:254
396
+ #: ../wp-google-maps-gold/legacy-core.php:2224
397
+ msgid "Near-Vicinity Shape"
398
+ msgstr ""
399
+
400
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:106
401
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:268
402
+ #: ../wp-google-maps-gold/legacy-core.php:2226
403
+ msgid "Circle"
404
+ msgstr ""
405
+
406
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:109
407
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:267
408
+ #: ../wp-google-maps-gold/legacy-core.php:2226
409
+ msgid "Spiral"
410
+ msgstr ""
411
+
412
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:112
413
+ msgid "Hexagon"
414
+ msgstr ""
415
+
416
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:115
417
+ msgid "Line"
418
+ msgstr ""
419
+
420
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:118
421
+ #: ../wp-google-maps-pro/legacy-core.php:962
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
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:127
429
+ #, fuzzy
430
+ #| msgid "Animation"
431
+ msgid "Animate Separation"
432
+ msgstr "animation"
433
+
434
+ # @ wp-google-maps
435
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:148
436
+ #, fuzzy
437
+ #| msgid "Animation"
438
+ msgid "Animation Duration"
439
+ msgstr "animation"
440
+
441
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:160
442
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:245
443
+ msgid "Seconds"
444
+ msgstr ""
445
+
446
+ # @ wp-google-maps
447
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:169
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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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 &amp; 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
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:233
600
+ msgid "Stagger Interval"
601
+ msgstr ""
602
+
603
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:275
604
+ #: ../wp-google-maps-gold/legacy-core.php:2196
605
+ msgid "Near-Vicinity Hide Lines"
606
+ msgstr ""
607
+
608
+ # @ wp-google-maps
609
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:295
610
+ #: ../wp-google-maps-gold/legacy-core.php:2203
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
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:308
618
+ #: ../wp-google-maps-gold/legacy-core.php:2210
619
+ #, fuzzy
620
+ #| msgid "Line Opacity"
621
+ msgid "Near-Vicinity Line Opacity"
622
+ msgstr "Linie tykkelse"
623
+
624
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:319
625
+ #: ../wp-google-maps-gold/legacy-core.php:2212
626
+ msgid "Value between 0.1 and 1.0"
627
+ msgstr ""
628
+
629
+ # @ wp-google-maps
630
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:325
631
+ #: ../wp-google-maps-gold/legacy-core.php:2217
632
+ #, fuzzy
633
+ #| msgid "Line Thickness"
634
+ msgid "Near-Vicinity Line Thinkness"
635
+ msgstr "linie tykkelse"
636
+
637
+ #: ../wp-google-maps-gold/html/marker-separator-settings.html.php:335
638
+ #: ../wp-google-maps-gold/legacy-core.php:2219
639
+ msgid "Value between 1 and 50"
640
+ msgstr ""
641
+
642
+ #: ../wp-google-maps-gold/includes/class.add-on.php:90
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 "
646
+ "have installed the latest version of WP Google Maps in order to use the Gold "
647
+ "add-on."
648
+ msgstr ""
649
+
650
+ #: ../wp-google-maps-gold/includes/class.add-on.php:108
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 "
654
+ "installation. Please ensure you have installed and activated the Pro add-on "
655
+ "in order to use the Gold add-on."
656
+ msgstr ""
657
+
658
+ #: ../wp-google-maps-gold/includes/class.live-tracker.php:51
659
+ msgid "Location Tracking"
660
+ msgstr "Placering Sporing"
661
+
662
+ # @ wp-google-maps
663
+ #: ../wp-google-maps-gold/includes/class.marker-separator-settings.php:34
664
+ #, fuzzy
665
+ #| msgid "Welcome to WP Google Maps version 6.3"
666
+ msgid "Requires WP Google Maps - Pro add-on Version 8"
667
+ msgstr "Velkommen til WP Google Maps version 6.3"
668
+
669
+ # @ wp-google-maps
670
+ #: ../wp-google-maps-gold/includes/class.marker-separator-settings.php:107
671
+ #, fuzzy
672
+ #| msgid "Marker Description"
673
+ msgid "Marker Separation"
674
+ msgstr "Markør Beskrivelse"
675
+
676
+ #: ../wp-google-maps-gold/includes/class.marker-separator-settings.php:113
677
+ msgid ""
678
+ "Looking for Near-Vicinity settings? See the new <a href=\"#tabs-marker-"
679
+ "separation\">Marker Separation</a> tab."
680
+ msgstr ""
681
+
682
+ # @ wp-google-maps
683
+ #: ../wp-google-maps-gold/legacy-core.php:66
684
+ #: ../wp-google-maps-pro/legacy-core.php:4342
685
  msgid "settings"
686
  msgstr "indstillinger"
687
 
688
+ #: ../wp-google-maps-gold/legacy-core.php:67
689
+ #: ../wp-google-maps-pro/legacy-core.php:4343
690
+ #, php-format
691
+ msgid ""
692
+ "Your Google Maps API key has been successfully saved. This API key can be "
693
+ "changed in the %s page"
694
+ msgstr ""
695
+ "Din Google Maps API-nøgle er blevet gemt. Denne API-nøgle kan ændres på %s "
696
+ "siden"
697
+
698
+ #: ../wp-google-maps-gold/legacy-core.php:568
699
+ #: ../wp-google-maps-gold/legacy-core.php:707
700
+ #: ../wp-google-maps-pro/legacy-core.php:4609
701
+ msgid "Geocode was not successful for the following reason"
702
+ msgstr "Geocode car ikke vellykket grundet følgende årsag"
703
+
704
+ #: ../wp-google-maps-gold/legacy-core.php:1059
705
+ #: ../wp-google-maps-gold/legacy-core.php:1221
706
+ #: ../wp-google-maps-pro/legacy-core.php:2975
707
+ #: ../wp-google-maps-pro/legacy-core.php:2998
708
+ #: ../wp-google-maps-pro/legacy-core.php:4278
709
+ #: ../wp-google-maps-pro/legacy-core.php:4621
710
+ #: ../wp-google-maps-pro/legacy-core.php:5826
711
+ msgid "More details"
712
+ msgstr "Flere detaljer"
713
+
714
+ # @ wp-google-maps
715
+ #: ../wp-google-maps-gold/legacy-core.php:1481
716
+ msgid "Advanced Map Settings"
717
+ msgstr "Generelle kort indstillinger"
718
+
719
+ #: ../wp-google-maps-gold/legacy-core.php:1486
720
+ #: ../wp-google-maps-gold/legacy-core.php:1741
721
+ msgid "Enable Mass Marker Support"
722
+ msgstr "Aktivér Massemarkør Support"
723
+
724
+ # @ wp-google-maps
725
+ #: ../wp-google-maps-gold/legacy-core.php:1496
726
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:390
727
+ msgid "Save"
728
+ msgstr "Gem"
729
+
730
+ #: ../wp-google-maps-gold/legacy-core.php:1575
731
+ #: ../wp-google-maps-pro/legacy-core.php:5073
732
+ #: ../wp-google-maps-ugm/wp-google-maps-ugm.php:1142
733
+ msgid ""
734
+ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
735
+ "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
736
+ msgstr ""
737
+ "En uventet HTTP Fejl er opstået under anmodningen om API. </p> <p><a "
738
+ "href=“?” onclick=“document.location.reload(); return false;”>Try again</a>"
739
+
740
+ #: ../wp-google-maps-gold/legacy-core.php:1580
741
+ #: ../wp-google-maps-pro/legacy-core.php:5080
742
+ #: ../wp-google-maps-ugm/wp-google-maps-ugm.php:1147
743
+ msgid "An unknown error occurred"
744
+ msgstr "En uventet fejl er opstået"
745
+
746
+ # @ wp-google-maps
747
+ #: ../wp-google-maps-gold/legacy-core.php:1642
748
+ #: ../wp-google-maps-pro/legacy-core.php:6658
749
+ msgid "Your settings have been saved."
750
+ msgstr "Dine indstillinger er blevet gemt."
751
+
752
+ # @ wp-google-maps
753
+ #: ../wp-google-maps-gold/legacy-core.php:1717
754
+ #: ../wp-google-maps-gold/legacy-core.php:2364
755
+ msgid "Marker Clustering"
756
+ msgstr "Markør Gruppering"
757
+
758
+ # @ default
759
+ #: ../wp-google-maps-gold/legacy-core.php:1747
760
+ #: ../wp-google-maps-pro/legacy-core.php:1293
761
+ #: ../wp-google-maps-pro/legacy-core.php:5309
762
+ msgid "Advanced Settings"
763
+ msgstr "Avanceret Indstillinger"
764
+
765
+ #: ../wp-google-maps-gold/legacy-core.php:1776
766
+ #: ../wp-google-maps-gold/legacy-core.php:1779
767
+ #: ../wp-google-maps-gold/legacy-core.php:1782
768
+ msgid "Real Time Location Tracking"
769
+ msgstr "Reel Tid Placering Sporing"
770
+
771
+ #: ../wp-google-maps-gold/legacy-core.php:1787
772
+ msgid ""
773
+ "Track your location via our app and plot your current location on a map, "
774
+ "publicly or privately."
775
+ msgstr ""
776
+ "Spor din lokation via vores app og plot din nuværende lokation ind på "
777
+ "kortet, offentligt eller privat."
778
+
779
+ # @ wp-google-maps
780
+ #: ../wp-google-maps-gold/legacy-core.php:1796
781
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:46
782
+ #: ../wp-google-maps-pro/includes/page.wizard.php:187
783
+ #: ../wp-google-maps-pro/includes/page.wizard.php:227
784
+ #: ../wp-google-maps-pro/includes/page.wizard.php:271
785
+ msgid "Create Map"
786
+ msgstr "Opret kort"
787
+
788
+ #: ../wp-google-maps-gold/legacy-core.php:1841
789
+ #, php-format
790
+ msgid "Location as at %1$s"
791
+ msgstr "Lokation som %1$s"
792
+
793
+ #: ../wp-google-maps-gold/legacy-core.php:1923
794
+ msgid "Successfully accepted the device. Thank you"
795
+ msgstr "Vellykket accept af enheden. Mange tak"
796
+
797
+ #: ../wp-google-maps-gold/legacy-core.php:1964
798
+ msgid "Device has been removed. Thank you"
799
+ msgstr "Enheden er blevet fjernet. Mange tak"
800
+
801
+ # @ wp-google-maps
802
+ #: ../wp-google-maps-gold/legacy-core.php:1985
803
+ msgid "Marker Data Cleared."
804
+ msgstr "Markørdata Slettet"
805
+
806
+ #: ../wp-google-maps-gold/legacy-core.php:2022
807
+ msgid "A new device needs your approval to enable real time location tracking."
808
+ msgstr ""
809
+ "En ny enhed skal bruge din accept for a aktivere reel tid placering sporing."
810
+
811
+ #: ../wp-google-maps-gold/legacy-core.php:2023
812
+ msgid "Device ID:"
813
+ msgstr "Enheds ID:"
814
+
815
+ #: ../wp-google-maps-gold/legacy-core.php:2024
816
+ #, php-format
817
+ msgid "To accept this device, Please follow this link: %1$s"
818
+ msgstr "For at acceptere denne enhed, venligst følg dette link: %1$s"
819
+
820
+ #: ../wp-google-maps-gold/legacy-core.php:2030
821
+ msgid "To reject the device, simply ignore this email."
822
+ msgstr "For a afvise enheden, skal du blot ignorere denne email."
823
+
824
+ #: ../wp-google-maps-gold/legacy-core.php:2031
825
+ msgid ""
826
+ "A new device needs your approval to enable real time location tracking - WP "
827
+ "Google Maps"
828
+ msgstr ""
829
+ "En ny enhed har brug for din accept for at aktivere reel tid placering "
830
+ "sporing - WP Google Maps"
831
+
832
+ #: ../wp-google-maps-gold/legacy-core.php:2160
833
+ msgid "No devices"
834
+ msgstr "Ingen enheder"
835
+
836
+ #: ../wp-google-maps-gold/legacy-core.php:2191
837
+ msgid "Meters (This is an approximate value)"
838
+ msgstr ""
839
+
840
+ # @ default
841
+ # @ wp-google-maps
842
+ #: ../wp-google-maps-gold/legacy-core.php:2427
843
+ #, fuzzy
844
+ #| msgid "Marker Listing Settings"
845
+ msgid "Marker Clustering - Advanced Settings"
846
+ msgstr "Markør Liste Indstillinger"
847
+
848
+ #: ../wp-google-maps-gold/legacy-core.php:2428
849
+ msgid "Changing these settings is only suggested for experienced users."
850
+ msgstr ""
851
+
852
+ # @ wp-google-maps
853
+ #: ../wp-google-maps-gold/legacy-core.php:2433
854
+ #, fuzzy
855
+ msgid "Enable Advanced Options"
856
+ msgstr "Aktiver vejvisning?"
857
+
858
+ #: ../wp-google-maps-gold/legacy-core.php:2444
859
+ #, fuzzy
860
+ #| msgid "show options"
861
+ msgid "Options"
862
+ msgstr "vis muligheder"
863
+
864
+ #: ../wp-google-maps-gold/legacy-core.php:2449
865
+ msgid "Grid Size"
866
+ msgstr ""
867
+
868
+ # @ wp-google-maps
869
+ #: ../wp-google-maps-gold/legacy-core.php:2454
870
+ #, fuzzy
871
+ #| msgid "Maximum Zoom Level"
872
+ msgid "Max Zoom"
873
+ msgstr "Maksimum Zoom Niveau"
874
+
875
+ #: ../wp-google-maps-gold/legacy-core.php:2459
876
+ msgid "Minimum Cluster Size"
877
+ msgstr ""
878
+
879
+ # @ wp-google-maps
880
+ #: ../wp-google-maps-gold/legacy-core.php:2464
881
+ #, fuzzy
882
+ #| msgid "Accent Color"
883
+ msgid "Cluster Font Color"
884
+ msgstr "Accent Farve"
885
+
886
+ #: ../wp-google-maps-gold/legacy-core.php:2469
887
+ msgid "Cluster Font Size"
888
+ msgstr ""
889
+
890
+ #: ../wp-google-maps-gold/legacy-core.php:2474
891
+ msgid "Zoom On Click"
892
+ msgstr ""
893
+
894
+ #: ../wp-google-maps-gold/legacy-core.php:2485
895
+ msgid "Cluster Icons"
896
+ msgstr ""
897
+
898
+ #: ../wp-google-maps-gold/legacy-core.php:2492
899
+ msgid "Level 1"
900
+ msgstr ""
901
+
902
+ #: ../wp-google-maps-gold/legacy-core.php:2493
903
+ #: ../wp-google-maps-gold/legacy-core.php:2502
904
+ #: ../wp-google-maps-gold/legacy-core.php:2511
905
+ #: ../wp-google-maps-gold/legacy-core.php:2520
906
+ #: ../wp-google-maps-gold/legacy-core.php:2529
907
+ msgid "Change"
908
+ msgstr ""
909
+
910
+ #: ../wp-google-maps-gold/legacy-core.php:2493
911
+ #: ../wp-google-maps-gold/legacy-core.php:2502
912
+ #: ../wp-google-maps-gold/legacy-core.php:2511
913
+ #: ../wp-google-maps-gold/legacy-core.php:2520
914
+ #: ../wp-google-maps-gold/legacy-core.php:2529
915
+ #: ../wp-google-maps-pro/html/marker-icon-picker.html.php:18
916
+ #: ../wp-google-maps-pro/includes/custom-fields/class.custom-field-filter-widget.php:128
917
+ #: ../wp-google-maps-pro/legacy-core.php:7513
918
+ msgid "Reset"
919
+ msgstr "Reset"
920
+
921
+ # @ wp-google-maps
922
+ #: ../wp-google-maps-gold/legacy-core.php:2496
923
+ #: ../wp-google-maps-gold/legacy-core.php:2505
924
+ #: ../wp-google-maps-gold/legacy-core.php:2514
925
+ #: ../wp-google-maps-gold/legacy-core.php:2523
926
+ #: ../wp-google-maps-gold/legacy-core.php:2532
927
+ #: ../wp-google-maps-pro/legacy-core.php:1346
928
+ #: ../wp-google-maps-pro/legacy-core.php:7695
929
+ msgid "Width"
930
+ msgstr "Bredde"
931
+
932
+ # @ wp-google-maps
933
+ #: ../wp-google-maps-gold/legacy-core.php:2496
934
+ #: ../wp-google-maps-gold/legacy-core.php:2505
935
+ #: ../wp-google-maps-gold/legacy-core.php:2514
936
+ #: ../wp-google-maps-gold/legacy-core.php:2523
937
+ #: ../wp-google-maps-gold/legacy-core.php:2532
938
+ #: ../wp-google-maps-pro/legacy-core.php:1358
939
+ #: ../wp-google-maps-pro/legacy-core.php:7696
940
+ msgid "Height"
941
+ msgstr "Højde"
942
+
943
+ #: ../wp-google-maps-gold/legacy-core.php:2501
944
+ msgid "Level 2"
945
+ msgstr ""
946
+
947
+ #: ../wp-google-maps-gold/legacy-core.php:2510
948
+ msgid "Level 3"
949
+ msgstr ""
950
+
951
+ #: ../wp-google-maps-gold/legacy-core.php:2519
952
+ msgid "Level 4"
953
+ msgstr ""
954
+
955
+ #: ../wp-google-maps-gold/legacy-core.php:2528
956
+ msgid "Level 5"
957
+ msgstr ""
958
+
959
+ # @ wp-google-maps
960
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:23
961
+ #, fuzzy
962
+ #| msgid "WP Google Maps Support"
963
+ msgid "WP Google Maps - KML Importer"
964
+ msgstr "WP Google Maps Support"
965
+
966
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:23
967
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:40
968
+ msgid "KML File Importer"
969
+ msgstr ""
970
+
971
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:48
972
+ msgid "KML File"
973
+ msgstr ""
974
+
975
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:50
976
+ msgid "Please select a KML or KMZ file to import"
977
+ msgstr ""
978
+
979
+ # @ wp-google-maps
980
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:56
981
+ #, fuzzy
982
+ #| msgid "Assigned to "
983
+ msgid "Assigned Map"
984
+ msgstr "Tildelt til"
985
+
986
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
987
+ msgid "No maps found. Please create a map "
988
+ msgstr ""
989
+
990
+ # @ wp-google-maps
991
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
992
+ #, fuzzy
993
+ #| msgid "Linked maps"
994
+ msgid "new map"
995
+ msgstr "Knyttet kort"
996
+
997
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:71
998
+ msgid "before importing your KML/KMZ file"
999
+ msgstr ""
1000
+
1001
+ # @ wp-google-maps
1002
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:85
1003
+ #, fuzzy
1004
+ #| msgid "Assigned to "
1005
+ msgid "Assigned Category"
1006
+ msgstr "Tildelt til"
1007
+
1008
+ # @ wp-google-maps
1009
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:97
1010
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:125
1011
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:332
1012
+ #: ../wp-google-maps-pro/includes/page.categories.php:170
1013
+ #: ../wp-google-maps-pro/includes/page.categories.php:343
1014
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:71
1015
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:111
1016
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:256
1017
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:286
1018
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17082
1019
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17122
1020
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17267
1021
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17297
1022
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
1023
+ #: ../wp-google-maps-pro/legacy-core.php:1608
1024
+ #: ../wp-google-maps-pro/legacy-core.php:1737
1025
+ #: ../wp-google-maps-pro/legacy-core.php:5761
1026
+ msgid "None"
1027
+ msgstr "Ingen"
1028
+
1029
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1030
+ msgid "No categories found. Please create a "
1031
+ msgstr ""
1032
+
1033
+ # @ wp-google-maps
1034
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1035
+ #, fuzzy
1036
+ #| msgid "Save Category"
1037
+ msgid "new category"
1038
+ msgstr "Gem kategori "
1039
+
1040
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:108
1041
+ msgid "should you wish to assign these markers to a category"
1042
+ msgstr ""
1043
+
1044
+ # @ wp-google-maps
1045
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:119
1046
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:62
1047
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:60
1048
+ #, fuzzy
1049
+ #| msgid "Upload Icon"
1050
+ msgid "Upload"
1051
+ msgstr "Upload ikon"
1052
+
1053
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:125
1054
+ msgid ""
1055
+ "Please note that this functionality currently only supports markers. KMZ "
1056
+ "file imports are still in beta phase."
1057
+ msgstr ""
1058
+
1059
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:226
1060
+ #, fuzzy
1061
+ #| msgid "Your CSV file has been successfully imported"
1062
+ msgid ""
1063
+ "Your KML file has been successfully imported. View your markers on your "
1064
+ msgstr "Din CSV fil er ikke blevet importeret vellykket "
1065
+
1066
+ # @ wp-google-maps
1067
+ #: ../wp-google-maps-gold/modules/wp-google-maps-kml-importer.php:226
1068
+ #, fuzzy
1069
+ #| msgid "here"
1070
+ msgid "map here"
1071
+ msgstr "her"
1072
+
1073
+ #: ../wp-google-maps-gold/wp-google-maps-gold.php:337
1074
+ msgid ""
1075
+ "<strong>WP Google Maps Gold Add-on:</strong> You are running PHP version 5.2 "
1076
+ "or below, which is no longer supported by WP Google Maps and WP Google Maps "
1077
+ "Gold Add-on. Please switch to version 5.3 or above. Please speak to your "
1078
+ "host if you are unsure how to switch PHP versions."
1079
+ msgstr ""
1080
+
1081
+ #: ../wp-google-maps-gold/wp-google-maps-gold.php:350
1082
+ msgid ""
1083
+ "<strong>WP Google Maps Gold Add-on:</strong> This add-on requires WP Google "
1084
+ "Maps 7.0 or above. Please update WP Google Maps to use the Gold add-on. You "
1085
+ "can force a check for updates by going to Updates in your Dashboard menu, "
1086
+ "and clicking \"Check Again\"."
1087
+ msgstr ""
1088
+
1089
+ #: ../wp-google-maps-gold/wp-google-maps-gold.php:378
1090
+ msgid ""
1091
+ "<strong>WP Google Maps:</strong> This plugin requires the WordPress REST "
1092
+ "API, which does not appear to be present on this installation. Please update "
1093
+ "WordPress to version 4.7 or above."
1094
+ msgstr ""
1095
+
1096
+ #: ../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:1
1097
+ msgid "<iframe frameborder='0' width='0' height='0'/>"
1098
+ msgstr ""
1099
+
1100
+ # @ wp-google-maps
1101
+ #: ../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:3
1102
+ #, fuzzy
1103
+ #| msgid "Description"
1104
+ msgid "<script>"
1105
+ msgstr "Beskrivelse"
1106
+
1107
+ #: ../wp-google-maps-pro/docs/js/scripts/docstrap.lib.js:3
1108
+ msgid "<div>"
1109
+ msgstr ""
1110
+
1111
+ # @ wp-google-maps
1112
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:3
1113
+ #, fuzzy
1114
+ #| msgid "Add Marker"
1115
+ msgid "Add Map"
1116
+ msgstr "tilføj markør"
1117
+
1118
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:8
1119
+ msgid "Existing Map"
1120
+ msgstr ""
1121
+
1122
+ # @ wp-google-maps
1123
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:20
1124
+ #, fuzzy
1125
+ #| msgid "Create Map"
1126
+ msgid "Insert Map"
1127
+ msgstr "Opret kort"
1128
+
1129
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:26
1130
+ msgid "Quick Create"
1131
+ msgstr ""
1132
+
1133
+ # @ wp-google-maps
1134
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:29
1135
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:199
1136
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:190
1137
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:15
1138
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:18
1139
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:458
1140
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:140
1141
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:164
1142
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:222
1143
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:141
1144
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:128
1145
+ #: ../wp-google-maps-pro/legacy-core.php:2268
1146
+ #: ../wp-google-maps-pro/legacy-core.php:7150
1147
+ #: ../wp-google-maps-pro/legacy-core.php:7242
1148
+ #: ../wp-google-maps-pro/legacy-core.php:7694
1149
+ msgid "Title"
1150
+ msgstr "Titel"
1151
+
1152
+ # @ wp-google-maps
1153
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:32
1154
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:134
1155
+ #: ../wp-google-maps-pro/legacy-core.php:2269
1156
+ msgid "Address"
1157
+ msgstr "adresse"
1158
+
1159
+ # @ wp-google-maps
1160
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:35
1161
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:253
1162
+ #: ../wp-google-maps-pro/includes/page.categories.php:743
1163
+ #: ../wp-google-maps-pro/includes/page.categories.php:915
1164
+ msgid "Icon"
1165
+ msgstr "ikon"
1166
+
1167
+ #: ../wp-google-maps-pro/html/add-map-dialog.html.php:39
1168
+ #, fuzzy
1169
+ #| msgid "Leave blank for no restrictions."
1170
+ msgid "Leave blank for the default"
1171
+ msgstr "Lad være tom for ingen begrænsninger."
1172
+
1173
+ # @ wp-google-maps
1174
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:2
1175
+ #, fuzzy
1176
+ #| msgid "Directions"
1177
+ msgid "Directions:"
1178
+ msgstr "Vejvisninger"
1179
+
1180
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:5
1181
+ msgid ""
1182
+ "This feature requires an API key from OpenRouteService to function. Please "
1183
+ "obtain a key from <a href=\"https://openrouteservice.org/dev/#/home\">the "
1184
+ "OpenRouteService Developer Console</a> and paste your key into Maps &rarr; "
1185
+ "Settings &rarr; Advanced in the \"OpenRouteService API key\" field."
1186
+ msgstr ""
1187
+
1188
+ # @ wp-google-maps
1189
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:12
1190
+ #, fuzzy
1191
+ #| msgid "Enable Directions?"
1192
+ msgid "Enable Directions"
1193
+ msgstr "Aktiver vejvisning"
1194
+
1195
+ # @ wp-google-maps
1196
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:30
1197
+ #, fuzzy
1198
+ #| msgid "Directions Box Width"
1199
+ msgid "Directions Box Style"
1200
+ msgstr "Vejvisnings boks bredde"
1201
+
1202
+ # @ wp-google-maps
1203
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:41
1204
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:148
1205
+ #: ../wp-google-maps-pro/legacy-core.php:520
1206
+ #: ../wp-google-maps-pro/legacy-core.php:5688
1207
+ #: ../wp-google-maps-pro/legacy-core.php:8508
1208
+ #: ../wp-google-maps-pro/legacy-core.php:8593
1209
+ msgid "Default"
1210
+ msgstr "Standard"
1211
+
1212
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:49
1213
+ #: ../wp-google-maps-pro/legacy-core.php:959
1214
+ #: ../wp-google-maps-pro/legacy-core.php:1411
1215
+ #: ../wp-google-maps-pro/legacy-core.php:1490
1216
+ #: ../wp-google-maps-pro/legacy-core.php:2194
1217
+ #: ../wp-google-maps-pro/legacy-core.php:2236
1218
+ #: ../wp-google-maps-pro/legacy-core.php:5690
1219
+ msgid "Modern"
1220
+ msgstr ""
1221
+
1222
+ # @ wp-google-maps
1223
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:59
1224
+ msgid "Directions Box Open by Default?"
1225
+ msgstr "Skal vejvisnings boksen åbne som standard?"
1226
+
1227
+ # @ wp-google-maps
1228
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:70
1229
+ msgid "Yes, on the left"
1230
+ msgstr "Ja, til venstre"
1231
+
1232
+ # @ wp-google-maps
1233
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:75
1234
+ msgid "Yes, on the right"
1235
+ msgstr "Ja, til højre."
1236
+
1237
+ # @ wp-google-maps
1238
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:80
1239
+ msgid "Yes, above"
1240
+ msgstr "Ja, ovenover"
1241
+
1242
+ # @ wp-google-maps
1243
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:85
1244
+ msgid "Yes, below"
1245
+ msgstr "Ja, under"
1246
+
1247
+ # @ wp-google-maps
1248
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:94
1249
+ msgid "Directions Box Width"
1250
+ msgstr "Vejvisnings boks bredde"
1251
+
1252
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:107
1253
+ msgid "%"
1254
+ msgstr "%"
1255
+
1256
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:112
1257
+ msgid "px"
1258
+ msgstr "px"
1259
+
1260
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:122
1261
+ msgid "Default 'To' address"
1262
+ msgstr "Standart sat til “Til” adresse"
1263
+
1264
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:131
1265
+ #, fuzzy
1266
+ #| msgid "Default 'To' address"
1267
+ msgid "Default 'From' address"
1268
+ msgstr "Standart sat til “Til” adresse"
1269
+
1270
+ # @ wp-google-maps
1271
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:140
1272
+ #, fuzzy
1273
+ #| msgid "Directions"
1274
+ msgid "Directions behaviour"
1275
+ msgstr "Vejvisninger"
1276
+
1277
+ # @ wp-google-maps
1278
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:153
1279
+ #, fuzzy
1280
+ #| msgid "Directions Box Width"
1281
+ msgid "Display directions on the page"
1282
+ msgstr "Vejvisnings boks bredde"
1283
+
1284
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:163
1285
+ msgid "External"
1286
+ msgstr ""
1287
+
1288
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:168
1289
+ msgid "Open Google / Apple maps in a new tab"
1290
+ msgstr ""
1291
+
1292
+ # @ wp-google-maps
1293
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:178
1294
+ #, fuzzy
1295
+ #| msgid "Satellite"
1296
+ msgid "Intelligent"
1297
+ msgstr "Sattelit"
1298
+
1299
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:183
1300
+ msgid ""
1301
+ "Display directions on the page on desktop devices, open Google / Apple maps "
1302
+ "mobile app on mobile devices"
1303
+ msgstr ""
1304
+
1305
+ # @ wp-google-maps
1306
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:193
1307
+ #, fuzzy
1308
+ #| msgid "WP Google Maps Support"
1309
+ msgid "Force Google Maps mobile app"
1310
+ msgstr "WP Google Maps Support"
1311
+
1312
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:198
1313
+ msgid "Force iOS devices to use the Google Maps mobile app for directions"
1314
+ msgstr ""
1315
+
1316
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:211
1317
+ msgid "Origin icon picker"
1318
+ msgstr ""
1319
+
1320
+ # @ wp-google-maps
1321
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:221
1322
+ #, fuzzy
1323
+ #| msgid "Retina Icon Width"
1324
+ msgid "Destination Icon Picker"
1325
+ msgstr "Retina Ikon Bredde"
1326
+
1327
+ # @ wp-google-maps
1328
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:230
1329
+ #, fuzzy
1330
+ #| msgid "Directions"
1331
+ msgid "Directions route color"
1332
+ msgstr "Vejvisninger"
1333
+
1334
+ # @ wp-google-maps
1335
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:244
1336
+ #, fuzzy
1337
+ #| msgid "Directions Box Width"
1338
+ msgid "Directions route weight"
1339
+ msgstr "Vejvisnings boks bredde"
1340
+
1341
+ # @ wp-google-maps
1342
+ #: ../wp-google-maps-pro/html/directions-box-settings.html.php:261
1343
+ #, fuzzy
1344
+ #| msgid "Directions Box Width"
1345
+ msgid "Directions route opacity"
1346
+ msgstr "Vejvisnings boks bredde"
1347
+
1348
+ # @ wp-google-maps
1349
+ #: ../wp-google-maps-pro/html/directions-box.html.php:2
1350
+ msgid "Get Directions"
1351
+ msgstr "Routebeschrijving naar"
1352
+
1353
+ #: ../wp-google-maps-pro/html/directions-box.html.php:28
1354
+ #: ../wp-google-maps-pro/html/directions-box.html.php:32
1355
+ msgid "From"
1356
+ msgstr "Fra"
1357
+
1358
+ #: ../wp-google-maps-pro/html/directions-box.html.php:42
1359
+ #: ../wp-google-maps-pro/html/directions-box.html.php:45
1360
+ msgid "To"
1361
+ msgstr "Til"
1362
+
1363
+ #: ../wp-google-maps-pro/html/directions-box.html.php:52
1364
+ msgid "Via"
1365
+ msgstr ""
1366
+
1367
+ # @ wp-google-maps
1368
+ #: ../wp-google-maps-pro/html/directions-box.html.php:65
1369
+ #, fuzzy
1370
+ #| msgid "Add a Polygon"
1371
+ msgid "Add Waypoint"
1372
+ msgstr "Tilføj en polygon"
1373
+
1374
+ #: ../wp-google-maps-pro/html/directions-box.html.php:75
1375
+ msgid "For"
1376
+ msgstr "For"
1377
+
1378
+ # @ wp-google-maps
1379
+ #: ../wp-google-maps-pro/html/directions-box.html.php:81
1380
+ msgid "Driving"
1381
+ msgstr "Kører"
1382
+
1383
+ #: ../wp-google-maps-pro/html/directions-box.html.php:86
1384
+ msgid "Walking"
1385
+ msgstr "Går"
1386
+
1387
+ #: ../wp-google-maps-pro/html/directions-box.html.php:91
1388
+ #, fuzzy
1389
+ #| msgid "Transit Layer"
1390
+ msgid "Transit"
1391
+ msgstr "Transitlag"
1392
+
1393
+ #: ../wp-google-maps-pro/html/directions-box.html.php:96
1394
+ msgid "Bicycling"
1395
+ msgstr "Cykler"
1396
+
1397
+ #: ../wp-google-maps-pro/html/directions-box.html.php:105
1398
+ msgid "show options"
1399
+ msgstr "vis muligheder"
1400
+
1401
+ # @ wp-google-maps
1402
+ #: ../wp-google-maps-pro/html/directions-box.html.php:109
1403
+ msgid "hide options"
1404
+ msgstr "Gem muligheder"
1405
+
1406
+ #: ../wp-google-maps-pro/html/directions-box.html.php:116
1407
+ msgid "Avoid Tolls"
1408
+ msgstr "Undgå Afgifter"
1409
+
1410
+ #: ../wp-google-maps-pro/html/directions-box.html.php:122
1411
+ msgid "Avoid Highways"
1412
+ msgstr "Undgå Motorveje"
1413
+
1414
+ #: ../wp-google-maps-pro/html/directions-box.html.php:128
1415
+ msgid "Avoid Ferries"
1416
+ msgstr ""
1417
+
1418
+ #: ../wp-google-maps-pro/html/directions-box.html.php:141
1419
+ msgid "Go"
1420
+ msgstr "Gå"
1421
+
1422
+ # @ wp-google-maps
1423
+ #: ../wp-google-maps-pro/html/directions-box.html.php:148
1424
+ #: ../wp-google-maps-pro/legacy-core.php:3472
1425
+ #: ../wp-google-maps-pro/legacy-core.php:3499
1426
+ msgid "Print directions"
1427
+ msgstr "Routebeschrijving uitprinten"
1428
+
1429
+ # @ wp-google-maps
1430
+ #: ../wp-google-maps-pro/html/directions-box.html.php:156
1431
+ #: ../wp-google-maps-pro/legacy-core.php:3470
1432
+ #: ../wp-google-maps-pro/legacy-core.php:3497
1433
+ msgid "Reset directions"
1434
+ msgstr "Reset routebeschrijving"
1435
+
1436
+ # @ wp-google-maps
1437
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:3
1438
+ #, fuzzy
1439
+ #| msgid "Use Google Maps API"
1440
+ msgid "Use Google Maps API:"
1441
+ msgstr "Brug Google Maps API"
1442
+
1443
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:9
1444
+ msgid "3.exp (Experimental)"
1445
+ msgstr ""
1446
+
1447
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:14
1448
+ msgid "3.31"
1449
+ msgstr ""
1450
+
1451
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:19
1452
+ msgid "3.30 (Retired)"
1453
+ msgstr ""
1454
+
1455
+ # @ wp-google-maps
1456
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:27
1457
+ #, fuzzy
1458
+ #| msgid "Use Google Maps API"
1459
+ msgid "Load Google Maps API:"
1460
+ msgstr "Brug Google Maps API"
1461
+
1462
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:33
1463
+ msgid "Where required"
1464
+ msgstr ""
1465
+
1466
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:38
1467
+ msgid "Always"
1468
+ msgstr ""
1469
+
1470
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:43
1471
+ msgid "Only Front End"
1472
+ msgstr ""
1473
+
1474
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:48
1475
+ msgid "Only Back End"
1476
+ msgstr ""
1477
+
1478
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:53
1479
+ msgid "Never"
1480
+ msgstr ""
1481
+
1482
+ # @ wp-google-maps
1483
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:61
1484
+ #, fuzzy
1485
+ #| msgid "Use Google Maps API"
1486
+ msgid "Always include Google Maps API on pages:"
1487
+ msgstr "Brug Google Maps API"
1488
+
1489
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:64
1490
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:72
1491
+ msgid "Page IDs"
1492
+ msgstr ""
1493
+
1494
+ # @ wp-google-maps
1495
+ #: ../wp-google-maps-pro/html/google-maps-api-settings.html.php:69
1496
+ #, fuzzy
1497
+ #| msgid "Use Google Maps API"
1498
+ msgid "Always exclude Google Maps API on pages:"
1499
+ msgstr "Brug Google Maps API"
1500
+
1501
+ # @ wp-google-maps
1502
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:4
1503
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:4
1504
+ #, fuzzy
1505
+ #| msgid "Map Data"
1506
+ msgid "Import Data"
1507
+ msgstr "Kortdata"
1508
+
1509
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:10
1510
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:11
1511
+ msgid "Import via:"
1512
+ msgstr ""
1513
+
1514
+ # @ wp-google-maps
1515
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:16
1516
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:18
1517
+ #: ../wp-google-maps-ugm/wp-google-maps-ugm.php:621
1518
+ #, fuzzy
1519
+ #| msgid "Pic URL"
1520
+ msgid "URL"
1521
+ msgstr "billede URL"
1522
+
1523
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:21
1524
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:24
1525
+ msgid "File"
1526
+ msgstr ""
1527
+
1528
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:26
1529
+ msgid "Bulk JPEG"
1530
+ msgstr ""
1531
+
1532
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:35
1533
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:33
1534
+ msgid ""
1535
+ "If using a Google Sheet URL, the sheet must be public or have link sharing "
1536
+ "turned on."
1537
+ msgstr ""
1538
+
1539
+ # @ wp-google-maps
1540
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:40
1541
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:88
1542
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:111
1543
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:118
1544
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:38
1545
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:91
1546
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:401
1547
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:504
1548
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:108
1549
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:173
1550
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:150
1551
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:255
1552
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:115
1553
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:174
1554
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:595
1555
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:936
1556
+ #, fuzzy
1557
+ #| msgid "Support"
1558
+ msgid "Import"
1559
+ msgstr "Support"
1560
+
1561
+ # @ wp-google-maps
1562
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:52
1563
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:50
1564
+ #, fuzzy
1565
+ #| msgid "Select"
1566
+ msgid "Select File"
1567
+ msgstr "Vælg"
1568
+
1569
+ # @ wp-google-maps
1570
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:57
1571
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:55
1572
+ #, fuzzy
1573
+ #| msgid "Upload File"
1574
+ msgid "Max upload size"
1575
+ msgstr "Upload Fil"
1576
+
1577
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:73
1578
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:78
1579
+ msgid "Import Uploads"
1580
+ msgstr ""
1581
+
1582
+ # @ wp-google-maps
1583
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:91
1584
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:167
1585
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:94
1586
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:149
1587
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:679
1588
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:302
1589
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:392
1590
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:293
1591
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:937
1592
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:497
1593
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:510
1594
+ msgid "Delete"
1595
+ msgstr "Slet"
1596
+
1597
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:136
1598
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:120
1599
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:505
1600
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
1601
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:256
1602
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
1603
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:596
1604
+ msgid "Schedule"
1605
+ msgstr ""
1606
+
1607
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:139
1608
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:123
1609
+ msgid ""
1610
+ "Imports can be scheduled by url or uploaded file. To schedule an import, "
1611
+ "import as normal and select the Schedule button. Scheduled imports will be "
1612
+ "listed on this page and can be edited or deleted from here."
1613
+ msgstr ""
1614
+
1615
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:147
1616
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:131
1617
+ msgid "URL / Filename"
1618
+ msgstr ""
1619
+
1620
+ # @ wp-google-maps
1621
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:164
1622
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:146
1623
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:678
1624
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:301
1625
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:391
1626
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:292
1627
+ #: ../wp-google-maps-pro/includes/page.categories.php:882
1628
+ #: ../wp-google-maps-pro/includes/page.categories.php:935
1629
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:496
1630
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:509
1631
+ #: ../wp-google-maps-pro/legacy-core.php:285
1632
+ #: ../wp-google-maps-pro/legacy-core.php:336
1633
+ #: ../wp-google-maps-pro/legacy-core.php:7713
1634
+ #: ../wp-google-maps-pro/legacy-core.php:7717
1635
+ #: ../wp-google-maps-pro/legacy-core.php:7915
1636
+ msgid "Edit"
1637
+ msgstr "rediger"
1638
+
1639
+ # @ wp-google-maps
1640
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:170
1641
+ #, fuzzy
1642
+ #| msgid "View"
1643
+ msgid "View Log"
1644
+ msgstr "Vis"
1645
+
1646
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:173
1647
+ msgid "View Response"
1648
+ msgstr ""
1649
+
1650
+ # @ wp-google-maps
1651
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:185
1652
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:172
1653
+ #, fuzzy
1654
+ #| msgid "Map Data"
1655
+ msgid "Export Data"
1656
+ msgstr "Kortdata"
1657
+
1658
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:188
1659
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:175
1660
+ msgid ""
1661
+ "Select which maps and map data you'd like to export. Click the Export button "
1662
+ "to download a JSON file of the exported maps and their data."
1663
+ msgstr ""
1664
+
1665
+ # @ wp-google-maps
1666
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:196
1667
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:187
1668
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:243
1669
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:457
1670
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:139
1671
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:221
1672
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:140
1673
+ #: ../wp-google-maps-pro/includes/page.categories.php:741
1674
+ #: ../wp-google-maps-pro/includes/page.categories.php:913
1675
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:471
1676
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:484
1677
+ #: ../wp-google-maps-pro/legacy-core.php:267
1678
+ #: ../wp-google-maps-pro/legacy-core.php:318
1679
+ #: ../wp-google-maps-pro/legacy-core.php:2267
1680
+ #: ../wp-google-maps-pro/legacy-core.php:5729
1681
+ #: ../wp-google-maps-pro/legacy-core.php:7693
1682
+ #: ../wp-google-maps-pro/legacy-core.php:7894
1683
+ msgid "ID"
1684
+ msgstr "ID"
1685
+
1686
+ # @ wp-google-maps
1687
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:207
1688
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:199
1689
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:465
1690
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
1691
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:175
1692
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:229
1693
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
1694
+ #, fuzzy
1695
+ #| msgid "Select"
1696
+ msgid "Select All"
1697
+ msgstr "Vælg"
1698
+
1699
+ # @ wp-google-maps
1700
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:210
1701
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:202
1702
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:465
1703
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:147
1704
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:175
1705
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:229
1706
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:148
1707
+ #, fuzzy
1708
+ #| msgid "Select"
1709
+ msgid "Select None"
1710
+ msgstr "Vælg"
1711
+
1712
+ # @ wp-google-maps
1713
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:222
1714
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:215
1715
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:181
1716
+ msgid "Categories"
1717
+ msgstr "Kategorier"
1718
+
1719
+ # @ wp-google-maps
1720
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:228
1721
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:221
1722
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:182
1723
+ #: ../wp-google-maps-pro/legacy-core.php:8881
1724
+ #, fuzzy
1725
+ #| msgid "Custom Marker"
1726
+ msgid "Custom Fields"
1727
+ msgstr "Brugerdefineret markør"
1728
+
1729
+ # @ wp-google-maps
1730
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:241
1731
+ #, fuzzy
1732
+ #| msgid "settings"
1733
+ msgid "Ratings"
1734
+ msgstr "indstillinger"
1735
+
1736
+ # @ wp-google-maps
1737
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:252
1738
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:227
1739
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:183
1740
+ #: ../wp-google-maps-pro/legacy-core.php:2388
1741
+ msgid "Markers"
1742
+ msgstr "Markører"
1743
+
1744
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:258
1745
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:233
1746
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:184
1747
+ #: ../wp-google-maps-pro/legacy-core.php:2392
1748
+ msgid "Circles"
1749
+ msgstr ""
1750
+
1751
+ # @ wp-google-maps
1752
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:264
1753
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:239
1754
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:185
1755
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:122
1756
+ #: ../wp-google-maps-pro/legacy-core.php:2389
1757
+ msgid "Polygons"
1758
+ msgstr "Polygoner"
1759
+
1760
+ # @ wp-google-maps
1761
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:270
1762
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:245
1763
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:186
1764
+ #: ../wp-google-maps-pro/legacy-core.php:2390
1765
+ msgid "Polylines"
1766
+ msgstr "polylinier"
1767
+
1768
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:276
1769
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:251
1770
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:187
1771
+ #: ../wp-google-maps-pro/legacy-core.php:2393
1772
+ msgid "Rectangles"
1773
+ msgstr ""
1774
+
1775
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:282
1776
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:257
1777
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:188
1778
+ #, fuzzy
1779
+ #| msgid "Heatmaps"
1780
+ msgid "Heatmap Datasets"
1781
+ msgstr "Heatmaps"
1782
+
1783
+ # @ wp-google-maps
1784
+ #: ../wp-google-maps-pro/html/import-export/import-export.html.php:287
1785
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:262
1786
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:597
1787
+ #, fuzzy
1788
+ #| msgid "Support"
1789
+ msgid "Export"
1790
+ msgstr "Support"
1791
+
1792
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:153
1793
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:680
1794
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:303
1795
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:393
1796
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:294
1797
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:1033
1798
+ msgid "No schedule found"
1799
+ msgstr ""
1800
+
1801
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:155
1802
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:681
1803
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:304
1804
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:394
1805
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:295
1806
+ msgid "Next Scheduled Run"
1807
+ msgstr ""
1808
+
1809
+ #: ../wp-google-maps-pro/html/import-export/import-source-panel.html.php:180
1810
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:1058
1811
+ msgid "No maps available for export."
1812
+ msgstr ""
1813
+
1814
+ # @ wp-google-maps
1815
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:5
1816
+ #, fuzzy
1817
+ #| msgid "Add a marker"
1818
+ msgid "Add a Marker"
1819
+ msgstr "Tilføj markør"
1820
+
1821
+ # @ wp-google-maps
1822
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:24
1823
+ msgid "Address/GPS"
1824
+ msgstr "Addresse/GPS"
1825
+
1826
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:31
1827
+ msgid "Extract address from picture"
1828
+ msgstr ""
1829
+
1830
+ # @ wp-google-maps
1831
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:46
1832
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:137
1833
+ #: ../wp-google-maps-pro/legacy-core.php:2270
1834
+ #: ../wp-google-maps-pro/legacy-core.php:7153
1835
+ #: ../wp-google-maps-pro/legacy-core.php:7245
1836
+ msgid "Description"
1837
+ msgstr "Beskrivelse"
1838
+
1839
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:62
1840
+ msgid "Gallery"
1841
+ msgstr ""
1842
+
1843
+ # @ wp-google-maps
1844
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:73
1845
+ msgid "Link URL"
1846
+ msgstr "Link URL"
1847
+
1848
+ # @ wp-google-maps
1849
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:82
1850
+ msgid "Custom Marker"
1851
+ msgstr "Brugerdefineret markør"
1852
+
1853
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:100
1854
+ msgid "This is a retina ready marker"
1855
+ msgstr "Dette er en retina klar markør"
1856
+
1857
+ # @ wp-google-maps
1858
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:110
1859
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:131
1860
+ #: ../wp-google-maps-pro/includes/page.categories.php:742
1861
+ #: ../wp-google-maps-pro/includes/page.categories.php:914
1862
+ #: ../wp-google-maps-pro/legacy-core.php:2271
1863
+ #: ../wp-google-maps-pro/legacy-core.php:7487
1864
+ msgid "Category"
1865
+ msgstr "kategori"
1866
+
1867
+ # @ wp-google-maps
1868
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:119
1869
+ msgid "Animation"
1870
+ msgstr "animation"
1871
+
1872
+ # @ wp-google-maps
1873
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:130
1874
+ #: ../wp-google-maps-pro/legacy-core.php:1609
1875
+ msgid "Bounce"
1876
+ msgstr "Hop"
1877
+
1878
+ # @ wp-google-maps
1879
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:135
1880
+ #: ../wp-google-maps-pro/legacy-core.php:1610
1881
+ msgid "Drop"
1882
+ msgstr "smid"
1883
+
1884
+ # @ wp-google-maps
1885
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:144
1886
+ msgid "InfoWindow open by default"
1887
+ msgstr "skal InfoWindow åbne som standard"
1888
+
1889
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:164
1890
+ #: ../wp-google-maps-pro/legacy-core.php:8653
1891
+ msgid "Display on front end"
1892
+ msgstr ""
1893
+
1894
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:184
1895
+ msgid "Sticky"
1896
+ msgstr ""
1897
+
1898
+ # @ wp-google-maps
1899
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:191
1900
+ #, fuzzy
1901
+ #| msgid "Basic Marker Listings"
1902
+ msgid "Always on top in Marker Listings"
1903
+ msgstr "Basis Markørlister"
1904
+
1905
+ # @ wp-google-maps
1906
+ #: ../wp-google-maps-pro/html/map-edit-page/pro-marker-panel.html.php:201
1907
+ msgid "Add Marker"
1908
+ msgstr "tilføj markør"
1909
+
1910
+ # @ wp-google-maps
1911
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:11
1912
+ #: ../wp-google-maps-pro/legacy-core.php:1295
1913
+ #, fuzzy
1914
+ #| msgid "Marker Clustering"
1915
+ msgid "Marker Filtering"
1916
+ msgstr "Markør Gruppering"
1917
+
1918
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:16
1919
+ msgid "Enable custom field filtering on"
1920
+ msgstr ""
1921
+
1922
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:33
1923
+ #, php-format
1924
+ msgid ""
1925
+ "You have no custom fields to filter on. <a href=\"%s\">Add custom fields "
1926
+ "here</a>."
1927
+ msgstr ""
1928
+
1929
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:43
1930
+ msgid "Toggle filter"
1931
+ msgstr ""
1932
+
1933
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:47
1934
+ #, fuzzy
1935
+ #| msgid "No country selected"
1936
+ msgid "No widget type selected"
1937
+ msgstr "Intet land er valgt"
1938
+
1939
+ #: ../wp-google-maps-pro/html/marker-filtering-tab.html.php:67
1940
+ msgid "You must choose a widget type for this field to enable filtering on it"
1941
+ msgstr ""
1942
+
1943
+ # @ wp-google-maps
1944
+ #: ../wp-google-maps-pro/html/marker-icon-picker.html.php:8
1945
+ #: ../wp-google-maps-pro/includes/page.categories.php:148
1946
+ #: ../wp-google-maps-pro/includes/page.categories.php:318
1947
+ #: ../wp-google-maps-pro/legacy-core.php:8670
1948
+ msgid "Upload Image"
1949
+ msgstr "Upload Billede"
1950
+
1951
+ # @ wp-google-maps
1952
+ #: ../wp-google-maps-pro/html/marker-icon-picker.html.php:13
1953
+ #: ../wp-google-maps-pro/legacy-core.php:1602
1954
+ #, fuzzy
1955
+ #| msgid "Marker Category"
1956
+ msgid "Marker Library"
1957
+ msgstr "Marker Kategorier"
1958
+
1959
+ # @ wp-google-maps
1960
+ #: ../wp-google-maps-pro/html/marker-listings/legacy/basic-table-item.html.php:25
1961
+ #: ../wp-google-maps-pro/html/marker-listings/legacy/carousel-item.html.php:18
1962
+ #: ../wp-google-maps-pro/html/marker-listings/legacy/grid-item.html.php:8
1963
+ #: ../wp-google-maps-pro/includes/page.wizard.php:204
1964
+ #: ../wp-google-maps-pro/includes/page.wizard.php:207
1965
+ #: ../wp-google-maps-pro/legacy-core.php:1291
1966
+ #: ../wp-google-maps-pro/legacy-core.php:3021
1967
+ #: ../wp-google-maps-pro/legacy-core.php:3401
1968
+ #: ../wp-google-maps-pro/legacy-core.php:3926
1969
+ #: ../wp-google-maps-pro/legacy-core.php:4286
1970
+ msgid "Directions"
1971
+ msgstr "Vejvisninger"
1972
+
1973
+ # @ wp-google-maps
1974
+ #: ../wp-google-maps-pro/html/pro-store-locator.html.php:34
1975
+ #: ../wp-google-maps-pro/legacy-core.php:7450
1976
+ #: ../wp-google-maps-pro/legacy-core.php:8521
1977
+ #: ../wp-google-maps-pro/legacy-core.php:8606
1978
+ msgid "Radius"
1979
+ msgstr "Radius"
1980
+
1981
+ # @ wp-google-maps
1982
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:89
1983
+ #, fuzzy
1984
+ #| msgid "Advanced Options"
1985
+ msgid "Advanced Custom Fields"
1986
+ msgstr "Avanceret muligheder"
1987
+
1988
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:94
1989
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:227
1990
+ msgid "(Not available)"
1991
+ msgstr ""
1992
+
1993
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.acf.php:108
1994
+ #, php-format
1995
+ msgid "%d marker(s) found."
1996
+ msgstr ""
1997
+
1998
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:28
1999
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:226
2000
+ msgid "Security check failed."
2001
+ msgstr ""
2002
+
2003
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:32
2004
+ msgid "Specified import class does not exist"
2005
+ msgstr ""
2006
+
2007
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.marker-source.php:37
2008
+ msgid "Class must be an instance of \\WPGMZA\\Integration\\MarkerSource"
2009
+ msgstr ""
2010
+
2011
+ #: ../wp-google-maps-pro/includes/3rd-party-integration/class.toolset-woocommerce.php:222
2012
+ msgid "Toolset"
2013
+ msgstr ""
2014
+
2015
+ #: ../wp-google-maps-pro/includes/class.category-tree-native.php:21
2016
+ #: ../wp-google-maps-pro/includes/page.categories.php:463
2017
+ #: ../wp-google-maps-pro/includes/page.categories.php:546
2018
+ msgid "All"
2019
+ msgstr "Alle"
2020
+
2021
+ # @ wp-google-maps
2022
+ #: ../wp-google-maps-pro/includes/class.category-tree-wordpress.php:12
2023
+ #, fuzzy
2024
+ #| msgid "Categories"
2025
+ msgid "All Categories"
2026
+ msgstr "Kategorier"
2027
+
2028
+ #: ../wp-google-maps-pro/includes/class.pro-map.php:72
2029
+ msgid ""
2030
+ "<strong>WP Google Maps:</strong> Fusion Tables are deprecated and will be "
2031
+ "turned off as of December the 3rd, 2019. Google Maps will no longer support "
2032
+ "Fusion Tables from this date forward."
2033
+ msgstr ""
2034
+
2035
+ # @ wp-google-maps
2036
+ #: ../wp-google-maps-pro/includes/class.pro-store-locator.php:51
2037
+ #: ../wp-google-maps-pro/legacy-core.php:841
2038
+ #: ../wp-google-maps-pro/legacy-core.php:7413
2039
+ msgid "ZIP / Address:"
2040
+ msgstr "Postnummer / Adresse:"
2041
+
2042
+ # @ wp-google-maps
2043
+ #: ../wp-google-maps-pro/includes/class.pro-store-locator.php:60
2044
+ #: ../wp-google-maps-pro/legacy-core.php:842
2045
+ #: ../wp-google-maps-pro/legacy-core.php:7414
2046
+ msgid "Title / Description:"
2047
+ msgstr "Titel / Beskrivelse:"
2048
+
2049
+ #: ../wp-google-maps-pro/includes/class.pro-store-locator.php:87
2050
+ #: ../wp-google-maps-pro/legacy-core.php:837
2051
+ #: ../wp-google-maps-pro/legacy-core.php:7417
2052
+ msgid "No results found in this location. Please try again."
2053
+ msgstr ""
2054
+
2055
+ #: ../wp-google-maps-pro/includes/custom-field-filter-widgets/class.date.php:23
2056
+ #: ../wp-google-maps-pro/includes/custom-field-filter-widgets/class.time.php:24
2057
+ msgid "to"
2058
+ msgstr ""
2059
+
2060
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:114
2061
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:320
2062
+ msgid "Value"
2063
+ msgstr ""
2064
+
2065
+ # @ wp-google-maps
2066
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:234
2067
+ #, fuzzy
2068
+ #| msgid "WP Google Maps Error log"
2069
+ msgid "WP Google Maps - Custom Fields"
2070
+ msgstr "WP Google Maps Fejl log"
2071
+
2072
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:258
2073
+ #, fuzzy
2074
+ #| msgid "Contributers"
2075
+ msgid "Attributes"
2076
+ msgstr "Bidragere"
2077
+
2078
+ # @ wp-google-maps
2079
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:263
2080
+ #, fuzzy
2081
+ #| msgid "Filter by"
2082
+ msgid "Filter Type"
2083
+ msgstr "Filtrer efter"
2084
+
2085
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:268
2086
+ #: ../wp-google-maps-pro/legacy-core.php:4945
2087
+ msgid "InfoWindows"
2088
+ msgstr "Info vindue"
2089
+
2090
+ # @ wp-google-maps
2091
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:273
2092
+ #, fuzzy
2093
+ #| msgid "Marker Listing"
2094
+ msgid "Marker Listings"
2095
+ msgstr "Markørlister"
2096
+
2097
+ # @ wp-google-maps
2098
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:278
2099
+ #, fuzzy
2100
+ #| msgid "Action"
2101
+ msgid "Actions"
2102
+ msgstr "udfør"
2103
+
2104
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:337
2105
+ msgid "Text"
2106
+ msgstr ""
2107
+
2108
+ # @ wp-google-maps
2109
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:342
2110
+ #: ../wp-google-maps-pro/legacy-core.php:5715
2111
+ msgid "Dropdown"
2112
+ msgstr "Dropdown"
2113
+
2114
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:347
2115
+ #: ../wp-google-maps-pro/legacy-core.php:5716
2116
+ msgid "Checkboxes"
2117
+ msgstr "Afkrydsningsfelter"
2118
+
2119
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:352
2120
+ msgid "Time Range"
2121
+ msgstr ""
2122
+
2123
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:357
2124
+ msgid "Date Range"
2125
+ msgstr ""
2126
+
2127
+ # @ wp-google-maps
2128
+ #: ../wp-google-maps-pro/includes/custom-fields/page.custom-fields.php:377
2129
+ #, fuzzy
2130
+ #| msgid "Adding"
2131
+ msgid "Add"
2132
+ msgstr "tilføjer"
2133
+
2134
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:61
2135
+ msgid "Failed to geocode address"
2136
+ msgstr ""
2137
+
2138
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:62
2139
+ msgid "No address specified for geocoding"
2140
+ msgstr ""
2141
+
2142
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:63
2143
+ msgid "No address or coordinates specified"
2144
+ msgstr ""
2145
+
2146
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:144
2147
+ msgid " on row(s) "
2148
+ msgstr ""
2149
+
2150
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:167
2151
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:29
2152
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:72
2153
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:29
2154
+ msgid "Error: Malformed options."
2155
+ msgstr ""
2156
+
2157
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:382
2158
+ msgid ""
2159
+ "We couldn't establish what kind of data you are trying to import (is the "
2160
+ "header row missing?)"
2161
+ msgstr ""
2162
+
2163
+ # @ wp-google-maps
2164
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:404
2165
+ #, fuzzy
2166
+ #| msgid "Map Data"
2167
+ msgid "CSV Data"
2168
+ msgstr "Kortdata"
2169
+
2170
+ # @ wp-google-maps
2171
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:410
2172
+ #, fuzzy
2173
+ #| msgid "Map Data"
2174
+ msgid "Map data found."
2175
+ msgstr "Kortdata"
2176
+
2177
+ # @ wp-google-maps
2178
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:413
2179
+ #, fuzzy
2180
+ #| msgid "Marker Data"
2181
+ msgid "Marker data found."
2182
+ msgstr "Markørdata"
2183
+
2184
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:416
2185
+ msgid "Circle data found."
2186
+ msgstr ""
2187
+
2188
+ # @ wp-google-maps
2189
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:419
2190
+ #, fuzzy
2191
+ #| msgid "Polygon Data"
2192
+ msgid "Polygon data found."
2193
+ msgstr "Polygondata"
2194
+
2195
+ # @ wp-google-maps
2196
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:422
2197
+ #, fuzzy
2198
+ #| msgid "Polyline Data"
2199
+ msgid "Polyline data found."
2200
+ msgstr "polylinedata"
2201
+
2202
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:425
2203
+ msgid "Rectangle data found."
2204
+ msgstr ""
2205
+
2206
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:428
2207
+ #, fuzzy
2208
+ #| msgid "Add heatmap data"
2209
+ msgid "Heatmap data found."
2210
+ msgstr "Tilføj heatmap data"
2211
+
2212
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:436
2213
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:201
2214
+ msgid "Find Addresses or Latitude and Longitude when missing"
2215
+ msgstr ""
2216
+
2217
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:437
2218
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:124
2219
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:203
2220
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:125
2221
+ msgid "Requires Google Maps Geocoding API to be enabled."
2222
+ msgstr ""
2223
+
2224
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:442
2225
+ msgid "Use map ID's specified in file"
2226
+ msgstr ""
2227
+
2228
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:445
2229
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:126
2230
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:206
2231
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:127
2232
+ msgid "Apply import data to"
2233
+ msgstr ""
2234
+
2235
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:449
2236
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:130
2237
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:212
2238
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:131
2239
+ msgid "No maps available for import to."
2240
+ msgstr ""
2241
+
2242
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:473
2243
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:480
2244
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:133
2245
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:215
2246
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:134
2247
+ #, fuzzy
2248
+ #| msgid "Add heatmap data"
2249
+ msgid "Replace map data"
2250
+ msgstr "Tilføj heatmap data"
2251
+
2252
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:483
2253
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:152
2254
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:234
2255
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:153
2256
+ msgid "Delete import file after import"
2257
+ msgstr ""
2258
+
2259
+ # @ wp-google-maps
2260
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:487
2261
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:156
2262
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:238
2263
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:157
2264
+ #, fuzzy
2265
+ #| msgid "Advanced Options"
2266
+ msgid "Scheduling Options"
2267
+ msgstr "Avanceret muligheder"
2268
+
2269
+ # @ wp-google-maps
2270
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:488
2271
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:157
2272
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:239
2273
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:158
2274
+ #, fuzzy
2275
+ #| msgid "Save Dataset"
2276
+ msgid "Start Date"
2277
+ msgstr "Gem datasæt"
2278
+
2279
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:492
2280
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:161
2281
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:243
2282
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:162
2283
+ msgid "Interval"
2284
+ msgstr ""
2285
+
2286
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:505
2287
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:174
2288
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:256
2289
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:175
2290
+ msgid "Update Schedule"
2291
+ msgstr ""
2292
+
2293
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:506
2294
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:175
2295
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:257
2296
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:176
2297
+ #: ../wp-google-maps-pro/legacy-core.php:7196
2298
+ #: ../wp-google-maps-pro/legacy-core.php:7300
2299
+ #: ../wp-google-maps-pro/legacy-core.php:8548
2300
+ msgid "Cancel"
2301
+ msgstr ""
2302
+
2303
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:537
2304
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:213
2305
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:304
2306
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:205
2307
+ msgid ""
2308
+ "Please select at least one map to import to, or deselect the \"Apply import "
2309
+ "data to\" option."
2310
+ msgstr ""
2311
+
2312
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:563
2313
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:231
2314
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:321
2315
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:222
2316
+ msgid "Importing, this may take a moment..."
2317
+ msgstr ""
2318
+
2319
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:609
2320
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:245
2321
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:335
2322
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:236
2323
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:502
2324
+ msgid "Import completed."
2325
+ msgstr ""
2326
+
2327
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:648
2328
+ msgid ""
2329
+ "The schedule must target an existing map, or use map ID's specified in the "
2330
+ "file."
2331
+ msgstr ""
2332
+
2333
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:652
2334
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:275
2335
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:365
2336
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:266
2337
+ msgid "Please enter a start date."
2338
+ msgstr ""
2339
+
2340
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:655
2341
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:278
2342
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:368
2343
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:269
2344
+ msgid "Scheduling, this may take a moment..."
2345
+ msgstr ""
2346
+
2347
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:672
2348
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:295
2349
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:385
2350
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:286
2351
+ msgid "Scheduling completed."
2352
+ msgstr ""
2353
+
2354
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:810
2355
+ msgid "New CSV Map Import"
2356
+ msgstr ""
2357
+
2358
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1056
2359
+ msgid ""
2360
+ "No latitude supplied, \"Find latitude\" not selected. Marker will have zero "
2361
+ "latitude"
2362
+ msgstr ""
2363
+
2364
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1063
2365
+ msgid "Invalid latitude, supplied value is not numeric"
2366
+ msgstr ""
2367
+
2368
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1074
2369
+ msgid ""
2370
+ "No longitude supplied, \"Find longitude\" not selected. Marker will have "
2371
+ "zero longitude"
2372
+ msgstr ""
2373
+
2374
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1081
2375
+ msgid "Invalid longitude, supplied value is not numeric"
2376
+ msgstr ""
2377
+
2378
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1191
2379
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:962
2380
+ msgid "New Imported Circle"
2381
+ msgstr ""
2382
+
2383
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1236
2384
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:1008
2385
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:685
2386
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:799
2387
+ msgid "New Imported Polygon"
2388
+ msgstr ""
2389
+
2390
+ # @ wp-google-maps
2391
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1283
2392
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:517
2393
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:555
2394
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:1056
2395
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:584
2396
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:645
2397
+ #, fuzzy
2398
+ #| msgid "Add a New Polyline"
2399
+ msgid "New Imported Polyline"
2400
+ msgstr "tilføj en ny polylinie"
2401
+
2402
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1321
2403
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:1095
2404
+ msgid "New Imported Rectangle"
2405
+ msgstr ""
2406
+
2407
+ #: ../wp-google-maps-pro/includes/import-export/class.import-csv.php:1357
2408
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:1132
2409
+ msgid "New Imported Dataset"
2410
+ msgstr ""
2411
+
2412
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:72
2413
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:64
2414
+ msgid "Error: Unable to parse file."
2415
+ msgstr ""
2416
+
2417
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:85
2418
+ msgid "Error: No tracks or way points found in GPX file."
2419
+ msgstr ""
2420
+
2421
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:90
2422
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:132
2423
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:97
2424
+ msgid "Error: Empty file data."
2425
+ msgstr ""
2426
+
2427
+ # @ wp-google-maps
2428
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:111
2429
+ #, fuzzy
2430
+ #| msgid "Map Data"
2431
+ msgid "GPX Data"
2432
+ msgstr "Kortdata"
2433
+
2434
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:113
2435
+ msgid "Tracks"
2436
+ msgstr ""
2437
+
2438
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:114
2439
+ msgid "Way Points"
2440
+ msgstr ""
2441
+
2442
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:116
2443
+ msgid "Track Resolution"
2444
+ msgstr ""
2445
+
2446
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:123
2447
+ msgid "Find Addresses for Way Points"
2448
+ msgstr ""
2449
+
2450
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:398
2451
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:398
2452
+ msgid "New GPX Map Import"
2453
+ msgstr ""
2454
+
2455
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:518
2456
+ msgid "Segment"
2457
+ msgstr ""
2458
+
2459
+ # @ wp-google-maps
2460
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:653
2461
+ #: ../wp-google-maps-pro/includes/import-export/class.import-gpx.php:679
2462
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:522
2463
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:548
2464
+ #, fuzzy
2465
+ #| msgid "Delete Marker"
2466
+ msgid "New Imported Marker"
2467
+ msgstr "Slet markør"
2468
+
2469
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:118
2470
+ msgid "Error parsing JSON: "
2471
+ msgstr ""
2472
+
2473
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:125
2474
+ msgid "Error: File contains no maps."
2475
+ msgstr ""
2476
+
2477
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:154
2478
+ msgid "No maps available for import."
2479
+ msgstr ""
2480
+
2481
+ # @ wp-google-maps
2482
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:179
2483
+ #: ../wp-google-maps-pro/legacy-core.php:4743
2484
+ msgid "Map Data"
2485
+ msgstr "Kortdata"
2486
+
2487
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:208
2488
+ msgid "No maps will be imported with this option, only map data."
2489
+ msgstr ""
2490
+
2491
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:288
2492
+ msgid "Please select at least one map to import."
2493
+ msgstr ""
2494
+
2495
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:557
2496
+ msgid "New Imported Map"
2497
+ msgstr ""
2498
+
2499
+ # @ wp-google-maps
2500
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:684
2501
+ #, fuzzy
2502
+ #| msgid "Add New Category"
2503
+ msgid "New Imported Category"
2504
+ msgstr "Tilføj Ny kategori"
2505
+
2506
+ #: ../wp-google-maps-pro/includes/import-export/class.import-json.php:796
2507
+ #, php-format
2508
+ msgid "Failed to geocode \"%s\""
2509
+ msgstr ""
2510
+
2511
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:92
2512
+ msgid "Error: No import data found in KML file."
2513
+ msgstr ""
2514
+
2515
+ # @ wp-google-maps
2516
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:118
2517
+ #, fuzzy
2518
+ #| msgid "Map Data"
2519
+ msgid "KML Data"
2520
+ msgstr "Kortdata"
2521
+
2522
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:120
2523
+ msgid "Pins"
2524
+ msgstr ""
2525
+
2526
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:121
2527
+ msgid "Paths"
2528
+ msgstr ""
2529
+
2530
+ #: ../wp-google-maps-pro/includes/import-export/class.import-kml.php:124
2531
+ msgid "Find Addresses for Pins"
2532
+ msgstr ""
2533
+
2534
+ #: ../wp-google-maps-pro/includes/import-export/class.import.php:101
2535
+ msgid "Error: Unable to load file."
2536
+ msgstr ""
2537
+
2538
+ #: ../wp-google-maps-pro/includes/import-export/class.import.php:126
2539
+ #: ../wp-google-maps-pro/includes/import-export/class.import.php:134
2540
+ msgid "Error: Malformed options. Bad id."
2541
+ msgstr ""
2542
+
2543
+ #: ../wp-google-maps-pro/includes/import-export/class.import.php:231
2544
+ msgid ""
2545
+ "Time limit threshold reached. Please speak to your host to increase your PHP "
2546
+ "execution time limit, or break your data into smaller parts"
2547
+ msgstr ""
2548
+
2549
+ #: ../wp-google-maps-pro/includes/import-export/class.import.php:380
2550
+ #, php-format
2551
+ msgid ""
2552
+ "HTTP referrer restrictions on your API key forbid geocoding from this "
2553
+ "server. This can happen when your server is behind a proxy, or does not set "
2554
+ "the HTTP referrer header correctly. We recommend temporarily de-restricting "
2555
+ "your key, or generating a second key with an IP restriction to switch to "
2556
+ "temporarily. We detected this servers IP as %s."
2557
+ msgstr ""
2558
+
2559
+ # @ wp-google-maps
2560
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:30
2561
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6821
2562
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
2563
+ #: ../wp-google-maps-pro/legacy-core.php:4944
2564
+ msgid "Maps"
2565
+ msgstr "Kort"
2566
+
2567
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:113
2568
+ msgid "You don't have permission to upload files."
2569
+ msgstr ""
2570
+
2571
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:119
2572
+ msgid "No file upload or failed security check."
2573
+ msgstr ""
2574
+
2575
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:160
2576
+ msgid "Unable to add file to database."
2577
+ msgstr ""
2578
+
2579
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:173
2580
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:346
2581
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:686
2582
+ msgid "No file specified or failed security check."
2583
+ msgstr ""
2584
+
2585
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:181
2586
+ msgid "Deletion not allowed. File is not a valid WP Google Maps import upload."
2587
+ msgstr ""
2588
+
2589
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:235
2590
+ msgid "No file, URL or integration specified."
2591
+ msgstr ""
2592
+
2593
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:246
2594
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:358
2595
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:453
2596
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:698
2597
+ msgid ""
2598
+ "Importing not allowed. File is not a valid WP Google Maps import upload."
2599
+ msgstr ""
2600
+
2601
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:333
2602
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:422
2603
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:529
2604
+ #, fuzzy
2605
+ #| msgid "CSV import failed"
2606
+ msgid "Unable to import file."
2607
+ msgstr "CSV import fejlede"
2608
+
2609
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:443
2610
+ #, fuzzy
2611
+ #| msgid "Last"
2612
+ msgid "Last Run"
2613
+ msgstr "Sidst"
2614
+
2615
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:613
2616
+ msgid "Once Weekly"
2617
+ msgstr ""
2618
+
2619
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:618
2620
+ msgid "Once Monthly"
2621
+ msgstr ""
2622
+
2623
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:790
2624
+ msgid "Unable to schedule import."
2625
+ msgstr ""
2626
+
2627
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:803
2628
+ msgid "No scheduled import specified or failed security check."
2629
+ msgstr ""
2630
+
2631
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:811
2632
+ msgid "Scheduled import not found."
2633
+ msgstr ""
2634
+
2635
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:828
2636
+ msgid "Unable to remove scheduled import."
2637
+ msgstr ""
2638
+
2639
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:935
2640
+ msgid "Please select a file to upload."
2641
+ msgstr ""
2642
+
2643
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:938
2644
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:942
2645
+ msgid "Back to Import Data"
2646
+ msgstr ""
2647
+
2648
+ # @ wp-google-maps
2649
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:939
2650
+ #, fuzzy
2651
+ #| msgid "Are you sure you want to delete this marker:"
2652
+ msgid "Are you sure you wish to delete this file?"
2653
+ msgstr "Er du sikker på at du vil slette den markør:"
2654
+
2655
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:940
2656
+ msgid "File deleted."
2657
+ msgstr ""
2658
+
2659
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:941
2660
+ msgid "Please enter a URL to import from."
2661
+ msgstr ""
2662
+
2663
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:943
2664
+ msgid "Loading import options..."
2665
+ msgstr ""
2666
+
2667
+ # @ wp-google-maps
2668
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:944
2669
+ #, fuzzy
2670
+ #| msgid "Are you sure you want to delete the map"
2671
+ msgid "Are you sure you wish to delete this scheduled import?"
2672
+ msgstr "er du sikker på at du vil slette dette kort"
2673
+
2674
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:945
2675
+ msgid "Scheduled import deleted."
2676
+ msgstr ""
2677
+
2678
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:946
2679
+ msgid "Please select at least one map to export."
2680
+ msgstr ""
2681
+
2682
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:960
2683
+ msgid "Accepts"
2684
+ msgstr ""
2685
+
2686
+ #: ../wp-google-maps-pro/includes/import-export/page.import-export.php:1035
2687
+ msgid "Next schedule run"
2688
+ msgstr ""
2689
+
2690
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:297
2691
+ msgid "Header 1 should be 'id', not"
2692
+ msgstr "Header 1 burder være ‘id’, ikke"
2693
+
2694
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:298
2695
+ msgid "Header 2 should be 'map_id', not"
2696
+ msgstr "Header 2 burde være ‘map_id’, ikke"
2697
+
2698
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:299
2699
+ msgid "Header 3 should be 'address', not"
2700
+ msgstr "Header 3 burde være ‘address’, ikke"
2701
+
2702
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:300
2703
+ msgid "Header 4 should be 'description', not"
2704
+ msgstr "Header 4 burde være ‘description’, ikke"
2705
+
2706
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:301
2707
+ msgid "Header 5 should be 'pic', not"
2708
+ msgstr "Header 5 burde være ‘pic’, ikke"
2709
+
2710
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:302
2711
+ msgid "Header 6 should be 'link', not"
2712
+ msgstr "Header 6 burde være ‘link’, ikke"
2713
+
2714
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:303
2715
+ msgid "Header 7 should be 'icon', not"
2716
+ msgstr "Header 7 burde være ‘ikon, ikke"
2717
+
2718
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:304
2719
+ msgid "Header 8 should be 'lat', not"
2720
+ msgstr "Header 8 burde være ‘lat’, ikke"
2721
+
2722
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:305
2723
+ msgid "Header 9 should be 'lng', not"
2724
+ msgstr "Header 9 burde være ‘lng’, ikke"
2725
+
2726
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:306
2727
+ msgid "Header 10 should be 'anim', not"
2728
+ msgstr "Header 10 burde være ‘anim’, ikke"
2729
+
2730
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:307
2731
+ msgid "Header 11 should be 'title', not"
2732
+ msgstr "Header 11 burde være ‘titel’, ikke"
2733
+
2734
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:308
2735
+ msgid "Header 12 should be 'infoopen', not"
2736
+ msgstr "Header 12 burde være ‘infoopen’, ikke"
2737
+
2738
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:309
2739
+ msgid "Header 13 should be 'category', not"
2740
+ msgstr "Header 13 burde være ‘kategori’, ikke"
2741
+
2742
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:310
2743
+ msgid "Header 14 should be 'approved', not"
2744
+ msgstr "Header 14 burde være ‘godkendt’, ikke"
2745
+
2746
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:311
2747
+ msgid "Header 15 should be 'retina', not"
2748
+ msgstr "Header 15 burde være ‘retina’, ikke"
2749
+
2750
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:313
2751
+ msgid "CSV import failed"
2752
+ msgstr "CSV import fejlede"
2753
+
2754
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:385
2755
  #, php-format
2756
+ msgid "Cannot import line %d as the LAT and/or LNG is not defined."
2757
+ msgstr "Kan ikke importere linje %d siden LAT og/eller LNG ikke er defineret."
 
 
 
 
2758
 
2759
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:419
2760
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:550
2761
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:630
2762
+ #: ../wp-google-maps-pro/includes/legacy/page.legacy-import-export.php:711
2763
+ msgid "Your CSV file has been successfully imported"
2764
+ msgstr "Din CSV fil er ikke blevet importeret vellykket "
2765
 
2766
+ # @ wp-google-maps
2767
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:140
2768
+ #: ../wp-google-maps-pro/legacy-core.php:3925
2769
+ #: ../wp-google-maps-pro/legacy-core.php:7156
2770
+ #: ../wp-google-maps-pro/legacy-core.php:7248
2771
+ msgid "Link"
2772
+ msgstr "Link"
2773
+
2774
+ #: ../wp-google-maps-pro/includes/marker-listings/class.advanced-table.php:198
2775
+ #: ../wp-google-maps-pro/includes/marker-listings/class.basic-table.php:78
2776
+ #: ../wp-google-maps-pro/includes/marker-listings/class.carousel.php:146
2777
+ #: ../wp-google-maps-pro/includes/marker-listings/class.grid.php:82
2778
+ #, fuzzy
2779
+ #| msgid "More details"
2780
+ msgid "More Details"
2781
  msgstr "Flere detaljer"
2782
 
2783
  # @ wp-google-maps
2784
+ #: ../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:400
2785
+ #: ../wp-google-maps-pro/legacy-core.php:1501
2786
+ #: ../wp-google-maps-pro/legacy-core.php:7455
2787
+ #, fuzzy
2788
+ #| msgid "1mi"
2789
+ msgid "mi"
2790
+ msgstr "1 mil"
2791
 
2792
+ # @ wp-google-maps
2793
+ #: ../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:405
2794
+ #: ../wp-google-maps-pro/legacy-core.php:1501
2795
+ #: ../wp-google-maps-pro/legacy-core.php:7455
2796
+ #, fuzzy
2797
+ #| msgid "1km"
2798
+ msgid "km"
2799
+ msgstr "1km"
2800
+
2801
+ #: ../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:418
2802
+ #, fuzzy
2803
+ #| msgid "My location"
2804
+ msgid "from your location"
2805
+ msgstr "Min lokation"
2806
 
2807
  # @ wp-google-maps
2808
+ #: ../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:422
2809
+ #, fuzzy
2810
+ #| msgid "Show User's Location?"
2811
+ msgid "from searched location"
2812
+ msgstr "Vis brugerens Lokation?"
2813
+
2814
+ #: ../wp-google-maps-pro/includes/marker-listings/class.marker-listing.php:426
2815
+ msgid "from unknown location"
2816
+ msgstr ""
2817
+
2818
+ # @ wp-google-maps
2819
+ #: ../wp-google-maps-pro/includes/page.categories.php:17
2820
+ #: ../wp-google-maps-pro/includes/page.categories.php:20
2821
+ msgid "Marker Categories"
2822
+ msgstr "Marker Kategorier"
2823
+
2824
+ # @ wp-google-maps
2825
+ #: ../wp-google-maps-pro/includes/page.categories.php:17
2826
+ msgid "Add New Category"
2827
+ msgstr "Tilføj Ny kategori"
2828
+
2829
+ # @ wp-google-maps
2830
+ #: ../wp-google-maps-pro/includes/page.categories.php:21
2831
+ msgid "Pro Version"
2832
+ msgstr "Pro Version"
2833
+
2834
+ #: ../wp-google-maps-pro/includes/page.categories.php:21
2835
+ msgid "Create marker categories"
2836
+ msgstr "Opret markør kategorier"
2837
+
2838
+ # @ wp-google-maps
2839
+ #: ../wp-google-maps-pro/includes/page.categories.php:21
2840
+ msgid "with the"
2841
+ msgstr "Med"
2842
+
2843
+ # @ wp-google-maps
2844
+ #: ../wp-google-maps-pro/includes/page.categories.php:21
2845
+ msgid "of WP Google Maps for only"
2846
+ msgstr "af WP Google Maps for kun"
2847
+
2848
+ # @ wp-google-maps
2849
+ #: ../wp-google-maps-pro/includes/page.categories.php:26
2850
+ msgid "Problems with the plugin? See the troubleshooting manual."
2851
+ msgstr "Problemer med pluginet? Se manualen."
2852
+
2853
+ #: ../wp-google-maps-pro/includes/page.categories.php:34
2854
+ msgid "There was a problem deleting the category."
2855
+ msgstr "Problem opstået ved sletning af denne kategori"
2856
+
2857
+ # @ wp-google-maps
2858
+ #: ../wp-google-maps-pro/includes/page.categories.php:37
2859
+ msgid "Delete your Category"
2860
+ msgstr "Slet din kategori"
2861
+
2862
+ # @ wp-google-maps
2863
+ #: ../wp-google-maps-pro/includes/page.categories.php:37
2864
+ msgid "Are you sure you want to delete the category"
2865
+ msgstr "Er du sikker på at du vil slette denne kategori"
2866
+
2867
+ # @ wp-google-maps
2868
+ #: ../wp-google-maps-pro/includes/page.categories.php:101
2869
+ msgid "Add a Marker Category"
2870
+ msgstr "Tilføj en markør kategori"
2871
+
2872
+ # @ wp-google-maps
2873
+ #: ../wp-google-maps-pro/includes/page.categories.php:109
2874
+ #: ../wp-google-maps-pro/includes/page.categories.php:272
2875
+ msgid "Category Name"
2876
+ msgstr "Kategori navn"
2877
+
2878
+ # @ wp-google-maps
2879
+ #: ../wp-google-maps-pro/includes/page.categories.php:120
2880
+ #: ../wp-google-maps-pro/includes/page.categories.php:284
2881
+ msgid "Category Marker"
2882
+ msgstr "Kategori Markør"
2883
+
2884
+ # @ wp-google-maps
2885
+ #: ../wp-google-maps-pro/includes/page.categories.php:137
2886
+ #: ../wp-google-maps-pro/includes/page.categories.php:307
2887
+ #, fuzzy
2888
+ #| msgid "Category Name"
2889
+ msgid "Category Image:"
2890
+ msgstr "Kategori navn"
2891
+
2892
+ #: ../wp-google-maps-pro/includes/page.categories.php:143
2893
+ #: ../wp-google-maps-pro/includes/page.categories.php:313
2894
+ msgid "Enter URL"
2895
+ msgstr ""
2896
+
2897
+ #: ../wp-google-maps-pro/includes/page.categories.php:157
2898
+ #: ../wp-google-maps-pro/includes/page.categories.php:328
2899
+ msgid "Retina Ready"
2900
+ msgstr "Retina Klar"
2901
+
2902
+ #: ../wp-google-maps-pro/includes/page.categories.php:158
2903
+ #: ../wp-google-maps-pro/includes/page.categories.php:329
2904
+ msgid "This marker is a retina-ready marker"
2905
+ msgstr "Denne markør er en retina-klar markør"
2906
+
2907
+ # @ wp-google-maps
2908
+ #: ../wp-google-maps-pro/includes/page.categories.php:167
2909
+ #, fuzzy
2910
+ #| msgid "Marker Category"
2911
+ msgid "Parent Category"
2912
+ msgstr "Marker Kategorier"
2913
+
2914
+ #: ../wp-google-maps-pro/includes/page.categories.php:167
2915
+ #: ../wp-google-maps-pro/includes/page.categories.php:365
2916
+ msgid "Optional"
2917
+ msgstr ""
2918
+
2919
+ #: ../wp-google-maps-pro/includes/page.categories.php:192
2920
+ #: ../wp-google-maps-pro/includes/page.categories.php:374
2921
+ #: ../wp-google-maps-pro/includes/page.categories.php:745
2922
+ #: ../wp-google-maps-pro/legacy-core.php:5726
2923
+ msgid "Priority"
2924
+ msgstr ""
2925
+
2926
+ # @ wp-google-maps
2927
+ #: ../wp-google-maps-pro/includes/page.categories.php:203
2928
+ #: ../wp-google-maps-pro/includes/page.categories.php:385
2929
+ msgid "Assigned to "
2930
+ msgstr "Tildelt til"
2931
+
2932
+ # @ wp-google-maps
2933
+ #: ../wp-google-maps-pro/includes/page.categories.php:216
2934
+ #: ../wp-google-maps-pro/includes/page.categories.php:399
2935
+ msgid "Save Category"
2936
+ msgstr "Gem kategori "
2937
+
2938
+ # @ wp-google-maps
2939
+ #: ../wp-google-maps-pro/includes/page.categories.php:264
2940
+ msgid "Edit a Marker Category"
2941
+ msgstr "Rediger en Markør Kategori"
2942
+
2943
+ # @ wp-google-maps
2944
+ #: ../wp-google-maps-pro/includes/page.categories.php:340
2945
+ #, fuzzy
2946
+ #| msgid "Marker Category"
2947
+ msgid "Parent Category:"
2948
+ msgstr "Marker Kategorier"
2949
+
2950
+ # @ wp-google-maps
2951
+ #: ../wp-google-maps-pro/includes/page.categories.php:521
2952
+ msgid "Your category has been created."
2953
+ msgstr "Din kategori er blevet oprettet."
2954
+
2955
+ # @ wp-google-maps
2956
+ #: ../wp-google-maps-pro/includes/page.categories.php:615
2957
+ msgid "Your category has been saved."
2958
+ msgstr "Din polygon er blevet gemt."
2959
+
2960
+ #: ../wp-google-maps-pro/includes/page.categories.php:715
2961
+ msgid "All maps"
2962
+ msgstr "Alle kort"
2963
+
2964
+ # @ wp-google-maps
2965
+ #: ../wp-google-maps-pro/includes/page.categories.php:744
2966
+ #: ../wp-google-maps-pro/includes/page.categories.php:917
2967
+ msgid "Linked maps"
2968
+ msgstr "Knyttet kort"
2969
+
2970
+ # @ wp-google-maps
2971
+ #: ../wp-google-maps-pro/includes/page.categories.php:876
2972
+ #: ../wp-google-maps-pro/includes/page.categories.php:923
2973
+ #: ../wp-google-maps-pro/legacy-core.php:7709
2974
+ msgid "Trash"
2975
+ msgstr "Papirkurv"
2976
+
2977
+ #: ../wp-google-maps-pro/includes/page.categories.php:916
2978
+ msgid "Parent"
2979
+ msgstr ""
2980
+
2981
+ # @ wp-google-maps
2982
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:32
2983
+ #: ../wp-google-maps-pro/legacy-core.php:2399
2984
+ #: ../wp-google-maps-pro/legacy-core.php:7141
2985
+ #: ../wp-google-maps-pro/legacy-core.php:7232
2986
+ msgid "Add a Polygon"
2987
+ msgstr "Tilføj en polygon"
2988
+
2989
+ # @ wp-google-maps
2990
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:35
2991
+ #: ../wp-google-maps-pro/legacy-core.php:7159
2992
+ #: ../wp-google-maps-pro/legacy-core.php:7251
2993
+ msgid "Line Color"
2994
+ msgstr "Linie farve"
2995
+
2996
+ # @ wp-google-maps
2997
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:36
2998
+ #: ../wp-google-maps-pro/legacy-core.php:7165
2999
+ #: ../wp-google-maps-pro/legacy-core.php:7257
3000
+ msgid "Fill Color"
3001
+ msgstr "fyld farve"
3002
+
3003
+ # @ wp-google-maps
3004
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:37
3005
+ #: ../wp-google-maps-pro/legacy-core.php:7168
3006
+ #: ../wp-google-maps-pro/legacy-core.php:7260
3007
+ #: ../wp-google-maps-pro/legacy-core.php:8513
3008
+ #: ../wp-google-maps-pro/legacy-core.php:8598
3009
+ msgid "Opacity"
3010
+ msgstr "Opacitet"
3011
+
3012
+ # @ wp-google-maps
3013
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:49
3014
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:98
3015
+ #: ../wp-google-maps-pro/legacy-core.php:7196
3016
+ #: ../wp-google-maps-pro/legacy-core.php:7300
3017
+ msgid "Save Polygon"
3018
+ msgstr "Gem polygon"
3019
+
3020
+ # @ wp-google-maps
3021
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:81
3022
+ msgid "Edit Polygon"
3023
+ msgstr "rediger polygon"
3024
+
3025
+ # @ wp-google-maps
3026
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:472
3027
+ #: ../wp-google-maps-pro/legacy-core.php:4745
3028
+ msgid "Polygon Data"
3029
+ msgstr "Polygondata"
3030
+
3031
+ # @ wp-google-maps
3032
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:473
3033
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:486
3034
+ #: ../wp-google-maps-pro/legacy-core.php:269
3035
+ #: ../wp-google-maps-pro/legacy-core.php:320
3036
+ #: ../wp-google-maps-pro/legacy-core.php:7698
3037
+ #: ../wp-google-maps-pro/legacy-core.php:7896
3038
+ msgid "Action"
3039
+ msgstr "udfør"
3040
+
3041
+ # @ wp-google-maps
3042
+ #: ../wp-google-maps-pro/includes/page.edit-polygon.php:497
3043
+ msgid "Delete this polygon"
3044
+ msgstr "slet denne polygon"
3045
+
3046
+ # @ wp-google-maps
3047
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:25
3048
+ #: ../wp-google-maps-pro/legacy-core.php:2404
3049
+ msgid "Add a Polyline"
3050
+ msgstr "tiføj en polylinie"
3051
+
3052
+ # @ wp-google-maps
3053
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:42
3054
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:90
3055
+ msgid "Save Polyline"
3056
+ msgstr "gem polylinie"
3057
+
3058
+ # @ wp-google-maps
3059
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:73
3060
+ msgid "Edit Polyline"
3061
+ msgstr "rediger polylinie"
3062
+
3063
+ # @ wp-google-maps
3064
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:485
3065
+ #: ../wp-google-maps-pro/legacy-core.php:4746
3066
+ msgid "Polyline Data"
3067
+ msgstr "polylinedata"
3068
+
3069
+ # @ wp-google-maps
3070
+ #: ../wp-google-maps-pro/includes/page.edit-polyline.php:510
3071
+ msgid "Delete this polyline"
3072
+ msgstr "slet denne polylinie"
3073
+
3074
+ #: ../wp-google-maps-pro/includes/page.wizard.php:13
3075
+ msgid "Select a Map Type (beta)"
3076
+ msgstr "Vælg en Kort Type (beta)"
3077
+
3078
+ # @ wp-google-maps
3079
+ #: ../wp-google-maps-pro/includes/page.wizard.php:147
3080
+ #: ../wp-google-maps-pro/includes/page.wizard.php:150
3081
+ #: ../wp-google-maps-pro/legacy-core.php:1292
3082
+ #: ../wp-google-maps-pro/legacy-core.php:4949
3083
+ #: ../wp-google-maps-pro/legacy-core.php:6011
3084
+ msgid "Store Locator"
3085
+ msgstr "Find butik"
3086
+
3087
+ # @ wp-google-maps
3088
+ #: ../wp-google-maps-pro/includes/page.wizard.php:157
3089
+ msgid "Show distance in:"
3090
+ msgstr "Vis distance i:"
3091
+
3092
+ # @ wp-google-maps
3093
+ #: ../wp-google-maps-pro/includes/page.wizard.php:161
3094
+ #: ../wp-google-maps-pro/legacy-core.php:1563
3095
+ msgid "Miles"
3096
+ msgstr "Mil"
3097
+
3098
+ # @ wp-google-maps
3099
+ #: ../wp-google-maps-pro/includes/page.wizard.php:161
3100
+ #: ../wp-google-maps-pro/legacy-core.php:1563
3101
+ msgid "Kilometers"
3102
+ msgstr "Kilometer"
3103
+
3104
+ #: ../wp-google-maps-pro/includes/page.wizard.php:167
3105
+ msgid "Show bouncing icon:"
3106
+ msgstr "Vis hoppende ikon:"
3107
+
3108
+ #: ../wp-google-maps-pro/includes/page.wizard.php:177
3109
+ msgid "Hide markers until search is done:"
3110
+ msgstr "Gem markører indtil søgning er complet:"
3111
+
3112
+ #: ../wp-google-maps-pro/includes/page.wizard.php:215
3113
+ msgid "Default 'To' Address:"
3114
+ msgstr "Standard ’Til’ Adresse:"
3115
+
3116
+ # @ wp-google-maps
3117
+ #: ../wp-google-maps-pro/includes/page.wizard.php:219
3118
+ msgid "Enter Address"
3119
+ msgstr "Indsæt Adresse"
3120
+
3121
+ # @ wp-google-maps
3122
+ #: ../wp-google-maps-pro/includes/page.wizard.php:244
3123
+ #: ../wp-google-maps-pro/includes/page.wizard.php:247
3124
+ #: ../wp-google-maps-pro/legacy-core.php:2158
3125
+ #: ../wp-google-maps-pro/legacy-core.php:4946
3126
+ msgid "Marker Listing"
3127
+ msgstr "Markørlister"
3128
 
3129
  # @ wp-google-maps
3130
+ #: ../wp-google-maps-pro/includes/page.wizard.php:254
3131
+ #: ../wp-google-maps-pro/legacy-core.php:2163
3132
+ msgid "Marker Listing Style"
3133
+ msgstr "Markør Liste Stil"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3134
 
3135
  # @ wp-google-maps
3136
+ #: ../wp-google-maps-pro/includes/page.wizard.php:259
3137
+ msgid "Basic Table"
3138
+ msgstr "Basis Tabel"
 
 
 
 
 
 
 
 
 
 
 
 
3139
 
3140
+ # @ wp-google-maps
3141
+ #: ../wp-google-maps-pro/includes/page.wizard.php:260
3142
+ msgid "Basic List"
3143
+ msgstr "Basis Liste"
 
3144
 
3145
  # @ wp-google-maps
3146
+ #: ../wp-google-maps-pro/includes/page.wizard.php:261
3147
+ msgid "Advanced Table"
3148
+ msgstr "Avanceret Tabel"
 
 
 
 
 
 
 
 
3149
 
3150
+ #: ../wp-google-maps-pro/includes/page.wizard.php:262
3151
+ #: ../wp-google-maps-pro/legacy-core.php:956
3152
+ #: ../wp-google-maps-pro/legacy-core.php:2190
3153
+ #: ../wp-google-maps-pro/legacy-core.php:2230
3154
+ #: ../wp-google-maps-pro/legacy-core.php:7330
3155
+ msgid "Carousel"
3156
+ msgstr "Karrusel"
3157
 
3158
+ #: ../wp-google-maps-pro/includes/page.wizard.php:288
3159
+ msgid "Blank Map"
3160
+ msgstr "Blankt kort"
3161
 
3162
  # @ wp-google-maps
3163
+ #: ../wp-google-maps-pro/includes/tables/class.pro-admin-marker-datatable.php:32
3164
+ msgid "Approve this marker"
3165
+ msgstr "Godkend denne markør"
3166
 
3167
+ # @ default
3168
+ # @ wp-google-maps
3169
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:210
3170
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6779
3171
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17221
3172
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3173
+ #: ../wp-google-maps-pro/legacy-core.php:1299
3174
+ #: ../wp-google-maps-pro/legacy-core.php:5554
3175
+ msgid "Map Settings"
3176
+ msgstr "Kort indstillinger"
3177
 
3178
  # @ wp-google-maps
3179
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:213
3180
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6821
3181
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17224
3182
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3183
+ #, fuzzy
3184
+ #| msgid "Maps"
3185
+ msgid "Map"
3186
+ msgstr "Kort"
3187
 
3188
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:228
3189
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6789
3190
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17239
3191
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3192
+ msgid "Go to Map Editor"
3193
+ msgstr ""
3194
 
3195
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:233
3196
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17244
3197
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3198
+ msgid "Mashup IDs"
3199
+ msgstr ""
3200
 
3201
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:246
3202
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17257
3203
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3204
+ msgid "Reset Mashup IDs"
3205
+ msgstr ""
3206
 
3207
+ # @ wp-google-maps
3208
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:251
3209
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17262
3210
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3211
+ #, fuzzy
3212
+ #| msgid "Your Markers"
3213
+ msgid "Focused Marker"
3214
+ msgstr "Dine Markører"
3215
 
3216
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:262
3217
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17273
3218
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3219
+ msgid "Override Zoom"
3220
+ msgstr ""
3221
 
3222
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:276
3223
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17287
3224
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3225
+ msgid "Reset Override Zoom"
3226
+ msgstr ""
3227
 
3228
  # @ wp-google-maps
3229
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:281
3230
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17292
3231
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3232
+ #, fuzzy
3233
+ #| msgid "Save Category"
3234
+ msgid "Initial Category"
3235
+ msgstr "Gem kategori "
3236
 
3237
  # @ wp-google-maps
3238
+ #: ../wp-google-maps-pro/js/v8/3rd-party-integration/gutenberg/dist/pro-gutenberg.js:299
3239
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6801
3240
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:17310
3241
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3242
+ #, fuzzy
3243
+ #| msgid "Documentation"
3244
+ msgid "View Documentation"
3245
+ msgstr "Dokumentation"
3246
 
3247
  # @ wp-google-maps
3248
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6720
3249
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6817
3250
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3251
+ #: ../wp-google-maps-pro/legacy-core.php:110
3252
+ #: ../wp-google-maps-pro/wp-google-maps-pro.php:2089
3253
+ msgid "WP Google Maps"
3254
+ msgstr "WP Google Maps"
 
 
3255
 
3256
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6818
3257
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3258
  msgid ""
3259
+ "The easiest to use Google Maps plugin! Create custom Google Maps with high "
3260
+ "quality markers containing locations, descriptions, images and links. Add "
3261
+ "your customized map to your WordPress posts and/or pages quickly and easily "
3262
+ "with the supplied shortcode. No fuss."
3263
  msgstr ""
 
 
3264
 
3265
  # @ wp-google-maps
3266
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6821
3267
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3268
+ #, fuzzy
3269
+ #| msgid "WP Google Maps"
3270
+ msgid "Google"
3271
+ msgstr "WP Google Maps"
 
 
 
 
 
 
 
 
 
3272
 
3273
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.combined.js:6832
3274
+ #: ../wp-google-maps-pro/js/v8/wp-google-maps-pro.min.js:1
3275
+ msgid "Your map will appear here on your websites front end"
3276
+ msgstr ""
3277
 
3278
+ #: ../wp-google-maps-pro/legacy-core.php:35
3279
+ msgid ""
3280
+ "<strong>WP Google Maps Pro:</strong> User Generated Markers add-on 3.01 and "
3281
+ "below is not compatible with OpenLayers. Please either switch engine to "
3282
+ "Google under Maps &rarr; Settings, or update User Generated Markers to 3.02 "
3283
+ "or above"
3284
+ msgstr ""
3285
 
3286
+ #: ../wp-google-maps-pro/legacy-core.php:58
3287
+ msgid ""
3288
+ "<strong>WP Google Maps Pro:</strong> Gold Add-on versions 4.11 and below are "
3289
+ "not compatible with OpenLayers. Please update to Gold 4.11 or above to use "
3290
+ "Gold features with the OpenLayers engine."
3291
  msgstr ""
 
3292
 
3293
+ #: ../wp-google-maps-pro/legacy-core.php:113
3294
+ msgid ""
3295
+ "The Pro add-on cannot be registered due to a fatal error. This is usually "
3296
+ "due to missing files. Please re-install the Pro add-on. Technical details "
3297
+ "are as follows: "
3298
+ msgstr ""
3299
 
3300
+ # @ wp-google-maps
3301
+ #: ../wp-google-maps-pro/legacy-core.php:291
3302
+ #, fuzzy
3303
+ #| msgid "Delete this marker"
3304
+ msgid "Delete this circle"
3305
+ msgstr "Slet denne markør"
3306
 
3307
+ # @ wp-google-maps
3308
+ #: ../wp-google-maps-pro/legacy-core.php:342
3309
+ #, fuzzy
3310
+ #| msgid "Delete this dataset"
3311
+ msgid "Delete this rectangle"
3312
+ msgstr "Slet dette datasæt"
3313
 
3314
+ #: ../wp-google-maps-pro/legacy-core.php:407
3315
  msgid ""
3316
+ "<strong>WP Google Maps Pro:</strong> Experiencing issues? We strongly "
3317
+ "recommend that you update WP Google Maps (Basic) to Version 8.0.0 in the "
3318
+ "plugins menu"
3319
  msgstr ""
 
 
 
 
 
 
3320
 
3321
+ #: ../wp-google-maps-pro/legacy-core.php:743
3322
  msgid "including Pro &amp; Gold add-ons"
3323
  msgstr "inklusiv Pro &amp; Guld add-ons"
3324
 
3325
+ #: ../wp-google-maps-pro/legacy-core.php:745
3326
  msgid "including Pro add-on"
3327
  msgstr "inklusiv Pro add-on"
3328
 
3329
+ #: ../wp-google-maps-pro/legacy-core.php:751
3330
  msgid ""
3331
  "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
3332
  "a>. Your current Gold version is not compatible with the current Pro version."
3336
  "version."
3337
 
3338
  # @ wp-google-maps
3339
+ #: ../wp-google-maps-pro/legacy-core.php:944
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3340
  msgid "No marker list"
3341
  msgstr "Ingen markør liste"
3342
 
3343
  # @ wp-google-maps
3344
+ #: ../wp-google-maps-pro/legacy-core.php:947
3345
+ #: ../wp-google-maps-pro/legacy-core.php:2178
3346
+ #: ../wp-google-maps-pro/legacy-core.php:2212
3347
+ #: ../wp-google-maps-pro/legacy-core.php:7333
3348
  msgid "Basic table"
3349
  msgstr "Basis table"
3350
 
3351
  # @ wp-google-maps
3352
+ #: ../wp-google-maps-pro/legacy-core.php:950
3353
+ #: ../wp-google-maps-pro/legacy-core.php:2182
3354
+ #: ../wp-google-maps-pro/legacy-core.php:2218
3355
+ #: ../wp-google-maps-pro/legacy-core.php:7332
3356
  msgid "Basic list"
3357
  msgstr "Basis liste"
3358
 
3359
  # @ wp-google-maps
3360
+ #: ../wp-google-maps-pro/legacy-core.php:953
3361
+ #: ../wp-google-maps-pro/legacy-core.php:2186
3362
+ #: ../wp-google-maps-pro/legacy-core.php:2224
3363
+ #: ../wp-google-maps-pro/legacy-core.php:7334
3364
  msgid "Advanced table"
3365
  msgstr "Avancerede markører"
3366
 
3367
+ #: ../wp-google-maps-pro/legacy-core.php:1052
3368
+ #: ../wp-google-maps-pro/legacy-core.php:2043
3369
+ #: ../wp-google-maps-pro/legacy-core.php:5858
3370
+ #: ../wp-google-maps-pro/legacy-core.php:5894
3371
+ #: ../wp-google-maps-pro/legacy-core.php:7335
 
 
 
 
 
 
 
3372
  msgid "Default Infowindow"
3373
  msgstr "Standart info vindue"
3374
 
3375
  # @ wp-google-maps
3376
+ #: ../wp-google-maps-pro/legacy-core.php:1054
3377
+ #: ../wp-google-maps-pro/legacy-core.php:2050
3378
+ #: ../wp-google-maps-pro/legacy-core.php:5860
3379
+ #: ../wp-google-maps-pro/legacy-core.php:7336
3380
  msgid "Modern Infowindow"
3381
  msgstr "Moderne info vindue"
3382
 
3383
  # @ wp-google-maps
3384
+ #: ../wp-google-maps-pro/legacy-core.php:1056
3385
+ #: ../wp-google-maps-pro/legacy-core.php:2056
3386
+ #: ../wp-google-maps-pro/legacy-core.php:5862
3387
+ #: ../wp-google-maps-pro/legacy-core.php:5908
3388
+ #: ../wp-google-maps-pro/legacy-core.php:7338
3389
  msgid "Modern Plus Infowindow"
3390
  msgstr "Moderne plus info vindue "
3391
 
3392
  # @ wp-google-maps
3393
+ #: ../wp-google-maps-pro/legacy-core.php:1058
3394
+ #: ../wp-google-maps-pro/legacy-core.php:2063
3395
+ #: ../wp-google-maps-pro/legacy-core.php:5864
3396
+ #: ../wp-google-maps-pro/legacy-core.php:5915
3397
+ #: ../wp-google-maps-pro/legacy-core.php:7339
3398
  msgid "Circular Infowindow"
3399
  msgstr "Cirkulær info vindue "
3400
 
3401
+ #: ../wp-google-maps-pro/legacy-core.php:1060
3402
  msgid "Currently using your selection chosen in the global settings"
3403
  msgstr "Bruger i øjeblikket de udvalgte valg i de globale indstillinger"
3404
 
3405
+ #: ../wp-google-maps-pro/legacy-core.php:1117
3406
  msgid "Download this as a CSV file"
3407
  msgstr "Download denne som en CSV fil"
3408
 
3409
+ #: ../wp-google-maps-pro/legacy-core.php:1117
3410
  msgid "Download this data as a CSV file"
3411
  msgstr "Download denne data som en CSV fil"
3412
 
3413
+ #: ../wp-google-maps-pro/legacy-core.php:1202
3414
  msgid "Please update your basic version to use this function."
3415
  msgstr "Venligst opdater din basis version for a benytte denne funktion."
3416
 
3417
  # @ wp-google-maps
3418
+ #: ../wp-google-maps-pro/legacy-core.php:1204
3419
  msgid "Add a New Dataset"
3420
  msgstr "Tilføj et nyt dataset"
3421
 
3422
  # @ wp-google-maps
3423
+ #: ../wp-google-maps-pro/legacy-core.php:1280
 
 
 
 
 
 
 
3424
  msgid "New"
3425
  msgstr "Ny"
3426
 
3427
  # @ wp-google-maps
3428
+ #: ../wp-google-maps-pro/legacy-core.php:1289
 
 
3429
  msgid "General Settings"
3430
  msgstr "Generelle Indstillinger"
3431
 
3432
+ #: ../wp-google-maps-pro/legacy-core.php:1290
 
 
 
3433
  msgid "Themes"
3434
  msgstr "Temaer"
3435
 
3436
  # @ wp-google-maps
3437
+ #: ../wp-google-maps-pro/legacy-core.php:1294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3438
  msgid "Marker Listing Options"
3439
  msgstr "Listemarkør muligheder"
3440
 
3441
  # @ wp-google-maps
3442
+ #: ../wp-google-maps-pro/legacy-core.php:1331
 
 
3443
  msgid "Short code"
3444
  msgstr "Kort kode"
3445
 
3446
  # @ wp-google-maps
3447
+ #: ../wp-google-maps-pro/legacy-core.php:1332
 
 
3448
  msgid "copy this into your post or page to display the map"
3449
  msgstr "kopier dette ind i dit indlæg eller din side for at vise kortet"
3450
 
3451
  # @ wp-google-maps
3452
+ #: ../wp-google-maps-pro/legacy-core.php:1335
 
 
3453
  msgid "Map Name"
3454
  msgstr "Kort Navn"
3455
 
3456
  # @ wp-google-maps
3457
+ #: ../wp-google-maps-pro/legacy-core.php:1339
 
 
3458
  msgid "Zoom Level"
3459
  msgstr "Zoom niveau"
3460
 
3461
  # @ wp-google-maps
3462
+ #: ../wp-google-maps-pro/legacy-core.php:1353
 
 
 
 
 
 
 
 
 
 
 
3463
  #, php-format
3464
  msgid "Set to 100% for a responsive map"
3465
  msgstr "Sat til 100% for et responsivt kort"
3466
 
3467
  # @ wp-google-maps
3468
+ #: ../wp-google-maps-pro/legacy-core.php:1363
 
 
 
 
 
 
 
 
 
 
 
3469
  #, php-format
3470
  msgid ""
3471
  "We recommend that you leave your height in PX. Depending on your theme, "
3475
  "at bruge % for højden ødelægge dit kort."
3476
 
3477
  # @ wp-google-maps
3478
+ #: ../wp-google-maps-pro/legacy-core.php:1381
3479
+ msgid "General options"
3480
+ msgstr "Generelle muligheder"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3481
 
3482
  # @ wp-google-maps
3483
+ #: ../wp-google-maps-pro/legacy-core.php:1384
3484
+ msgid "Enable Store Locator"
3485
+ msgstr "Aktiver Butiks Lokalisering"
 
 
3486
 
3487
  # @ wp-google-maps
3488
+ #: ../wp-google-maps-pro/legacy-core.php:1393
3489
+ #: ../wp-google-maps-pro/legacy-core.php:1420
3490
+ #, fuzzy
3491
+ #| msgid "Store Locator"
3492
+ msgid "Store Locator Style"
3493
+ msgstr "Find butik"
3494
 
3495
+ #: ../wp-google-maps-pro/legacy-core.php:1402
3496
+ #: ../wp-google-maps-pro/legacy-core.php:1481
3497
+ #: ../wp-google-maps-pro/legacy-core.php:5687
3498
+ msgid "Legacy"
3499
+ msgstr ""
 
3500
 
3501
+ #: ../wp-google-maps-pro/legacy-core.php:1425
3502
+ #, php-format
3503
+ msgid ""
3504
+ "Looking for styling settings? Try our new <a href='%s' target='_blank'>User "
3505
+ "Interface Style</a> setting."
3506
+ msgstr ""
3507
 
3508
  # @ wp-google-maps
3509
+ #: ../wp-google-maps-pro/legacy-core.php:1435
3510
+ #, fuzzy
3511
+ #| msgid "Search"
3512
+ msgid "Search Area"
3513
+ msgstr "søg"
3514
 
3515
  # @ wp-google-maps
3516
+ #: ../wp-google-maps-pro/legacy-core.php:1445
3517
+ #, fuzzy
3518
+ #| msgid "Radius"
3519
+ msgid "Radial"
3520
+ msgstr "Radius"
3521
 
3522
+ #: ../wp-google-maps-pro/legacy-core.php:1449
3523
+ msgid "Allows the user to select a radius from a predefined list"
3524
+ msgstr ""
3525
 
3526
+ #: ../wp-google-maps-pro/legacy-core.php:1459
3527
+ msgid "Auto"
3528
+ msgstr ""
3529
 
3530
+ #: ../wp-google-maps-pro/legacy-core.php:1463
3531
+ msgid "Intelligently detects the zoom level based on the location entered"
3532
+ msgstr ""
3533
 
3534
  # @ wp-google-maps
3535
+ #: ../wp-google-maps-pro/legacy-core.php:1472
3536
+ #, fuzzy
3537
+ #| msgid "Radius"
3538
+ msgid "Radius Style"
3539
+ msgstr "Radius"
3540
 
3541
  # @ wp-google-maps
3542
+ #: ../wp-google-maps-pro/legacy-core.php:1497
3543
+ #, fuzzy
3544
+ #| msgid "Default"
3545
+ msgid "Default radius"
3546
+ msgstr "Standard"
3547
+
3548
+ # @ wp-google-maps
3549
+ #: ../wp-google-maps-pro/legacy-core.php:1521
3550
+ #, fuzzy
3551
+ #| msgid "Maximum Zoom Level"
3552
+ msgid "Maximum zoom"
3553
+ msgstr "Maksimum Zoom Niveau"
3554
 
3555
+ #: ../wp-google-maps-pro/legacy-core.php:1533
 
 
3556
  msgid "Restrict to country"
3557
  msgstr "Begrænset til land"
3558
 
3559
+ #: ../wp-google-maps-pro/legacy-core.php:1542
 
 
3560
  msgid "No country selected"
3561
  msgstr "Intet land er valgt"
3562
 
3563
+ #: ../wp-google-maps-pro/legacy-core.php:1554
3564
  msgid "Insert country TLD. For example, use DE for Germany."
3565
  msgstr "Indset land TLD. For exempel, brug DE for Tyskland."
3566
 
3567
+ #: ../wp-google-maps-pro/legacy-core.php:1554
3568
  msgid "Leave blank for no restrictions."
3569
  msgstr "Lad være tom for ingen begrænsninger."
3570
 
3571
  # @ wp-google-maps
3572
+ #: ../wp-google-maps-pro/legacy-core.php:1560
 
 
3573
  msgid "Show distance in"
3574
  msgstr "Vis distance i"
3575
 
3576
  # @ wp-google-maps
3577
+ #: ../wp-google-maps-pro/legacy-core.php:1568
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3578
  msgid "Store Locator Placement"
3579
  msgstr "Butiks lokations placering"
3580
 
3581
+ #: ../wp-google-maps-pro/legacy-core.php:1571
3582
+ #: ../wp-google-maps-pro/legacy-core.php:2258
3583
  msgid "Below Map"
3584
  msgstr "Nedenfor Kort"
3585
 
3586
  # @ wp-google-maps
3587
+ #: ../wp-google-maps-pro/legacy-core.php:1571
3588
+ #: ../wp-google-maps-pro/legacy-core.php:2258
3589
  msgid "Above Map"
3590
  msgstr "Ovenfor Kort"
3591
 
3592
+ #: ../wp-google-maps-pro/legacy-core.php:1577
3593
  msgid "Allow category selection"
3594
  msgstr "Tillad valg af kategori"
3595
 
3596
+ #: ../wp-google-maps-pro/legacy-core.php:1585
3597
  msgid "Allow users to use their location as the starting point"
3598
  msgstr "Tillad brugere at bruge deres placering som udgangspunkt"
3599
 
3600
+ #: ../wp-google-maps-pro/legacy-core.php:1593
 
 
 
 
 
 
 
 
3601
  msgid "Show center point as an icon"
3602
  msgstr "Vis midtpunktet som et ikon"
3603
 
3604
  # @ wp-google-maps
3605
+ #: ../wp-google-maps-pro/legacy-core.php:1601
3606
  msgid "Default Icon"
3607
  msgstr "Standard ikon"
3608
 
3609
+ # @ wp-google-maps
3610
+ #: ../wp-google-maps-pro/legacy-core.php:1602
3611
+ #: ../wp-google-maps-pro/legacy-core.php:1761
3612
+ msgid "Upload Icon"
3613
+ msgstr "Upload ikon"
3614
+
3615
+ # @ wp-google-maps
3616
+ #: ../wp-google-maps-pro/legacy-core.php:1605
3617
+ #, fuzzy
3618
+ #| msgid "Marker Listing"
3619
+ msgid "Marker animation"
3620
+ msgstr "Markørlister"
3621
+
3622
+ #: ../wp-google-maps-pro/legacy-core.php:1615
3623
  msgid "Hide all markers until a search is done"
3624
  msgstr "Skjul all markørerne indtil søgningen er færdig"
3625
 
3626
  # @ wp-google-maps
3627
+ #: ../wp-google-maps-pro/legacy-core.php:1629
3628
  msgid "Query String"
3629
  msgstr "Query String"
3630
 
3631
+ #: ../wp-google-maps-pro/legacy-core.php:1634
3632
+ #, fuzzy
3633
+ #| msgid "Default 'To' address"
3634
+ msgid "Default address"
3635
+ msgstr "Standart sat til “Til” adresse"
3636
+
3637
  # @ wp-google-maps
3638
+ #: ../wp-google-maps-pro/legacy-core.php:1640
3639
  msgid "Enable title search"
3640
  msgstr "Aktiver titel søgning"
3641
 
3642
+ #: ../wp-google-maps-pro/legacy-core.php:1649
3643
  msgid "Title search String"
3644
  msgstr "Titel søgning String"
3645
 
3646
+ #: ../wp-google-maps-pro/legacy-core.php:1654
3647
+ msgid "Not found message"
3648
+ msgstr ""
3649
+
3650
+ #: ../wp-google-maps-pro/legacy-core.php:1659
3651
  msgid "Style options"
3652
  msgstr "Stil muligheder"
3653
 
3654
  # @ wp-google-maps
3655
+ #: ../wp-google-maps-pro/legacy-core.php:1664
3656
  msgid "Line color"
3657
  msgstr "Linje farve"
3658
 
3659
  # @ wp-google-maps
3660
+ #: ../wp-google-maps-pro/legacy-core.php:1672
3661
  msgid "Line opacity"
3662
  msgstr "Linie opacitet"
3663
 
3664
+ #: ../wp-google-maps-pro/legacy-core.php:1675
3665
+ #: ../wp-google-maps-pro/legacy-core.php:1691
3666
  msgid "(0 - 1.0) example: 0.5 for 50%"
3667
  msgstr "(0 - 1.0) eksempel: 0.5 for 50%"
3668
 
3669
  # @ wp-google-maps
3670
+ #: ../wp-google-maps-pro/legacy-core.php:1680
3671
  msgid "Fill color"
3672
  msgstr "Udfyld farve"
3673
 
3674
  # @ wp-google-maps
3675
+ #: ../wp-google-maps-pro/legacy-core.php:1688
3676
  msgid "Fill opacity"
3677
  msgstr "Fil opacitet"
3678
 
3679
  # @ wp-google-maps
3680
+ #: ../wp-google-maps-pro/legacy-core.php:1697
 
 
3681
  msgid "View"
3682
  msgstr "Vis"
3683
 
3684
  # @ wp-google-maps
3685
+ #: ../wp-google-maps-pro/legacy-core.php:1697
 
 
3686
  msgid "Store Locator Documentation"
3687
  msgstr "Butiks Location Dokumentation"
3688
 
3689
+ # @ default
3690
+ #: ../wp-google-maps-pro/legacy-core.php:1708
3691
+ #, fuzzy
3692
+ #| msgid "Advanced Settings"
3693
+ msgid "Advanced Settings:"
3694
+ msgstr "Avanceret Indstillinger"
3695
+
3696
  # @ wp-google-maps
3697
+ #: ../wp-google-maps-pro/legacy-core.php:1711
 
 
3698
  msgid "Default Marker Image"
3699
  msgstr "Standard markør billede"
3700
 
3701
  # @ wp-google-maps
3702
+ #: ../wp-google-maps-pro/legacy-core.php:1718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3703
  msgid "Map type"
3704
  msgstr "Kort type"
3705
 
3706
  # @ wp-google-maps
3707
+ #: ../wp-google-maps-pro/legacy-core.php:1721
3708
+ #: ../wp-google-maps-pro/legacy-core.php:7705
 
 
 
3709
  msgid "Roadmap"
3710
  msgstr "Vej kort"
3711
 
3712
  # @ wp-google-maps
3713
+ #: ../wp-google-maps-pro/legacy-core.php:1722
3714
+ #: ../wp-google-maps-pro/legacy-core.php:7706
 
 
 
3715
  msgid "Satellite"
3716
  msgstr "Sattelit"
3717
 
3718
  # @ wp-google-maps
3719
+ #: ../wp-google-maps-pro/legacy-core.php:1723
3720
+ #: ../wp-google-maps-pro/legacy-core.php:7707
 
 
 
3721
  msgid "Hybrid"
3722
  msgstr "hybrid"
3723
 
3724
  # @ wp-google-maps
3725
+ #: ../wp-google-maps-pro/legacy-core.php:1724
3726
+ #: ../wp-google-maps-pro/legacy-core.php:7708
 
 
 
3727
  msgid "Terrain"
3728
  msgstr "terræn"
3729
 
3730
  # @ wp-google-maps
3731
+ #: ../wp-google-maps-pro/legacy-core.php:1732
 
 
3732
  msgid "Map Alignment"
3733
  msgstr "Kort justering"
3734
 
3735
  # @ wp-google-maps
3736
+ #: ../wp-google-maps-pro/legacy-core.php:1734
 
 
3737
  msgid "Left"
3738
  msgstr "Venstre"
3739
 
3740
  # @ wp-google-maps
3741
+ #: ../wp-google-maps-pro/legacy-core.php:1735
 
 
3742
  msgid "Center"
3743
  msgstr "Center"
3744
 
3745
  # @ wp-google-maps
3746
+ #: ../wp-google-maps-pro/legacy-core.php:1736
 
 
3747
  msgid "Right"
3748
  msgstr "Højre"
3749
 
3750
  # @ wp-google-maps
3751
+ #: ../wp-google-maps-pro/legacy-core.php:1743
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3752
  msgid "Show User's Location?"
3753
  msgstr "Vis brugerens Lokation?"
3754
 
3755
+ #: ../wp-google-maps-pro/legacy-core.php:1760
3756
+ msgid "Default User Location Icon"
3757
+ msgstr "Standart Bruger Lokations Ikon"
3758
+
3759
+ #: ../wp-google-maps-pro/legacy-core.php:1766
3760
+ msgid "Jump to nearest marker on initialization?"
3761
+ msgstr ""
3762
+
3763
+ #: ../wp-google-maps-pro/legacy-core.php:1784
3764
+ msgid "Automatically pan to users location?"
3765
+ msgstr ""
3766
+
3767
+ #: ../wp-google-maps-pro/legacy-core.php:1798
3768
+ msgid "Override the zoom level when the users location is detected: "
3769
+ msgstr ""
3770
+
3771
+ #: ../wp-google-maps-pro/legacy-core.php:1807
3772
+ msgid "Override users location zoom level:"
3773
+ msgstr ""
3774
+
3775
+ # @ wp-google-maps
3776
+ #: ../wp-google-maps-pro/legacy-core.php:1838
3777
+ #, fuzzy
3778
+ #| msgid "Show distance in"
3779
+ msgid "Show distance from location?"
3780
+ msgstr "Vis distance i"
3781
+
3782
+ #: ../wp-google-maps-pro/legacy-core.php:1857
3783
+ msgid ""
3784
+ "This feature will use the users location (where available) or the searched "
3785
+ "address when a store locator search is performed."
3786
+ msgstr ""
3787
+
3788
+ #: ../wp-google-maps-pro/legacy-core.php:1866
3789
  msgid "Click marker opens link"
3790
  msgstr "Vælg markør åbner link"
3791
 
3792
+ #: ../wp-google-maps-pro/legacy-core.php:1874
3793
+ msgid "Fit map bounds to markers?"
3794
+ msgstr ""
3795
+
3796
+ #: ../wp-google-maps-pro/legacy-core.php:1882
3797
+ msgid "Fit map bounds to markers after filtering?"
3798
+ msgstr ""
3799
+
3800
+ #: ../wp-google-maps-pro/legacy-core.php:1890
3801
+ msgid "Hide point of interest"
3802
+ msgstr ""
3803
+
3804
  # @ wp-google-maps
3805
+ #: ../wp-google-maps-pro/legacy-core.php:1899
3806
  msgid "Maximum Zoom Out Level"
3807
  msgstr "Maksimum Zoom Ud Niveau"
3808
 
3809
  # @ wp-google-maps
3810
+ #: ../wp-google-maps-pro/legacy-core.php:1928
3811
  msgid "Maximum Zoom In Level"
3812
  msgstr "Maksimum Zoom Ind Niveau"
3813
 
3814
  # @ wp-google-maps
3815
+ #: ../wp-google-maps-pro/legacy-core.php:1963
3816
  msgid "Enable Layers"
3817
  msgstr "Aktiver Lag"
3818
 
3819
  # @ wp-google-maps
3820
+ #: ../wp-google-maps-pro/legacy-core.php:1967
3821
  msgid "Bicycle Layer"
3822
  msgstr "Cykel Lag"
3823
 
3824
  # @ wp-google-maps
3825
+ #: ../wp-google-maps-pro/legacy-core.php:1972
3826
  msgid "Traffic Layer"
3827
  msgstr "Trafik Lag"
3828
 
3829
+ #: ../wp-google-maps-pro/legacy-core.php:1976
3830
  msgid "Transit Layer"
3831
  msgstr "Transitlag"
3832
 
3833
  # @ wp-google-maps
3834
+ #: ../wp-google-maps-pro/legacy-core.php:1984
3835
+ #, fuzzy
3836
+ #| msgid "Enable Layers"
3837
+ msgid "Enable Polygon Labels"
3838
+ msgstr "Aktiver Lag"
3839
+
3840
+ # @ wp-google-maps
3841
+ #: ../wp-google-maps-pro/legacy-core.php:1996
3842
  msgid "KML/GeoRSS URL"
3843
  msgstr "KML/GeoRSS URL"
3844
 
3845
  # @ wp-google-maps
3846
+ #: ../wp-google-maps-pro/legacy-core.php:1998
 
 
3847
  msgid "The KML/GeoRSS layer will over-ride most of your map settings"
3848
  msgstr "KML/GeoRSS laget vil overskrive de fleste af dine kort indstillinger"
3849
 
3850
+ #: ../wp-google-maps-pro/legacy-core.php:1998
3851
  msgid "For multiple sources, separate each one by a comma."
3852
  msgstr "For flere kilder skal du adskille hver med et komma."
3853
 
3854
  # @ wp-google-maps
3855
+ #: ../wp-google-maps-pro/legacy-core.php:2002
 
 
3856
  msgid "Fusion table ID"
3857
  msgstr "Fusion table ID"
3858
 
3859
+ #: ../wp-google-maps-pro/legacy-core.php:2004
3860
  msgid ""
3861
  "Read data directly from your Fusion Table. For more information, see <a "
3862
  "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
3868
  "api.html’>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
3869
  "maps-api.html</a>"
3870
 
3871
+ # @ wp-google-maps
3872
+ #: ../wp-google-maps-pro/legacy-core.php:2012
3873
+ #, fuzzy
3874
+ #| msgid "General options"
3875
+ msgid "Integration"
3876
+ msgstr "Generelle muligheder"
3877
+
3878
+ # @ wp-google-maps
3879
+ #: ../wp-google-maps-pro/legacy-core.php:2023
3880
+ #, fuzzy
3881
+ #| msgid "Save Marker Location"
3882
+ msgid "Enable Marker Ratings"
3883
+ msgstr "Gem markør lokation"
3884
+
3885
+ #: ../wp-google-maps-pro/legacy-core.php:2036
3886
+ #: ../wp-google-maps-pro/legacy-core.php:5887
3887
  msgid "Infowindow Style"
3888
  msgstr "Info vindue stil"
3889
 
3890
+ # @ wp-google-maps
3891
+ #: ../wp-google-maps-pro/legacy-core.php:2070
3892
+ #, fuzzy
3893
+ #| msgid "No Global Setting"
3894
+ msgid "Inherit Global Setting"
3895
+ msgstr "Ingen globale indstillinger"
3896
+
3897
+ #: ../wp-google-maps-pro/legacy-core.php:2087
3898
+ #: ../wp-google-maps-pro/legacy-core.php:5939
3899
  msgid "Your selection:"
3900
  msgstr "Dine valg:"
3901
 
3902
  # @ wp-google-maps
3903
+ #: ../wp-google-maps-pro/legacy-core.php:2120
3904
  msgid "Infowindow Colors"
3905
  msgstr "Info Vindue Farver"
3906
 
3907
  # @ wp-google-maps
3908
+ #: ../wp-google-maps-pro/legacy-core.php:2124
3909
  msgid "Primary Color"
3910
  msgstr "Primære Farver"
3911
 
3912
  # @ wp-google-maps
3913
+ #: ../wp-google-maps-pro/legacy-core.php:2132
3914
  msgid "Accent Color"
3915
  msgstr "Accent Farve"
3916
 
3917
  # @ wp-google-maps
3918
+ #: ../wp-google-maps-pro/legacy-core.php:2140
3919
  msgid "Text Color"
3920
  msgstr "Text Farve"
3921
 
3922
  # @ wp-google-maps
3923
+ #: ../wp-google-maps-pro/legacy-core.php:2174
3924
+ #: ../wp-google-maps-pro/legacy-core.php:2206
3925
+ #: ../wp-google-maps-pro/legacy-core.php:7331
3926
+ msgid "No marker listing"
3927
+ msgstr "Ingen markør liste"
3928
 
3929
  # @ wp-google-maps
3930
+ #: ../wp-google-maps-pro/legacy-core.php:2255
3931
  msgid "Marker Listing Placement"
3932
  msgstr "Markør Liste Placering"
3933
 
3934
  # @ wp-google-maps
3935
+ #: ../wp-google-maps-pro/legacy-core.php:2264
 
 
3936
  msgid "Order markers by"
3937
  msgstr "Sorter markører efter"
3938
 
3939
  # @ wp-google-maps
3940
+ #: ../wp-google-maps-pro/legacy-core.php:2272
3941
+ #, fuzzy
3942
+ #| msgid "Category Marker"
3943
+ msgid "Category Priority"
3944
+ msgstr "Kategori Markør"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3945
 
3946
+ #: ../wp-google-maps-pro/legacy-core.php:2273
3947
+ msgid "Distance"
3948
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
3949
 
3950
  # @ wp-google-maps
3951
+ #: ../wp-google-maps-pro/legacy-core.php:2276
3952
+ #, fuzzy
3953
+ #| msgid "Marketing"
3954
+ msgid "Rating"
3955
+ msgstr "Markting"
 
 
 
 
 
 
 
 
 
 
 
3956
 
3957
  # @ wp-google-maps
3958
+ #: ../wp-google-maps-pro/legacy-core.php:2281
 
 
3959
  msgid "Ascending"
3960
  msgstr "Stigende"
3961
 
3962
  # @ wp-google-maps
3963
+ #: ../wp-google-maps-pro/legacy-core.php:2282
 
 
3964
  msgid "Descending"
3965
  msgstr "Faldende"
3966
 
3967
+ #: ../wp-google-maps-pro/legacy-core.php:2293
 
 
3968
  msgid "Move list inside map"
3969
  msgstr "Flyt liste ind i kortet"
3970
 
3971
+ #: ../wp-google-maps-pro/legacy-core.php:2296
 
 
3972
  msgid "Move your marker list inside the map area"
3973
  msgstr "Flyt din markør liste ind i kort området"
3974
 
3975
+ #: ../wp-google-maps-pro/legacy-core.php:2296
3976
  msgid "(still in beta)"
3977
  msgstr "(stading i beta)"
3978
 
3979
+ #: ../wp-google-maps-pro/legacy-core.php:2317
 
 
3980
  msgid "Placement: "
3981
  msgstr "Placering:"
3982
 
3983
  # @ wp-google-maps
3984
+ #: ../wp-google-maps-pro/legacy-core.php:2319
 
 
3985
  msgid "Top Center"
3986
  msgstr "Top Center"
3987
 
3988
  # @ wp-google-maps
3989
+ #: ../wp-google-maps-pro/legacy-core.php:2320
 
 
3990
  msgid "Top Left"
3991
  msgstr "Top Venstre"
3992
 
3993
  # @ wp-google-maps
3994
+ #: ../wp-google-maps-pro/legacy-core.php:2321
 
 
3995
  msgid "Top Right"
3996
  msgstr "Top Højre"
3997
 
3998
  # @ wp-google-maps
3999
+ #: ../wp-google-maps-pro/legacy-core.php:2322
 
 
4000
  msgid "Left Top "
4001
  msgstr "Venstre Top"
4002
 
4003
  # @ wp-google-maps
4004
+ #: ../wp-google-maps-pro/legacy-core.php:2323
 
 
4005
  msgid "Right Top"
4006
  msgstr "Højre Top"
4007
 
4008
  # @ wp-google-maps
4009
+ #: ../wp-google-maps-pro/legacy-core.php:2324
 
 
4010
  msgid "Left Center"
4011
  msgstr "Venstre Center"
4012
 
4013
  # @ wp-google-maps
4014
+ #: ../wp-google-maps-pro/legacy-core.php:2325
 
 
4015
  msgid "Right Center"
4016
  msgstr "Højre Center"
4017
 
4018
+ #: ../wp-google-maps-pro/legacy-core.php:2326
 
 
4019
  msgid "Left Bottom"
4020
  msgstr "Venstre Bund"
4021
 
4022
+ #: ../wp-google-maps-pro/legacy-core.php:2327
 
 
4023
  msgid "Right Bottom"
4024
  msgstr "Højre Bund"
4025
 
4026
  # @ wp-google-maps
4027
+ #: ../wp-google-maps-pro/legacy-core.php:2328
 
 
4028
  msgid "Bottom Center"
4029
  msgstr "Center Bund"
4030
 
4031
+ #: ../wp-google-maps-pro/legacy-core.php:2329
 
 
4032
  msgid "Bottom Left"
4033
  msgstr "Bund Venstre"
4034
 
4035
+ #: ../wp-google-maps-pro/legacy-core.php:2330
 
 
4036
  msgid "Bottom Right"
4037
  msgstr "Bund Højre"
4038
 
4039
+ #: ../wp-google-maps-pro/legacy-core.php:2332
4040
  msgid "Container Width: "
4041
  msgstr "Beholder Bredde:"
4042
 
4043
+ #: ../wp-google-maps-pro/legacy-core.php:2333
4044
  msgid "Container Height: "
4045
  msgstr "Beholder Højde:"
4046
 
4047
  # @ wp-google-maps
4048
+ #: ../wp-google-maps-pro/legacy-core.php:2343
 
 
4049
  msgid "Filter by Category"
4050
  msgstr "Filtrer efter Kategori"
4051
 
4052
  # @ wp-google-maps
4053
+ #: ../wp-google-maps-pro/legacy-core.php:2346
 
 
4054
  msgid "Allow users to filter by category?"
4055
  msgstr "Tillad at brugere kan filtrere efter kategori?"
4056
 
4057
  # @ wp-google-maps
4058
+ #: ../wp-google-maps-pro/legacy-core.php:2375
 
 
4059
  msgid "Save Map"
4060
  msgstr "Gem Kort"
4061
 
4062
  # @ wp-google-maps
4063
+ #: ../wp-google-maps-pro/legacy-core.php:2378
 
 
4064
  msgid ""
4065
  "Tip: Use your mouse to change the layout of your map. When you have "
4066
  "positioned the map to your desired location, press \"Save Map\" to keep your "
4070
  "kortet til den ønskede lokation så tryk på \"Gem Kort\" for at gemme dine "
4071
  "indstillinger."
4072
 
4073
+ #: ../wp-google-maps-pro/legacy-core.php:2391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4074
  msgid "Heatmaps"
4075
  msgstr "Heatmaps"
4076
 
4077
  # @ wp-google-maps
4078
+ #: ../wp-google-maps-pro/legacy-core.php:2400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4079
  msgid "Add a New Polygon"
4080
  msgstr "Tilføj en ny polygon"
4081
 
4082
  # @ wp-google-maps
4083
+ #: ../wp-google-maps-pro/legacy-core.php:2405
 
 
 
 
 
 
 
 
 
 
4084
  msgid "Add a New Polyline"
4085
  msgstr "tilføj en ny polylinie"
4086
 
4087
  # @ wp-google-maps
4088
+ #: ../wp-google-maps-pro/legacy-core.php:2409
4089
  msgid "Add a dataset"
4090
  msgstr "Tilføj dataset"
4091
 
4092
  # @ wp-google-maps
4093
+ #: ../wp-google-maps-pro/legacy-core.php:2415
4094
+ #: ../wp-google-maps-pro/legacy-core.php:2417
4095
+ #, fuzzy
4096
+ #| msgid "Add a marker"
4097
+ msgid "Add a Circle"
4098
+ msgstr "Tilføj markør"
4099
+
4100
+ # @ wp-google-maps
4101
+ #: ../wp-google-maps-pro/legacy-core.php:2423
4102
+ #: ../wp-google-maps-pro/legacy-core.php:2425
4103
+ #, fuzzy
4104
+ #| msgid "Add a dataset"
4105
+ msgid "Add a Rectangle"
4106
+ msgstr "Tilføj dataset"
4107
 
4108
  # @ wp-google-maps
4109
+ #: ../wp-google-maps-pro/legacy-core.php:2447
 
 
4110
  msgid "Your Markers"
4111
  msgstr "Dine Markører"
4112
 
4113
  # @ wp-google-maps
4114
+ #: ../wp-google-maps-pro/legacy-core.php:2457
4115
+ #, fuzzy
4116
+ #| msgid ""
4117
+ #| "WP Google Maps encourages you to make use of the amazing icons created by "
4118
+ #| "Nicolas Mollet's Maps Icons Collection"
4119
+ msgid "WP Google Maps encourages you to make use of the amazing icons at "
4120
  msgstr ""
4121
  "WP Google Maps opfordrer dig til at gøre brug af de fantastiske ikoner lavet "
4122
  "af Nicolas Mollet's Maps Icons Collection"
4123
 
4124
  # @ wp-google-maps
4125
+ #: ../wp-google-maps-pro/legacy-core.php:2824
4126
+ #: ../wp-google-maps-pro/legacy-core.php:2848
 
 
 
 
 
 
4127
  msgid ""
4128
  "The map ID you have entered does not exist. Please enter a map ID that "
4129
  "exists."
4132
  "eksistere."
4133
 
4134
  # @ wp-google-maps
4135
+ #: ../wp-google-maps-pro/legacy-core.php:3186
 
 
 
 
 
 
 
 
 
4136
  msgid "Filter by"
4137
  msgstr "Filtrer efter"
4138
 
4139
  # @ wp-google-maps
4140
+ #: ../wp-google-maps-pro/legacy-core.php:3397
 
 
4141
  msgid "Get directions to"
4142
  msgstr "Een routebeschrijving opvragen"
4143
 
4144
+ #: ../wp-google-maps-pro/legacy-core.php:3467
4145
+ #: ../wp-google-maps-pro/legacy-core.php:3495
4146
+ msgid "Fetching directions..."
4147
+ msgstr "Routebeschrijving opvragen..."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4148
 
4149
+ #: ../wp-google-maps-pro/legacy-core.php:3588
4150
+ msgid "Thank you. Your marker is awaiting approval."
4151
+ msgstr "Mange tak. Dine markører venter på godkendelse."
 
4152
 
4153
+ #: ../wp-google-maps-pro/legacy-core.php:3916
4154
+ msgid "No results found"
4155
+ msgstr ""
4156
 
4157
+ #: ../wp-google-maps-pro/legacy-core.php:3917
4158
+ msgid "Zero results"
4159
+ msgstr ""
4160
 
4161
+ #: ../wp-google-maps-pro/legacy-core.php:3918
4162
+ msgid "Max waypoints exceeded"
4163
+ msgstr ""
4164
 
4165
+ #: ../wp-google-maps-pro/legacy-core.php:3919
4166
+ msgid "Max route length exceeded"
4167
+ msgstr ""
4168
 
4169
+ #: ../wp-google-maps-pro/legacy-core.php:3920
4170
+ msgid "Invalid request"
4171
+ msgstr ""
4172
 
4173
+ #: ../wp-google-maps-pro/legacy-core.php:3921
4174
+ msgid "Over query limit"
4175
+ msgstr ""
 
4176
 
4177
+ #: ../wp-google-maps-pro/legacy-core.php:3922
4178
+ msgid "Request denied"
4179
+ msgstr ""
 
 
4180
 
4181
+ #: ../wp-google-maps-pro/legacy-core.php:3923
4182
+ #, fuzzy
4183
+ #| msgid "An unknown error occurred"
4184
+ msgid "Unknown error"
4185
+ msgstr "En uventet fejl er opstået"
4186
 
4187
+ #: ../wp-google-maps-pro/legacy-core.php:3927
4188
+ msgid "Zoom"
4189
+ msgstr ""
4190
 
4191
  # @ wp-google-maps
4192
+ #: ../wp-google-maps-pro/legacy-core.php:4282
4193
  msgid "Get directions"
4194
  msgstr "Routebeschrijving naar"
4195
 
4196
+ #: ../wp-google-maps-pro/legacy-core.php:4284
 
 
 
 
 
 
 
4197
  msgid "km away"
4198
  msgstr "km væk"
4199
 
4200
+ #: ../wp-google-maps-pro/legacy-core.php:4285
 
 
 
4201
  msgid "miles away"
4202
  msgstr "mil væk"
4203