WP Google Maps - Version 6.4.10

Version Description

Please update your WP Google Maps version to 6.4.10 to ensure you are using the latest security enhancements.

Download this release

Release Info

Developer WPGMaps
Plugin Icon 128x128 WP Google Maps
Version 6.4.10
Comparing to
See all releases

Code changes from version 6.4.09 to 6.4.10

images/marker_list_modern.png ADDED
Binary file
images/spotlight-poi2_hdpi.png ADDED
Binary file
js/admin-basic.js CHANGED
@@ -53,5 +53,15 @@ jQuery(document).ready(function(){
53
  radiusStoreLocatorKm.addClass('active');
54
  }
55
  });
56
-
 
 
 
 
 
 
 
 
 
 
57
  });
53
  radiusStoreLocatorKm.addClass('active');
54
  }
55
  });
56
+
57
+ // If the store locator radii aren't valid when trying to save, switch to that tab so the error message is visible
58
+ jQuery("input[name='wpgmza_save_settings']").on("click", function() {
59
+ var input = jQuery("input.wpgmza_store_locator_radii");
60
+ var value = input.val();
61
+ var regex = new RegExp(input.attr("pattern"));
62
+
63
+ if(!value.match(regex))
64
+ jQuery("#wpgmaps_tabs").tabs({active: 3});
65
+ });
66
+
67
  });
js/wpgmaps.js CHANGED
@@ -8,19 +8,56 @@ for (var entry in wpgmaps_localize) {
8
  }
9
  }
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
  function InitMap() {
13
  var myLatLng = new google.maps.LatLng(wpgmaps_localize[wpgmaps_mapid].map_start_lat,wpgmaps_localize[wpgmaps_mapid].map_start_lng);
14
- if (typeof wpgmza_override_zoom !== "undefined") { MYMAP.init('#wpgmza_map', myLatLng, parseInt(wpgmza_override_zoom)); }
15
- else { MYMAP.init('#wpgmza_map', myLatLng, parseInt(wpgmaps_localize[wpgmaps_mapid].map_start_zoom)); }
 
 
 
16
 
17
  UniqueCode=Math.round(Math.random()*10000);
18
 
19
  MYMAP.placeMarkers(wpgmaps_markerurl+'?u='+UniqueCode,wpgmaps_localize[wpgmaps_mapid].id,null,null,null);
 
 
 
 
 
 
20
  }
 
 
 
21
  jQuery(function() {
22
 
23
  jQuery(document).ready(function(){
 
 
 
 
 
 
 
24
  if (/1\.([0-7])\.([0-9])/.test(jQuery.fn.jquery)) {
25
  setTimeout(function(){
26
  document.getElementById('wpgmza_map').innerHTML = 'Error: Your version of jQuery is outdated. WP Google Maps requires jQuery version 1.7+ to function correctly. Go to Maps->Settings and check the box that allows you to over-ride your current jQuery to try eliminate this problem.';
@@ -84,6 +121,38 @@ if (wpgmaps_localize_global_settings['wpgmza_settings_map_full_screen_control']
84
  if ('undefined' === typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom'] || wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom'] === "") { wpgmza_max_zoom = 0; } else { wpgmza_max_zoom = parseInt(wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom']); }
85
  if ('undefined' === typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom'] || wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom'] === "") { wpgmza_min_zoom = 21; } else { wpgmza_min_zoom = parseInt(wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom']); }
86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
  MYMAP.init = function(selector, latLng, zoom) {
89
 
@@ -122,9 +191,8 @@ MYMAP.init = function(selector, latLng, zoom) {
122
  if(!myOptions.styles)
123
  myOptions.styles = [];
124
 
125
- wpgmza_theme_data = jQuery.parseJSON(wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_theme_data']);
126
-
127
- myOptions.styles = myOptions.styles.concat(jQuery.parseJSON(wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_theme_data']));
128
  }
129
 
130
  if(!wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_show_points_of_interest'])
@@ -142,9 +210,17 @@ MYMAP.init = function(selector, latLng, zoom) {
142
  );
143
  }
144
 
145
- this.map = new google.maps.Map(jQuery(selector)[0], myOptions);
 
146
  this.bounds = new google.maps.LatLngBounds();
147
 
 
 
 
 
 
 
 
148
  /*var map = this.map;
149
  google.maps.event.addDomListener(window, "resize", function() {
150
  var center = map.getCenter();
@@ -200,6 +276,66 @@ google.maps.event.addDomListener(window, 'resize', function() {
200
  var myLatLng = new google.maps.LatLng(wpgmaps_localize[wpgmaps_mapid].map_start_lat,wpgmaps_localize[wpgmaps_mapid].map_start_lng);
201
  MYMAP.map.setCenter(myLatLng);
202
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  MYMAP.placeMarkers = function(filename,map_id,radius,searched_center,distance_type) {
204
  var check1 = 0,
205
  slNotFoundMessage = jQuery('.js-not-found-msg');
@@ -230,32 +366,10 @@ MYMAP.placeMarkers = function(filename,map_id,radius,searched_center,distance_ty
230
  map: MYMAP.map,
231
  animation: google.maps.Animation.BOUNCE
232
  });
233
- } else { /* dont show icon */ }
234
- if (distance_type === "1") {
235
- var populationOptions = {
236
- strokeColor: '#FF0000',
237
- strokeOpacity: 0.25,
238
- strokeWeight: 2,
239
- fillColor: '#FF0000',
240
- fillOpacity: 0.15,
241
- map: MYMAP.map,
242
- center: point,
243
- radius: parseInt(radius / 0.000621371)
244
- };
245
- } else {
246
- var populationOptions = {
247
- strokeColor: '#FF0000',
248
- strokeOpacity: 0.25,
249
- strokeWeight: 2,
250
- fillColor: '#FF0000',
251
- fillOpacity: 0.15,
252
- map: MYMAP.map,
253
- center: point,
254
- radius: parseInt(radius / 0.001)
255
- };
256
  }
257
-
258
- cityCircle = new google.maps.Circle(populationOptions);
 
259
  check1 = check1 + 1;
260
  }
261
  var R = 0;
@@ -368,31 +482,9 @@ MYMAP.placeMarkers = function(filename,map_id,radius,searched_center,distance_ty
368
  animation: google.maps.Animation.BOUNCE
369
  });
370
  } else { /* dont show icon */ }
371
- if (distance_type === "1") {
372
- var populationOptions = {
373
- strokeColor: '#FF0000',
374
- strokeOpacity: 0.25,
375
- strokeWeight: 2,
376
- fillColor: '#FF0000',
377
- fillOpacity: 0.15,
378
- map: MYMAP.map,
379
- center: point,
380
- radius: parseInt(radius / 0.000621371)
381
- };
382
- } else {
383
- var populationOptions = {
384
- strokeColor: '#FF0000',
385
- strokeOpacity: 0.25,
386
- strokeWeight: 2,
387
- fillColor: '#FF0000',
388
- fillOpacity: 0.15,
389
- map: MYMAP.map,
390
- center: point,
391
- radius: parseInt(radius / 0.001)
392
- };
393
- }
394
-
395
- cityCircle = new google.maps.Circle(populationOptions);
396
  check1 = check1 + 1;
397
  }
398
  var R = 0;
@@ -583,34 +675,8 @@ function fillInAddress() {
583
  // Get the place details from the autocomplete object.
584
  var place = autocomplete.getPlace();
585
  }
586
- var elementExists = document.getElementById("addressInput");
587
- if (typeof google === 'object' && typeof google.maps === 'object' && typeof google.maps.places === 'object' && typeof google.maps.places.Autocomplete === 'function') {
588
-
589
- // user autofill
590
- if (elementExists !== null) {
591
- if (typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict'] === "undefined" || wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict'] === "" ) {
592
- /* initialize the autocomplete form */
593
- autocomplete = new google.maps.places.Autocomplete(
594
- /** @type {HTMLInputElement} */(document.getElementById('addressInput')),
595
- { types: ['geocode'] });
596
- // When the user selects an address from the dropdown,
597
- // populate the address fields in the form.
598
- google.maps.event.addListener(autocomplete, 'place_changed', function() {
599
- fillInAddress();
600
- });
601
- } else {
602
- /* initialize the autocomplete form */
603
- autocomplete = new google.maps.places.Autocomplete(
604
- /** @type {HTMLInputElement} */(document.getElementById('addressInput')),
605
- { types: ['geocode'], componentRestrictions: {country: wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict']} });
606
- // When the user selects an address from the dropdown,
607
- // populate the address fields in the form.
608
- google.maps.event.addListener(autocomplete, 'place_changed', function() {
609
- fillInAddress();
610
- });
611
- }
612
- }
613
- }
614
 
615
 
616
  function searchLocations(map_id) {
@@ -640,33 +706,11 @@ function clearLocations() {
640
  }
641
  function searchLocationsNear(mapid,center_searched) {
642
  clearLocations();
643
- var distance_type = document.getElementById("wpgmza_distance_type").value;
 
644
  var radius = document.getElementById('radiusSelect').value;
645
- if (distance_type === "1") {
646
- if (radius === "1") { zoomie = 14; }
647
- else if (radius === "5") { zoomie = 12; }
648
- else if (radius === "10") { zoomie = 11; }
649
- else if (radius === "25") { zoomie = 9; }
650
- else if (radius === "50") { zoomie = 8; }
651
- else if (radius === "75") { zoomie = 8; }
652
- else if (radius === "100") { zoomie = 7; }
653
- else if (radius === "150") { zoomie = 7; }
654
- else if (radius === "200") { zoomie = 6; }
655
- else if (radius === "300") { zoomie = 6; }
656
- else { zoomie = 14; }
657
- } else {
658
- if (radius === "1") { zoomie = 14; }
659
- else if (radius === "5") { zoomie = 12; }
660
- else if (radius === "10") { zoomie = 11; }
661
- else if (radius === "25") { zoomie = 10; }
662
- else if (radius === "50") { zoomie = 9; }
663
- else if (radius === "75") { zoomie = 8; }
664
- else if (radius === "100") { zoomie = 8; }
665
- else if (radius === "150") { zoomie = 7; }
666
- else if (radius === "200") { zoomie = 7; }
667
- else if (radius === "300") { zoomie = 6; }
668
- else { zoomie = 14; }
669
- }
670
  MYMAP.init("#wpgmza_map", center_searched, zoomie, 3);
671
  MYMAP.placeMarkers(wpgmaps_markerurl+'?u='+UniqueCode,wpgmaps_localize[wpgmaps_mapid].id,radius,center_searched,distance_type);
672
  }
@@ -674,4 +718,467 @@ function searchLocationsNear(mapid,center_searched) {
674
  function toRad(Value) {
675
  /** Converts numeric degrees to radians */
676
  return Value * Math.PI / 180;
677
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  }
9
  }
10
 
11
+ function wpgmza_parse_theme_data(raw)
12
+ {
13
+
14
+ var json;
15
+
16
+ try{
17
+ json = JSON.parse(raw);
18
+ }catch(e) {
19
+ try{
20
+ json = eval(raw);
21
+ }catch(e) {
22
+ console.warn("Couldn't parse theme data");
23
+ return [];
24
+ }
25
+ }
26
+
27
+ return json;
28
+ }
29
 
30
  function InitMap() {
31
  var myLatLng = new google.maps.LatLng(wpgmaps_localize[wpgmaps_mapid].map_start_lat,wpgmaps_localize[wpgmaps_mapid].map_start_lng);
32
+
33
+ if(typeof wpgmza_override_zoom !== "undefined")
34
+ MYMAP.init('#wpgmza_map', myLatLng, parseInt(wpgmza_override_zoom));
35
+ else
36
+ MYMAP.init('#wpgmza_map', myLatLng, parseInt(wpgmaps_localize[wpgmaps_mapid].map_start_zoom));
37
 
38
  UniqueCode=Math.round(Math.random()*10000);
39
 
40
  MYMAP.placeMarkers(wpgmaps_markerurl+'?u='+UniqueCode,wpgmaps_localize[wpgmaps_mapid].id,null,null,null);
41
+
42
+ if(wpgmaps_localize[wpgmaps_mapid].other_settings.store_locator_style == 'modern')
43
+ {
44
+ MYMAP.modernStoreLocator = new WPGMZA.ModernStoreLocator(wpgmaps_mapid);
45
+ wpgmza_create_places_autocomplete();
46
+ }
47
  }
48
+
49
+
50
+
51
  jQuery(function() {
52
 
53
  jQuery(document).ready(function(){
54
+
55
+ // Fastclick adapation
56
+ jQuery(document).on({'DOMNodeInserted': function() {
57
+ jQuery('.pac-item, .pac-item span', this).addClass('needsclick');
58
+ }
59
+ }, '.pac-container');
60
+
61
  if (/1\.([0-7])\.([0-9])/.test(jQuery.fn.jquery)) {
62
  setTimeout(function(){
63
  document.getElementById('wpgmza_map').innerHTML = 'Error: Your version of jQuery is outdated. WP Google Maps requires jQuery version 1.7+ to function correctly. Go to Maps->Settings and check the box that allows you to over-ride your current jQuery to try eliminate this problem.';
121
  if ('undefined' === typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom'] || wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom'] === "") { wpgmza_max_zoom = 0; } else { wpgmza_max_zoom = parseInt(wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_max_zoom']); }
122
  if ('undefined' === typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom'] || wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom'] === "") { wpgmza_min_zoom = 21; } else { wpgmza_min_zoom = parseInt(wpgmaps_localize[wpgmaps_mapid]['other_settings']['map_min_zoom']); }
123
 
124
+ function wpgmza_create_places_autocomplete() {
125
+
126
+ var elementExists = document.getElementById("addressInput");
127
+
128
+ if (typeof google === 'object' && typeof google.maps === 'object' && typeof google.maps.places === 'object' && typeof google.maps.places.Autocomplete === 'function') {
129
+
130
+ // user autofill
131
+ if (elementExists !== null) {
132
+ if (typeof wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict'] === "undefined" || wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict'] === "" ) {
133
+ /* initialize the autocomplete form */
134
+ autocomplete = new google.maps.places.Autocomplete(
135
+ /** @type {HTMLInputElement} */(document.getElementById('addressInput')),
136
+ { types: ['geocode'] });
137
+ // When the user selects an address from the dropdown,
138
+ // populate the address fields in the form.
139
+ google.maps.event.addListener(autocomplete, 'place_changed', function() {
140
+ fillInAddress();
141
+ });
142
+ } else {
143
+ /* initialize the autocomplete form */
144
+ autocomplete = new google.maps.places.Autocomplete(
145
+ /** @type {HTMLInputElement} */(document.getElementById('addressInput')),
146
+ { types: ['geocode'], componentRestrictions: {country: wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_store_locator_restrict']} });
147
+ // When the user selects an address from the dropdown,
148
+ // populate the address fields in the form.
149
+ google.maps.event.addListener(autocomplete, 'place_changed', function() {
150
+ fillInAddress();
151
+ });
152
+ }
153
+ }
154
+ }
155
+ }
156
 
157
  MYMAP.init = function(selector, latLng, zoom) {
158
 
191
  if(!myOptions.styles)
192
  myOptions.styles = [];
193
 
194
+ wpgmza_theme_data = wpgmza_parse_theme_data(wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_theme_data']);
195
+ myOptions.styles = myOptions.styles.concat(wpgmza_theme_data);
 
196
  }
197
 
198
  if(!wpgmaps_localize[wpgmaps_mapid]['other_settings']['wpgmza_show_points_of_interest'])
210
  );
211
  }
212
 
213
+ var element = jQuery(selector)[0];
214
+ this.map = new google.maps.Map(element, myOptions);
215
  this.bounds = new google.maps.LatLngBounds();
216
 
217
+ if(MYMAP.modernStoreLocator)
218
+ {
219
+ MYMAP.modernStoreLocator.element.index = 1;
220
+ this.map.controls[google.maps.ControlPosition.TOP_CENTER].push(MYMAP.modernStoreLocator.element);
221
+ wpgmza_create_places_autocomplete();
222
+ }
223
+
224
  /*var map = this.map;
225
  google.maps.event.addDomListener(window, "resize", function() {
226
  var center = map.getCenter();
276
  var myLatLng = new google.maps.LatLng(wpgmaps_localize[wpgmaps_mapid].map_start_lat,wpgmaps_localize[wpgmaps_mapid].map_start_lng);
277
  MYMAP.map.setCenter(myLatLng);
278
  });
279
+
280
+ if(!window.WPGMZA)
281
+ window.WPGMZA = {};
282
+
283
+ WPGMZA.KM_PER_MILE = 1.60934;
284
+ WPGMZA.MILE_PER_KM = 0.621371;
285
+
286
+ WPGMZA.UNITS_MILES = 1;
287
+ WPGMZA.UNITS_KM = 2;
288
+
289
+ function wpgmza_get_zoom_from_radius(radius, units)
290
+ {
291
+ // With thanks to Jeff Jason http://jeffjason.com/2011/12/google-maps-radius-to-zoom/
292
+
293
+ if(units == WPGMZA.UNITS_MILES)
294
+ radius *= WPGMZA.KM_PER_MILE;
295
+
296
+ return Math.round(14-Math.log(radius)/Math.LN2);
297
+ }
298
+
299
+ function wpgmza_show_store_locator_radius(map_id, center, radius, distance_type)
300
+ {
301
+ switch(wpgmaps_localize[map_id].other_settings.wpgmza_store_locator_radius_style)
302
+ {
303
+ case "modern":
304
+ if(MYMAP.modernStoreLocatorCircle)
305
+ MYMAP.modernStoreLocatorCircle.destroy();
306
+
307
+ MYMAP.modernStoreLocatorCircle = WPGMZA.ModernStoreLocatorCircle.createInstance(map_id);
308
+
309
+ MYMAP.modernStoreLocatorCircle.setOptions({
310
+ visible: true,
311
+ center: center,
312
+ radius: radius * (distance_type == 1 ? WPGMZA.KM_PER_MILE : 1),
313
+ radiusString: radius
314
+ });
315
+
316
+ break;
317
+
318
+ default:
319
+ var options = {
320
+ strokeColor: '#FF0000',
321
+ strokeOpacity: 0.25,
322
+ strokeWeight: 2,
323
+ fillColor: '#FF0000',
324
+ fillOpacity: 0.15,
325
+ map: MYMAP.map,
326
+ center: center
327
+ };
328
+
329
+ if (distance_type === "1")
330
+ options.radius = parseInt(radius / 0.000621371);
331
+ else
332
+ options.radius = parseInt(radius / 0.001);
333
+
334
+ var circle = new google.maps.Circle(options);
335
+ break;
336
+ }
337
+ }
338
+
339
  MYMAP.placeMarkers = function(filename,map_id,radius,searched_center,distance_type) {
340
  var check1 = 0,
341
  slNotFoundMessage = jQuery('.js-not-found-msg');
366
  map: MYMAP.map,
367
  animation: google.maps.Animation.BOUNCE
368
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
  }
370
+
371
+ wpgmza_show_store_locator_radius(map_id, point, radius, distance_type);
372
+
373
  check1 = check1 + 1;
374
  }
375
  var R = 0;
482
  animation: google.maps.Animation.BOUNCE
483
  });
484
  } else { /* dont show icon */ }
485
+
486
+ wpgmza_show_store_locator_radius(map_id, point, radius, distance_type);
487
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
488
  check1 = check1 + 1;
489
  }
490
  var R = 0;
675
  // Get the place details from the autocomplete object.
676
  var place = autocomplete.getPlace();
677
  }
678
+
679
+ wpgmza_create_places_autocomplete();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
680
 
681
 
682
  function searchLocations(map_id) {
706
  }
707
  function searchLocationsNear(mapid,center_searched) {
708
  clearLocations();
709
+ var distance_type = wpgmaps_localize[mapid].other_settings.store_locator_distance;
710
+
711
  var radius = document.getElementById('radiusSelect').value;
712
+ var zoomie = wpgmza_get_zoom_from_radius(radius);
713
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
714
  MYMAP.init("#wpgmza_map", center_searched, zoomie, 3);
715
  MYMAP.placeMarkers(wpgmaps_markerurl+'?u='+UniqueCode,wpgmaps_localize[wpgmaps_mapid].id,radius,center_searched,distance_type);
716
  }
718
  function toRad(Value) {
719
  /** Converts numeric degrees to radians */
720
  return Value * Math.PI / 180;
721
+ }
722
+
723
+ (function($) {
724
+
725
+ if(!window.WPGMZA)
726
+ window.WPGMZA = {};
727
+
728
+ WPGMZA.hexToRgba = function(hex) {
729
+ var c;
730
+ if(/^#([A-Fa-f0-9]{3}){1,2}$/.test(hex)){
731
+ c= hex.substring(1).split('');
732
+ if(c.length== 3){
733
+ c= [c[0], c[0], c[1], c[1], c[2], c[2]];
734
+ }
735
+ c= '0x'+c.join('');
736
+
737
+ return {
738
+ r: (c>>16)&255,
739
+ g: (c>>8)&255,
740
+ b: c&255,
741
+ a: 1
742
+ };
743
+ }
744
+ throw new Error('Bad Hex');
745
+ }
746
+
747
+ WPGMZA.rgbaToString = function(rgba) {
748
+ return "rgba(" + rgba.r + ", " + rgba.g + ", " + rgba.b + ", " + rgba.a + ")";
749
+ }
750
+
751
+ WPGMZA.ModernStoreLocator = function(map_id) {
752
+ var self = this;
753
+
754
+ var original = $(".wpgmza_sl_search_button").closest(".wpgmza_sl_main_div");
755
+
756
+ if(!original.length)
757
+ return;
758
+
759
+ // Build / re-arrange elements
760
+ this.element = $("<div class='wpgmza-modern-store-locator'><div class='wpgmza-inner'><!--<i class='fas fa-bars'></i>--></div></div>")[0];
761
+
762
+ var inner = $(this.element).find(".wpgmza-inner");
763
+
764
+ MYMAP.map.controls[google.maps.ControlPosition.TOP_CENTER].push(this.element);
765
+
766
+ inner.append($(original).find( "#addressInput" ));
767
+ inner.append($(original).find( "select.wpgmza_sl_radius_select" ));
768
+
769
+ // Buttons
770
+ this.searchButton = $(original).find( ".wpgmza_sl_search_button" );
771
+ inner.append(this.searchButton);
772
+
773
+ this.resetButton = $(original).find( ".wpgmza_sl_reset_button_div>input" );
774
+ inner.append(this.resetButton);
775
+
776
+ // Distance type
777
+ inner.append($("#wpgmza_distance_type_" + map_id));
778
+
779
+ // Remove original element
780
+ $(original).remove();
781
+
782
+ // Event listeners
783
+ $(this.element).find("input, select").on("focus", function() {
784
+ $(inner).addClass("active");
785
+ });
786
+
787
+ $(this.element).find("input, select").on("blur", function() {
788
+ $(inner).removeClass("active");
789
+ });
790
+ }
791
+
792
+ WPGMZA.GoogleAPIErrorHandler = function() {
793
+ var _error = console.error;
794
+
795
+ console.error = function(message)
796
+ {
797
+ var m = message.match(/^Google Maps API error: (\w+) (.+)/);
798
+
799
+ if(m)
800
+ {
801
+ var friendlyMessage = m[1].replace(/([A-Z])/g, " $1") + " - See " + m[2] + " for more information";
802
+ alert(friendlyMessage);
803
+ }
804
+
805
+ _error.apply(this, arguments);
806
+ }
807
+ }
808
+
809
+ WPGMZA.googleAPIErrorHandler = new WPGMZA.GoogleAPIErrorHandler();
810
+
811
+ /**
812
+ * This module is the modern store locator circle
813
+ * @constructor
814
+ */
815
+ WPGMZA.ModernStoreLocatorCircle = function(map_id, settings) {
816
+ var self = this;
817
+
818
+ this.map = MYMAP.map;
819
+
820
+ this.canvasLayer = new CanvasLayer({
821
+ map: this.map,
822
+ resizeHandler: function(event) {
823
+ self.onResize(event);
824
+ },
825
+ updateHandler: function(event) {
826
+ self.onUpdate(event);
827
+ },
828
+ animate: true,
829
+ resolutionScale: this.getResolutionScale()
830
+ });
831
+
832
+ this.settings = {
833
+ center: new google.maps.LatLng(0, 0),
834
+ radius: 1,
835
+ color: "#63AFF2",
836
+
837
+ shadowColor: "white",
838
+ shadowBlur: 2,
839
+
840
+ centerRingRadius: 10,
841
+ centerRingLineWidth: 3,
842
+
843
+ numInnerRings: 9,
844
+ innerRingLineWidth: 1,
845
+ innerRingFade: true,
846
+
847
+ numOuterRings: 7,
848
+
849
+ ringLineWidth: 1,
850
+
851
+ mainRingLineWidth: 2,
852
+
853
+ numSpokes: 6,
854
+ spokesStartAngle: Math.PI / 2,
855
+
856
+ numRadiusLabels: 6,
857
+ radiusLabelsStartAngle: Math.PI / 2,
858
+ radiusLabelFont: "13px sans-serif",
859
+
860
+ visible: false
861
+ };
862
+
863
+ if(settings)
864
+ this.setOptions(settings);
865
+ }
866
+
867
+ WPGMZA.ModernStoreLocatorCircle.createInstance = function(map_id, settings) {
868
+ return new WPGMZA.ModernStoreLocatorCircle(map_id, settings);
869
+ }
870
+
871
+ WPGMZA.ModernStoreLocatorCircle.prototype.destroy = function() {
872
+ if(this.canvasLayer) {
873
+ this.canvasLayer.setOptions({
874
+ animate: false,
875
+ updateHandler: null,
876
+ resizeHandler: null,
877
+ map: null
878
+ });
879
+ }
880
+ }
881
+
882
+ WPGMZA.ModernStoreLocatorCircle.prototype.onResize = function(event) {
883
+ this.draw();
884
+ }
885
+
886
+ WPGMZA.ModernStoreLocatorCircle.prototype.onUpdate = function(event) {
887
+ this.draw();
888
+ }
889
+
890
+ WPGMZA.ModernStoreLocatorCircle.prototype.setOptions = function(options) {
891
+ for(var name in options)
892
+ {
893
+ var functionName = "set" + name.substr(0, 1).toUpperCase() + name.substr(1);
894
+
895
+ if(typeof this[functionName] == "function")
896
+ this[functionName](options[name]);
897
+ else
898
+ this.settings[name] = options[name];
899
+ }
900
+ this.canvasLayer.scheduleUpdate();
901
+ }
902
+
903
+ WPGMZA.ModernStoreLocatorCircle.prototype.getResolutionScale = function() {
904
+ return window.devicePixelRatio || 1;
905
+ }
906
+
907
+ WPGMZA.ModernStoreLocatorCircle.prototype.getCenter = function() {
908
+ return this.getPosition();
909
+ }
910
+
911
+ WPGMZA.ModernStoreLocatorCircle.prototype.setCenter = function(value) {
912
+ this.setPosition(value);
913
+ }
914
+
915
+ WPGMZA.ModernStoreLocatorCircle.prototype.getPosition = function() {
916
+ return this.settings.center;
917
+ }
918
+
919
+ WPGMZA.ModernStoreLocatorCircle.prototype.setPosition = function(position) {
920
+ this.settings.center = position;
921
+ this.canvasLayer.scheduleUpdate();
922
+ }
923
+
924
+ WPGMZA.ModernStoreLocatorCircle.prototype.getRadius = function() {
925
+ return this.settings.radius;
926
+ }
927
+
928
+ WPGMZA.ModernStoreLocatorCircle.prototype.setRadius = function(radius) {
929
+ this.settings.radius = radius;
930
+ this.canvasLayer.scheduleUpdate();
931
+ }
932
+
933
+ WPGMZA.ModernStoreLocatorCircle.prototype.getVisible = function(visible) {
934
+ return this.settings.visible;
935
+ }
936
+
937
+ WPGMZA.ModernStoreLocatorCircle.prototype.setVisible = function(visible) {
938
+ this.settings.visible = visible;
939
+ this.canvasLayer.scheduleUpdate();
940
+ }
941
+
942
+ /**
943
+ * This function transforms a km radius into canvas space
944
+ * @return number
945
+ */
946
+ WPGMZA.ModernStoreLocatorCircle.prototype.getTransformedRadius = function(km) {
947
+ var multiplierAtEquator = 0.006395;
948
+ var spherical = google.maps.geometry.spherical;
949
+
950
+ var center = this.settings.center;
951
+ var equator = new google.maps.LatLng({
952
+ lat: 0.0,
953
+ lng: 0.0
954
+ });
955
+ var latitude = new google.maps.LatLng({
956
+ lat: center.lat(),
957
+ lng: 0.0
958
+ });
959
+
960
+ var offsetAtEquator = spherical.computeOffset(equator, km * 1000, 90);
961
+ var offsetAtLatitude = spherical.computeOffset(latitude, km * 1000, 90);
962
+
963
+ var factor = offsetAtLatitude.lng() / offsetAtEquator.lng();
964
+
965
+ return km * multiplierAtEquator * factor;
966
+ }
967
+
968
+ WPGMZA.ModernStoreLocatorCircle.prototype.draw = function() {
969
+ // clear previous canvas contents
970
+ var canvasLayer = this.canvasLayer;
971
+ var settings = this.settings;
972
+
973
+ var canvasWidth = canvasLayer.canvas.width;
974
+ var canvasHeight = canvasLayer.canvas.height;
975
+
976
+ var map = MYMAP.map;
977
+ var resolutionScale = this.getResolutionScale();
978
+
979
+ context = canvasLayer.canvas.getContext('2d');
980
+
981
+ context.clearRect(0, 0, canvasWidth, canvasHeight);
982
+
983
+ if(!settings.visible)
984
+ return;
985
+
986
+ context.shadowColor = settings.shadowColor;
987
+ context.shadowBlur = settings.shadowBlur;
988
+
989
+ // NB: 2018/02/13 - Left this here in case it needs to be calibrated more accurately
990
+ /*if(!this.testCircle)
991
+ {
992
+ this.testCircle = new google.maps.Circle({
993
+ strokeColor: "#ff0000",
994
+ strokeOpacity: 0.5,
995
+ strokeWeight: 3,
996
+ map: this.map,
997
+ center: this.settings.center
998
+ });
999
+ }
1000
+
1001
+ this.testCircle.setCenter(settings.center);
1002
+ this.testCircle.setRadius(settings.radius * 1000);*/
1003
+
1004
+ /* We need to scale and translate the map for current view.
1005
+ * see https://developers.google.com/maps/documentation/javascript/maptypes#MapCoordinates
1006
+ */
1007
+ var mapProjection = map.getProjection();
1008
+
1009
+ /**
1010
+ * Clear transformation from last update by setting to identity matrix.
1011
+ * Could use context.resetTransform(), but most browsers don't support
1012
+ * it yet.
1013
+ */
1014
+ context.setTransform(1, 0, 0, 1, 0, 0);
1015
+
1016
+ // scale is just 2^zoom
1017
+ // If canvasLayer is scaled (with resolutionScale), we need to scale by
1018
+ // the same amount to account for the larger canvas.
1019
+ var scale = Math.pow(2, map.zoom) * resolutionScale;
1020
+ context.scale(scale, scale);
1021
+
1022
+ /* If the map was not translated, the topLeft corner would be 0,0 in
1023
+ * world coordinates. Our translation is just the vector from the
1024
+ * world coordinate of the topLeft corder to 0,0.
1025
+ */
1026
+ var offset = mapProjection.fromLatLngToPoint(canvasLayer.getTopLeft());
1027
+ context.translate(-offset.x, -offset.y);
1028
+
1029
+ // project rectLatLng to world coordinates and draw
1030
+ var worldPoint = mapProjection.fromLatLngToPoint(this.settings.center);
1031
+ var rgba = WPGMZA.hexToRgba(settings.color);
1032
+ var ringSpacing = this.getTransformedRadius(settings.radius) / (settings.numInnerRings + 1);
1033
+
1034
+ // TODO: Implement gradients for color and opacity
1035
+
1036
+ // Inside circle (fixed?)
1037
+ context.strokeStyle = settings.color;
1038
+ context.lineWidth = (1 / scale) * settings.centerRingLineWidth;
1039
+
1040
+ context.beginPath();
1041
+ context.arc(
1042
+ worldPoint.x,
1043
+ worldPoint.y,
1044
+ this.getTransformedRadius(settings.centerRingRadius) / scale, 0, 2 * Math.PI
1045
+ );
1046
+ context.stroke();
1047
+ context.closePath();
1048
+
1049
+ // Spokes
1050
+ var radius = this.getTransformedRadius(settings.radius) + (ringSpacing * settings.numOuterRings) + 1;
1051
+ var grad = context.createRadialGradient(0, 0, 0, 0, 0, radius);
1052
+ var rgba = WPGMZA.hexToRgba(settings.color);
1053
+ var start = WPGMZA.rgbaToString(rgba), end;
1054
+ var spokeAngle;
1055
+
1056
+ rgba.a = 0;
1057
+ end = WPGMZA.rgbaToString(rgba);
1058
+
1059
+ grad.addColorStop(0, start);
1060
+ grad.addColorStop(1, end);
1061
+
1062
+ context.save();
1063
+
1064
+ context.translate(worldPoint.x, worldPoint.y);
1065
+ context.strokeStyle = grad;
1066
+ context.lineWidth = 2 / scale;
1067
+
1068
+ for(var i = 0; i < settings.numSpokes; i++)
1069
+ {
1070
+ spokeAngle = settings.spokesStartAngle + (Math.PI * 2) * (i / settings.numSpokes);
1071
+
1072
+ x = Math.cos(spokeAngle) * radius;
1073
+ y = Math.sin(spokeAngle) * radius;
1074
+
1075
+ context.setLineDash([2 / scale, 15 / scale]);
1076
+
1077
+ context.beginPath();
1078
+ context.moveTo(0, 0);
1079
+ context.lineTo(x, y);
1080
+ context.stroke();
1081
+ }
1082
+
1083
+ context.setLineDash([]);
1084
+
1085
+ context.restore();
1086
+
1087
+ // Inner ringlets
1088
+ context.lineWidth = (1 / scale) * settings.innerRingLineWidth;
1089
+
1090
+ for(var i = 1; i <= settings.numInnerRings; i++)
1091
+ {
1092
+ var radius = i * ringSpacing;
1093
+
1094
+ if(settings.innerRingFade)
1095
+ rgba.a = 1 - (i - 1) / settings.numInnerRings;
1096
+
1097
+ context.strokeStyle = WPGMZA.rgbaToString(rgba);
1098
+
1099
+ context.beginPath();
1100
+ context.arc(worldPoint.x, worldPoint.y, radius, 0, 2 * Math.PI);
1101
+ context.stroke();
1102
+ context.closePath();
1103
+ }
1104
+
1105
+ // Main circle
1106
+ context.strokeStyle = settings.color;
1107
+ context.lineWidth = (1 / scale) * settings.centerRingLineWidth;
1108
+
1109
+ context.beginPath();
1110
+ context.arc(worldPoint.x, worldPoint.y, this.getTransformedRadius(settings.radius), 0, 2 * Math.PI);
1111
+ context.stroke();
1112
+ context.closePath();
1113
+
1114
+ // Outer ringlets
1115
+ var radius = radius + ringSpacing;
1116
+ for(var i = 0; i < settings.numOuterRings; i++)
1117
+ {
1118
+ if(settings.innerRingFade)
1119
+ rgba.a = 1 - i / settings.numOuterRings;
1120
+
1121
+ context.strokeStyle = WPGMZA.rgbaToString(rgba);
1122
+
1123
+ context.beginPath();
1124
+ context.arc(worldPoint.x, worldPoint.y, radius, 0, 2 * Math.PI);
1125
+ context.stroke();
1126
+ context.closePath();
1127
+
1128
+ radius += ringSpacing;
1129
+ }
1130
+
1131
+ // Text
1132
+ if(settings.numRadiusLabels > 0)
1133
+ {
1134
+ var m;
1135
+ var radius = this.getTransformedRadius(settings.radius);
1136
+ var clipRadius = (12 * 1.1) / scale;
1137
+ var x, y;
1138
+
1139
+ if(m = settings.radiusLabelFont.match(/(\d+)px/))
1140
+ clipRadius = (parseInt(m[1]) / 2 * 1.1) / scale;
1141
+
1142
+ context.font = settings.radiusLabelFont;
1143
+ context.textAlign = "center";
1144
+ context.textBaseline = "middle";
1145
+ context.fillStyle = settings.color;
1146
+
1147
+ context.save();
1148
+
1149
+ context.translate(worldPoint.x, worldPoint.y)
1150
+
1151
+ for(var i = 0; i < settings.numRadiusLabels; i++)
1152
+ {
1153
+ var spokeAngle = settings.radiusLabelsStartAngle + (Math.PI * 2) * (i / settings.numRadiusLabels);
1154
+ var textAngle = spokeAngle + Math.PI / 2;
1155
+ var text = settings.radiusString;
1156
+ var width;
1157
+
1158
+ if(Math.sin(spokeAngle) > 0)
1159
+ textAngle -= Math.PI;
1160
+
1161
+ x = Math.cos(spokeAngle) * radius;
1162
+ y = Math.sin(spokeAngle) * radius;
1163
+
1164
+ context.save();
1165
+
1166
+ context.translate(x, y);
1167
+
1168
+ context.rotate(textAngle);
1169
+ context.scale(1 / scale, 1 / scale);
1170
+
1171
+ width = context.measureText(text).width;
1172
+ height = width / 2;
1173
+ context.clearRect(-width, -height, 2 * width, 2 * height);
1174
+
1175
+ context.fillText(settings.radiusString, 0, 0);
1176
+
1177
+ context.restore();
1178
+ }
1179
+
1180
+ context.restore();
1181
+ }
1182
+ }
1183
+
1184
+ })(jQuery);
js/wpgmaps.min.js CHANGED
@@ -1 +1 @@
1
- function InitMap(){var a=new google.maps.LatLng(wpgmaps_localize[0].map_start_lat,wpgmaps_localize[0].map_start_lng);"undefined"!=typeof wpgmza_override_zoom?MYMAP.init("#wpgmza_map",a,parseInt(wpgmza_override_zoom)):MYMAP.init("#wpgmza_map",a,parseInt(wpgmaps_localize[0].map_start_zoom)),UniqueCode=Math.round(1e4*Math.random()),MYMAP.placeMarkers(wpgmaps_markerurl+"?u="+UniqueCode,wpgmaps_localize[0].id,null,null,null)}function add_polygon(a){var b=wpgmaps_localize_polygon_settings[a],d=b.polydata,e=new Array;for(tmp_entry2 in d)"undefined"!=typeof d[tmp_entry2][0]&&e.push(new google.maps.LatLng(d[tmp_entry2][0],d[tmp_entry2][1]));null!==b.lineopacity&&""!==b.lineopacity||(b.lineopacity=1);var f=new google.maps.LatLngBounds;for(i=0;i<e.length;i++)f.extend(e[i]);WPGM_Path_Polygon[a]=new google.maps.Polygon({path:e,clickable:!0,strokeColor:"#"+b.linecolor,fillOpacity:b.opacity,strokeOpacity:b.lineopacity,fillColor:"#"+b.fillcolor,strokeWeight:2,map:MYMAP.map}),WPGM_Path_Polygon[a].setMap(MYMAP.map),polygon_center=f.getCenter(),""!==b.title&&(infoWindow_poly[a]=new google.maps.InfoWindow,google.maps.event.addListener(WPGM_Path_Polygon[a],"click",function(c){if(infoWindow_poly[a].setPosition(c.latLng),d="",""!==b.link)var d="<a href='"+b.link+"'>"+b.title+"</a>";else var d=b.title;infoWindow_poly[a].setContent(d),infoWindow_poly[a].open(MYMAP.map,this.position)}))}function add_polyline(a){var b=wpgmaps_localize_polyline_settings[a],d=b.polydata,e=new Array;for(tmp_entry2 in d)if("undefined"!=typeof d[tmp_entry2][0]&&"undefined"!=typeof d[tmp_entry2][1]){var f=d[tmp_entry2][0].replace(")","");f=f.replace("(","");var g=d[tmp_entry2][1].replace(")","");g=g.replace("(",""),e.push(new google.maps.LatLng(f,g))}null!==b.lineopacity&&""!==b.lineopacity||(b.lineopacity=1),WPGM_Path[a]=new google.maps.Polyline({path:e,strokeColor:"#"+b.linecolor,strokeOpacity:b.opacity,strokeWeight:b.linethickness,map:MYMAP.map}),WPGM_Path[a].setMap(MYMAP.map)}function fillInAddress(){autocomplete.getPlace()}function searchLocations(a){var b=document.getElementById("addressInput").value,c=new google.maps.Geocoder;"undefined"==typeof wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict||""===wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict?c.geocode({address:b},function(c,d){d===google.maps.GeocoderStatus.OK?searchLocationsNear(a,c[0].geometry.location):alert(b+" not found")}):c.geocode({address:b,componentRestrictions:{country:wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict}},function(c,d){d===google.maps.GeocoderStatus.OK?searchLocationsNear(a,c[0].geometry.location):alert(b+" not found")})}function clearLocations(){infoWindow.close()}function searchLocationsNear(a,b){clearLocations();var c=document.getElementById("wpgmza_distance_type").value,d=document.getElementById("radiusSelect").value;"1"===c?"1"===d?zoomie=14:"5"===d?zoomie=12:"10"===d?zoomie=11:"25"===d?zoomie=9:"50"===d?zoomie=8:"75"===d?zoomie=8:"100"===d?zoomie=7:"150"===d?zoomie=7:"200"===d?zoomie=6:"300"===d?zoomie=6:zoomie=14:"1"===d?zoomie=14:"5"===d?zoomie=12:"10"===d?zoomie=11:"25"===d?zoomie=10:"50"===d?zoomie=9:"75"===d?zoomie=8:"100"===d?zoomie=8:"150"===d?zoomie=7:"200"===d?zoomie=7:"300"===d?zoomie=6:zoomie=14,MYMAP.init("#wpgmza_map",b,zoomie,3),MYMAP.placeMarkers(wpgmaps_markerurl+"?u="+UniqueCode,wpgmaps_localize[0].id,d,b,c)}function toRad(a){return a*Math.PI/180}var WPGM_Path_Polygon=new Array,WPGM_Path=new Array,infoWindow_poly=Array();for(var entry in wpgmaps_localize)"undefined"==typeof window.jQuery&&setTimeout(function(){document.getElementById("wpgmza_map").innerHTML='Error: In order for WP Google Maps to work, jQuery must be installed. A check was done and jQuery was not present. Please see the <a href="http://www.wpgmaps.com/documentation/troubleshooting/jquery-troubleshooting/" title="WP Google Maps - jQuery Troubleshooting">jQuery troubleshooting section of our site</a> for more information.'},5e3);jQuery(function(){jQuery(document).ready(function(){/1\.(0|1|2|3|4|5|6|7)\.(0|1|2|3|4|5|6|7|8|9)/.test(jQuery.fn.jquery)?setTimeout(function(){document.getElementById("wpgmza_map").innerHTML="Error: Your version of jQuery is outdated. WP Google Maps requires jQuery version 1.7+ to function correctly. Go to Maps->Settings and check the box that allows you to over-ride your current jQuery to try eliminate this problem."},6e3):(jQuery("#wpgmza_map").css({height:wpgmaps_localize[0].map_height+""+wpgmaps_localize[0].map_height_type,width:wpgmaps_localize[0].map_width+""+wpgmaps_localize[0].map_width_type}),InitMap(),jQuery("body").on("tabsactivate",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("tabsshow",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("accordionactivate",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".wpb_tabs_nav li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".ui-tabs-nav li",function(a,b){InitMap()}),jQuery("body").on("click",".tp-tabs li a",function(a,b){InitMap()}),jQuery("body").on("click",".nav-tabs li a",function(a,b){InitMap()}),jQuery("body").on("click",".vc_tta-panel-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".ult_exp_section",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".x-accordion-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".x-nav-tabs li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tab-title",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tab-link",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".et_pb_tabs_controls li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".fusion-tab-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".et_pb_tab",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tri-tabs-nav span",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".gdl-tabs li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click","#tabnav li",function(){setTimeout(function(){InitMap()},500)}))})});var MYMAP={map:null,bounds:null};""===wpgmaps_localize_global_settings.wpgmza_settings_map_draggable||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_draggable?wpgmza_settings_map_draggable=!0:wpgmza_settings_map_draggable=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_clickzoom||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_clickzoom?wpgmza_settings_map_clickzoom=!1:wpgmza_settings_map_clickzoom=!0,""===wpgmaps_localize_global_settings.wpgmza_settings_map_scroll||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_scroll?wpgmza_settings_map_scroll=!0:wpgmza_settings_map_scroll=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_zoom||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_zoom?wpgmza_settings_map_zoom=!0:wpgmza_settings_map_zoom=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_pan||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_pan?wpgmza_settings_map_pan=!0:wpgmza_settings_map_pan=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_type||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_type?wpgmza_settings_map_type=!0:wpgmza_settings_map_type=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_streetview||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_streetview?wpgmza_settings_map_streetview=!0:wpgmza_settings_map_streetview=!1,"undefined"==typeof wpgmaps_localize[0].other_settings.map_max_zoom||""===wpgmaps_localize[0].other_settings.map_max_zoom?wpgmza_max_zoom=0:wpgmza_max_zoom=parseInt(wpgmaps_localize[0].other_settings.map_max_zoom),"undefined"==typeof wpgmaps_localize[0].other_settings.map_min_zoom||""===wpgmaps_localize[0].other_settings.map_min_zoom?wpgmza_min_zoom=21:wpgmza_min_zoom=parseInt(wpgmaps_localize[0].other_settings.map_min_zoom),MYMAP.init=function(a,b,c){"undefined"!=typeof wpgmaps_localize[0].type?"1"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.ROADMAP:"2"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.SATELLITE:"3"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.HYBRID:"4"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.TERRAIN:maptype=google.maps.MapTypeId.ROADMAP:maptype=google.maps.MapTypeId.ROADMAP;var d={zoom:c,minZoom:wpgmza_max_zoom,maxZoom:wpgmza_min_zoom,center:b,zoomControl:wpgmza_settings_map_zoom,panControl:wpgmza_settings_map_pan,mapTypeControl:wpgmza_settings_map_type,streetViewControl:wpgmza_settings_map_streetview,draggable:wpgmza_settings_map_draggable,disableDoubleClickZoom:wpgmza_settings_map_clickzoom,scrollwheel:wpgmza_settings_map_scroll,mapTypeId:maptype};if(this.map=new google.maps.Map(jQuery(a)[0],d),this.bounds=new google.maps.LatLngBounds,"undefined"!=typeof wpgmaps_localize[0].other_settings.wpgmza_theme_data&&wpgmaps_localize[0].other_settings.wpgmza_theme_data!==!1&&""!==wpgmaps_localize[0].other_settings.wpgmza_theme_data&&(wpgmza_theme_data=jQuery.parseJSON(wpgmaps_localize[0].other_settings.wpgmza_theme_data),this.map.setOptions({styles:jQuery.parseJSON(wpgmaps_localize[0].other_settings.wpgmza_theme_data)})),null!==wpgmaps_localize_polygon_settings&&"undefined"!=typeof wpgmaps_localize_polygon_settings)for(var e in wpgmaps_localize_polygon_settings)add_polygon(e);if(null!==wpgmaps_localize_polyline_settings&&"undefined"!=typeof wpgmaps_localize_polyline_settings)for(var e in wpgmaps_localize_polyline_settings)add_polyline(e);if("1"===wpgmaps_localize[0].bicycle){var f=new google.maps.BicyclingLayer;f.setMap(MYMAP.map)}if("1"===wpgmaps_localize[0].traffic){var g=new google.maps.TrafficLayer;g.setMap(MYMAP.map)}if("undefined"!=typeof wpgmaps_localize[0].other_settings.transport_layer&&1===wpgmaps_localize[0].other_settings.transport_layer){var h=new google.maps.TransitLayer;h.setMap(MYMAP.map)}google.maps.event.addListener(MYMAP.map,"click",function(){infoWindow.close()})};var infoWindow=new google.maps.InfoWindow;"undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width&&""!==wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width&&infoWindow.setOptions({maxWidth:wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width}),google.maps.event.addDomListener(window,"resize",function(){var a=new google.maps.LatLng(wpgmaps_localize[0].map_start_lat,wpgmaps_localize[0].map_start_lng);MYMAP.map.setCenter(a)}),MYMAP.placeMarkers=function(a,b,c,d,e){var f=0,g=jQuery(".js-not-found-msg");if("1"===wpgmaps_localize_global_settings.wpgmza_settings_marker_pull)jQuery.get(a,function(a){jQuery(a).find("marker").each(function(){var a=jQuery(this).find("map_id").text();if(a==b){var g=jQuery(this).find("address").text(),h=jQuery(this).find("lat").text(),i=jQuery(this).find("lng").text(),j=jQuery(this).find("anim").text(),k=jQuery(this).find("infoopen").text(),l=jQuery(this).find("lat").text(),m=jQuery(this).find("lng").text(),n=!0;if(null!==c){if(f>0);else{var o=new google.maps.LatLng(parseFloat(d.lat()),parseFloat(d.lng()));if(MYMAP.bounds.extend(o),"undefined"==typeof wpgmaps_localize[0].other_settings.store_locator_bounce||1===wpgmaps_localize[0].other_settings.store_locator_bounce)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});if("1"===e)var q={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/621371e-9)};else var q={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/.001)};cityCircle=new google.maps.Circle(q),f+=1}var r=0;r="1"===e?3958.7558657440545:6378.16;var s=toRad(d.lat()-l),t=toRad(d.lng()-m),u=Math.sin(s/2)*Math.sin(s/2)+Math.cos(toRad(l))*Math.cos(toRad(d.lat()))*Math.sin(t/2)*Math.sin(t/2),v=2*Math.atan2(Math.sqrt(u),Math.sqrt(1-u)),w=r*v;n=w<c}var o=new google.maps.LatLng(parseFloat(h),parseFloat(i));if(MYMAP.bounds.extend(o),n===!0){if("1"===j)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});else if("2"===j)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.DROP});else var p=new google.maps.Marker({position:o,map:MYMAP.map});var x="";x=null!==c?"1"===e?"<p style='min-width:100px; display:block;'>"+Math.round(w,2)+" "+wpgmaps_lang_m_away+"</p>":"<p style='min-width:100px; display:block;'>"+Math.round(w,2)+" "+wpgmaps_lang_km_away+"</p>":"";var y="<span style='min-width:100px; display:block;'>"+g+"</span>"+x;"1"===k&&(infoWindow.setContent(y),infoWindow.open(MYMAP.map,p)),temp_actiontype="click","undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&"2"==wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&(temp_actiontype="mouseover"),google.maps.event.addListener(p,temp_actiontype,function(){infoWindow.close(),infoWindow.setContent(y),infoWindow.open(MYMAP.map,p)})}}})});else if(wpgmaps_localize_marker_data.length>0){var h=0;jQuery.each(wpgmaps_localize_marker_data,function(a,g){var i=g.map_id;if(i==b){var j=g.address,k=g.anim,l=g.infoopen,m=g.lat,n=g.lng,o=new google.maps.LatLng(parseFloat(m),parseFloat(n)),p=g.lat,q=g.lng,r=!0;if(null!==c){if(f>0);else{var o=new google.maps.LatLng(parseFloat(d.lat()),parseFloat(d.lng()));if(MYMAP.bounds.extend(o),"undefined"==typeof wpgmaps_localize[0].other_settings.store_locator_bounce||1===wpgmaps_localize[0].other_settings.store_locator_bounce)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});if("1"===e)var t={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/621371e-9)};else var t={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/.001)};cityCircle=new google.maps.Circle(t),f+=1}var u=0;u="1"===e?3958.7558657440545:6378.16;var v=toRad(d.lat()-p),w=toRad(d.lng()-q),x=Math.sin(v/2)*Math.sin(v/2)+Math.cos(toRad(p))*Math.cos(toRad(d.lat()))*Math.sin(w/2)*Math.sin(w/2),y=2*Math.atan2(Math.sqrt(x),Math.sqrt(1-x)),z=u*y;z<c?(r=!0,h++):r=!1}var o=new google.maps.LatLng(parseFloat(m),parseFloat(n));if(MYMAP.bounds.extend(o),r===!0){if("1"===k)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});else if("2"===k)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.DROP});else var s=new google.maps.Marker({position:o,map:MYMAP.map});var A="";A=null!==c?"1"===e?"<p style='min-width:100px; display:block;'>"+Math.round(z,2)+" "+wpgmaps_lang_m_away+"</p>":"<p style='min-width:100px; display:block;'>"+Math.round(z,2)+" "+wpgmaps_lang_km_away+"</p>":"";var B="<span style='min-width:100px; display:block;'>"+j+"</span>"+A;"1"===l&&(infoWindow.setContent(B),infoWindow.open(MYMAP.map,s)),temp_actiontype="click","undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&"2"==wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&(temp_actiontype="mouseover"),google.maps.event.addListener(s,temp_actiontype,function(){infoWindow.close(),infoWindow.setContent(B),infoWindow.open(MYMAP.map,s)})}}}),""!==jQuery("#addressInput").val()&&h<1&&(g.addClass("is-active"),setTimeout(function(){g.removeClass("is-active")},5e3))}},jQuery("body").on("keypress","#addressInput",function(a){13==a.which&&jQuery(".wpgmza_sl_search_button").trigger("click")});var autocomplete,elementExists=document.getElementById("addressInput");"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete&&null!==elementExists&&("undefined"==typeof wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict||""===wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict?(autocomplete=new google.maps.places.Autocomplete(document.getElementById("addressInput"),{types:["geocode"]}),google.maps.event.addListener(autocomplete,"place_changed",function(){fillInAddress()})):(autocomplete=new google.maps.places.Autocomplete(document.getElementById("addressInput"),{types:["geocode"],componentRestrictions:{country:wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict}}),google.maps.event.addListener(autocomplete,"place_changed",function(){fillInAddress()})));
1
+ function InitMap(){var a=new google.maps.LatLng(wpgmaps_localize[0].map_start_lat,wpgmaps_localize[0].map_start_lng);"undefined"!=typeof wpgmza_override_zoom?MYMAP.init("#wpgmza_map",a,parseInt(wpgmza_override_zoom)):MYMAP.init("#wpgmza_map",a,parseInt(wpgmaps_localize[0].map_start_zoom)),UniqueCode=Math.round(1e4*Math.random()),MYMAP.placeMarkers(wpgmaps_markerurl+"?u="+UniqueCode,wpgmaps_localize[0].id,null,null,null)}function add_polygon(a){var b=wpgmaps_localize_polygon_settings[a],d=b.polydata,e=new Array;for(tmp_entry2 in d)"undefined"!=typeof d[tmp_entry2][0]&&e.push(new google.maps.LatLng(d[tmp_entry2][0],d[tmp_entry2][1]));null!==b.lineopacity&&""!==b.lineopacity||(b.lineopacity=1);var f=new google.maps.LatLngBounds;for(i=0;i<e.length;i++)f.extend(e[i]);WPGM_Path_Polygon[a]=new google.maps.Polygon({path:e,clickable:!0,strokeColor:"#"+b.linecolor,fillOpacity:b.opacity,strokeOpacity:b.lineopacity,fillColor:"#"+b.fillcolor,strokeWeight:2,map:MYMAP.map}),WPGM_Path_Polygon[a].setMap(MYMAP.map),polygon_center=f.getCenter(),""!==b.title&&(infoWindow_poly[a]=new google.maps.InfoWindow,google.maps.event.addListener(WPGM_Path_Polygon[a],"click",function(c){if(infoWindow_poly[a].setPosition(c.latLng),d="",""!==b.link)var d="<a href='"+b.link+"'>"+b.title+"</a>";else var d=b.title;infoWindow_poly[a].setContent(d),infoWindow_poly[a].open(MYMAP.map,this.position)}))}function add_polyline(a){var b=wpgmaps_localize_polyline_settings[a],d=b.polydata,e=new Array;for(tmp_entry2 in d)if("undefined"!=typeof d[tmp_entry2][0]&&"undefined"!=typeof d[tmp_entry2][1]){var f=d[tmp_entry2][0].replace(")","");f=f.replace("(","");var g=d[tmp_entry2][1].replace(")","");g=g.replace("(",""),e.push(new google.maps.LatLng(f,g))}null!==b.lineopacity&&""!==b.lineopacity||(b.lineopacity=1),WPGM_Path[a]=new google.maps.Polyline({path:e,strokeColor:"#"+b.linecolor,strokeOpacity:b.opacity,strokeWeight:b.linethickness,map:MYMAP.map}),WPGM_Path[a].setMap(MYMAP.map)}function fillInAddress(){autocomplete.getPlace()}function searchLocations(a){var b=document.getElementById("addressInput").value,c=new google.maps.Geocoder;"undefined"==typeof wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict||""===wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict?c.geocode({address:b},function(c,d){d===google.maps.GeocoderStatus.OK?searchLocationsNear(a,c[0].geometry.location):alert(b+" not found")}):c.geocode({address:b,componentRestrictions:{country:wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict}},function(c,d){d===google.maps.GeocoderStatus.OK?searchLocationsNear(a,c[0].geometry.location):alert(b+" not found")})}function clearLocations(){infoWindow.close()}function searchLocationsNear(a,b){clearLocations();var c=document.getElementById("wpgmza_distance_type").value,d=document.getElementById("radiusSelect").value;"1"===c?"1"===d?zoomie=14:"5"===d?zoomie=12:"10"===d?zoomie=11:"25"===d?zoomie=9:"50"===d?zoomie=8:"75"===d?zoomie=8:"100"===d?zoomie=7:"150"===d?zoomie=7:"200"===d?zoomie=6:"300"===d?zoomie=6:zoomie=14:"1"===d?zoomie=14:"5"===d?zoomie=12:"10"===d?zoomie=11:"25"===d?zoomie=10:"50"===d?zoomie=9:"75"===d?zoomie=8:"100"===d?zoomie=8:"150"===d?zoomie=7:"200"===d?zoomie=7:"300"===d?zoomie=6:zoomie=14,MYMAP.init("#wpgmza_map",b,zoomie,3),MYMAP.placeMarkers(wpgmaps_markerurl+"?u="+UniqueCode,wpgmaps_localize[0].id,d,b,c)}function toRad(a){return a*Math.PI/180}var WPGM_Path_Polygon=new Array,WPGM_Path=new Array,infoWindow_poly=Array();for(var entry in wpgmaps_localize)"undefined"==typeof window.jQuery&&setTimeout(function(){document.getElementById("wpgmza_map").innerHTML='Error: In order for WP Google Maps to work, jQuery must be installed. A check was done and jQuery was not present. Please see the <a href="http://www.wpgmaps.com/documentation/troubleshooting/jquery-troubleshooting/" title="WP Google Maps - jQuery Troubleshooting">jQuery troubleshooting section of our site</a> for more information.'},5e3);jQuery(function(){jQuery(document).ready(function(){/1\.(0|1|2|3|4|5|6|7)\.(0|1|2|3|4|5|6|7|8|9)/.test(jQuery.fn.jquery)?setTimeout(function(){document.getElementById("wpgmza_map").innerHTML="Error: Your version of jQuery is outdated. WP Google Maps requires jQuery version 1.7+ to function correctly. Go to Maps->Settings and check the box that allows you to over-ride your current jQuery to try eliminate this problem."},6e3):(jQuery("#wpgmza_map").css({height:wpgmaps_localize[0].map_height+""+wpgmaps_localize[0].map_height_type,width:wpgmaps_localize[0].map_width+""+wpgmaps_localize[0].map_width_type}),InitMap(),jQuery("body").on("tabsactivate",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("tabsshow",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("accordionactivate",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".wpb_tabs_nav li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".ui-tabs-nav li",function(a,b){InitMap()}),jQuery("body").on("click",".tp-tabs li a",function(a,b){InitMap()}),jQuery("body").on("click",".nav-tabs li a",function(a,b){InitMap()}),jQuery("body").on("click",".vc_tta-panel-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".ult_exp_section",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".x-accordion-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".x-nav-tabs li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tab-title",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tab-link",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".et_pb_tabs_controls li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".fusion-tab-heading",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".et_pb_tab",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".tri-tabs-nav span",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click",".gdl-tabs li",function(){setTimeout(function(){InitMap()},500)}),jQuery("body").on("click","#tabnav li",function(){setTimeout(function(){InitMap()},500)}))})});var MYMAP={map:null,bounds:null};""===wpgmaps_localize_global_settings.wpgmza_settings_map_draggable||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_draggable?wpgmza_settings_map_draggable=!0:wpgmza_settings_map_draggable=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_clickzoom||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_clickzoom?wpgmza_settings_map_clickzoom=!1:wpgmza_settings_map_clickzoom=!0,""===wpgmaps_localize_global_settings.wpgmza_settings_map_scroll||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_scroll?wpgmza_settings_map_scroll=!0:wpgmza_settings_map_scroll=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_zoom||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_zoom?wpgmza_settings_map_zoom=!0:wpgmza_settings_map_zoom=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_pan||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_pan?wpgmza_settings_map_pan=!0:wpgmza_settings_map_pan=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_type||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_type?wpgmza_settings_map_type=!0:wpgmza_settings_map_type=!1,""===wpgmaps_localize_global_settings.wpgmza_settings_map_streetview||"undefined"==typeof wpgmaps_localize_global_settings.wpgmza_settings_map_streetview?wpgmza_settings_map_streetview=!0:wpgmza_settings_map_streetview=!1,"undefined"==typeof wpgmaps_localize[0].other_settings.map_max_zoom||""===wpgmaps_localize[0].other_settings.map_max_zoom?wpgmza_max_zoom=0:wpgmza_max_zoom=parseInt(wpgmaps_localize[0].other_settings.map_max_zoom),"undefined"==typeof wpgmaps_localize[0].other_settings.map_min_zoom||""===wpgmaps_localize[0].other_settings.map_min_zoom?wpgmza_min_zoom=21:wpgmza_min_zoom=parseInt(wpgmaps_localize[0].other_settings.map_min_zoom),MYMAP.init=function(a,b,c){"undefined"!=typeof wpgmaps_localize[0].type?"1"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.ROADMAP:"2"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.SATELLITE:"3"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.HYBRID:"4"===wpgmaps_localize[0].type?maptype=google.maps.MapTypeId.TERRAIN:maptype=google.maps.MapTypeId.ROADMAP:maptype=google.maps.MapTypeId.ROADMAP;var d={zoom:c,minZoom:wpgmza_max_zoom,maxZoom:wpgmza_min_zoom,center:b,zoomControl:wpgmza_settings_map_zoom,panControl:wpgmza_settings_map_pan,mapTypeControl:wpgmza_settings_map_type,streetViewControl:wpgmza_settings_map_streetview,draggable:wpgmza_settings_map_draggable,disableDoubleClickZoom:wpgmza_settings_map_clickzoom,scrollwheel:wpgmza_settings_map_scroll,mapTypeId:maptype};if(this.map=new google.maps.Map(jQuery(a)[0],d),this.bounds=new google.maps.LatLngBounds,"undefined"!=typeof wpgmaps_localize[0].other_settings.wpgmza_theme_data&&wpgmaps_localize[0].other_settings.wpgmza_theme_data!==!1&&""!==wpgmaps_localize[0].other_settings.wpgmza_theme_data&&(wpgmza_theme_data=JSON.parse(wpgmaps_localize[0].other_settings.wpgmza_theme_data),this.map.setOptions({styles:JSON.parse(wpgmaps_localize[0].other_settings.wpgmza_theme_data)})),null!==wpgmaps_localize_polygon_settings&&"undefined"!=typeof wpgmaps_localize_polygon_settings)for(var e in wpgmaps_localize_polygon_settings)add_polygon(e);if(null!==wpgmaps_localize_polyline_settings&&"undefined"!=typeof wpgmaps_localize_polyline_settings)for(var e in wpgmaps_localize_polyline_settings)add_polyline(e);if("1"===wpgmaps_localize[0].bicycle){var f=new google.maps.BicyclingLayer;f.setMap(MYMAP.map)}if("1"===wpgmaps_localize[0].traffic){var g=new google.maps.TrafficLayer;g.setMap(MYMAP.map)}if("undefined"!=typeof wpgmaps_localize[0].other_settings.transport_layer&&1===wpgmaps_localize[0].other_settings.transport_layer){var h=new google.maps.TransitLayer;h.setMap(MYMAP.map)}google.maps.event.addListener(MYMAP.map,"click",function(){infoWindow.close()})};var infoWindow=new google.maps.InfoWindow;"undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width&&""!==wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width&&infoWindow.setOptions({maxWidth:wpgmaps_localize_global_settings.wpgmza_settings_infowindow_width}),google.maps.event.addDomListener(window,"resize",function(){var a=new google.maps.LatLng(wpgmaps_localize[0].map_start_lat,wpgmaps_localize[0].map_start_lng);MYMAP.map.setCenter(a)}),MYMAP.placeMarkers=function(a,b,c,d,e){var f=0,g=jQuery(".js-not-found-msg");if("1"===wpgmaps_localize_global_settings.wpgmza_settings_marker_pull)jQuery.get(a,function(a){jQuery(a).find("marker").each(function(){var a=jQuery(this).find("map_id").text();if(a==b){var g=jQuery(this).find("address").text(),h=jQuery(this).find("lat").text(),i=jQuery(this).find("lng").text(),j=jQuery(this).find("anim").text(),k=jQuery(this).find("infoopen").text(),l=jQuery(this).find("lat").text(),m=jQuery(this).find("lng").text(),n=!0;if(null!==c){if(f>0);else{var o=new google.maps.LatLng(parseFloat(d.lat()),parseFloat(d.lng()));if(MYMAP.bounds.extend(o),"undefined"==typeof wpgmaps_localize[0].other_settings.store_locator_bounce||1===wpgmaps_localize[0].other_settings.store_locator_bounce)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});if("1"===e)var q={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/621371e-9)};else var q={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/.001)};cityCircle=new google.maps.Circle(q),f+=1}var r=0;r="1"===e?3958.7558657440545:6378.16;var s=toRad(d.lat()-l),t=toRad(d.lng()-m),u=Math.sin(s/2)*Math.sin(s/2)+Math.cos(toRad(l))*Math.cos(toRad(d.lat()))*Math.sin(t/2)*Math.sin(t/2),v=2*Math.atan2(Math.sqrt(u),Math.sqrt(1-u)),w=r*v;n=w<c}var o=new google.maps.LatLng(parseFloat(h),parseFloat(i));if(MYMAP.bounds.extend(o),n===!0){if("1"===j)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});else if("2"===j)var p=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.DROP});else var p=new google.maps.Marker({position:o,map:MYMAP.map});var x="";x=null!==c?"1"===e?"<p style='min-width:100px; display:block;'>"+Math.round(w,2)+" "+wpgmaps_lang_m_away+"</p>":"<p style='min-width:100px; display:block;'>"+Math.round(w,2)+" "+wpgmaps_lang_km_away+"</p>":"";var y="<span style='min-width:100px; display:block;'>"+g+"</span>"+x;"1"===k&&(infoWindow.setContent(y),infoWindow.open(MYMAP.map,p)),temp_actiontype="click","undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&"2"==wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&(temp_actiontype="mouseover"),google.maps.event.addListener(p,temp_actiontype,function(){infoWindow.close(),infoWindow.setContent(y),infoWindow.open(MYMAP.map,p)})}}})});else if(wpgmaps_localize_marker_data.length>0){var h=0;jQuery.each(wpgmaps_localize_marker_data,function(a,g){var i=g.map_id;if(i==b){var j=g.address,k=g.anim,l=g.infoopen,m=g.lat,n=g.lng,o=new google.maps.LatLng(parseFloat(m),parseFloat(n)),p=g.lat,q=g.lng,r=!0;if(null!==c){if(f>0);else{var o=new google.maps.LatLng(parseFloat(d.lat()),parseFloat(d.lng()));if(MYMAP.bounds.extend(o),"undefined"==typeof wpgmaps_localize[0].other_settings.store_locator_bounce||1===wpgmaps_localize[0].other_settings.store_locator_bounce)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});if("1"===e)var t={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/621371e-9)};else var t={strokeColor:"#FF0000",strokeOpacity:.25,strokeWeight:2,fillColor:"#FF0000",fillOpacity:.15,map:MYMAP.map,center:o,radius:parseInt(c/.001)};cityCircle=new google.maps.Circle(t),f+=1}var u=0;u="1"===e?3958.7558657440545:6378.16;var v=toRad(d.lat()-p),w=toRad(d.lng()-q),x=Math.sin(v/2)*Math.sin(v/2)+Math.cos(toRad(p))*Math.cos(toRad(d.lat()))*Math.sin(w/2)*Math.sin(w/2),y=2*Math.atan2(Math.sqrt(x),Math.sqrt(1-x)),z=u*y;z<c?(r=!0,h++):r=!1}var o=new google.maps.LatLng(parseFloat(m),parseFloat(n));if(MYMAP.bounds.extend(o),r===!0){if("1"===k)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.BOUNCE});else if("2"===k)var s=new google.maps.Marker({position:o,map:MYMAP.map,animation:google.maps.Animation.DROP});else var s=new google.maps.Marker({position:o,map:MYMAP.map});var A="";A=null!==c?"1"===e?"<p style='min-width:100px; display:block;'>"+Math.round(z,2)+" "+wpgmaps_lang_m_away+"</p>":"<p style='min-width:100px; display:block;'>"+Math.round(z,2)+" "+wpgmaps_lang_km_away+"</p>":"";var B="<span style='min-width:100px; display:block;'>"+j+"</span>"+A;"1"===l&&(infoWindow.setContent(B),infoWindow.open(MYMAP.map,s)),temp_actiontype="click","undefined"!=typeof wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&"2"==wpgmaps_localize_global_settings.wpgmza_settings_map_open_marker_by&&(temp_actiontype="mouseover"),google.maps.event.addListener(s,temp_actiontype,function(){infoWindow.close(),infoWindow.setContent(B),infoWindow.open(MYMAP.map,s)})}}}),""!==jQuery("#addressInput").val()&&h<1&&(g.addClass("is-active"),setTimeout(function(){g.removeClass("is-active")},5e3))}},jQuery("body").on("keypress","#addressInput",function(a){13==a.which&&jQuery(".wpgmza_sl_search_button").trigger("click")});var autocomplete,elementExists=document.getElementById("addressInput");"object"==typeof google&&"object"==typeof google.maps&&"object"==typeof google.maps.places&&"function"==typeof google.maps.places.Autocomplete&&null!==elementExists&&("undefined"==typeof wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict||""===wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict?(autocomplete=new google.maps.places.Autocomplete(document.getElementById("addressInput"),{types:["geocode"]}),google.maps.event.addListener(autocomplete,"place_changed",function(){fillInAddress()})):(autocomplete=new google.maps.places.Autocomplete(document.getElementById("addressInput"),{types:["geocode"],componentRestrictions:{country:wpgmaps_localize[0].other_settings.wpgmza_store_locator_restrict}}),google.maps.event.addListener(autocomplete,"place_changed",function(){fillInAddress()})));
js/wpgmaps_osm.js CHANGED
@@ -114,8 +114,8 @@ MYMAP.init = function(selector, latLng, zoom) {
114
  /*
115
 
116
  if ("undefined" !== typeof wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] && wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] !== false && wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] !== "") {
117
- wpgmza_theme_data = jQuery.parseJSON(wpgmaps_localize[0]['other_settings']['wpgmza_theme_data']);
118
- this.map.setOptions({styles: jQuery.parseJSON(wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'])});
119
  }
120
 
121
  */
114
  /*
115
 
116
  if ("undefined" !== typeof wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] && wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] !== false && wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'] !== "") {
117
+ wpgmza_theme_data = JSON.parse(wpgmaps_localize[0]['other_settings']['wpgmza_theme_data']);
118
+ this.map.setOptions({styles: JSON.parse(wpgmaps_localize[0]['other_settings']['wpgmza_theme_data'])});
119
  }
120
 
121
  */
languages/wp-google-maps-da_DK.mo CHANGED
Binary file
languages/wp-google-maps-da_DK.po CHANGED
@@ -3,7 +3,7 @@ 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: 2016-07-18 13:48+0200\n"
7
  "Last-Translator: patrick <patrick_jepsen@hotmail.com>\n"
8
  "Language-Team: \n"
9
  "Language: da_DK\n"
@@ -11,30 +11,29 @@ 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 1.6.10\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-"
22
- "google-maps\n"
23
- "X-Poedit-SearchPath-2: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
24
- "google-maps-pro\n"
25
- "X-Poedit-SearchPath-3: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
26
- "google-maps-gold\n"
27
- "X-Poedit-SearchPath-4: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
28
- "google-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
- #, fuzzy
36
  msgid "settings"
37
- msgstr "Indstillinger"
38
 
39
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:244
40
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
@@ -45,13 +44,15 @@ msgid ""
45
  "Your Google Maps API key has been successfully saved. This API key can be "
46
  "changed in the %s page"
47
  msgstr ""
 
 
48
 
49
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
50
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
51
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4217
52
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4341
53
  msgid "Geocode was not successful for the following reason"
54
- msgstr ""
55
 
56
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1173
57
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1335
@@ -61,18 +62,17 @@ msgstr ""
61
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4867
62
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5825
63
  msgid "More details"
64
- msgstr ""
65
 
66
  # @ wp-google-maps
67
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1595
68
- #, fuzzy
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 ""
76
 
77
  # @ wp-google-maps
78
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1603
@@ -164,9 +164,8 @@ msgstr "Nej"
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
- #, fuzzy
168
  msgid "Save"
169
- msgstr "Gem Kort"
170
 
171
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
172
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
@@ -175,12 +174,14 @@ msgid ""
175
  "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
176
  "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
177
  msgstr ""
 
 
178
 
179
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
180
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:556
182
  msgid "An unknown error occurred"
183
- msgstr ""
184
 
185
  # @ wp-google-maps
186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1756
@@ -193,163 +194,163 @@ msgstr ""
193
  #: wpGoogleMaps.php:3193 wpGoogleMaps.php:3445 wpGoogleMaps.php:3623
194
  #: wpGoogleMaps.php:3807
195
  msgid "Your settings have been saved."
196
- msgstr "Dine indstillinger er gemt"
197
 
198
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1811
199
  msgid "Location Tracking"
200
- msgstr ""
201
 
202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1838
203
  msgid "Real time location tracking"
204
- msgstr ""
205
 
206
  # @ wp-google-maps
207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1841
208
- #, fuzzy
209
  msgid "Enable Location Tracking"
210
- msgstr "aktiver butiks lokalisering"
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 ""
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
- #, fuzzy
222
  msgid "Upload Icon"
223
- msgstr "Upload billede"
224
 
225
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1854
226
  msgid "Show"
227
- msgstr ""
228
 
229
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
230
  msgid "Route"
231
- msgstr ""
232
 
233
  # @ wp-google-maps
234
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
235
- #, fuzzy
236
  msgid "Last Location"
237
- msgstr "Rediger markør lokation"
238
 
239
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1862
240
  msgid "Route Styling"
241
- msgstr ""
242
 
243
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1870
244
  msgid "Route Colour - Normal"
245
- msgstr ""
246
 
247
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1877
248
  msgid "Route Colour - Hover"
249
- msgstr ""
250
 
251
  # @ wp-google-maps
252
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1884
253
- #, fuzzy
254
  msgid "Route Opacity"
255
- msgstr "Linie tykkelse"
256
 
257
  # @ wp-google-maps
258
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1891
259
- #, fuzzy
260
  msgid "Route Thickness"
261
- msgstr "linie tykkelse"
262
 
263
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1906
264
  msgid "Devices"
265
- msgstr ""
266
 
267
  # @ wp-google-maps
268
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1924
269
- #, fuzzy
270
  msgid "Marker Clustering"
271
- msgstr "Markør breddegrad"
272
 
273
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1984
274
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1987
275
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1990
276
  msgid "Real Time Location Tracking"
277
- msgstr ""
278
 
279
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
280
  msgid ""
281
  "Track your location via our app and plot your current location on a map, "
282
  "publicly or privately."
283
  msgstr ""
 
 
284
 
285
  # @ wp-google-maps
286
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
287
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
288
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:221
289
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:264
290
- #, fuzzy
291
  msgid "Create Map"
292
- msgstr "slet dit kort"
293
 
294
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2049
295
  #, php-format
296
  msgid "Location as at %1$s"
297
- msgstr ""
298
 
299
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2131
300
  msgid "Successfully accepted the device. Thank you"
301
- msgstr ""
302
 
303
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2172
304
  msgid "Device has been removed. Thank you"
305
- msgstr ""
306
 
307
  # @ wp-google-maps
308
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2193
309
- #, fuzzy
310
  msgid "Marker Data Cleared."
311
- msgstr "Rediger markør lokation"
312
 
313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
314
  msgid "A new device needs your approval to enable real time location tracking."
315
  msgstr ""
 
316
 
317
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
318
  msgid "Device ID:"
319
- msgstr ""
320
 
321
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2232
322
  #, php-format
323
  msgid "To accept this device, Please follow this link: %1$s"
324
- msgstr ""
325
 
326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
327
  msgid "To reject the device, simply ignore this email."
328
- msgstr ""
329
 
330
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
331
  msgid ""
332
  "A new device needs your approval to enable real time location tracking - WP "
333
  "Google Maps"
334
  msgstr ""
 
 
335
 
336
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
337
  msgid "No devices"
338
- msgstr ""
339
 
340
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
341
  msgid "including Pro &amp; Gold add-ons"
342
- msgstr ""
343
 
344
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
345
  msgid "including Pro add-on"
346
- msgstr ""
347
 
348
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
349
  msgid ""
350
  "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
351
  "a>. Your current Gold version is not compatible with the current Pro version."
352
  msgstr ""
 
 
 
353
 
354
  # @ wp-google-maps
355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
@@ -358,41 +359,36 @@ msgstr ""
358
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4619
359
  #: wpGoogleMaps.php:2991 wpGoogleMaps.php:4619
360
  msgid "ZIP / Address:"
361
- msgstr "post nr. / adresse:"
362
 
363
  # @ wp-google-maps
364
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1140
365
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6984
366
- #, fuzzy
367
  msgid "Title / Description:"
368
- msgstr "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
- #, fuzzy
373
  msgid "No marker list"
374
- msgstr "Markør breddegrad"
375
 
376
  # @ wp-google-maps
377
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1192
378
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6915
379
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5145
380
  #: wpGoogleMaps.php:5145
381
- #, fuzzy
382
  msgid "Basic table"
383
- msgstr "Fusion Table ID"
384
 
385
  # @ wp-google-maps
386
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1195
387
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6914
388
- #, fuzzy
389
  msgid "Basic list"
390
- msgstr "Fusion Table ID"
391
 
392
  # @ wp-google-maps
393
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1198
394
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6916
395
- #, fuzzy
396
  msgid "Advanced table"
397
  msgstr "Avancerede markører"
398
 
@@ -403,88 +399,81 @@ msgstr "Avancerede markører"
403
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5227
404
  #: wpGoogleMaps.php:5147 wpGoogleMaps.php:5227
405
  msgid "Carousel"
406
- msgstr ""
407
 
408
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1280
409
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5845
410
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6917
411
  msgid "Default Infowindow"
412
- msgstr ""
413
 
414
  # @ wp-google-maps
415
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1282
416
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5847
417
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6918
418
- #, fuzzy
419
  msgid "Modern Infowindow"
420
- msgstr "Open Marker infoWindows af"
421
 
422
  # @ wp-google-maps
423
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1284
424
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5849
425
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6920
426
- #, fuzzy
427
  msgid "Modern Plus Infowindow"
428
- msgstr "Open Marker infoWindows af"
429
 
430
  # @ wp-google-maps
431
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1286
432
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5851
433
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6921
434
- #, fuzzy
435
  msgid "Circular Infowindow"
436
- msgstr "Open Marker infoWindows af"
437
 
438
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
439
  msgid "Currently using your selection chosen in the global settings"
440
- msgstr ""
441
 
442
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
443
  msgid "Download this as a CSV file"
444
- msgstr ""
445
 
446
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
447
  msgid "Download this data as a CSV file"
448
- msgstr ""
449
 
450
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
451
  msgid "Please update your basic version to use this function."
452
- msgstr ""
453
 
454
  # @ wp-google-maps
455
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
456
- #, fuzzy
457
  msgid "Add a New Dataset"
458
- msgstr "kategori"
459
 
460
  # @ wp-google-maps
461
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
462
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4762
463
  #: wpGoogleMaps.php:4762
464
- #, fuzzy
465
  msgid "Create your Map"
466
- msgstr "slet dit kort"
467
 
468
  # @ wp-google-maps
469
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
470
- #, fuzzy
471
  msgid "New"
472
- msgstr "Tilføj ny"
473
 
474
  # @ wp-google-maps
475
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1388
476
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4767
477
  #: wpGoogleMaps.php:4767
478
- #, fuzzy
479
  msgid "General Settings"
480
- msgstr "generelle Kort indstillinger"
481
 
482
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1389
483
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:30
484
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4768
485
  #: base/includes/welcome.php:30 wpGoogleMaps.php:4768
486
  msgid "Themes"
487
- msgstr ""
488
 
489
  # @ wp-google-maps
490
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1390
@@ -497,9 +486,8 @@ msgstr ""
497
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
498
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4769
499
  #: wpGoogleMaps.php:4769
500
- #, fuzzy
501
  msgid "Directions"
502
- msgstr "Aktiver vejvisning?"
503
 
504
  # @ wp-google-maps
505
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1391
@@ -520,22 +508,21 @@ msgstr "Find butik"
520
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4771
521
  #: wpGoogleMaps.php:4294 wpGoogleMaps.php:4771
522
  msgid "Advanced Settings"
523
- msgstr ""
524
 
525
  # @ wp-google-maps
526
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1393
527
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4772
528
  #: wpGoogleMaps.php:4772
529
- #, fuzzy
530
  msgid "Marker Listing Options"
531
- msgstr "Fejlsøgnings indstillinger"
532
 
533
  # @ wp-google-maps
534
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1431
535
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4805
536
  #: wpGoogleMaps.php:4805
537
  msgid "Short code"
538
- msgstr "Short Code"
539
 
540
  # @ wp-google-maps
541
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1432
@@ -549,14 +536,14 @@ msgstr "kopier dette ind i dit indlæg eller din side for at vise kortet"
549
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4809
550
  #: wpGoogleMaps.php:4809
551
  msgid "Map Name"
552
- msgstr "Kort navn"
553
 
554
  # @ wp-google-maps
555
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1440
556
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4835
557
  #: wpGoogleMaps.php:4835
558
  msgid "Zoom Level"
559
- msgstr "Zoom level"
560
 
561
  # @ wp-google-maps
562
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1447
@@ -565,7 +552,7 @@ msgstr "Zoom level"
565
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4813
566
  #: wpGoogleMaps.php:4510 wpGoogleMaps.php:4813
567
  msgid "Width"
568
- msgstr "bredde"
569
 
570
  # @ wp-google-maps
571
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1454
@@ -573,7 +560,7 @@ msgstr "bredde"
573
  #: wpGoogleMaps.php:4820
574
  #, php-format
575
  msgid "Set to 100% for a responsive map"
576
- msgstr "sæt til 100% for et responsivt kort"
577
 
578
  # @ wp-google-maps
579
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1459
@@ -582,7 +569,7 @@ msgstr "sæt til 100% for et responsivt kort"
582
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4825
583
  #: wpGoogleMaps.php:4511 wpGoogleMaps.php:4825
584
  msgid "Height"
585
- msgstr "højde"
586
 
587
  # @ wp-google-maps
588
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1464
@@ -600,40 +587,39 @@ msgstr ""
600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
601
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
602
  #: wpGoogleMaps.php:4864
603
- #, fuzzy
604
  msgid "Select a theme for your map"
605
- msgstr "slet dit kort"
606
 
607
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1513
608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4898
609
  #: wpGoogleMaps.php:4898
610
  msgid "Or use a custom theme"
611
- msgstr ""
612
 
613
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1514
614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4899
615
  #: wpGoogleMaps.php:4899
616
  msgid "Browse the theme directory"
617
- msgstr ""
618
 
619
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1515
620
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4900
621
  #: wpGoogleMaps.php:4900
622
  msgid "Paste your custom theme data here:"
623
- msgstr ""
624
 
625
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1517
626
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4902
627
  #: wpGoogleMaps.php:4902
628
  msgid "Preview"
629
- msgstr ""
630
 
631
  # @ wp-google-maps
632
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1535
633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4928
634
  #: wpGoogleMaps.php:4928
635
  msgid "Enable Directions?"
636
- msgstr "Aktiver vejvisning?"
637
 
638
  # @ wp-google-maps
639
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1547
@@ -679,55 +665,54 @@ msgstr "Vejvisnings boks bredde"
679
 
680
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1566
681
  msgid "px"
682
- msgstr ""
683
 
684
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1567
685
  msgid "%"
686
- msgstr ""
687
 
688
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1572
689
  msgid "Default 'To' address"
690
- msgstr ""
691
 
692
  # @ wp-google-maps
693
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1588
694
- #, fuzzy
695
  msgid "General options"
696
- msgstr "generelle Kort indstillinger"
697
 
698
  # @ wp-google-maps
699
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1592
700
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4968
701
  #: wpGoogleMaps.php:4968
702
  msgid "Enable Store Locator"
703
- msgstr "aktiver butiks lokalisering"
704
 
705
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1599
706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4976
707
  #: wpGoogleMaps.php:4976
708
  msgid "Restrict to country"
709
- msgstr ""
710
 
711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1608
712
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4982
713
  #: wpGoogleMaps.php:4982
714
  msgid "No country selected"
715
- msgstr ""
716
 
717
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
718
  msgid "Insert country TLD. For example, use DE for Germany."
719
- msgstr ""
720
 
721
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
722
  msgid "Leave blank for no restrictions."
723
- msgstr ""
724
 
725
  # @ wp-google-maps
726
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1626
727
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4996
728
  #: wpGoogleMaps.php:4996
729
  msgid "Show distance in"
730
- msgstr "vis distance i"
731
 
732
  # @ wp-google-maps
733
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
@@ -747,98 +732,91 @@ msgstr "Kilometer"
747
 
748
  # @ wp-google-maps
749
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1635
750
- #, fuzzy
751
  msgid "Store Locator Placement"
752
- msgstr "Butiks lokatør dokumentation"
753
 
754
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
755
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
756
  msgid "Below Map"
757
- msgstr ""
758
 
759
  # @ wp-google-maps
760
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
761
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
762
- #, fuzzy
763
  msgid "Above Map"
764
- msgstr "Gem Kort"
765
 
766
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1644
767
  msgid "Allow category selection"
768
- msgstr ""
769
 
770
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
771
  msgid "Allow users to use their location as the starting point"
772
- msgstr ""
773
 
774
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
775
  msgid ""
776
  "Please ensure that \"show user's location\" is enabled in the \"Advanced "
777
  "Settings\" tab."
778
  msgstr ""
 
 
779
 
780
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
781
  msgid "Show center point as an icon"
782
- msgstr ""
783
 
784
  # @ wp-google-maps
785
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1669
786
- #, fuzzy
787
  msgid "Default Icon"
788
- msgstr "Standard"
789
 
790
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1674
791
  msgid "Hide all markers until a search is done"
792
- msgstr ""
793
 
794
  # @ wp-google-maps
795
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1688
796
- #, fuzzy
797
  msgid "Query String"
798
  msgstr "Query String"
799
 
800
  # @ wp-google-maps
801
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1693
802
- #, fuzzy
803
  msgid "Enable title search"
804
- msgstr "aktiver cykel lag?"
805
 
806
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1702
807
  msgid "Title search String"
808
- msgstr ""
809
 
810
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1707
811
  msgid "Style options"
812
- msgstr ""
813
 
814
  # @ wp-google-maps
815
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1712
816
- #, fuzzy
817
  msgid "Line color"
818
- msgstr "Linie farve"
819
 
820
  # @ wp-google-maps
821
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1720
822
- #, fuzzy
823
  msgid "Line opacity"
824
- msgstr "Linie tykkelse"
825
 
826
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1723
827
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1739
828
  msgid "(0 - 1.0) example: 0.5 for 50%"
829
- msgstr ""
830
 
831
  # @ wp-google-maps
832
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1728
833
- #, fuzzy
834
  msgid "Fill color"
835
- msgstr "fyld farve"
836
 
837
  # @ wp-google-maps
838
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1736
839
- #, fuzzy
840
  msgid "Fill opacity"
841
- msgstr "Linie tykkelse"
842
 
843
  # @ wp-google-maps
844
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
@@ -852,7 +830,7 @@ msgstr "Vis"
852
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
853
  #: wpGoogleMaps.php:5019
854
  msgid "Store Locator Documentation"
855
- msgstr "Butiks lokatør dokumentation"
856
 
857
  # @ wp-google-maps
858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1761
@@ -872,13 +850,15 @@ msgstr "Standard markør billede"
872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5467
873
  #: wpGoogleMaps.php:5096 wpGoogleMaps.php:5463 wpGoogleMaps.php:5467
874
  msgid "Upload Image"
875
- msgstr "Upload billede"
876
 
877
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
878
  msgid ""
879
  "Get great map markers <a href='http://www.wpgmaps.com/marker-icons/' "
880
  "target='_BLANK' title='Great Google Map Markers'>here</a>"
881
  msgstr ""
 
 
882
 
883
  # @ wp-google-maps
884
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
@@ -972,41 +952,36 @@ msgstr "Vis brugerens Lokation?"
972
 
973
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1800
974
  msgid "Click marker opens link"
975
- msgstr ""
976
 
977
  # @ wp-google-maps
978
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1811
979
- #, fuzzy
980
  msgid "Maximum Zoom Out Level"
981
- msgstr "Zoom level"
982
 
983
  # @ wp-google-maps
984
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1840
985
- #, fuzzy
986
  msgid "Maximum Zoom In Level"
987
- msgstr "Zoom level"
988
 
989
  # @ wp-google-maps
990
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1875
991
- #, fuzzy
992
  msgid "Enable Layers"
993
- msgstr "Aktiver sky lag?"
994
 
995
  # @ wp-google-maps
996
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1879
997
- #, fuzzy
998
  msgid "Bicycle Layer"
999
- msgstr "aktiver cykel lag?"
1000
 
1001
  # @ wp-google-maps
1002
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1882
1003
- #, fuzzy
1004
  msgid "Traffic Layer"
1005
- msgstr "aktiver trafik lag?"
1006
 
1007
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1885
1008
  msgid "Transit Layer"
1009
- msgstr ""
1010
 
1011
  # @ wp-google-maps
1012
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1891
@@ -1024,14 +999,14 @@ msgstr "KML/GeoRSS laget vil overskrive de fleste af dine kort indstillinger"
1024
 
1025
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
1026
  msgid "For multiple sources, separate each one by a comma."
1027
- msgstr ""
1028
 
1029
  # @ wp-google-maps
1030
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1897
1031
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5125
1032
  #: wpGoogleMaps.php:5125
1033
  msgid "Fusion table ID"
1034
- msgstr "Fusion Table ID"
1035
 
1036
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
1037
  msgid ""
@@ -1040,54 +1015,52 @@ msgid ""
1040
  "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
1041
  "maps-api.html</a>"
1042
  msgstr ""
 
 
 
 
1043
 
1044
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1909
1045
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5874
1046
  msgid "Infowindow Style"
1047
- msgstr ""
1048
 
1049
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1927
1050
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2024
1051
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5894
1052
  msgid "Your selection:"
1053
- msgstr ""
1054
 
1055
  # @ wp-google-maps
1056
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1960
1057
- #, fuzzy
1058
  msgid "Infowindow Colors"
1059
- msgstr "Open Marker infoWindows af"
1060
 
1061
  # @ wp-google-maps
1062
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1964
1063
- #, fuzzy
1064
  msgid "Primary Color"
1065
- msgstr "Linie farve"
1066
 
1067
  # @ wp-google-maps
1068
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1972
1069
- #, fuzzy
1070
  msgid "Accent Color"
1071
- msgstr "Linie farve"
1072
 
1073
  # @ wp-google-maps
1074
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1980
1075
- #, fuzzy
1076
  msgid "Text Color"
1077
- msgstr "Linie farve"
1078
 
1079
  # @ wp-google-maps
1080
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2003
1081
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
1082
- #, fuzzy
1083
  msgid "Marker Listing Style"
1084
- msgstr "Markør breddegrad"
1085
 
1086
  # @ wp-google-maps
1087
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2033
1088
- #, fuzzy
1089
  msgid "Marker Listing Placement"
1090
- msgstr "Markør breddegrad"
1091
 
1092
  # @ wp-google-maps
1093
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2042
@@ -1209,126 +1182,118 @@ msgstr "Faldende"
1209
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5184
1210
  #: wpGoogleMaps.php:5184
1211
  msgid "Move list inside map"
1212
- msgstr ""
1213
 
1214
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5187
1216
  #: wpGoogleMaps.php:5187
1217
  msgid "Move your marker list inside the map area"
1218
- msgstr ""
1219
 
1220
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1221
  msgid "(still in beta)"
1222
- msgstr ""
1223
 
1224
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2088
1225
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5189
1226
  #: wpGoogleMaps.php:5189
1227
  msgid "Placement: "
1228
- msgstr ""
1229
 
1230
  # @ wp-google-maps
1231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2090
1232
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5191
1233
  #: wpGoogleMaps.php:5191
1234
- #, fuzzy
1235
  msgid "Top Center"
1236
- msgstr "Center"
1237
 
1238
  # @ wp-google-maps
1239
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2091
1240
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5192
1241
  #: wpGoogleMaps.php:5192
1242
- #, fuzzy
1243
  msgid "Top Left"
1244
- msgstr "Venstre"
1245
 
1246
  # @ wp-google-maps
1247
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2092
1248
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5193
1249
  #: wpGoogleMaps.php:5193
1250
- #, fuzzy
1251
  msgid "Top Right"
1252
- msgstr "Højre"
1253
 
1254
  # @ wp-google-maps
1255
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2093
1256
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5194
1257
  #: wpGoogleMaps.php:5194
1258
- #, fuzzy
1259
  msgid "Left Top "
1260
- msgstr "Venstre"
1261
 
1262
  # @ wp-google-maps
1263
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2094
1264
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5195
1265
  #: wpGoogleMaps.php:5195
1266
- #, fuzzy
1267
  msgid "Right Top"
1268
- msgstr "Højre"
1269
 
1270
  # @ wp-google-maps
1271
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2095
1272
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5196
1273
  #: wpGoogleMaps.php:5196
1274
- #, fuzzy
1275
  msgid "Left Center"
1276
- msgstr "Center"
1277
 
1278
  # @ wp-google-maps
1279
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2096
1280
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5197
1281
  #: wpGoogleMaps.php:5197
1282
- #, fuzzy
1283
  msgid "Right Center"
1284
- msgstr "Center"
1285
 
1286
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2097
1287
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5198
1288
  #: wpGoogleMaps.php:5198
1289
  msgid "Left Bottom"
1290
- msgstr ""
1291
 
1292
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2098
1293
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5199
1294
  #: wpGoogleMaps.php:5199
1295
  msgid "Right Bottom"
1296
- msgstr ""
1297
 
1298
  # @ wp-google-maps
1299
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2099
1300
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5200
1301
  #: wpGoogleMaps.php:5200
1302
- #, fuzzy
1303
  msgid "Bottom Center"
1304
- msgstr "Center"
1305
 
1306
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2100
1307
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5201
1308
  #: wpGoogleMaps.php:5201
1309
  msgid "Bottom Left"
1310
- msgstr ""
1311
 
1312
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2101
1313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5202
1314
  #: wpGoogleMaps.php:5202
1315
  msgid "Bottom Right"
1316
- msgstr ""
1317
 
1318
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2103
1319
  msgid "Container Width: "
1320
- msgstr ""
1321
 
1322
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2104
1323
  msgid "Container Height: "
1324
- msgstr ""
1325
 
1326
  # @ wp-google-maps
1327
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2114
1328
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5153
1329
  #: wpGoogleMaps.php:5153
1330
  msgid "Filter by Category"
1331
- msgstr "Filtrer efter kategori"
1332
 
1333
  # @ wp-google-maps
1334
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2117
@@ -1389,13 +1354,12 @@ msgstr "polylinier"
1389
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5499
1390
  #: wpGoogleMaps.php:5366 wpGoogleMaps.php:5499
1391
  msgid "Heatmaps"
1392
- msgstr ""
1393
 
1394
  # @ wp-google-maps
1395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2156
1396
- #, fuzzy
1397
  msgid "Add a marker"
1398
- msgstr "tilføj markør"
1399
 
1400
  # @ wp-google-maps
1401
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2166
@@ -1403,7 +1367,7 @@ msgstr "tilføj markør"
1403
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5430
1404
  #: wpGoogleMaps.php:5375 wpGoogleMaps.php:5430
1405
  msgid "Address/GPS"
1406
- msgstr "Address/GPS"
1407
 
1408
  # @ wp-google-maps
1409
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2167
@@ -1428,7 +1392,7 @@ msgstr "Link URL"
1428
 
1429
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2182
1430
  msgid "Format: http://www.domain.com"
1431
- msgstr ""
1432
 
1433
  # @ wp-google-maps
1434
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2183
@@ -1439,13 +1403,12 @@ msgstr "Brugerdefineret markør"
1439
 
1440
  # @ wp-google-maps
1441
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2184
1442
- #, fuzzy
1443
  msgid "ignore if you want to use the default marker"
1444
- msgstr "Er du sikker at du vil slette den markør:"
1445
 
1446
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2185
1447
  msgid "This is a retina ready marker"
1448
- msgstr ""
1449
 
1450
  # @ wp-google-maps
1451
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2194
@@ -1550,9 +1513,8 @@ msgstr "tilføj en ny polylinie"
1550
 
1551
  # @ wp-google-maps
1552
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2237
1553
- #, fuzzy
1554
  msgid "Add a dataset"
1555
- msgstr "tilføj markør"
1556
 
1557
  # @ wp-google-maps
1558
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2251
@@ -1588,182 +1550,174 @@ msgstr "og at kreditere ham når du gør det."
1588
 
1589
  # @ wp-google-maps
1590
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2442
1591
- #, fuzzy
1592
  msgid ""
1593
  "The map ID you have entered does not exist. Please enter a map ID that "
1594
  "exists."
1595
- msgstr "Denne mappe eksisterer ikke. Vær venlig at oprette den."
 
 
1596
 
1597
  # @ wp-google-maps
1598
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
1599
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
1600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7000
1601
- #, fuzzy
1602
  msgid "Use my location"
1603
- msgstr "Vis brugerens Lokation?"
1604
 
1605
  # @ wp-google-maps
1606
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2677
1607
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2684
1608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2692
1609
- #, fuzzy
1610
  msgid "Filter by"
1611
- msgstr "Filtrer efter kategori"
1612
 
1613
  # @ wp-google-maps
1614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2846
1615
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:278
1616
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
1617
- #, fuzzy
1618
  msgid "Get directions to"
1619
- msgstr "Aktiver vejvisning?"
1620
 
1621
  # @ wp-google-maps
1622
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2877
1623
- #, fuzzy
1624
  msgid "Get Directions"
1625
- msgstr "Aktiver vejvisning?"
1626
 
1627
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2882
1628
  msgid "For"
1629
- msgstr ""
1630
 
1631
  # @ wp-google-maps
1632
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2886
1633
- #, fuzzy
1634
  msgid "Driving"
1635
- msgstr "Gemmer"
1636
 
1637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2887
1638
  msgid "Walking"
1639
- msgstr ""
1640
 
1641
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2888
1642
  msgid "Bicycling"
1643
- msgstr ""
1644
 
1645
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2891
1646
  msgid "show options"
1647
- msgstr ""
1648
 
1649
  # @ wp-google-maps
1650
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2892
1651
- #, fuzzy
1652
  msgid "hide options"
1653
- msgstr "Aktiver vejvisning?"
1654
 
1655
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2894
1656
  msgid "Avoid Tolls"
1657
- msgstr ""
1658
 
1659
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2895
1660
  msgid "Avoid Highways"
1661
- msgstr ""
1662
 
1663
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2901
1664
  msgid "From"
1665
- msgstr ""
1666
 
1667
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2909
1668
  msgid "To"
1669
- msgstr ""
1670
 
1671
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2919
1672
  msgid "Go"
1673
- msgstr ""
1674
 
1675
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2962
1676
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2995
1677
  msgid "Fetching directions..."
1678
- msgstr ""
1679
 
1680
  # @ wp-google-maps
1681
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2965
1682
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2997
1683
- #, fuzzy
1684
  msgid "Reset directions"
1685
- msgstr "Aktiver vejvisning?"
1686
 
1687
  # @ wp-google-maps
1688
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2967
1689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2999
1690
- #, fuzzy
1691
  msgid "Print directions"
1692
- msgstr "Aktiver vejvisning?"
1693
 
1694
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3073
1695
  msgid "Thank you. Your marker is awaiting approval."
1696
- msgstr ""
1697
 
1698
  # @ wp-google-maps
1699
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3641
1700
- #, fuzzy
1701
  msgid "Get directions"
1702
- msgstr "Aktiver vejvisning?"
1703
 
1704
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3642
1705
  msgid "My location"
1706
- msgstr ""
1707
 
1708
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3643
1709
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2114
1710
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2255
1711
  #: wpGoogleMaps.php:2114 wpGoogleMaps.php:2255
1712
  msgid "km away"
1713
- msgstr ""
1714
 
1715
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3644
1716
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2112
1717
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2253
1718
  #: wpGoogleMaps.php:2112 wpGoogleMaps.php:2253
1719
  msgid "miles away"
1720
- msgstr ""
1721
 
1722
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3648
1723
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3650
1724
  msgid "Please fill out both the \"from\" and \"to\" fields"
1725
- msgstr ""
1726
 
1727
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3653
1728
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3655
1729
  msgid "Getting your current location address..."
1730
- msgstr ""
1731
 
1732
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3659
1733
  msgid "Show _MENU_ entries"
1734
- msgstr ""
1735
 
1736
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3660
1737
  msgid "Nothing found - sorry"
1738
- msgstr ""
1739
 
1740
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3661
1741
  msgid "Showing _START_ to _END_ of _TOTAL_ records"
1742
- msgstr ""
1743
 
1744
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3662
1745
  msgid "Showing 0 to 0 of 0 records"
1746
- msgstr ""
1747
 
1748
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3663
1749
  msgid "(filtered from _MAX_ total records)"
1750
- msgstr ""
1751
 
1752
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3664
1753
  msgid "First"
1754
- msgstr ""
1755
 
1756
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3665
1757
  msgid "Last"
1758
- msgstr ""
1759
 
1760
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3666
1761
  msgid "Next"
1762
- msgstr ""
1763
 
1764
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3667
1765
  msgid "Previous"
1766
- msgstr ""
1767
 
1768
  # @ wp-google-maps
1769
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3668
@@ -1776,14 +1730,14 @@ msgstr "søg"
1776
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3673
1777
  msgid "Please prove that you are human by checking the checkbox above"
1778
  msgstr ""
 
1779
 
1780
  # @ wp-google-maps
1781
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1782
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:7
1783
  #: base/classes/widget_module.class.php:7
1784
- #, fuzzy
1785
  msgid "WP Google Maps"
1786
- msgstr "Ny bruger af WP Google Maps?"
1787
 
1788
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1789
  msgid ""
@@ -1791,95 +1745,90 @@ msgid ""
1791
  "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1792
  "the same time in order for the plugin to function correctly."
1793
  msgstr ""
 
 
 
1794
 
1795
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
1796
  msgid "Download ALL marker data to a CSV file"
1797
- msgstr ""
1798
 
1799
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5068
1800
  msgid "Download ALL map data to a CSV file"
1801
- msgstr ""
1802
 
1803
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5069
1804
  msgid "Download ALL polygon data to a CSV file"
1805
- msgstr ""
1806
 
1807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5070
1808
  msgid "Download ALL polyline data to a CSV file"
1809
- msgstr ""
1810
 
1811
  # @ wp-google-maps
1812
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5072
1813
- #, fuzzy
1814
  msgid "Advanced Options"
1815
- msgstr "Avanceret"
1816
 
1817
  # @ wp-google-maps
1818
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5087
1819
- #, fuzzy
1820
  msgid "Map Data"
1821
- msgstr "Kort navn"
1822
 
1823
  # @ wp-google-maps
1824
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5088
1825
- #, fuzzy
1826
  msgid "Marker Data"
1827
- msgstr "Rediger markør lokation"
1828
 
1829
  # @ wp-google-maps
1830
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5089
1831
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:471
1832
- #, fuzzy
1833
  msgid "Polygon Data"
1834
- msgstr "Polygon"
1835
 
1836
  # @ wp-google-maps
1837
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5090
1838
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:492
1839
- #, fuzzy
1840
  msgid "Polyline Data"
1841
- msgstr "polylinier"
1842
 
1843
  # @ wp-google-maps
1844
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5095
1845
- #, fuzzy
1846
  msgid "Upload Map CSV File"
1847
- msgstr "Upload billede"
1848
 
1849
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5103
1850
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5117
1851
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5139
1852
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5158
1853
  msgid "Replace existing data with data in file"
1854
- msgstr ""
1855
 
1856
  # @ wp-google-maps
1857
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5106
1858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5123
1859
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5142
1860
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5161
1861
- #, fuzzy
1862
  msgid "Upload File"
1863
- msgstr "Upload billede"
1864
 
1865
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5107
1866
  msgid "Download Map Data"
1867
- msgstr ""
1868
 
1869
  # @ wp-google-maps
1870
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5113
1871
- #, fuzzy
1872
  msgid "Upload Marker CSV File"
1873
- msgstr "Upload billede"
1874
 
1875
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5118
1876
  msgid ""
1877
  "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1878
- msgstr ""
1879
 
1880
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
1881
  msgid "Google API Key (Required)"
1882
- msgstr ""
1883
 
1884
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1885
  msgid ""
@@ -1887,60 +1836,56 @@ msgid ""
1887
  "href='https://developers.google.com/maps/documentation/geocoding/"
1888
  "#Limits'>Geocoding Documentation</a>"
1889
  msgstr ""
 
 
 
1890
 
1891
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1892
  msgid "There is a 0.12second delay between each request"
1893
- msgstr ""
1894
 
1895
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5124
1896
  msgid "Download Marker Data"
1897
- msgstr ""
1898
 
1899
  # @ wp-google-maps
1900
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5131
1901
- #, fuzzy
1902
  msgid "Upload Polygon CSV File"
1903
- msgstr "Upload billede"
1904
 
1905
  # @ wp-google-maps
1906
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5143
1907
- #, fuzzy
1908
  msgid "Download Polygon Data"
1909
- msgstr "Polygon"
1910
 
1911
  # @ wp-google-maps
1912
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5150
1913
- #, fuzzy
1914
  msgid "Upload Polyline CSV File"
1915
- msgstr "Upload billede"
1916
 
1917
  # @ wp-google-maps
1918
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5162
1919
- #, fuzzy
1920
  msgid "Download Polyline Data"
1921
- msgstr "polylinier"
1922
 
1923
  # @ wp-google-maps
1924
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5166
1925
- #, fuzzy
1926
  msgid "Need help? Read the documentation."
1927
- msgstr "Gennemgå vores dokumentation"
1928
 
1929
  # @ wp-google-maps
1930
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5175
1931
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6471
1932
  #: wpGoogleMaps.php:6471
1933
- #, fuzzy
1934
  msgid "WP Google Maps Support"
1935
- msgstr "WP Google Maps Fejl log"
1936
 
1937
  # @ wp-google-maps
1938
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5178
1939
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6474
1940
  #: wpGoogleMaps.php:6474
1941
- #, fuzzy
1942
  msgid "Documentation"
1943
- msgstr "Butiks lokatør dokumentation"
1944
 
1945
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5180
1946
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6476
@@ -1948,61 +1893,57 @@ msgstr "Butiks lokatør dokumentation"
1948
  msgid ""
1949
  "Getting started? Read through some of these articles to help you along your "
1950
  "way."
1951
- msgstr ""
1952
 
1953
  # @ wp-google-maps
1954
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
1955
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
1956
  #: wpGoogleMaps.php:6477
1957
- #, fuzzy
1958
  msgid "Documentation:"
1959
- msgstr "Butiks lokatør dokumentation"
1960
 
1961
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5183
1962
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6479
1963
  #: wpGoogleMaps.php:6479
1964
  msgid "Creating your first map"
1965
- msgstr ""
1966
 
1967
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5184
1968
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6480
1969
  #: wpGoogleMaps.php:6480
1970
  msgid "Using your map as a Widget"
1971
- msgstr ""
1972
 
1973
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5185
1974
  msgid "Exporting and Importing your map markers"
1975
- msgstr ""
1976
 
1977
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5186
1978
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6481
1979
  #: wpGoogleMaps.php:6481
1980
  msgid "Changing the Google Maps language"
1981
- msgstr ""
1982
 
1983
  # @ wp-google-maps
1984
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1985
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1986
  #: wpGoogleMaps.php:6482
1987
- #, fuzzy
1988
  msgid "WP Google Maps Documentation"
1989
- msgstr "WP Google Map indstillinger"
1990
 
1991
  # @ wp-google-maps
1992
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1993
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1994
  #: wpGoogleMaps.php:6482
1995
- #, fuzzy
1996
  msgid "View all documentation."
1997
- msgstr "Gennemgå vores dokumentation"
1998
 
1999
  # @ wp-google-maps
2000
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5191
2001
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6486
2002
  #: wpGoogleMaps.php:6486
2003
- #, fuzzy
2004
  msgid "Troubleshooting"
2005
- msgstr "Fejlsøgnings indstillinger"
2006
 
2007
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5193
2008
  msgid ""
@@ -2010,30 +1951,33 @@ msgid ""
2010
  "time to time, run into conflicts with the thousands of themes and other "
2011
  "plugins on the market."
2012
  msgstr ""
 
 
 
2013
 
2014
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
2015
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
2016
  #: wpGoogleMaps.php:6489
2017
  msgid "Common issues:"
2018
- msgstr ""
2019
 
2020
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5196
2021
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6491
2022
  #: wpGoogleMaps.php:6491
2023
  msgid "My map is not showing on my website"
2024
- msgstr ""
2025
 
2026
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5197
2027
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6492
2028
  #: wpGoogleMaps.php:6492
2029
  msgid "My markers are not showing on my map in the front-end"
2030
- msgstr ""
2031
 
2032
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5198
2033
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6493
2034
  #: wpGoogleMaps.php:6493
2035
  msgid "I'm getting jQuery errors showing on my website"
2036
- msgstr ""
2037
 
2038
  # @ wp-google-maps
2039
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5202
@@ -2043,27 +1987,25 @@ msgstr ""
2043
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6497
2044
  #: base/includes/credits.php:40 base/includes/credits.php:45
2045
  #: wpGoogleMaps.php:3831 wpGoogleMaps.php:6497
2046
- #, fuzzy
2047
  msgid "Support"
2048
- msgstr "Support Forum"
2049
 
2050
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5204
2051
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6499
2052
  #: wpGoogleMaps.php:6499
2053
  msgid "Still need help? Use one of these links below."
2054
- msgstr ""
2055
 
2056
  # @ wp-google-maps
2057
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5206
2058
- #, fuzzy
2059
  msgid "Support desk"
2060
- msgstr "Support Forum"
2061
 
2062
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5207
2063
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6502
2064
  #: wpGoogleMaps.php:6502
2065
  msgid "Contact us"
2066
- msgstr ""
2067
 
2068
  # @ wp-google-maps
2069
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5223
@@ -2084,7 +2026,7 @@ msgstr "Kort"
2084
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4150
2085
  #: wpGoogleMaps.php:4150
2086
  msgid "InfoWindows"
2087
- msgstr ""
2088
 
2089
  # @ wp-google-maps
2090
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5249
@@ -2092,9 +2034,8 @@ msgstr ""
2092
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:239
2093
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4151
2094
  #: wpGoogleMaps.php:4151
2095
- #, fuzzy
2096
  msgid "Marker Listing"
2097
- msgstr "Markør breddegrad"
2098
 
2099
  # @ wp-google-maps
2100
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5250
@@ -2106,13 +2047,13 @@ msgstr "Avanceret"
2106
 
2107
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5251
2108
  msgid "Visitor Generated Markers"
2109
- msgstr ""
2110
 
2111
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5252
2112
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4153
2113
  #: wpGoogleMaps.php:4153
2114
  msgid "Error Log"
2115
- msgstr ""
2116
 
2117
  # @ wp-google-maps
2118
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5270
@@ -2143,28 +2084,28 @@ msgstr "Gem indstillinger"
2143
 
2144
  # @ wp-google-maps
2145
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5393
2146
- #, fuzzy
2147
  msgid "Visitor Generated Markers Settings"
2148
- msgstr "generelle Kort indstillinger"
2149
 
2150
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
2151
  msgid "Purchase the Visitor Generated Markers Add-on"
2152
- msgstr ""
2153
 
2154
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
2155
  msgid ""
2156
  "to enable this feature. <br /><br />If you have already purchased it please "
2157
  "ensure that you have uploaded activated the plugin."
2158
  msgstr ""
 
 
2159
 
2160
  # @ default
2161
  # @ wp-google-maps
2162
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
2163
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
2164
  #: wpGoogleMaps.php:4233
2165
- #, fuzzy
2166
  msgid "Marker Listing Settings"
2167
- msgstr "Kort indstillinger"
2168
 
2169
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
2170
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
@@ -2173,224 +2114,214 @@ msgid ""
2173
  "Changing these settings will alter the way the marker list appears on your "
2174
  "website."
2175
  msgstr ""
 
 
2176
 
2177
  # @ wp-google-maps
2178
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
2179
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
2180
  #: wpGoogleMaps.php:4240
2181
- #, fuzzy
2182
  msgid "Advanced Marker Listing"
2183
- msgstr "Avancerede markører"
2184
 
2185
  # @ wp-google-maps
2186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
2187
- #, fuzzy
2188
  msgid "Basic Marker Listings"
2189
- msgstr "Markør breddegrad"
2190
 
2191
  # @ wp-google-maps
2192
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5476
2193
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4243
2194
  #: wpGoogleMaps.php:4243
2195
- #, fuzzy
2196
  msgid "Column settings"
2197
- msgstr "Indstillinger"
2198
 
2199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5478
2200
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4245
2201
  #: wpGoogleMaps.php:4245
2202
  msgid "Hide the Icon column"
2203
- msgstr ""
2204
 
2205
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5479
2206
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4246
2207
  #: wpGoogleMaps.php:4246
2208
  msgid "Hide the Title column"
2209
- msgstr ""
2210
 
2211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5480
2212
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4247
2213
  #: wpGoogleMaps.php:4247
2214
  msgid "Hide the Address column"
2215
- msgstr ""
2216
 
2217
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5481
2218
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4248
2219
  #: wpGoogleMaps.php:4248
2220
  msgid "Hide the Category column"
2221
- msgstr ""
2222
 
2223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5482
2224
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4249
2225
  #: wpGoogleMaps.php:4249
2226
  msgid "Hide the Description column"
2227
- msgstr ""
2228
 
2229
  # @ wp-google-maps
2230
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5486
2231
- #, fuzzy
2232
  msgid "Show X items by default"
2233
- msgstr "skal InfoWindow åbne som standard"
2234
 
2235
  # @ wp-google-maps
2236
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5501
2237
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4255
2238
  #: wpGoogleMaps.php:4255
2239
- #, fuzzy
2240
  msgid "Carousel Marker Listing"
2241
- msgstr "Gem markør lokation"
2242
 
2243
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5504
2244
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4258
2245
  #: wpGoogleMaps.php:4258
2246
  msgid "Theme selection"
2247
- msgstr ""
2248
 
2249
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5507
2250
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4261
2251
  #: wpGoogleMaps.php:4261
2252
  msgid "Sky"
2253
- msgstr ""
2254
 
2255
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5508
2256
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4262
2257
  #: wpGoogleMaps.php:4262
2258
  msgid "Sun"
2259
- msgstr ""
2260
 
2261
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5509
2262
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4263
2263
  #: wpGoogleMaps.php:4263
2264
  msgid "Earth"
2265
- msgstr ""
2266
 
2267
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5510
2268
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4264
2269
  #: wpGoogleMaps.php:4264
2270
  msgid "Monotone"
2271
- msgstr ""
2272
 
2273
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5511
2274
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4265
2275
  #: wpGoogleMaps.php:4265
2276
  msgid "PinkPurple"
2277
- msgstr ""
2278
 
2279
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5512
2280
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4266
2281
  #: wpGoogleMaps.php:4266
2282
  msgid "White"
2283
- msgstr ""
2284
 
2285
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5513
2286
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4267
2287
  #: wpGoogleMaps.php:4267
2288
  msgid "Black"
2289
- msgstr ""
2290
 
2291
  # @ wp-google-maps
2292
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5518
2293
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4272
2294
  #: wpGoogleMaps.php:4272
2295
- #, fuzzy
2296
  msgid "Carousel settings"
2297
- msgstr "Gem indstillinger"
2298
 
2299
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5520
2300
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4274
2301
  #: wpGoogleMaps.php:4274
2302
  msgid "Hide the Image"
2303
- msgstr ""
2304
 
2305
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5521
2306
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4275
2307
  #: wpGoogleMaps.php:4275
2308
  msgid "Hide the Title"
2309
- msgstr ""
2310
 
2311
  # @ wp-google-maps
2312
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5522
2313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4276
2314
  #: wpGoogleMaps.php:4276
2315
- #, fuzzy
2316
  msgid "Hide the Marker Icon"
2317
- msgstr "Rediger markør lokation"
2318
 
2319
  # @ wp-google-maps
2320
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5523
2321
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4277
2322
  #: wpGoogleMaps.php:4277
2323
- #, fuzzy
2324
  msgid "Hide the Address"
2325
- msgstr "adresse"
2326
 
2327
  # @ wp-google-maps
2328
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5524
2329
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4278
2330
  #: wpGoogleMaps.php:4278
2331
- #, fuzzy
2332
  msgid "Hide the Description"
2333
- msgstr "Beskrivelse"
2334
 
2335
  # @ wp-google-maps
2336
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5525
2337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4279
2338
  #: wpGoogleMaps.php:4279
2339
- #, fuzzy
2340
  msgid "Hide the Marker Link"
2341
- msgstr "Rediger markør lokation"
2342
 
2343
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5526
2344
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4280
2345
  #: wpGoogleMaps.php:4280
2346
  msgid "Hide the Directions Link"
2347
- msgstr ""
2348
 
2349
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5527
2350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4281
2351
  #: wpGoogleMaps.php:4281
2352
  msgid "Resize Images with Timthumb"
2353
- msgstr ""
2354
 
2355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5528
2356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4282
2357
  #: wpGoogleMaps.php:4282
2358
  msgid "Enable lazyload of images"
2359
- msgstr ""
2360
 
2361
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5529
2362
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4283
2363
  #: wpGoogleMaps.php:4283
2364
  msgid "Enable autoheight"
2365
- msgstr ""
2366
 
2367
  # @ wp-google-maps
2368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5530
2369
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4284
2370
  #: wpGoogleMaps.php:4284
2371
- #, fuzzy
2372
  msgid "Enable pagination"
2373
- msgstr "Aktiver vejvisning?"
2374
 
2375
  # @ wp-google-maps
2376
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5531
2377
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4285
2378
  #: wpGoogleMaps.php:4285
2379
- #, fuzzy
2380
  msgid "Enable navigation"
2381
- msgstr "Aktiver vejvisning?"
2382
 
2383
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5532
2384
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4286
2385
  #: wpGoogleMaps.php:4286
2386
  msgid "Items"
2387
- msgstr ""
2388
 
2389
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5533
2390
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4287
2391
  #: wpGoogleMaps.php:4287
2392
  msgid "Autoplay after x milliseconds (1000 = 1 second)"
2393
- msgstr ""
2394
 
2395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5548
2396
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5549
@@ -2401,7 +2332,7 @@ msgstr ""
2401
  #: wpGoogleMaps.php:4311 wpGoogleMaps.php:4321 wpGoogleMaps.php:4342
2402
  #: wpGoogleMaps.php:4352
2403
  msgid "You can use the following"
2404
- msgstr ""
2405
 
2406
  # @ wp-google-maps
2407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5577
@@ -2431,9 +2362,8 @@ msgstr ""
2431
 
2432
  # @ wp-google-maps
2433
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
2434
- #, fuzzy
2435
  msgid "Google Maps API Key (optional)"
2436
- msgstr "Brug Google Maps API"
2437
 
2438
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
2439
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
@@ -2445,6 +2375,11 @@ msgid ""
2445
  "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2446
  "this. "
2447
  msgstr ""
 
 
 
 
 
2448
 
2449
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
2450
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
@@ -2453,24 +2388,26 @@ msgid ""
2453
  "We suggest that you change the two fields below ONLY if you are experiencing "
2454
  "issues when trying to save the marker XML files."
2455
  msgstr ""
 
 
2456
 
2457
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
2458
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
2459
  #: wpGoogleMaps.php:4330
2460
  msgid "Pull marker data from"
2461
- msgstr ""
2462
 
2463
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5615
2464
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4332
2465
  #: wpGoogleMaps.php:4332
2466
  msgid "Database (Great for small amounts of markers)"
2467
- msgstr ""
2468
 
2469
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5616
2470
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4333
2471
  #: wpGoogleMaps.php:4333
2472
  msgid "XML File (Great for large amounts of markers)"
2473
- msgstr ""
2474
 
2475
  # @ wp-google-maps
2476
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5620
@@ -2489,7 +2426,7 @@ msgstr "Markør data XML mappe"
2489
  #: wpGoogleMaps.php:4312 wpGoogleMaps.php:4322 wpGoogleMaps.php:4343
2490
  #: wpGoogleMaps.php:4353
2491
  msgid "Currently using"
2492
- msgstr ""
2493
 
2494
  # @ wp-google-maps
2495
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5630
@@ -2505,9 +2442,8 @@ msgstr "Markør data XML URL"
2505
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4357
2506
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4360
2507
  #: wpGoogleMaps.php:4357 wpGoogleMaps.php:4360
2508
- #, fuzzy
2509
  msgid "Custom CSS"
2510
- msgstr "Brugerdefineret markør"
2511
 
2512
  # @ default
2513
  # @ wp-google-maps
@@ -2529,28 +2465,28 @@ msgstr "generelle Kort indstillinger"
2529
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4161
2530
  #: wpGoogleMaps.php:4161
2531
  msgid "Disable StreetView"
2532
- msgstr ""
2533
 
2534
  # @ default
2535
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5735
2536
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4162
2537
  #: wpGoogleMaps.php:4162
2538
  msgid "Disable Zoom Controls"
2539
- msgstr ""
2540
 
2541
  # @ default
2542
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5736
2543
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4163
2544
  #: wpGoogleMaps.php:4163
2545
  msgid "Disable Pan Controls"
2546
- msgstr ""
2547
 
2548
  # @ default
2549
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5737
2550
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4164
2551
  #: wpGoogleMaps.php:4164
2552
  msgid "Disable Map Type Controls"
2553
- msgstr ""
2554
 
2555
  # @ wp-google-maps
2556
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5738
@@ -2582,19 +2518,17 @@ msgstr "Open Marker infoWindows af"
2582
 
2583
  # @ wp-google-maps
2584
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5748
2585
- #, fuzzy
2586
  msgid "Filter by category displayed as"
2587
- msgstr "Filtrer efter kategori"
2588
 
2589
  # @ wp-google-maps
2590
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5750
2591
- #, fuzzy
2592
  msgid "Dropdown"
2593
- msgstr "smid"
2594
 
2595
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5751
2596
  msgid "Checkboxes"
2597
- msgstr ""
2598
 
2599
  # @ wp-google-maps
2600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5757
@@ -2610,6 +2544,8 @@ msgid ""
2610
  "Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
2611
  "receiving jQuery related errors after updating to WordPress 4.5)"
2612
  msgstr ""
 
 
2613
 
2614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
2615
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
@@ -2618,6 +2554,8 @@ msgid ""
2618
  "Do not load the Google Maps API (Only check this if your theme loads the "
2619
  "Google Maps API by default)"
2620
  msgstr ""
 
 
2621
 
2622
  # @ wp-google-maps
2623
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5771
@@ -2635,35 +2573,32 @@ msgstr "Laveste niveau af adgang til kort editoren"
2635
 
2636
  # @ wp-google-maps
2637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5794
2638
- #, fuzzy
2639
  msgid "Retina Icon Width"
2640
- msgstr "Vejvisnings boks bredde"
2641
 
2642
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5798
2643
  msgid "Retina Icon Height"
2644
- msgstr ""
2645
 
2646
  # @ wp-google-maps
2647
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5853
2648
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5855
2649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6922
2650
- #, fuzzy
2651
  msgid "No Global Setting"
2652
- msgstr "generelle Kort indstillinger"
2653
 
2654
  # @ wp-google-maps
2655
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5868
2656
- #, fuzzy
2657
  msgid "InfoWindow Settings"
2658
- msgstr "Open Marker infoWindows af"
2659
 
2660
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5904
2661
  msgid "Image Thumbnails"
2662
- msgstr ""
2663
 
2664
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5906
2665
  msgid "Do not use TimThumb"
2666
- msgstr ""
2667
 
2668
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5907
2669
  msgid ""
@@ -2671,72 +2606,73 @@ msgid ""
2671
  "Please check this box and make the necessary changes to your images using "
2672
  "the settings below.)"
2673
  msgstr ""
 
 
 
2674
 
2675
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
2676
  msgid "Resize Images"
2677
- msgstr ""
2678
 
2679
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5914
2680
  msgid "Resize all images to the below sizes"
2681
- msgstr ""
2682
 
2683
  # @ wp-google-maps
2684
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5918
2685
- #, fuzzy
2686
  msgid "Default Image Width"
2687
- msgstr "Standard markør billede"
2688
 
2689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5919
2690
  msgid "(can be left blank - max width will be limited to max infowindow width)"
2691
  msgstr ""
 
 
2692
 
2693
  # @ wp-google-maps
2694
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5922
2695
- #, fuzzy
2696
  msgid "Default Image Height"
2697
- msgstr "Standard markør billede"
2698
 
2699
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5923
2700
  msgid ""
2701
  "(can be left blank - leaving both the width and height blank will revert to "
2702
  "full size images being used)"
2703
  msgstr ""
 
 
2704
 
2705
  # @ wp-google-maps
2706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
2707
- #, fuzzy
2708
  msgid "Max InfoWindow Width"
2709
- msgstr "Open Marker infoWindows af"
2710
 
2711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5927
2712
  msgid "(Minimum: 200px)"
2713
- msgstr ""
2714
 
2715
  # @ wp-google-maps
2716
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5930
2717
- #, fuzzy
2718
  msgid "Other settings"
2719
- msgstr "Gem indstillinger"
2720
 
2721
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5932
2722
  msgid "Open links in a new window"
2723
- msgstr ""
2724
 
2725
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5933
2726
  msgid "(Tick this if you want to open your links in a new window)"
2727
- msgstr ""
2728
 
2729
  # @ wp-google-maps
2730
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5934
2731
- #, fuzzy
2732
  msgid "Hide the address field"
2733
- msgstr "adresse"
2734
 
2735
  # @ wp-google-maps
2736
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5938
2737
- #, fuzzy
2738
  msgid "Link text"
2739
- msgstr "Linket til"
2740
 
2741
  # @ wp-google-maps
2742
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6215
@@ -2780,15 +2716,13 @@ msgstr "din poylinie er gemt"
2780
 
2781
  # @ wp-google-maps
2782
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6442
2783
- #, fuzzy
2784
  msgid "Your dataset has been created."
2785
- msgstr "din polygon er oprettet"
2786
 
2787
  # @ wp-google-maps
2788
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6487
2789
- #, fuzzy
2790
  msgid "Your dataset has been saved."
2791
- msgstr "din polygon er gemt"
2792
 
2793
  # @ wp-google-maps
2794
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6594
@@ -2946,15 +2880,14 @@ msgstr "Gem polygon"
2946
 
2947
  # @ wp-google-maps
2948
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6913
2949
- #, fuzzy
2950
  msgid "No marker listing"
2951
- msgstr "Markør breddegrad"
2952
 
2953
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6919
2954
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5641
2955
  #: wpGoogleMaps.php:5641
2956
  msgid "Copied to clipboard"
2957
- msgstr ""
2958
 
2959
  # @ wp-google-maps
2960
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7015
@@ -3107,7 +3040,7 @@ msgstr "300km"
3107
 
3108
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7071
3109
  msgid "Reset"
3110
- msgstr ""
3111
 
3112
  # @ wp-google-maps
3113
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7210
@@ -3120,9 +3053,8 @@ msgstr "Skrift"
3120
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7211
3121
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4513
3122
  #: wpGoogleMaps.php:4513
3123
- #, fuzzy
3124
  msgid "Shortcode"
3125
- msgstr "Short Code"
3126
 
3127
  # @ wp-google-maps
3128
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7221
@@ -3134,7 +3066,7 @@ msgstr "Papirkurv"
3134
 
3135
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7222
3136
  msgid "Duplicate"
3137
- msgstr ""
3138
 
3139
  # @ wp-google-maps
3140
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7225
@@ -3165,18 +3097,17 @@ msgstr "udfør"
3165
 
3166
  # @ wp-google-maps
3167
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7417
3168
- #, fuzzy
3169
  msgid "Delete this dataset"
3170
- msgstr "Slet denne markør"
3171
 
3172
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8001
3173
  msgid "Add heatmap data"
3174
- msgstr ""
3175
 
3176
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8015
3177
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8103
3178
  msgid "Gradient"
3179
- msgstr ""
3180
 
3181
  # @ wp-google-maps
3182
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
@@ -3187,31 +3118,28 @@ msgstr "Standard"
3187
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
3188
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
3189
  msgid "Blue"
3190
- msgstr ""
3191
 
3192
  # @ wp-google-maps
3193
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8056
3194
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8142
3195
- #, fuzzy
3196
  msgid "Save Dataset"
3197
- msgstr "kategori"
3198
 
3199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8088
3200
  msgid "Edit Dataset"
3201
- msgstr ""
3202
 
3203
  # @ wp-google-maps
3204
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
3205
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:18
3206
- #, fuzzy
3207
  msgid "Marker Categories"
3208
- msgstr "Kategorier"
3209
 
3210
  # @ wp-google-maps
3211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
3212
- #, fuzzy
3213
  msgid "Add New Category"
3214
- msgstr "kategori"
3215
 
3216
  # @ wp-google-maps
3217
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
@@ -3225,7 +3153,7 @@ msgstr "Pro Version"
3225
 
3226
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
3227
  msgid "Create marker categories"
3228
- msgstr ""
3229
 
3230
  # @ wp-google-maps
3231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
@@ -3251,39 +3179,34 @@ msgstr "Problemer med pluginet? Se manualen."
3251
 
3252
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:32
3253
  msgid "There was a problem deleting the category."
3254
- msgstr ""
3255
 
3256
  # @ wp-google-maps
3257
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
3258
- #, fuzzy
3259
  msgid "Delete your Category"
3260
- msgstr "slet dit kort"
3261
 
3262
  # @ wp-google-maps
3263
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
3264
- #, fuzzy
3265
  msgid "Are you sure you want to delete the category"
3266
- msgstr "er du sikker på at du vil slette dette kort"
3267
 
3268
  # @ wp-google-maps
3269
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:85
3270
- #, fuzzy
3271
  msgid "Add a Marker Category"
3272
- msgstr "tilføj markør"
3273
 
3274
  # @ wp-google-maps
3275
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:89
3276
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:171
3277
- #, fuzzy
3278
  msgid "Category Name"
3279
- msgstr "kategori"
3280
 
3281
  # @ wp-google-maps
3282
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:99
3283
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:181
3284
- #, fuzzy
3285
  msgid "Category Marker"
3286
- msgstr "Brugerdefineret markør"
3287
 
3288
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
3289
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
@@ -3291,63 +3214,60 @@ msgid ""
3291
  "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
3292
  "target='_BLANK' title='Great Google Map Markers'>here</a>"
3293
  msgstr ""
 
 
3294
 
3295
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
3296
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
3297
  msgid "Retina Ready"
3298
- msgstr ""
3299
 
3300
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:105
3301
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:187
3302
  msgid "This marker is a retina-ready marker"
3303
- msgstr ""
3304
 
3305
  # @ wp-google-maps
3306
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:114
3307
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:196
3308
- #, fuzzy
3309
  msgid "Assigned to "
3310
- msgstr "Linket til"
3311
 
3312
  # @ wp-google-maps
3313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:127
3314
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:210
3315
- #, fuzzy
3316
  msgid "Save Category"
3317
- msgstr "kategori"
3318
 
3319
  # @ wp-google-maps
3320
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:166
3321
- #, fuzzy
3322
  msgid "Edit a Marker Category"
3323
- msgstr "tilføj markør"
3324
 
3325
  # @ wp-google-maps
3326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:292
3327
- #, fuzzy
3328
  msgid "Your category has been created."
3329
- msgstr "din polygon er oprettet"
3330
 
3331
  # @ wp-google-maps
3332
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:364
3333
- #, fuzzy
3334
  msgid "Your category has been saved."
3335
- msgstr "din polygon er gemt"
3336
 
3337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:374
3338
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:408
3339
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:439
3340
  msgid "All"
3341
- msgstr ""
3342
 
3343
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:412
3344
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:463
3345
  msgid "<em><small>No categories found</small></em>"
3346
- msgstr ""
3347
 
3348
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:498
3349
  msgid "All maps"
3350
- msgstr ""
3351
 
3352
  # @ wp-google-maps
3353
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:529
@@ -3360,85 +3280,84 @@ msgstr "ikon"
3360
 
3361
  # @ wp-google-maps
3362
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:530
3363
- #, fuzzy
3364
  msgid "Linked maps"
3365
- msgstr "Linket til"
3366
 
3367
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:255
3368
  msgid "Header 1 should be 'id', not"
3369
- msgstr ""
3370
 
3371
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:256
3372
  msgid "Header 2 should be 'map_id', not"
3373
- msgstr ""
3374
 
3375
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:257
3376
  msgid "Header 3 should be 'address', not"
3377
- msgstr ""
3378
 
3379
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:258
3380
  msgid "Header 4 should be 'description', not"
3381
- msgstr ""
3382
 
3383
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:259
3384
  msgid "Header 5 should be 'pic', not"
3385
- msgstr ""
3386
 
3387
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:260
3388
  msgid "Header 6 should be 'link', not"
3389
- msgstr ""
3390
 
3391
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:261
3392
  msgid "Header 7 should be 'icon', not"
3393
- msgstr ""
3394
 
3395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:262
3396
  msgid "Header 8 should be 'lat', not"
3397
- msgstr ""
3398
 
3399
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:263
3400
  msgid "Header 9 should be 'lng', not"
3401
- msgstr ""
3402
 
3403
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:264
3404
  msgid "Header 10 should be 'anim', not"
3405
- msgstr ""
3406
 
3407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:265
3408
  msgid "Header 11 should be 'title', not"
3409
- msgstr ""
3410
 
3411
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:266
3412
  msgid "Header 12 should be 'infoopen', not"
3413
- msgstr ""
3414
 
3415
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:267
3416
  msgid "Header 13 should be 'category', not"
3417
- msgstr ""
3418
 
3419
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:268
3420
  msgid "Header 14 should be 'approved', not"
3421
- msgstr ""
3422
 
3423
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:269
3424
  msgid "Header 15 should be 'retina', not"
3425
- msgstr ""
3426
 
3427
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:271
3428
  msgid "CSV import failed"
3429
- msgstr ""
3430
 
3431
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
3432
  #, php-format
3433
  msgid "Cannot import line %d as the LAT and/or LNG is not defined."
3434
- msgstr ""
3435
 
3436
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
3437
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
3438
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:581
3439
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:662
3440
  msgid "Your CSV file has been successfully imported"
3441
- msgstr ""
3442
 
3443
  # @ wp-google-maps
3444
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:73
@@ -3457,9 +3376,8 @@ msgstr "slet denne polygon"
3457
  # @ wp-google-maps
3458
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
3459
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
3460
- #, fuzzy
3461
  msgid "Delete"
3462
- msgstr "Slet markør"
3463
 
3464
  # @ wp-google-maps
3465
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:42
@@ -3487,53 +3405,48 @@ msgstr "slet denne polylinie"
3487
 
3488
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
3489
  msgid "Select a Map Type (beta)"
3490
- msgstr ""
3491
 
3492
  # @ wp-google-maps
3493
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
3494
- #, fuzzy
3495
  msgid "Show distance in:"
3496
- msgstr "vis distance i"
3497
 
3498
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
3499
  msgid "Show bouncing icon:"
3500
- msgstr ""
3501
 
3502
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
3503
  msgid "Hide markers until search is done:"
3504
- msgstr ""
3505
 
3506
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
3507
  msgid "Default 'To' Address:"
3508
- msgstr ""
3509
 
3510
  # @ wp-google-maps
3511
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
3512
- #, fuzzy
3513
  msgid "Enter Address"
3514
- msgstr "adresse"
3515
 
3516
  # @ wp-google-maps
3517
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:252
3518
- #, fuzzy
3519
  msgid "Basic Table"
3520
- msgstr "Fusion Table ID"
3521
 
3522
  # @ wp-google-maps
3523
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:253
3524
- #, fuzzy
3525
  msgid "Basic List"
3526
- msgstr "Fusion Table ID"
3527
 
3528
  # @ wp-google-maps
3529
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:254
3530
- #, fuzzy
3531
  msgid "Advanced Table"
3532
- msgstr "Avancerede markører"
3533
 
3534
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
3535
  msgid "Blank Map"
3536
- msgstr ""
3537
 
3538
  # @ wp-google-maps
3539
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:221
@@ -3554,9 +3467,8 @@ msgstr "Rediger denne markør"
3554
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:237
3555
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5846
3556
  #: wpGoogleMaps.php:5846
3557
- #, fuzzy
3558
  msgid "Approve this marker"
3559
- msgstr "Slet denne markør"
3560
 
3561
  # @ wp-google-maps
3562
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:239
@@ -3575,132 +3487,119 @@ msgstr "Billede"
3575
 
3576
  # @ wp-google-maps
3577
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:169
3578
- #, fuzzy
3579
  msgid "Visitor Generated Markers - Settings"
3580
- msgstr "generelle Kort indstillinger"
3581
 
3582
  # @ wp-google-maps
3583
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:175
3584
- #, fuzzy
3585
  msgid "Enable Visitor Generated Markers?"
3586
- msgstr "generelle Kort indstillinger"
3587
 
3588
  # @ wp-google-maps
3589
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:184
3590
- #, fuzzy
3591
  msgid "Who can add markers?"
3592
- msgstr "Avancerede markører"
3593
 
3594
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
3595
  msgid "Everyone"
3596
- msgstr ""
3597
 
3598
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
3599
  msgid "Registered Users"
3600
- msgstr ""
3601
 
3602
  # @ wp-google-maps
3603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
3604
- #, fuzzy
3605
  msgid "Allow users to select a marker category?"
3606
- msgstr "Tillad at brugere kan filtrere efter kategori?"
3607
 
3608
  # @ wp-google-maps
3609
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:202
3610
- #, fuzzy
3611
  msgid "Allow users to upload images?"
3612
- msgstr "Tillad at brugere kan filtrere efter kategori?"
3613
 
3614
  # @ wp-google-maps
3615
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:306
3616
- #, fuzzy
3617
  msgid "Add your own marker"
3618
- msgstr "tilføj markør"
3619
 
3620
  # @ wp-google-maps
3621
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:314
3622
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:315
3623
- #, fuzzy
3624
  msgid "Marker Title"
3625
- msgstr "Markør breddegrad"
3626
 
3627
  # @ wp-google-maps
3628
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:318
3629
- #, fuzzy
3630
  msgid "Marker Address or GPS Location"
3631
- msgstr "Rediger markør lokation"
3632
 
3633
  # @ wp-google-maps
3634
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
3635
- #, fuzzy
3636
  msgid "Marker Address"
3637
- msgstr "adresse"
3638
 
3639
  # @ wp-google-maps
3640
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
3641
- #, fuzzy
3642
  msgid "Or click on the map and drag to add a marker"
3643
- msgstr "klik på kortet for at tilføje et toppunkt"
3644
 
3645
  # @ wp-google-maps
3646
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
3647
- #, fuzzy
3648
  msgid "Marker Description"
3649
- msgstr "Beskrivelse"
3650
 
3651
  # @ wp-google-maps
3652
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:338
3653
- #, fuzzy
3654
  msgid "Marker Category"
3655
- msgstr "Kategorier"
3656
 
3657
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:348
3658
  msgid "Please tick this box to prove you are human"
3659
- msgstr ""
3660
 
3661
  # @ wp-google-maps
3662
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
3663
- #, fuzzy
3664
  msgid "Add marker"
3665
- msgstr "tilføj markør"
3666
 
3667
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
3668
  msgid "A new marker has been submitted for your map"
3669
- msgstr ""
3670
 
3671
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
3672
  msgid ""
3673
  "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3674
  "version 5.50 to allow for these settings"
3675
  msgstr ""
 
 
3676
 
3677
  # @ wp-google-maps
3678
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
3679
- #, fuzzy
3680
  msgid "Visitor Generated Marker Settings"
3681
- msgstr "generelle Kort indstillinger"
3682
 
3683
  # @ wp-google-maps
3684
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:596
3685
- #, fuzzy
3686
  msgid "Visitor Marker Input Settings"
3687
- msgstr "generelle Kort indstillinger"
3688
 
3689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3690
  msgid "Strip all HTML tags in descriptions and titles"
3691
- msgstr ""
3692
 
3693
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
3694
  msgid "Automatically approve visitor generated markers"
3695
- msgstr ""
3696
 
3697
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3698
  msgid "Email me whenever there is a new marker"
3699
- msgstr ""
3700
 
3701
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3702
  msgid "Email address:"
3703
- msgstr ""
3704
 
3705
  # @ wp-google-maps
3706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:22
@@ -3889,22 +3788,20 @@ msgstr "OK! lad os komme igang"
3889
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:9
3890
  #: base/classes/widget_module.class.php:9
3891
  msgid "Add your map as a widget"
3892
- msgstr ""
3893
 
3894
  # @ wp-google-maps
3895
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:47
3896
  #: base/classes/widget_module.class.php:47
3897
- #, fuzzy
3898
  msgid "Select your map:"
3899
- msgstr "slet dit kort"
3900
 
3901
  # @ wp-google-maps
3902
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:3
3903
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:4
3904
  #: base/includes/credits.php:3 base/includes/welcome.php:4
3905
- #, fuzzy
3906
  msgid "Welcome to WP Google Maps version 6.3"
3907
- msgstr "Ny bruger af WP Google Maps?"
3908
 
3909
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
3910
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
@@ -3914,84 +3811,84 @@ msgid ""
3914
  "maps through a simple interface and powerful functionality along with world "
3915
  "class support."
3916
  msgstr ""
 
 
 
3917
 
3918
  # @ wp-google-maps
3919
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
3920
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
3921
  #: base/includes/credits.php:10 base/includes/welcome.php:11
3922
- #, fuzzy
3923
  msgid "Welcome"
3924
- msgstr "Velkommen til"
3925
 
3926
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:11
3927
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:12
3928
  #: base/includes/credits.php:11 base/includes/welcome.php:12
3929
  msgid "Credits"
3930
- msgstr ""
3931
 
3932
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:15
3933
  #: base/includes/credits.php:15
3934
  msgid "WP Google Maps is created by an international team of developers."
3935
- msgstr ""
3936
 
3937
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:16
3938
  #: base/includes/credits.php:16
3939
  msgid "Project Leaders"
3940
- msgstr ""
3941
 
3942
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:22
3943
  #: base/includes/credits.php:22
3944
  msgid "Founder &amp; Lead Developer"
3945
- msgstr ""
3946
 
3947
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:25
3948
  #: base/includes/credits.php:25
3949
  msgid "Contributers"
3950
- msgstr ""
3951
 
3952
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:30
3953
  #: base/includes/credits.php:30
3954
  msgid "Developer"
3955
- msgstr ""
3956
 
3957
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:35
3958
  #: base/includes/credits.php:35
3959
  msgid "Developer &amp; Support"
3960
- msgstr ""
3961
 
3962
  # @ wp-google-maps
3963
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:50
3964
  #: base/includes/credits.php:50
3965
- #, fuzzy
3966
  msgid "Marketing"
3967
- msgstr "Markør breddegrad"
3968
 
3969
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:55
3970
  #: base/includes/credits.php:55
3971
  msgid "Security suggestions"
3972
- msgstr ""
3973
 
3974
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3975
  #: base/includes/credits.php:59
3976
  msgid "Want to see your name on this page?"
3977
- msgstr ""
3978
 
3979
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3980
  #: base/includes/credits.php:59
3981
  msgid "Get involved on GitHub."
3982
- msgstr ""
3983
 
3984
  # @ wp-google-maps
3985
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:18
3986
  #: base/includes/welcome.php:18
3987
- #, fuzzy
3988
  msgid "Unlimited Markers"
3989
- msgstr "vis alle markører"
3990
 
3991
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:19
3992
  #: base/includes/welcome.php:19
3993
  msgid "Create as many markers as you like"
3994
- msgstr ""
3995
 
3996
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
3997
  #: base/includes/welcome.php:31
@@ -3999,13 +3896,14 @@ msgid ""
3999
  "Select from various <a href='http://wpgmaps.com/map-themes/' "
4000
  "target='_BLANK'>map themes</a>, or make your own."
4001
  msgstr ""
 
 
4002
 
4003
  # @ wp-google-maps
4004
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
4005
  #: base/includes/welcome.php:97
4006
- #, fuzzy
4007
  msgid "Support Desk"
4008
- msgstr "Support Forum"
4009
 
4010
  # @ wp-google-maps
4011
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
@@ -4046,7 +3944,7 @@ msgstr "linie tykkelse"
4046
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:320
4047
  #: wpGoogleMaps.php:320
4048
  msgid "My first map"
4049
- msgstr ""
4050
 
4051
  # @ wp-google-maps
4052
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
@@ -4075,19 +3973,21 @@ msgid ""
4075
  "Timthumb does not have 'write' permission for the cache directory. Please "
4076
  "enable 'write' permissions (755 or 777) for "
4077
  msgstr ""
 
 
4078
 
4079
  # @ default
4080
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
4081
  #: wpGoogleMaps.php:551
4082
  msgid "in order for images to show up while using Timthumb. Please see "
4083
- msgstr ""
4084
 
4085
  # @ default
4086
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
4087
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
4088
  #: wpGoogleMaps.php:553 wpGoogleMaps.php:6027
4089
  msgid "this page"
4090
- msgstr ""
4091
 
4092
  # @ default
4093
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:555
@@ -4096,11 +3996,13 @@ msgid ""
4096
  "for help on how to do it. Alternatively, you can disable the use of Timthumb "
4097
  "in Maps->Settings"
4098
  msgstr ""
 
 
4099
 
4100
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
4101
  #: wpGoogleMaps.php:2436
4102
  msgid "DOMDocument is not enabled"
4103
- msgstr ""
4104
 
4105
  # @ default
4106
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2540
@@ -4108,7 +4010,7 @@ msgstr ""
4108
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2555
4109
  #: wpGoogleMaps.php:2540 wpGoogleMaps.php:2550 wpGoogleMaps.php:2555
4110
  msgid "Could not save XML file"
4111
- msgstr ""
4112
 
4113
  # @ wp-google-maps
4114
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
@@ -4185,7 +4087,7 @@ msgstr "support forum."
4185
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3857
4186
  #: wpGoogleMaps.php:3857
4187
  msgid "There was a problem deleting the map."
4188
- msgstr ""
4189
 
4190
  # @ wp-google-maps
4191
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
@@ -4202,13 +4104,13 @@ msgstr "er du sikker på at du vil slette dette kort"
4202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3870
4203
  #: wpGoogleMaps.php:3870
4204
  msgid "There was a problem duplicating the map."
4205
- msgstr ""
4206
 
4207
  # @ default
4208
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3972
4209
  #: wpGoogleMaps.php:3972
4210
  msgid "There was a problem deleting the marker."
4211
- msgstr ""
4212
 
4213
  # @ wp-google-maps
4214
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
@@ -4230,13 +4132,16 @@ msgid ""
4230
  "update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride "
4231
  "current jQuery with version 1.11.3'."
4232
  msgstr ""
 
 
 
 
4233
 
4234
  # @ wp-google-maps
4235
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
4236
  #: wpGoogleMaps.php:4210
4237
- #, fuzzy
4238
  msgid "Enable Usage Tracking"
4239
- msgstr "Aktiver vejvisning?"
4240
 
4241
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
4242
  #: wpGoogleMaps.php:4212
@@ -4245,34 +4150,33 @@ msgid ""
4245
  "15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
4246
  "the administrator's email address)"
4247
  msgstr ""
 
 
 
4248
 
4249
  # @ wp-google-maps
4250
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4221
4251
  #: wpGoogleMaps.php:4221
4252
- #, fuzzy
4253
  msgid "Marker InfoWindow Settings"
4254
- msgstr "Open Marker infoWindows af"
4255
 
4256
  # @ wp-google-maps
4257
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4296
4258
  #: wpGoogleMaps.php:4296
4259
- #, fuzzy
4260
  msgid "Google Maps API Key"
4261
- msgstr "Brug Google Maps API"
4262
 
4263
  # @ wp-google-maps
4264
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4300
4265
  #: wpGoogleMaps.php:4300
4266
- #, fuzzy
4267
  msgid "Google Maps API Key (required)"
4268
- msgstr "Brug Google Maps API"
4269
 
4270
  # @ wp-google-maps
4271
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4327
4272
  #: wpGoogleMaps.php:4327
4273
- #, fuzzy
4274
  msgid "Marker Data Location"
4275
- msgstr "Rediger markør lokation"
4276
 
4277
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
4278
  #: wpGoogleMaps.php:4421
@@ -4285,16 +4189,22 @@ msgid ""
4285
  "\" class=\"button button-secondary\">contact us</a> and we will help you as "
4286
  "soon as humanly possible!</p>"
4287
  msgstr ""
 
 
 
 
 
 
4288
 
4289
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
4290
  #: wpGoogleMaps.php:4426
4291
  msgid "We will not nag you again, promise!"
4292
- msgstr ""
4293
 
4294
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
4295
  #: wpGoogleMaps.php:4426
4296
  msgid "Close"
4297
- msgstr ""
4298
 
4299
  # @ wp-google-maps
4300
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
@@ -4313,7 +4223,7 @@ msgstr "Tilføj ny"
4313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
4314
  #: wpGoogleMaps.php:4446
4315
  msgid "Wizard"
4316
- msgstr ""
4317
 
4318
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
4319
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
@@ -4323,6 +4233,9 @@ msgid ""
4323
  "plugin. Should you be experiencing issues with your maps displaying, please "
4324
  "update Avada to version 3.9.4 or go to <a href='"
4325
  msgstr ""
 
 
 
4326
 
4327
  # @ wp-google-maps
4328
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
@@ -4417,19 +4330,18 @@ msgstr ""
4417
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
4418
  #: wpGoogleMaps.php:4773
4419
  msgid "Pro Upgrade"
4420
- msgstr ""
4421
 
4422
  # @ wp-google-maps
4423
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5004
4424
  #: wpGoogleMaps.php:5004
4425
- #, fuzzy
4426
  msgid "Query string"
4427
  msgstr "Query String"
4428
 
4429
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5009
4430
  #: wpGoogleMaps.php:5009
4431
  msgid "Show bouncing icon"
4432
- msgstr ""
4433
 
4434
  # @ wp-google-maps
4435
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5026
@@ -4452,9 +4364,8 @@ msgstr "Aktiver offentlig transport lag?"
4452
  # @ wp-google-maps
4453
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5057
4454
  #: wpGoogleMaps.php:5057
4455
- #, fuzzy
4456
  msgid "Maximum Zoom Level"
4457
- msgstr "Zoom level"
4458
 
4459
  # @ wp-google-maps
4460
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
@@ -4479,59 +4390,56 @@ msgstr "Læs data direkte fra dit Fusion Table."
4479
  # @ wp-google-maps
4480
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
4481
  #: wpGoogleMaps.php:5135
4482
- #, fuzzy
4483
  msgid ""
4484
  "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
4485
  "professional-version/?"
4486
  "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
4487
  "for only $39.99 once off</a>. Support and updates included forever."
4488
  msgstr ""
4489
- " resten af disse avancerede funktioner med Pro Versionen for kun <a href="
4490
- "\"http://www.wpgmaps.com/purchase-professional-version/?"
4491
- "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99</a>. "
4492
- "Support og opdateringer er inkluderet for evigt."
4493
 
4494
  # @ wp-google-maps
4495
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5141
4496
  #: wpGoogleMaps.php:5141
4497
- #, fuzzy
4498
  msgid "List Markers"
4499
- msgstr "vis alle markører"
4500
 
4501
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5146
4502
  #: wpGoogleMaps.php:5146
4503
  msgid "Advanced table with real time search and filtering"
4504
- msgstr ""
4505
 
4506
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
4507
  #: wpGoogleMaps.php:5147
4508
  msgid "beta"
4509
- msgstr ""
4510
 
4511
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5218
4512
  #: wpGoogleMaps.php:5218
4513
  msgid "Basic"
4514
- msgstr ""
4515
 
4516
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5219
4517
  #: wpGoogleMaps.php:5219
4518
  msgid "Show a basic list of your markers"
4519
- msgstr ""
4520
 
4521
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5228
4522
  #: wpGoogleMaps.php:5228
4523
  msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
4524
- msgstr ""
4525
 
4526
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5236
4527
  #: wpGoogleMaps.php:5236
4528
  msgid "Tabular"
4529
- msgstr ""
4530
 
4531
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
4532
  #: wpGoogleMaps.php:5237
4533
  msgid "Advanced, tabular marker listing functionality with real time filtering"
4534
- msgstr ""
4535
 
4536
  # @ wp-google-maps
4537
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
@@ -4550,6 +4458,7 @@ msgstr "Polygon"
4550
  #: wpGoogleMaps.php:5412
4551
  msgid "Please add the current marker before trying to add another marker"
4552
  msgstr ""
 
4553
 
4554
  # @ wp-google-maps
4555
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
@@ -4572,21 +4481,19 @@ msgstr "Vælg"
4572
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
4573
  #: wpGoogleMaps.php:5500
4574
  msgid "Add dynamic heatmap data"
4575
- msgstr ""
4576
 
4577
  # @ wp-google-maps
4578
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
4579
  #: wpGoogleMaps.php:5500
4580
- #, fuzzy
4581
  msgid "with the Pro version."
4582
  msgstr "med Pro Versionen"
4583
 
4584
  # @ wp-google-maps
4585
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5501
4586
  #: wpGoogleMaps.php:5501
4587
- #, fuzzy
4588
  msgid "View a demo."
4589
- msgstr "Gennemgå vores dokumentation"
4590
 
4591
  # @ wp-google-maps
4592
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
@@ -4611,7 +4518,7 @@ msgstr ""
4611
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
4612
  #: wpGoogleMaps.php:5537
4613
  msgid "Add detailed information to your markers!"
4614
- msgstr ""
4615
 
4616
  # @ wp-google-maps
4617
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
@@ -4710,7 +4617,6 @@ msgstr ""
4710
  # @ wp-google-maps
4711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5778
4712
  #: wpGoogleMaps.php:5778
4713
- #, fuzzy
4714
  msgid ""
4715
  "There are too many markers to make use of the live edit function. The "
4716
  "maximum amount for this functionality is 5000 markers. Anything more than "
@@ -4726,9 +4632,8 @@ msgstr ""
4726
  # @ wp-google-maps
4727
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5844
4728
  #: wpGoogleMaps.php:5844
4729
- #, fuzzy
4730
  msgid "Edit this marker location"
4731
- msgstr "Rediger markør lokation"
4732
 
4733
  # @ default
4734
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6023
@@ -4737,18 +4642,20 @@ msgid ""
4737
  "The plugin directory does not have 'write' permissions. Please enable "
4738
  "'write' permissions (755) for "
4739
  msgstr ""
 
 
4740
 
4741
  # @ default
4742
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
4743
  #: wpGoogleMaps.php:6025
4744
  msgid "in order for this plugin to work! Please see "
4745
- msgstr ""
4746
 
4747
  # @ default
4748
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6029
4749
  #: wpGoogleMaps.php:6029
4750
  msgid "for help on how to do it."
4751
- msgstr ""
4752
 
4753
  # @ wp-google-maps
4754
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
@@ -4777,40 +4684,41 @@ msgid ""
4777
  "to time, run into conflicts with the thousands of themes and other plugins "
4778
  "on the market."
4779
  msgstr ""
 
 
 
4780
 
4781
  # @ wp-google-maps
4782
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
4783
  #: wpGoogleMaps.php:6501
4784
- #, fuzzy
4785
  msgid "Support forum"
4786
- msgstr "support forum."
4787
 
4788
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6658
4789
  #: wpGoogleMaps.php:6658
4790
  msgid "United States of America"
4791
- msgstr ""
4792
 
4793
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6668
4794
  #: wpGoogleMaps.php:6668
4795
  msgid "View the instruction video"
4796
- msgstr ""
4797
 
4798
  # @ wp-google-maps
4799
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6669
4800
  #: wpGoogleMaps.php:6669
4801
- #, fuzzy
4802
  msgid "Read the documentation"
4803
- msgstr "Gennemgå vores dokumentation"
4804
 
4805
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6670
4806
  #: wpGoogleMaps.php:6670
4807
  msgid "Important Notification"
4808
- msgstr ""
4809
 
4810
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6671
4811
  #: wpGoogleMaps.php:6671
4812
  msgid "You can read more about that here."
4813
- msgstr ""
4814
 
4815
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
4816
  #: wpGoogleMaps.php:6672
@@ -4818,32 +4726,34 @@ msgid ""
4818
  "Before you begin please note that *ALL* Google Maps now require an API key "
4819
  "to function."
4820
  msgstr ""
 
 
4821
 
4822
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
4823
  #: wpGoogleMaps.php:6673
4824
  msgid "Create an API key now (free)"
4825
- msgstr ""
4826
 
4827
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
4828
  #: wpGoogleMaps.php:6674
4829
  msgid "Once created, simply paste your API key here and press save."
4830
- msgstr ""
4831
 
4832
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
4833
  #: wpGoogleMaps.php:6675
4834
  #, php-format
4835
  msgid "Need help? %s or %s."
4836
- msgstr ""
4837
 
4838
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6676
4839
  #: wpGoogleMaps.php:6676
4840
  msgid "Google Maps JavaScript API Key: "
4841
- msgstr ""
4842
 
4843
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
4844
  #: wpGoogleMaps.php:6678
4845
  msgid "Once saved, it may take up to 5 minutes for your map to display."
4846
- msgstr ""
4847
 
4848
  # @ wp-google-maps
4849
  #, fuzzy
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
  "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
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
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
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
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
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."
350
  msgstr ""
351
+ "Venligst <a href=‘update-core.php’>opdater din WP Google Maps GULD version </"
352
+ "a>. Din nuværende Guld version er ikke kompatible med din nuværende Pro "
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
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
 
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
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
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
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
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
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
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
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
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
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
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
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
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
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 ""
1015
  "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
1016
  "maps-api.html</a>"
1017
  msgstr ""
1018
+ "Læs data direkte fra din Fusion Table. For mere information, se <a "
1019
+ "href=‘http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
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
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
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
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
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
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
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
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."
1556
+ msgstr ""
1557
+ "Kort ID’et du har indtastet eksistere ikke. Venligst indset et kort ID der "
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 " anvisninger til"
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 " anvisninger"
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 "Henter anvisninger…"
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 "Nulstil anvisninger"
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 "Print anvisninger"
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 " anvisninger"
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
1677
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3650
1678
  msgid "Please fill out both the \"from\" and \"to\" fields"
1679
+ msgstr "Venligst udfyld både “fra” og “til” feltet"
1680
 
1681
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3653
1682
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3655
1683
  msgid "Getting your current location address..."
1684
+ msgstr "Henter din nuværende adresse…"
1685
 
1686
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3659
1687
  msgid "Show _MENU_ entries"
1688
+ msgstr "Vis_MENU_poster"
1689
 
1690
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3660
1691
  msgid "Nothing found - sorry"
1692
+ msgstr "Intet fundet - beklager"
1693
 
1694
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3661
1695
  msgid "Showing _START_ to _END_ of _TOTAL_ records"
1696
+ msgstr "Vis_START_til_SLUT_af_TOTAL_poster"
1697
 
1698
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3662
1699
  msgid "Showing 0 to 0 of 0 records"
1700
+ msgstr "Vis 0 til 0 af 0 poster"
1701
 
1702
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3663
1703
  msgid "(filtered from _MAX_ total records)"
1704
+ msgstr "(filtreret fra _MAX_ total poster)"
1705
 
1706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3664
1707
  msgid "First"
1708
+ msgstr "Først"
1709
 
1710
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3665
1711
  msgid "Last"
1712
+ msgstr "Sidst"
1713
 
1714
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3666
1715
  msgid "Next"
1716
+ msgstr "Næste"
1717
 
1718
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3667
1719
  msgid "Previous"
1720
+ msgstr "Forrige"
1721
 
1722
  # @ wp-google-maps
1723
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3668
1730
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3673
1731
  msgid "Please prove that you are human by checking the checkbox above"
1732
  msgstr ""
1733
+ "Venligst bevis at du er menneske ved at markere afkrydsningsfeltet ovenfor"
1734
 
1735
  # @ wp-google-maps
1736
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1737
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:7
1738
  #: base/classes/widget_module.class.php:7
 
1739
  msgid "WP Google Maps"
1740
+ msgstr "WP Google Maps"
1741
 
1742
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1743
  msgid ""
1745
  "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1746
  "the same time in order for the plugin to function correctly."
1747
  msgstr ""
1748
+ "Venligst sørg for at du har <strong>both</strong> the <strong>Basic</strong> "
1749
+ "and <strong>Pro</strong> versioner af WP Google Maps installeret og "
1750
+ "aktiveret "
1751
 
1752
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
1753
  msgid "Download ALL marker data to a CSV file"
1754
+ msgstr "Download ALLE markørdata til en CSV fil"
1755
 
1756
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5068
1757
  msgid "Download ALL map data to a CSV file"
1758
+ msgstr "Download ALLE kortdata til en CSV fil"
1759
 
1760
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5069
1761
  msgid "Download ALL polygon data to a CSV file"
1762
+ msgstr "Download ALLE polygon data til en CSV fil"
1763
 
1764
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5070
1765
  msgid "Download ALL polyline data to a CSV file"
1766
+ msgstr "Download ALLE polyline data til en CSV fil"
1767
 
1768
  # @ wp-google-maps
1769
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5072
 
1770
  msgid "Advanced Options"
1771
+ msgstr "Avanceret muligheder"
1772
 
1773
  # @ wp-google-maps
1774
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5087
 
1775
  msgid "Map Data"
1776
+ msgstr "Kortdata"
1777
 
1778
  # @ wp-google-maps
1779
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5088
 
1780
  msgid "Marker Data"
1781
+ msgstr "Markørdata"
1782
 
1783
  # @ wp-google-maps
1784
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5089
1785
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:471
 
1786
  msgid "Polygon Data"
1787
+ msgstr "Polygondata"
1788
 
1789
  # @ wp-google-maps
1790
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5090
1791
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:492
 
1792
  msgid "Polyline Data"
1793
+ msgstr "polylinedata"
1794
 
1795
  # @ wp-google-maps
1796
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5095
 
1797
  msgid "Upload Map CSV File"
1798
+ msgstr "Upload Kort CSV Fil"
1799
 
1800
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5103
1801
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5117
1802
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5139
1803
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5158
1804
  msgid "Replace existing data with data in file"
1805
+ msgstr "Erstat eksisterende data med data i filen"
1806
 
1807
  # @ wp-google-maps
1808
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5106
1809
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5123
1810
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5142
1811
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5161
 
1812
  msgid "Upload File"
1813
+ msgstr "Upload Fil"
1814
 
1815
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5107
1816
  msgid "Download Map Data"
1817
+ msgstr "Download Kortdata"
1818
 
1819
  # @ wp-google-maps
1820
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5113
 
1821
  msgid "Upload Marker CSV File"
1822
+ msgstr "Upload billedeUpload Markør CSV Fil"
1823
 
1824
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5118
1825
  msgid ""
1826
  "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1827
+ msgstr "Automatisk geocode adresser til GPS koordinater hvis ikke de er givet"
1828
 
1829
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
1830
  msgid "Google API Key (Required)"
1831
+ msgstr "Google API Nøgle (Påkrævet)"
1832
 
1833
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1834
  msgid ""
1836
  "href='https://developers.google.com/maps/documentation/geocoding/"
1837
  "#Limits'>Geocoding Documentation</a>"
1838
  msgstr ""
1839
+ "Du skal bruge en Google Maps Geocode API nøgle for at dette fungere. Se <a "
1840
+ "href=‘https://developers.google.com/maps/documentation/geocoding/"
1841
+ "#Limits’>Geocoding Documentation</a>"
1842
 
1843
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1844
  msgid "There is a 0.12second delay between each request"
1845
+ msgstr "Der er en 0,12 sekunders forsinkelse mellem hver anmodning"
1846
 
1847
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5124
1848
  msgid "Download Marker Data"
1849
+ msgstr "Download Markørdata"
1850
 
1851
  # @ wp-google-maps
1852
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5131
 
1853
  msgid "Upload Polygon CSV File"
1854
+ msgstr "Upload Polygon CSV Fil"
1855
 
1856
  # @ wp-google-maps
1857
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5143
 
1858
  msgid "Download Polygon Data"
1859
+ msgstr "Download Polygon data"
1860
 
1861
  # @ wp-google-maps
1862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5150
 
1863
  msgid "Upload Polyline CSV File"
1864
+ msgstr "Upload Polyline CSV Fil"
1865
 
1866
  # @ wp-google-maps
1867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5162
 
1868
  msgid "Download Polyline Data"
1869
+ msgstr "Download Polyline Data"
1870
 
1871
  # @ wp-google-maps
1872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5166
 
1873
  msgid "Need help? Read the documentation."
1874
+ msgstr "Brug for hjælp? Læs dokumentationen."
1875
 
1876
  # @ wp-google-maps
1877
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5175
1878
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6471
1879
  #: wpGoogleMaps.php:6471
 
1880
  msgid "WP Google Maps Support"
1881
+ msgstr "WP Google Maps Support"
1882
 
1883
  # @ wp-google-maps
1884
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5178
1885
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6474
1886
  #: wpGoogleMaps.php:6474
 
1887
  msgid "Documentation"
1888
+ msgstr "Dokumentation"
1889
 
1890
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5180
1891
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6476
1893
  msgid ""
1894
  "Getting started? Read through some of these articles to help you along your "
1895
  "way."
1896
+ msgstr "Lige startet? Læs disse artikler for hjælp. "
1897
 
1898
  # @ wp-google-maps
1899
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
1900
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
1901
  #: wpGoogleMaps.php:6477
 
1902
  msgid "Documentation:"
1903
+ msgstr "Dokumentation:"
1904
 
1905
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5183
1906
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6479
1907
  #: wpGoogleMaps.php:6479
1908
  msgid "Creating your first map"
1909
+ msgstr "Opret dit første kort"
1910
 
1911
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5184
1912
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6480
1913
  #: wpGoogleMaps.php:6480
1914
  msgid "Using your map as a Widget"
1915
+ msgstr "Brug dit kort som en Widget"
1916
 
1917
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5185
1918
  msgid "Exporting and Importing your map markers"
1919
+ msgstr "Eksporter og Importer dine kort markører"
1920
 
1921
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5186
1922
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6481
1923
  #: wpGoogleMaps.php:6481
1924
  msgid "Changing the Google Maps language"
1925
+ msgstr "Ændre Google Kort sproget "
1926
 
1927
  # @ wp-google-maps
1928
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1929
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1930
  #: wpGoogleMaps.php:6482
 
1931
  msgid "WP Google Maps Documentation"
1932
+ msgstr "WP Google Maps dokumentation"
1933
 
1934
  # @ wp-google-maps
1935
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1936
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1937
  #: wpGoogleMaps.php:6482
 
1938
  msgid "View all documentation."
1939
+ msgstr "Se al dokumentation."
1940
 
1941
  # @ wp-google-maps
1942
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5191
1943
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6486
1944
  #: wpGoogleMaps.php:6486
 
1945
  msgid "Troubleshooting"
1946
+ msgstr "Fejlfinding"
1947
 
1948
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5193
1949
  msgid ""
1951
  "time to time, run into conflicts with the thousands of themes and other "
1952
  "plugins on the market."
1953
  msgstr ""
1954
+ "WP Google Maps Pro har en alsidig og bred vifte af funktioner, der kan, fra "
1955
+ "tid til anden, løbe ind i konflikt med de tusindvis af temaer og andre "
1956
+ "plugins på markedet."
1957
 
1958
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
1959
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
1960
  #: wpGoogleMaps.php:6489
1961
  msgid "Common issues:"
1962
+ msgstr "Almindelige problemer:"
1963
 
1964
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5196
1965
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6491
1966
  #: wpGoogleMaps.php:6491
1967
  msgid "My map is not showing on my website"
1968
+ msgstr "Mine kort vises ikke på min hjemmeside"
1969
 
1970
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5197
1971
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6492
1972
  #: wpGoogleMaps.php:6492
1973
  msgid "My markers are not showing on my map in the front-end"
1974
+ msgstr "Mine markører vises ikke på mit kort i front-end"
1975
 
1976
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5198
1977
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6493
1978
  #: wpGoogleMaps.php:6493
1979
  msgid "I'm getting jQuery errors showing on my website"
1980
+ msgstr "Der vises jQuery fejl på min hjemmeside"
1981
 
1982
  # @ wp-google-maps
1983
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5202
1987
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6497
1988
  #: base/includes/credits.php:40 base/includes/credits.php:45
1989
  #: wpGoogleMaps.php:3831 wpGoogleMaps.php:6497
 
1990
  msgid "Support"
1991
+ msgstr "Support"
1992
 
1993
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5204
1994
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6499
1995
  #: wpGoogleMaps.php:6499
1996
  msgid "Still need help? Use one of these links below."
1997
+ msgstr "Har du stadig brug for hjælp? Brug en af følgende links."
1998
 
1999
  # @ wp-google-maps
2000
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5206
 
2001
  msgid "Support desk"
2002
+ msgstr "Supportdesk"
2003
 
2004
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5207
2005
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6502
2006
  #: wpGoogleMaps.php:6502
2007
  msgid "Contact us"
2008
+ msgstr "Kontakt os"
2009
 
2010
  # @ wp-google-maps
2011
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5223
2026
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4150
2027
  #: wpGoogleMaps.php:4150
2028
  msgid "InfoWindows"
2029
+ msgstr "Info vindue"
2030
 
2031
  # @ wp-google-maps
2032
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5249
2034
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:239
2035
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4151
2036
  #: wpGoogleMaps.php:4151
 
2037
  msgid "Marker Listing"
2038
+ msgstr "Markørlister"
2039
 
2040
  # @ wp-google-maps
2041
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5250
2047
 
2048
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5251
2049
  msgid "Visitor Generated Markers"
2050
+ msgstr "Besøgende Genereret Markører"
2051
 
2052
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5252
2053
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4153
2054
  #: wpGoogleMaps.php:4153
2055
  msgid "Error Log"
2056
+ msgstr "Fejl Log"
2057
 
2058
  # @ wp-google-maps
2059
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5270
2084
 
2085
  # @ wp-google-maps
2086
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5393
 
2087
  msgid "Visitor Generated Markers Settings"
2088
+ msgstr "Besøgende Genereret Markører Indstillinger"
2089
 
2090
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
2091
  msgid "Purchase the Visitor Generated Markers Add-on"
2092
+ msgstr "Køb Besøgende Genereret Markører Add-on"
2093
 
2094
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
2095
  msgid ""
2096
  "to enable this feature. <br /><br />If you have already purchased it please "
2097
  "ensure that you have uploaded activated the plugin."
2098
  msgstr ""
2099
+ "for at aktivere denne funktion. <br /><br /> Hvis du allerede har købt den, "
2100
+ "venligst sørg for at du har uploadet og aktiveret pluginen."
2101
 
2102
  # @ default
2103
  # @ wp-google-maps
2104
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
2105
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
2106
  #: wpGoogleMaps.php:4233
 
2107
  msgid "Marker Listing Settings"
2108
+ msgstr "Markør Liste Indstillinger"
2109
 
2110
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
2111
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
2114
  "Changing these settings will alter the way the marker list appears on your "
2115
  "website."
2116
  msgstr ""
2117
+ "Ændringer i disse indstillinger vil ændre måden markørerne vises på, på din "
2118
+ "hjemmeside."
2119
 
2120
  # @ wp-google-maps
2121
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
2122
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
2123
  #: wpGoogleMaps.php:4240
 
2124
  msgid "Advanced Marker Listing"
2125
+ msgstr "Avancerede markørerlister"
2126
 
2127
  # @ wp-google-maps
2128
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
 
2129
  msgid "Basic Marker Listings"
2130
+ msgstr "Basis Markørlister"
2131
 
2132
  # @ wp-google-maps
2133
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5476
2134
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4243
2135
  #: wpGoogleMaps.php:4243
 
2136
  msgid "Column settings"
2137
+ msgstr "Kolonne indstillinger"
2138
 
2139
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5478
2140
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4245
2141
  #: wpGoogleMaps.php:4245
2142
  msgid "Hide the Icon column"
2143
+ msgstr "Gem Ikon Kolonnen"
2144
 
2145
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5479
2146
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4246
2147
  #: wpGoogleMaps.php:4246
2148
  msgid "Hide the Title column"
2149
+ msgstr "Gem Titel Kolonnen"
2150
 
2151
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5480
2152
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4247
2153
  #: wpGoogleMaps.php:4247
2154
  msgid "Hide the Address column"
2155
+ msgstr "Gem Adresse kolonnen"
2156
 
2157
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5481
2158
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4248
2159
  #: wpGoogleMaps.php:4248
2160
  msgid "Hide the Category column"
2161
+ msgstr "Gem Kategori kolonnen"
2162
 
2163
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5482
2164
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4249
2165
  #: wpGoogleMaps.php:4249
2166
  msgid "Hide the Description column"
2167
+ msgstr "Gem Deskriptions kolonnen"
2168
 
2169
  # @ wp-google-maps
2170
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5486
 
2171
  msgid "Show X items by default"
2172
+ msgstr "skal InfoWindow åbne som standardVis X enheder efter standart"
2173
 
2174
  # @ wp-google-maps
2175
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5501
2176
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4255
2177
  #: wpGoogleMaps.php:4255
 
2178
  msgid "Carousel Marker Listing"
2179
+ msgstr "Karusel Markørlisten"
2180
 
2181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5504
2182
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4258
2183
  #: wpGoogleMaps.php:4258
2184
  msgid "Theme selection"
2185
+ msgstr "Tema valgt"
2186
 
2187
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5507
2188
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4261
2189
  #: wpGoogleMaps.php:4261
2190
  msgid "Sky"
2191
+ msgstr "Sky"
2192
 
2193
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5508
2194
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4262
2195
  #: wpGoogleMaps.php:4262
2196
  msgid "Sun"
2197
+ msgstr "Sol"
2198
 
2199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5509
2200
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4263
2201
  #: wpGoogleMaps.php:4263
2202
  msgid "Earth"
2203
+ msgstr "Jord"
2204
 
2205
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5510
2206
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4264
2207
  #: wpGoogleMaps.php:4264
2208
  msgid "Monotone"
2209
+ msgstr "Monoton"
2210
 
2211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5511
2212
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4265
2213
  #: wpGoogleMaps.php:4265
2214
  msgid "PinkPurple"
2215
+ msgstr "PinkLilla"
2216
 
2217
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5512
2218
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4266
2219
  #: wpGoogleMaps.php:4266
2220
  msgid "White"
2221
+ msgstr "Hvid"
2222
 
2223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5513
2224
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4267
2225
  #: wpGoogleMaps.php:4267
2226
  msgid "Black"
2227
+ msgstr "Sort"
2228
 
2229
  # @ wp-google-maps
2230
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5518
2231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4272
2232
  #: wpGoogleMaps.php:4272
 
2233
  msgid "Carousel settings"
2234
+ msgstr "Karusel indstillinger"
2235
 
2236
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5520
2237
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4274
2238
  #: wpGoogleMaps.php:4274
2239
  msgid "Hide the Image"
2240
+ msgstr "Gem billedet"
2241
 
2242
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5521
2243
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4275
2244
  #: wpGoogleMaps.php:4275
2245
  msgid "Hide the Title"
2246
+ msgstr "Gem titelen"
2247
 
2248
  # @ wp-google-maps
2249
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5522
2250
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4276
2251
  #: wpGoogleMaps.php:4276
 
2252
  msgid "Hide the Marker Icon"
2253
+ msgstr "Gem Markørikonet"
2254
 
2255
  # @ wp-google-maps
2256
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5523
2257
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4277
2258
  #: wpGoogleMaps.php:4277
 
2259
  msgid "Hide the Address"
2260
+ msgstr "Gem Adressen"
2261
 
2262
  # @ wp-google-maps
2263
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5524
2264
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4278
2265
  #: wpGoogleMaps.php:4278
 
2266
  msgid "Hide the Description"
2267
+ msgstr "Gem Beskrivelsen"
2268
 
2269
  # @ wp-google-maps
2270
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5525
2271
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4279
2272
  #: wpGoogleMaps.php:4279
 
2273
  msgid "Hide the Marker Link"
2274
+ msgstr "Gem Markørlinket"
2275
 
2276
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5526
2277
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4280
2278
  #: wpGoogleMaps.php:4280
2279
  msgid "Hide the Directions Link"
2280
+ msgstr "Gem anvisningslinket"
2281
 
2282
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5527
2283
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4281
2284
  #: wpGoogleMaps.php:4281
2285
  msgid "Resize Images with Timthumb"
2286
+ msgstr "Skaler Billeder med Timthumb"
2287
 
2288
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5528
2289
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4282
2290
  #: wpGoogleMaps.php:4282
2291
  msgid "Enable lazyload of images"
2292
+ msgstr "Aktiver lazyload af billeder"
2293
 
2294
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5529
2295
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4283
2296
  #: wpGoogleMaps.php:4283
2297
  msgid "Enable autoheight"
2298
+ msgstr "Aktiver autohøjde"
2299
 
2300
  # @ wp-google-maps
2301
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5530
2302
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4284
2303
  #: wpGoogleMaps.php:4284
 
2304
  msgid "Enable pagination"
2305
+ msgstr "Aktiver paginering"
2306
 
2307
  # @ wp-google-maps
2308
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5531
2309
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4285
2310
  #: wpGoogleMaps.php:4285
 
2311
  msgid "Enable navigation"
2312
+ msgstr "Aktiver vejvisning"
2313
 
2314
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5532
2315
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4286
2316
  #: wpGoogleMaps.php:4286
2317
  msgid "Items"
2318
+ msgstr "Poster"
2319
 
2320
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5533
2321
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4287
2322
  #: wpGoogleMaps.php:4287
2323
  msgid "Autoplay after x milliseconds (1000 = 1 second)"
2324
+ msgstr "Autoafspil efter x millisekunder (1000 = 1 sekundt)"
2325
 
2326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5548
2327
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5549
2332
  #: wpGoogleMaps.php:4311 wpGoogleMaps.php:4321 wpGoogleMaps.php:4342
2333
  #: wpGoogleMaps.php:4352
2334
  msgid "You can use the following"
2335
+ msgstr "Du kan benytte det følgende "
2336
 
2337
  # @ wp-google-maps
2338
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5577
2362
 
2363
  # @ wp-google-maps
2364
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
 
2365
  msgid "Google Maps API Key (optional)"
2366
+ msgstr "Google Maps API nøgle (valgfri)"
2367
 
2368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
2369
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
2375
  "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2376
  "this. "
2377
  msgstr ""
2378
+ "Du kan opnå denne API nøgle ved at benytte formlen <a href=‘https://console."
2379
+ "developers.google.com' target=‘_BLANK’>Google Developers Console</a>. Vores "
2380
+ "<a href=‘http://www.wpgmaps.com/documentation/creating-a-google-maps-api-"
2381
+ "key/' target=‘_BLANK’>documentation</a> giver en fuld guide til at opnå "
2382
+ "denne."
2383
 
2384
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
2385
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
2388
  "We suggest that you change the two fields below ONLY if you are experiencing "
2389
  "issues when trying to save the marker XML files."
2390
  msgstr ""
2391
+ "Vi foreslår at du ændre de to nedenstående felter, KUN hvis du oplever "
2392
+ "problemet når du prøver at gemme markør XML filer."
2393
 
2394
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
2395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
2396
  #: wpGoogleMaps.php:4330
2397
  msgid "Pull marker data from"
2398
+ msgstr "Hent markør data fra"
2399
 
2400
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5615
2401
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4332
2402
  #: wpGoogleMaps.php:4332
2403
  msgid "Database (Great for small amounts of markers)"
2404
+ msgstr "Database (Godt for små mængder af markører)"
2405
 
2406
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5616
2407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4333
2408
  #: wpGoogleMaps.php:4333
2409
  msgid "XML File (Great for large amounts of markers)"
2410
+ msgstr "XML filer (Godt for større mængder af markører)"
2411
 
2412
  # @ wp-google-maps
2413
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5620
2426
  #: wpGoogleMaps.php:4312 wpGoogleMaps.php:4322 wpGoogleMaps.php:4343
2427
  #: wpGoogleMaps.php:4353
2428
  msgid "Currently using"
2429
+ msgstr "Bruger nuværende"
2430
 
2431
  # @ wp-google-maps
2432
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5630
2442
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4357
2443
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4360
2444
  #: wpGoogleMaps.php:4357 wpGoogleMaps.php:4360
 
2445
  msgid "Custom CSS"
2446
+ msgstr "Brugerdefineret CSS"
2447
 
2448
  # @ default
2449
  # @ wp-google-maps
2465
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4161
2466
  #: wpGoogleMaps.php:4161
2467
  msgid "Disable StreetView"
2468
+ msgstr "Deaktiver Gade syn"
2469
 
2470
  # @ default
2471
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5735
2472
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4162
2473
  #: wpGoogleMaps.php:4162
2474
  msgid "Disable Zoom Controls"
2475
+ msgstr "Deaktiver Zoom Kontrol"
2476
 
2477
  # @ default
2478
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5736
2479
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4163
2480
  #: wpGoogleMaps.php:4163
2481
  msgid "Disable Pan Controls"
2482
+ msgstr "Deaktiver Pan Kontrol"
2483
 
2484
  # @ default
2485
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5737
2486
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4164
2487
  #: wpGoogleMaps.php:4164
2488
  msgid "Disable Map Type Controls"
2489
+ msgstr "Deaktiver Kort Type Kontrol"
2490
 
2491
  # @ wp-google-maps
2492
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5738
2518
 
2519
  # @ wp-google-maps
2520
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5748
 
2521
  msgid "Filter by category displayed as"
2522
+ msgstr "Filtrer efter kategori vis efter"
2523
 
2524
  # @ wp-google-maps
2525
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5750
 
2526
  msgid "Dropdown"
2527
+ msgstr "Dropdown"
2528
 
2529
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5751
2530
  msgid "Checkboxes"
2531
+ msgstr "Afkrydsningsfelter"
2532
 
2533
  # @ wp-google-maps
2534
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5757
2544
  "Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
2545
  "receiving jQuery related errors after updating to WordPress 4.5)"
2546
  msgstr ""
2547
+ "Erstat nuværende version af jQuery med version 1.11.3 (Afkryds denne box "
2548
+ "hvis du modtager jQuery relateret fejl efter updatering til WordPress 4.5) "
2549
 
2550
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
2551
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
2554
  "Do not load the Google Maps API (Only check this if your theme loads the "
2555
  "Google Maps API by default)"
2556
  msgstr ""
2557
+ "Load ikke Google Maps API (Afkryds denne hvis dit tema loader Google Maps "
2558
+ "API automatisk)"
2559
 
2560
  # @ wp-google-maps
2561
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5771
2573
 
2574
  # @ wp-google-maps
2575
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5794
 
2576
  msgid "Retina Icon Width"
2577
+ msgstr "Retina Ikon Bredde"
2578
 
2579
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5798
2580
  msgid "Retina Icon Height"
2581
+ msgstr "Reting Ikon Højde"
2582
 
2583
  # @ wp-google-maps
2584
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5853
2585
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5855
2586
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6922
 
2587
  msgid "No Global Setting"
2588
+ msgstr "Ingen globale indstillinger"
2589
 
2590
  # @ wp-google-maps
2591
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5868
 
2592
  msgid "InfoWindow Settings"
2593
+ msgstr "Info Vindue Indstillinger"
2594
 
2595
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5904
2596
  msgid "Image Thumbnails"
2597
+ msgstr "Miniaturebilleder"
2598
 
2599
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5906
2600
  msgid "Do not use TimThumb"
2601
+ msgstr "Benyt ikke TimThumb"
2602
 
2603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5907
2604
  msgid ""
2606
  "Please check this box and make the necessary changes to your images using "
2607
  "the settings below.)"
2608
  msgstr ""
2609
+ "(Timthumb support vil blive afbrudt i den næste pro version. Venligst tjek "
2610
+ "denne box og lav de nødvendige ændringer på dit billede for at benytte "
2611
+ "understående indstillinger.)"
2612
 
2613
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
2614
  msgid "Resize Images"
2615
+ msgstr "Tilpas billede størrelse"
2616
 
2617
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5914
2618
  msgid "Resize all images to the below sizes"
2619
+ msgstr "Tilpas alle billeder til nedenstående størrelse"
2620
 
2621
  # @ wp-google-maps
2622
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5918
 
2623
  msgid "Default Image Width"
2624
+ msgstr "Standard Billede Bredde"
2625
 
2626
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5919
2627
  msgid "(can be left blank - max width will be limited to max infowindow width)"
2628
  msgstr ""
2629
+ "(kan efterlades blank - max bredde vil blive begrænset til max info vindue "
2630
+ "bredde)"
2631
 
2632
  # @ wp-google-maps
2633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5922
 
2634
  msgid "Default Image Height"
2635
+ msgstr "Standard billede Højde"
2636
 
2637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5923
2638
  msgid ""
2639
  "(can be left blank - leaving both the width and height blank will revert to "
2640
  "full size images being used)"
2641
  msgstr ""
2642
+ "(kan efterlades blank - efterlades både bredden og højden blank, vil fuld "
2643
+ "billedstørrelse benyttes)"
2644
 
2645
  # @ wp-google-maps
2646
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
 
2647
  msgid "Max InfoWindow Width"
2648
+ msgstr "Max Info Vindue Bredde"
2649
 
2650
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5927
2651
  msgid "(Minimum: 200px)"
2652
+ msgstr "(Minimum: 200px)"
2653
 
2654
  # @ wp-google-maps
2655
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5930
 
2656
  msgid "Other settings"
2657
+ msgstr "Andre instillinger"
2658
 
2659
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5932
2660
  msgid "Open links in a new window"
2661
+ msgstr "Åben links i et nyt billede"
2662
 
2663
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5933
2664
  msgid "(Tick this if you want to open your links in a new window)"
2665
+ msgstr "(Afkryds denne hvis du vil åbne et nyt link i et nyt vindue)"
2666
 
2667
  # @ wp-google-maps
2668
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5934
 
2669
  msgid "Hide the address field"
2670
+ msgstr "Skjul adresse feltet"
2671
 
2672
  # @ wp-google-maps
2673
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5938
 
2674
  msgid "Link text"
2675
+ msgstr "Linket text"
2676
 
2677
  # @ wp-google-maps
2678
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6215
2716
 
2717
  # @ wp-google-maps
2718
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6442
 
2719
  msgid "Your dataset has been created."
2720
+ msgstr "Dit datasæt er blevet oprettet."
2721
 
2722
  # @ wp-google-maps
2723
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6487
 
2724
  msgid "Your dataset has been saved."
2725
+ msgstr "Dit datasæt er blevet gemt."
2726
 
2727
  # @ wp-google-maps
2728
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6594
2880
 
2881
  # @ wp-google-maps
2882
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6913
 
2883
  msgid "No marker listing"
2884
+ msgstr "Ingen markør liste"
2885
 
2886
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6919
2887
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5641
2888
  #: wpGoogleMaps.php:5641
2889
  msgid "Copied to clipboard"
2890
+ msgstr "Kopieret til clipboard"
2891
 
2892
  # @ wp-google-maps
2893
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7015
3040
 
3041
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7071
3042
  msgid "Reset"
3043
+ msgstr "Reset"
3044
 
3045
  # @ wp-google-maps
3046
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7210
3053
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7211
3054
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4513
3055
  #: wpGoogleMaps.php:4513
 
3056
  msgid "Shortcode"
3057
+ msgstr "Genvejskode"
3058
 
3059
  # @ wp-google-maps
3060
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7221
3066
 
3067
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7222
3068
  msgid "Duplicate"
3069
+ msgstr "Dupliker"
3070
 
3071
  # @ wp-google-maps
3072
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7225
3097
 
3098
  # @ wp-google-maps
3099
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7417
 
3100
  msgid "Delete this dataset"
3101
+ msgstr "Slet dette datasæt"
3102
 
3103
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8001
3104
  msgid "Add heatmap data"
3105
+ msgstr "Tilføj heatmap data"
3106
 
3107
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8015
3108
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8103
3109
  msgid "Gradient"
3110
+ msgstr "Forløb"
3111
 
3112
  # @ wp-google-maps
3113
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
3118
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
3119
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
3120
  msgid "Blue"
3121
+ msgstr "Blå"
3122
 
3123
  # @ wp-google-maps
3124
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8056
3125
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8142
 
3126
  msgid "Save Dataset"
3127
+ msgstr "Gem datasæt"
3128
 
3129
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8088
3130
  msgid "Edit Dataset"
3131
+ msgstr "Rediger Datasæt"
3132
 
3133
  # @ wp-google-maps
3134
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
3135
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:18
 
3136
  msgid "Marker Categories"
3137
+ msgstr "Marker Kategorier"
3138
 
3139
  # @ wp-google-maps
3140
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
 
3141
  msgid "Add New Category"
3142
+ msgstr "Tilføj Ny kategori"
3143
 
3144
  # @ wp-google-maps
3145
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
3153
 
3154
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
3155
  msgid "Create marker categories"
3156
+ msgstr "Opret markør kategorier"
3157
 
3158
  # @ wp-google-maps
3159
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
3179
 
3180
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:32
3181
  msgid "There was a problem deleting the category."
3182
+ msgstr "Problem opstået ved sletning af denne kategori"
3183
 
3184
  # @ wp-google-maps
3185
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
 
3186
  msgid "Delete your Category"
3187
+ msgstr "Slet din kategori"
3188
 
3189
  # @ wp-google-maps
3190
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
 
3191
  msgid "Are you sure you want to delete the category"
3192
+ msgstr "Er du sikker på at du vil slette denne kategori"
3193
 
3194
  # @ wp-google-maps
3195
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:85
 
3196
  msgid "Add a Marker Category"
3197
+ msgstr "Tilføj en markør kategori"
3198
 
3199
  # @ wp-google-maps
3200
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:89
3201
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:171
 
3202
  msgid "Category Name"
3203
+ msgstr "Kategori navn"
3204
 
3205
  # @ wp-google-maps
3206
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:99
3207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:181
 
3208
  msgid "Category Marker"
3209
+ msgstr "Kategori Markør"
3210
 
3211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
3212
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
3214
  "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
3215
  "target='_BLANK' title='Great Google Map Markers'>here</a>"
3216
  msgstr ""
3217
+ "Få great kort markører <a href=‘http://mapicons.nicolasmollet.com/' "
3218
+ "target='_BLANK' title='Great Google Map Markers’>here</a>"
3219
 
3220
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
3221
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
3222
  msgid "Retina Ready"
3223
+ msgstr "Retina Klar"
3224
 
3225
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:105
3226
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:187
3227
  msgid "This marker is a retina-ready marker"
3228
+ msgstr "Denne markør er en retina-klar markør"
3229
 
3230
  # @ wp-google-maps
3231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:114
3232
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:196
 
3233
  msgid "Assigned to "
3234
+ msgstr "Tildelt til"
3235
 
3236
  # @ wp-google-maps
3237
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:127
3238
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:210
 
3239
  msgid "Save Category"
3240
+ msgstr "Gem kategori "
3241
 
3242
  # @ wp-google-maps
3243
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:166
 
3244
  msgid "Edit a Marker Category"
3245
+ msgstr "Rediger en Markør Kategori"
3246
 
3247
  # @ wp-google-maps
3248
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:292
 
3249
  msgid "Your category has been created."
3250
+ msgstr "Din kategori er blevet oprettet."
3251
 
3252
  # @ wp-google-maps
3253
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:364
 
3254
  msgid "Your category has been saved."
3255
+ msgstr "Din polygon er blevet gemt."
3256
 
3257
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:374
3258
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:408
3259
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:439
3260
  msgid "All"
3261
+ msgstr "Alle"
3262
 
3263
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:412
3264
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:463
3265
  msgid "<em><small>No categories found</small></em>"
3266
+ msgstr "<em><small>Ingen kategori fundet</small></em>"
3267
 
3268
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:498
3269
  msgid "All maps"
3270
+ msgstr "Alle kort"
3271
 
3272
  # @ wp-google-maps
3273
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:529
3280
 
3281
  # @ wp-google-maps
3282
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:530
 
3283
  msgid "Linked maps"
3284
+ msgstr "Knyttet kort"
3285
 
3286
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:255
3287
  msgid "Header 1 should be 'id', not"
3288
+ msgstr "Header 1 burder være ‘id’, ikke"
3289
 
3290
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:256
3291
  msgid "Header 2 should be 'map_id', not"
3292
+ msgstr "Header 2 burde være ‘map_id’, ikke"
3293
 
3294
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:257
3295
  msgid "Header 3 should be 'address', not"
3296
+ msgstr "Header 3 burde være ‘address’, ikke"
3297
 
3298
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:258
3299
  msgid "Header 4 should be 'description', not"
3300
+ msgstr "Header 4 burde være ‘description’, ikke"
3301
 
3302
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:259
3303
  msgid "Header 5 should be 'pic', not"
3304
+ msgstr "Header 5 burde være ‘pic’, ikke"
3305
 
3306
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:260
3307
  msgid "Header 6 should be 'link', not"
3308
+ msgstr "Header 6 burde være ‘link’, ikke"
3309
 
3310
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:261
3311
  msgid "Header 7 should be 'icon', not"
3312
+ msgstr "Header 7 burde være ‘ikon, ikke"
3313
 
3314
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:262
3315
  msgid "Header 8 should be 'lat', not"
3316
+ msgstr "Header 8 burde være ‘lat’, ikke"
3317
 
3318
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:263
3319
  msgid "Header 9 should be 'lng', not"
3320
+ msgstr "Header 9 burde være ‘lng’, ikke"
3321
 
3322
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:264
3323
  msgid "Header 10 should be 'anim', not"
3324
+ msgstr "Header 10 burde være ‘anim’, ikke"
3325
 
3326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:265
3327
  msgid "Header 11 should be 'title', not"
3328
+ msgstr "Header 11 burde være ‘titel’, ikke"
3329
 
3330
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:266
3331
  msgid "Header 12 should be 'infoopen', not"
3332
+ msgstr "Header 12 burde være ‘infoopen’, ikke"
3333
 
3334
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:267
3335
  msgid "Header 13 should be 'category', not"
3336
+ msgstr "Header 13 burde være ‘kategori’, ikke"
3337
 
3338
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:268
3339
  msgid "Header 14 should be 'approved', not"
3340
+ msgstr "Header 14 burde være ‘godkendt’, ikke"
3341
 
3342
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:269
3343
  msgid "Header 15 should be 'retina', not"
3344
+ msgstr "Header 15 burde være ‘retina’, ikke"
3345
 
3346
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:271
3347
  msgid "CSV import failed"
3348
+ msgstr "CSV import fejlede"
3349
 
3350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
3351
  #, php-format
3352
  msgid "Cannot import line %d as the LAT and/or LNG is not defined."
3353
+ msgstr "Kan ikke importere linje %d siden LAT og/eller LNG ikke er defineret."
3354
 
3355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
3356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
3357
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:581
3358
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:662
3359
  msgid "Your CSV file has been successfully imported"
3360
+ msgstr "Din CSV fil er ikke blevet importeret vellykket "
3361
 
3362
  # @ wp-google-maps
3363
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:73
3376
  # @ wp-google-maps
3377
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
3378
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
 
3379
  msgid "Delete"
3380
+ msgstr "Slet"
3381
 
3382
  # @ wp-google-maps
3383
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:42
3405
 
3406
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
3407
  msgid "Select a Map Type (beta)"
3408
+ msgstr "Vælg en Kort Type (beta)"
3409
 
3410
  # @ wp-google-maps
3411
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
 
3412
  msgid "Show distance in:"
3413
+ msgstr "Vis distance i:"
3414
 
3415
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
3416
  msgid "Show bouncing icon:"
3417
+ msgstr "Vis hoppende ikon:"
3418
 
3419
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
3420
  msgid "Hide markers until search is done:"
3421
+ msgstr "Gem markører indtil søgning er complet:"
3422
 
3423
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
3424
  msgid "Default 'To' Address:"
3425
+ msgstr "Standard ’Til’ Adresse:"
3426
 
3427
  # @ wp-google-maps
3428
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
 
3429
  msgid "Enter Address"
3430
+ msgstr "Indsæt Adresse"
3431
 
3432
  # @ wp-google-maps
3433
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:252
 
3434
  msgid "Basic Table"
3435
+ msgstr "Basis Tabel"
3436
 
3437
  # @ wp-google-maps
3438
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:253
 
3439
  msgid "Basic List"
3440
+ msgstr "Basis Liste"
3441
 
3442
  # @ wp-google-maps
3443
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:254
 
3444
  msgid "Advanced Table"
3445
+ msgstr "Avanceret Tabel"
3446
 
3447
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
3448
  msgid "Blank Map"
3449
+ msgstr "Blankt kort"
3450
 
3451
  # @ wp-google-maps
3452
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:221
3467
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:237
3468
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5846
3469
  #: wpGoogleMaps.php:5846
 
3470
  msgid "Approve this marker"
3471
+ msgstr "Godkend denne markør"
3472
 
3473
  # @ wp-google-maps
3474
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:239
3487
 
3488
  # @ wp-google-maps
3489
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:169
 
3490
  msgid "Visitor Generated Markers - Settings"
3491
+ msgstr "Besøgs Genereret Markør - Indstillinger"
3492
 
3493
  # @ wp-google-maps
3494
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:175
 
3495
  msgid "Enable Visitor Generated Markers?"
3496
+ msgstr "Aktiver Besøges Genereret Markør?"
3497
 
3498
  # @ wp-google-maps
3499
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:184
 
3500
  msgid "Who can add markers?"
3501
+ msgstr "Hvem kan tilføje markører?"
3502
 
3503
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
3504
  msgid "Everyone"
3505
+ msgstr "Alle"
3506
 
3507
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
3508
  msgid "Registered Users"
3509
+ msgstr "Registreret Bruger"
3510
 
3511
  # @ wp-google-maps
3512
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
 
3513
  msgid "Allow users to select a marker category?"
3514
+ msgstr "Tillad brugere at vælge en markør kategori?"
3515
 
3516
  # @ wp-google-maps
3517
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:202
 
3518
  msgid "Allow users to upload images?"
3519
+ msgstr "Tillad at brugere kan uploade billeder?"
3520
 
3521
  # @ wp-google-maps
3522
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:306
 
3523
  msgid "Add your own marker"
3524
+ msgstr "Tilføj dine egne markører"
3525
 
3526
  # @ wp-google-maps
3527
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:314
3528
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:315
 
3529
  msgid "Marker Title"
3530
+ msgstr "Markør Titel"
3531
 
3532
  # @ wp-google-maps
3533
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:318
 
3534
  msgid "Marker Address or GPS Location"
3535
+ msgstr "Markør Adresse eller GPS Lokation"
3536
 
3537
  # @ wp-google-maps
3538
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
 
3539
  msgid "Marker Address"
3540
+ msgstr "Markør Adresse"
3541
 
3542
  # @ wp-google-maps
3543
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
 
3544
  msgid "Or click on the map and drag to add a marker"
3545
+ msgstr "Eller klik på kortet for at tilføje en markør"
3546
 
3547
  # @ wp-google-maps
3548
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
 
3549
  msgid "Marker Description"
3550
+ msgstr "Markør Beskrivelse"
3551
 
3552
  # @ wp-google-maps
3553
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:338
 
3554
  msgid "Marker Category"
3555
+ msgstr "Marker Kategorier"
3556
 
3557
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:348
3558
  msgid "Please tick this box to prove you are human"
3559
+ msgstr "Venligst afkryds denne boks for at bevise du er et menneske"
3560
 
3561
  # @ wp-google-maps
3562
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
 
3563
  msgid "Add marker"
3564
+ msgstr "Tilføj markører"
3565
 
3566
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
3567
  msgid "A new marker has been submitted for your map"
3568
+ msgstr "En ny markør er blevet indsat på dit kort"
3569
 
3570
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
3571
  msgid ""
3572
  "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3573
  "version 5.50 to allow for these settings"
3574
  msgstr ""
3575
+ "Venligst <a href=‘./update-core.php’>updater</a> dine Pro Add-on til den "
3576
+ "nyeste version 5.50 for at tillade disse indstillinger "
3577
 
3578
  # @ wp-google-maps
3579
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
 
3580
  msgid "Visitor Generated Marker Settings"
3581
+ msgstr "Besøgende Genereret Markør Indstillinger"
3582
 
3583
  # @ wp-google-maps
3584
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:596
 
3585
  msgid "Visitor Marker Input Settings"
3586
+ msgstr "Besøgende Markør Input Indstillinger"
3587
 
3588
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3589
  msgid "Strip all HTML tags in descriptions and titles"
3590
+ msgstr "Strip alle HTML tags i deskription og titler"
3591
 
3592
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
3593
  msgid "Automatically approve visitor generated markers"
3594
+ msgstr "Automatisk accepter besøgende genereret markør"
3595
 
3596
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3597
  msgid "Email me whenever there is a new marker"
3598
+ msgstr "Email mig når der er en ny markør"
3599
 
3600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3601
  msgid "Email address:"
3602
+ msgstr "Email adresse:"
3603
 
3604
  # @ wp-google-maps
3605
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:22
3788
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:9
3789
  #: base/classes/widget_module.class.php:9
3790
  msgid "Add your map as a widget"
3791
+ msgstr "Tilføj dine kort som en widget"
3792
 
3793
  # @ wp-google-maps
3794
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:47
3795
  #: base/classes/widget_module.class.php:47
 
3796
  msgid "Select your map:"
3797
+ msgstr "Vælg dine kort:"
3798
 
3799
  # @ wp-google-maps
3800
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:3
3801
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:4
3802
  #: base/includes/credits.php:3 base/includes/welcome.php:4
 
3803
  msgid "Welcome to WP Google Maps version 6.3"
3804
+ msgstr "Velkommen til WP Google Maps version 6.3"
3805
 
3806
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
3807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
3811
  "maps through a simple interface and powerful functionality along with world "
3812
  "class support."
3813
  msgstr ""
3814
+ "Tak for at updatere! WP Google Maps version 6 hjælper dig med at bygge "
3815
+ "fantastiske kort igennem et simpelt interface og stærkt funktionelt med "
3816
+ "verdensklasse support."
3817
 
3818
  # @ wp-google-maps
3819
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
3820
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
3821
  #: base/includes/credits.php:10 base/includes/welcome.php:11
 
3822
  msgid "Welcome"
3823
+ msgstr "Velkommen"
3824
 
3825
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:11
3826
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:12
3827
  #: base/includes/credits.php:11 base/includes/welcome.php:12
3828
  msgid "Credits"
3829
+ msgstr "Kredit"
3830
 
3831
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:15
3832
  #: base/includes/credits.php:15
3833
  msgid "WP Google Maps is created by an international team of developers."
3834
+ msgstr "WP Google Maps er oprettet af et internationalt team af udviklere."
3835
 
3836
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:16
3837
  #: base/includes/credits.php:16
3838
  msgid "Project Leaders"
3839
+ msgstr "Projektledere"
3840
 
3841
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:22
3842
  #: base/includes/credits.php:22
3843
  msgid "Founder &amp; Lead Developer"
3844
+ msgstr "Grundlægger &amp; førende udvikler"
3845
 
3846
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:25
3847
  #: base/includes/credits.php:25
3848
  msgid "Contributers"
3849
+ msgstr "Bidragere"
3850
 
3851
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:30
3852
  #: base/includes/credits.php:30
3853
  msgid "Developer"
3854
+ msgstr "Udvikler"
3855
 
3856
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:35
3857
  #: base/includes/credits.php:35
3858
  msgid "Developer &amp; Support"
3859
+ msgstr "Udvikler &amp; Support"
3860
 
3861
  # @ wp-google-maps
3862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:50
3863
  #: base/includes/credits.php:50
 
3864
  msgid "Marketing"
3865
+ msgstr "Markting"
3866
 
3867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:55
3868
  #: base/includes/credits.php:55
3869
  msgid "Security suggestions"
3870
+ msgstr "Sikkerheds forslag"
3871
 
3872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3873
  #: base/includes/credits.php:59
3874
  msgid "Want to see your name on this page?"
3875
+ msgstr "Vil du set dit navn på denne side?"
3876
 
3877
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3878
  #: base/includes/credits.php:59
3879
  msgid "Get involved on GitHub."
3880
+ msgstr "Involver dig på GitHib"
3881
 
3882
  # @ wp-google-maps
3883
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:18
3884
  #: base/includes/welcome.php:18
 
3885
  msgid "Unlimited Markers"
3886
+ msgstr "Ubegrænset markører"
3887
 
3888
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:19
3889
  #: base/includes/welcome.php:19
3890
  msgid "Create as many markers as you like"
3891
+ msgstr "Opret så mange markører som du ønsker"
3892
 
3893
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
3894
  #: base/includes/welcome.php:31
3896
  "Select from various <a href='http://wpgmaps.com/map-themes/' "
3897
  "target='_BLANK'>map themes</a>, or make your own."
3898
  msgstr ""
3899
+ "Vælg fra forskellige <a href=‘http://wpgmaps.com/map-themes/' "
3900
+ "target=‘_BLANK’>kort temater</a>, er lav dit eget."
3901
 
3902
  # @ wp-google-maps
3903
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3904
  #: base/includes/welcome.php:97
 
3905
  msgid "Support Desk"
3906
+ msgstr "Support Desk"
3907
 
3908
  # @ wp-google-maps
3909
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3944
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:320
3945
  #: wpGoogleMaps.php:320
3946
  msgid "My first map"
3947
+ msgstr "Mit første kort"
3948
 
3949
  # @ wp-google-maps
3950
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3973
  "Timthumb does not have 'write' permission for the cache directory. Please "
3974
  "enable 'write' permissions (755 or 777) for "
3975
  msgstr ""
3976
+ "Timthumb har ikke “write” tilladelse til cache biblioteket. Venligst aktiver "
3977
+ "“write” tilladelser (755 eller 777) for"
3978
 
3979
  # @ default
3980
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
3981
  #: wpGoogleMaps.php:551
3982
  msgid "in order for images to show up while using Timthumb. Please see "
3983
+ msgstr "for at billeder kan vises under brug af Timthumb. Venligst se"
3984
 
3985
  # @ default
3986
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
3987
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
3988
  #: wpGoogleMaps.php:553 wpGoogleMaps.php:6027
3989
  msgid "this page"
3990
+ msgstr "denne side"
3991
 
3992
  # @ default
3993
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:555
3996
  "for help on how to do it. Alternatively, you can disable the use of Timthumb "
3997
  "in Maps->Settings"
3998
  msgstr ""
3999
+ "for hjælp til at gøre det. Alternativt, kan du deaktivere brug af Timthumb "
4000
+ "under Kort->Indstillinger"
4001
 
4002
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
4003
  #: wpGoogleMaps.php:2436
4004
  msgid "DOMDocument is not enabled"
4005
+ msgstr "DOMDokument er ikke aktiveret"
4006
 
4007
  # @ default
4008
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2540
4010
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2555
4011
  #: wpGoogleMaps.php:2540 wpGoogleMaps.php:2550 wpGoogleMaps.php:2555
4012
  msgid "Could not save XML file"
4013
+ msgstr "Kunne ikke gemme XML fil"
4014
 
4015
  # @ wp-google-maps
4016
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
4087
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3857
4088
  #: wpGoogleMaps.php:3857
4089
  msgid "There was a problem deleting the map."
4090
+ msgstr "Der var et problem ved sletning af kortet. "
4091
 
4092
  # @ wp-google-maps
4093
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
4104
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3870
4105
  #: wpGoogleMaps.php:3870
4106
  msgid "There was a problem duplicating the map."
4107
+ msgstr "Der var et problem med at dublikerer kortet."
4108
 
4109
  # @ default
4110
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3972
4111
  #: wpGoogleMaps.php:3972
4112
  msgid "There was a problem deleting the marker."
4113
+ msgstr "Der var et problem med at slette markøren."
4114
 
4115
  # @ wp-google-maps
4116
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
4132
  "update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride "
4133
  "current jQuery with version 1.11.3'."
4134
  msgstr ""
4135
+ "Vi har detekteret et problem mellem dit nuværende tema version og vores "
4136
+ "plugin. Skulle du opleve problemer med visning af dine kort, venligst "
4137
+ "updater Avada til version 3.9.4 eller afkryds “Erstat nuværende jQuery med "
4138
+ "version 1.11.3” afkrydsningsboksen."
4139
 
4140
  # @ wp-google-maps
4141
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
4142
  #: wpGoogleMaps.php:4210
 
4143
  msgid "Enable Usage Tracking"
4144
+ msgstr "Aktiver vbrug af sporing"
4145
 
4146
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
4147
  #: wpGoogleMaps.php:4212
4150
  "15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
4151
  "the administrator's email address)"
4152
  msgstr ""
4153
+ "Tillad us anonymt at spore dine handlinger med kortene og vi vil sende dig "
4154
+ "dig en 15% Sola Plugins kupon som et tegn på vores taknemmelighed (Kuponnen "
4155
+ "vil blive sent til administrator’s email adresse)"
4156
 
4157
  # @ wp-google-maps
4158
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4221
4159
  #: wpGoogleMaps.php:4221
 
4160
  msgid "Marker InfoWindow Settings"
4161
+ msgstr "Markør Info Vindue Indstillinger"
4162
 
4163
  # @ wp-google-maps
4164
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4296
4165
  #: wpGoogleMaps.php:4296
 
4166
  msgid "Google Maps API Key"
4167
+ msgstr "Google Maps API nøgle"
4168
 
4169
  # @ wp-google-maps
4170
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4300
4171
  #: wpGoogleMaps.php:4300
 
4172
  msgid "Google Maps API Key (required)"
4173
+ msgstr "Google Maps API nøgle (påkrævet)"
4174
 
4175
  # @ wp-google-maps
4176
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4327
4177
  #: wpGoogleMaps.php:4327
 
4178
  msgid "Marker Data Location"
4179
+ msgstr "Markør Data Lokation"
4180
 
4181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
4182
  #: wpGoogleMaps.php:4421
4189
  "\" class=\"button button-secondary\">contact us</a> and we will help you as "
4190
  "soon as humanly possible!</p>"
4191
  msgstr ""
4192
+ "<h3>Vi har brug for kærlighed!</h3><p>Hvis du nyder vores plugin, venligst "
4193
+ "overvej <a href=“%1$s” target=“_blank” class=“button button-primary”>at "
4194
+ "andmelde WP Google Maps</a>. Det vil betyde alverdens for us! If du oplever "
4195
+ "problemer, med denne plugin, venligst a href=“%2$s” target=“_blank” "
4196
+ "class=“button button-secondary”>kontakt us</a> og vi vil hjælpe dig hurtigst "
4197
+ "muligt!</p>"
4198
 
4199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
4200
  #: wpGoogleMaps.php:4426
4201
  msgid "We will not nag you again, promise!"
4202
+ msgstr "Vi vil ikke forstyrre dig igen, det lover vi!"
4203
 
4204
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
4205
  #: wpGoogleMaps.php:4426
4206
  msgid "Close"
4207
+ msgstr "Tæt"
4208
 
4209
  # @ wp-google-maps
4210
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
4223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
4224
  #: wpGoogleMaps.php:4446
4225
  msgid "Wizard"
4226
+ msgstr "Guiden"
4227
 
4228
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
4229
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
4233
  "plugin. Should you be experiencing issues with your maps displaying, please "
4234
  "update Avada to version 3.9.4 or go to <a href='"
4235
  msgstr ""
4236
+ "Vi har opdaget en konflikt mellem din temas version og vores plugin. Skulle "
4237
+ "du opleve problemer med dine kort visning, venligst updater Avada til "
4238
+ "version 3.9.4 eller gå til <a href=‘"
4239
 
4240
  # @ wp-google-maps
4241
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
4330
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
4331
  #: wpGoogleMaps.php:4773
4332
  msgid "Pro Upgrade"
4333
+ msgstr "Pro Upgradering"
4334
 
4335
  # @ wp-google-maps
4336
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5004
4337
  #: wpGoogleMaps.php:5004
 
4338
  msgid "Query string"
4339
  msgstr "Query String"
4340
 
4341
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5009
4342
  #: wpGoogleMaps.php:5009
4343
  msgid "Show bouncing icon"
4344
+ msgstr "Vis hoppende ikon"
4345
 
4346
  # @ wp-google-maps
4347
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5026
4364
  # @ wp-google-maps
4365
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5057
4366
  #: wpGoogleMaps.php:5057
 
4367
  msgid "Maximum Zoom Level"
4368
+ msgstr "Maksimum Zoom Niveau"
4369
 
4370
  # @ wp-google-maps
4371
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
4390
  # @ wp-google-maps
4391
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
4392
  #: wpGoogleMaps.php:5135
 
4393
  msgid ""
4394
  "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
4395
  "professional-version/?"
4396
  "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
4397
  "for only $39.99 once off</a>. Support and updates included forever."
4398
  msgstr ""
4399
+ "Aktiver Markør Lister med <a href=\"http://www.wpgmaps.com/purchase-"
4400
+ "professional-version/?utm_source=plugin&utm_medium=link&utm_campaign=advanced"
4401
+ "\">$39.99</a>. Support og opdateringer er inkluderet for evigt."
 
4402
 
4403
  # @ wp-google-maps
4404
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5141
4405
  #: wpGoogleMaps.php:5141
 
4406
  msgid "List Markers"
4407
+ msgstr "Markør Liste"
4408
 
4409
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5146
4410
  #: wpGoogleMaps.php:5146
4411
  msgid "Advanced table with real time search and filtering"
4412
+ msgstr "Avanceret tabeller med real tid søgning og filtrering"
4413
 
4414
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
4415
  #: wpGoogleMaps.php:5147
4416
  msgid "beta"
4417
+ msgstr "beta"
4418
 
4419
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5218
4420
  #: wpGoogleMaps.php:5218
4421
  msgid "Basic"
4422
+ msgstr "Basis"
4423
 
4424
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5219
4425
  #: wpGoogleMaps.php:5219
4426
  msgid "Show a basic list of your markers"
4427
+ msgstr "Vis en basis liste af dine markører"
4428
 
4429
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5228
4430
  #: wpGoogleMaps.php:5228
4431
  msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
4432
+ msgstr "Smuk, responsive, mobil-venlig og karusel markør liste"
4433
 
4434
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5236
4435
  #: wpGoogleMaps.php:5236
4436
  msgid "Tabular"
4437
+ msgstr "Tabular"
4438
 
4439
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
4440
  #: wpGoogleMaps.php:5237
4441
  msgid "Advanced, tabular marker listing functionality with real time filtering"
4442
+ msgstr "Avanceret tabular markør liste funktioner med reel tids filtrering"
4443
 
4444
  # @ wp-google-maps
4445
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
4458
  #: wpGoogleMaps.php:5412
4459
  msgid "Please add the current marker before trying to add another marker"
4460
  msgstr ""
4461
+ "Venligst tilføj nuværende markører før du prøver at tilføje en anden markør"
4462
 
4463
  # @ wp-google-maps
4464
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
4481
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
4482
  #: wpGoogleMaps.php:5500
4483
  msgid "Add dynamic heatmap data"
4484
+ msgstr "Tilføj dynamisk heatmap data"
4485
 
4486
  # @ wp-google-maps
4487
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
4488
  #: wpGoogleMaps.php:5500
 
4489
  msgid "with the Pro version."
4490
  msgstr "med Pro Versionen"
4491
 
4492
  # @ wp-google-maps
4493
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5501
4494
  #: wpGoogleMaps.php:5501
 
4495
  msgid "View a demo."
4496
+ msgstr "Vis demo"
4497
 
4498
  # @ wp-google-maps
4499
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
4518
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
4519
  #: wpGoogleMaps.php:5537
4520
  msgid "Add detailed information to your markers!"
4521
+ msgstr "Tilføj detaljeret information til dine markører!"
4522
 
4523
  # @ wp-google-maps
4524
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
4617
  # @ wp-google-maps
4618
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5778
4619
  #: wpGoogleMaps.php:5778
 
4620
  msgid ""
4621
  "There are too many markers to make use of the live edit function. The "
4622
  "maximum amount for this functionality is 5000 markers. Anything more than "
4632
  # @ wp-google-maps
4633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5844
4634
  #: wpGoogleMaps.php:5844
 
4635
  msgid "Edit this marker location"
4636
+ msgstr "Rediger denne markørs lokation"
4637
 
4638
  # @ default
4639
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6023
4642
  "The plugin directory does not have 'write' permissions. Please enable "
4643
  "'write' permissions (755) for "
4644
  msgstr ""
4645
+ "Plugin biblioteket har ikke en ‘write’ tilladelse. Venligst aktiver ‘write’ "
4646
+ "tilladelsen (755) for"
4647
 
4648
  # @ default
4649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
4650
  #: wpGoogleMaps.php:6025
4651
  msgid "in order for this plugin to work! Please see "
4652
+ msgstr "fir at denne plugin virker! Venligst se"
4653
 
4654
  # @ default
4655
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6029
4656
  #: wpGoogleMaps.php:6029
4657
  msgid "for help on how to do it."
4658
+ msgstr "for hjælp til at gøre det."
4659
 
4660
  # @ wp-google-maps
4661
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
4684
  "to time, run into conflicts with the thousands of themes and other plugins "
4685
  "on the market."
4686
  msgstr ""
4687
+ "WP Google Maps har en alsidig og bred vifte af funktioner som kan, fra tid "
4688
+ "til anden, løbe ind i konflikter med tusindvis a temaer og andre plugins på "
4689
+ "markedet."
4690
 
4691
  # @ wp-google-maps
4692
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
4693
  #: wpGoogleMaps.php:6501
 
4694
  msgid "Support forum"
4695
+ msgstr "Support forum."
4696
 
4697
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6658
4698
  #: wpGoogleMaps.php:6658
4699
  msgid "United States of America"
4700
+ msgstr "Amerikanske Forenede Nationer"
4701
 
4702
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6668
4703
  #: wpGoogleMaps.php:6668
4704
  msgid "View the instruction video"
4705
+ msgstr "Se instruktionsvideoen"
4706
 
4707
  # @ wp-google-maps
4708
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6669
4709
  #: wpGoogleMaps.php:6669
 
4710
  msgid "Read the documentation"
4711
+ msgstr "Gennemgå dokumentationen"
4712
 
4713
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6670
4714
  #: wpGoogleMaps.php:6670
4715
  msgid "Important Notification"
4716
+ msgstr "Vigtige notifikationer"
4717
 
4718
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6671
4719
  #: wpGoogleMaps.php:6671
4720
  msgid "You can read more about that here."
4721
+ msgstr "Du kan læse mere om hvordan det her."
4722
 
4723
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
4724
  #: wpGoogleMaps.php:6672
4726
  "Before you begin please note that *ALL* Google Maps now require an API key "
4727
  "to function."
4728
  msgstr ""
4729
+ "Før du begynder, venligst noter *ALLE* Google Maps nu som påkræver en API "
4730
+ "nøgle til at fungere."
4731
 
4732
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
4733
  #: wpGoogleMaps.php:6673
4734
  msgid "Create an API key now (free)"
4735
+ msgstr "Opret en API nøgle nu (gratis)"
4736
 
4737
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
4738
  #: wpGoogleMaps.php:6674
4739
  msgid "Once created, simply paste your API key here and press save."
4740
+ msgstr "Når påbegyndt, indsæt din API nøgle her og tryk gem."
4741
 
4742
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
4743
  #: wpGoogleMaps.php:6675
4744
  #, php-format
4745
  msgid "Need help? %s or %s."
4746
+ msgstr "Har du brug for hjælp? %s eller %s."
4747
 
4748
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6676
4749
  #: wpGoogleMaps.php:6676
4750
  msgid "Google Maps JavaScript API Key: "
4751
+ msgstr "Google Maps JavaScript API Nøgle:"
4752
 
4753
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
4754
  #: wpGoogleMaps.php:6678
4755
  msgid "Once saved, it may take up to 5 minutes for your map to display."
4756
+ msgstr "Når gemt, kan det tage op til 5 minutter for dine kort at blive vist."
4757
 
4758
  # @ wp-google-maps
4759
  #, fuzzy
languages/wp-google-maps-nb_NO.mo ADDED
Binary file
languages/wp-google-maps-nb_NO.po ADDED
@@ -0,0 +1,3933 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: WP Google Maps\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-07-18 13:39+0200\n"
6
+ "PO-Revision-Date: 2016-07-18 13:39+0200\n"
7
+ "Last-Translator: Ola Haldor <post@olahaldor.net>\n"
8
+ "Language-Team: \n"
9
+ "Language: no_NO\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.6.10\n"
16
+ "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-Basepath: .\n"
18
+ "X-Loco-Target-Locale: nb_NO\n"
19
+ "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
20
+ "google-maps\n"
21
+ "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
22
+ "google-maps-pro\n"
23
+ "X-Poedit-SearchPath-2: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
24
+ "google-maps-gold\n"
25
+ "X-Poedit-SearchPath-3: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
26
+ "google-maps-ugm\n"
27
+
28
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
29
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
30
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:764
31
+ #, fuzzy
32
+ msgid "settings"
33
+ msgstr "Innstillinger"
34
+
35
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:244
36
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
37
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:765
38
+ #, php-format
39
+ msgid ""
40
+ "Your Google Maps API key has been successfully saved. This API key can be "
41
+ "changed in the %s page"
42
+ msgstr ""
43
+
44
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
45
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
46
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4217
47
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4341
48
+ msgid "Geocode was not successful for the following reason"
49
+ msgstr "Geocode was not successful for the following reason"
50
+
51
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1173
52
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1335
53
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2550
54
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3636
55
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4704
56
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:4867
57
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5825
58
+ msgid "More details"
59
+ msgstr "Flere detaljer"
60
+
61
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1595
62
+ msgid "Advanced Map Settings"
63
+ msgstr "Avanserte Kart-innstillinger"
64
+
65
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1600
66
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1950
67
+ msgid "Enable Mass Marker Support"
68
+ msgstr "Aktiver Mass Marker Support"
69
+
70
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1603
71
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1843
72
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1953
73
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1537
74
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1594
75
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1791
76
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1803
77
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1878
78
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1881
79
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1884
80
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2207
81
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
82
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
83
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
84
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:178
85
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:196
86
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:205
87
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
88
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
89
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
90
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
91
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
92
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4931
93
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4971
94
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5012
95
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5030
96
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5039
97
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5050
98
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5103
99
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5107
100
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5396
101
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5451
102
+ msgid "Yes"
103
+ msgstr "Ja"
104
+
105
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1604
106
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1843
107
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1954
108
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1538
109
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1551
110
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1594
111
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1791
112
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1803
113
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1878
114
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1881
115
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1884
116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2206
117
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
118
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
119
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
120
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:179
121
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:197
122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:206
123
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
124
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
125
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
126
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
127
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
128
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4930
129
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4934
130
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4944
131
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4971
132
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5012
133
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5030
134
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5039
135
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5050
136
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5102
137
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5107
138
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5395
139
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5450
140
+ msgid "No"
141
+ msgstr "Nei"
142
+
143
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1610
144
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6677
145
+ #, fuzzy
146
+ msgid "Save"
147
+ msgstr "Lagre"
148
+
149
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
150
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
151
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:551
152
+ msgid ""
153
+ "An Unexpected HTTP Error occurred during the API request.</p> <p><a href=\"?"
154
+ "\" onclick=\"document.location.reload(); return false;\">Try again</a>"
155
+ msgstr ""
156
+ "En uventet HTTP error skjedde under API requesten.\n"
157
+ "</p> <p><a href=\"?\" onclick=\"document.location.reload(); return false;"
158
+ "\">Prøv igjen</a>"
159
+
160
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1694
161
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5380
162
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:556
163
+ msgid "An unknown error occurred"
164
+ msgstr "En ukjent feil oppstod"
165
+
166
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1756
167
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6186
168
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6562
169
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3193
170
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3445
171
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3623
172
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3807
173
+ msgid "Your settings have been saved."
174
+ msgstr "Innstillingene ble lagret."
175
+
176
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1811
177
+ msgid "Location Tracking"
178
+ msgstr ""
179
+
180
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1838
181
+ msgid "Real time location tracking"
182
+ msgstr ""
183
+
184
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1841
185
+ #, fuzzy
186
+ msgid "Enable Location Tracking"
187
+ msgstr "Aktiver kjørebeskrivelse"
188
+
189
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1849
190
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1796
191
+ msgid "Default User Location Icon"
192
+ msgstr ""
193
+
194
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1850
195
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1670
196
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1797
197
+ #, fuzzy
198
+ msgid "Upload Icon"
199
+ msgstr "Last opp bilde"
200
+
201
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1854
202
+ msgid "Show"
203
+ msgstr ""
204
+
205
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
206
+ msgid "Route"
207
+ msgstr ""
208
+
209
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
210
+ #, fuzzy
211
+ msgid "Last Location"
212
+ msgstr "Endre markør-posisjon"
213
+
214
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1862
215
+ msgid "Route Styling"
216
+ msgstr ""
217
+
218
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1870
219
+ msgid "Route Colour - Normal"
220
+ msgstr ""
221
+
222
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1877
223
+ msgid "Route Colour - Hover"
224
+ msgstr ""
225
+
226
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1884
227
+ msgid "Route Opacity"
228
+ msgstr ""
229
+
230
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1891
231
+ msgid "Route Thickness"
232
+ msgstr ""
233
+
234
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1906
235
+ msgid "Devices"
236
+ msgstr ""
237
+
238
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1924
239
+ #, fuzzy
240
+ msgid "Marker Clustering"
241
+ msgstr "Marker Listing Settings"
242
+
243
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1984
244
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1987
245
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1990
246
+ msgid "Real Time Location Tracking"
247
+ msgstr ""
248
+
249
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
250
+ msgid ""
251
+ "Track your location via our app and plot your current location on a map, "
252
+ "publicly or privately."
253
+ msgstr ""
254
+
255
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
256
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
257
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:221
258
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:264
259
+ #, fuzzy
260
+ msgid "Create Map"
261
+ msgstr "Lagre"
262
+
263
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2049
264
+ #, php-format
265
+ msgid "Location as at %1$s"
266
+ msgstr ""
267
+
268
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2131
269
+ msgid "Successfully accepted the device. Thank you"
270
+ msgstr ""
271
+
272
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2172
273
+ msgid "Device has been removed. Thank you"
274
+ msgstr ""
275
+
276
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2193
277
+ #, fuzzy
278
+ msgid "Marker Data Cleared."
279
+ msgstr "Endre markør-posisjon"
280
+
281
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
282
+ msgid "A new device needs your approval to enable real time location tracking."
283
+ msgstr ""
284
+
285
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
286
+ msgid "Device ID:"
287
+ msgstr ""
288
+
289
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2232
290
+ #, php-format
291
+ msgid "To accept this device, Please follow this link: %1$s"
292
+ msgstr ""
293
+
294
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
295
+ msgid "To reject the device, simply ignore this email."
296
+ msgstr ""
297
+
298
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
299
+ msgid ""
300
+ "A new device needs your approval to enable real time location tracking - WP "
301
+ "Google Maps"
302
+ msgstr ""
303
+
304
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
305
+ msgid "No devices"
306
+ msgstr ""
307
+
308
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
309
+ msgid "including Pro &amp; Gold add-ons"
310
+ msgstr "including Pro &amp; Gold add-ons"
311
+
312
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
313
+ msgid "including Pro add-on"
314
+ msgstr "including Pro add-on"
315
+
316
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1056
317
+ msgid ""
318
+ "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
319
+ "a>. Your current Gold version is not compatible with the current Pro version."
320
+ msgstr ""
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
+ #, fuzzy
327
+ msgid "ZIP / Address:"
328
+ msgstr "ZIP / Address"
329
+
330
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1140
331
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6984
332
+ #, fuzzy
333
+ msgid "Title / Description:"
334
+ msgstr "Hide the Description column"
335
+
336
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1189
337
+ #, fuzzy
338
+ msgid "No marker list"
339
+ msgstr "Marker Listing Settings"
340
+
341
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1192
342
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6915
343
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5145
344
+ #, fuzzy
345
+ msgid "Basic table"
346
+ msgstr "Fusion table ID"
347
+
348
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1195
349
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6914
350
+ #, fuzzy
351
+ msgid "Basic list"
352
+ msgstr "Fusion table ID"
353
+
354
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1198
355
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6916
356
+ #, fuzzy
357
+ msgid "Advanced table"
358
+ msgstr "Add marker"
359
+
360
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1201
361
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6912
362
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:255
363
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
364
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5227
365
+ msgid "Carousel"
366
+ msgstr ""
367
+
368
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1280
369
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5845
370
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6917
371
+ #, fuzzy
372
+ msgid "Default Infowindow"
373
+ msgstr "InfoWindow Settings"
374
+
375
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1282
376
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5847
377
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6918
378
+ #, fuzzy
379
+ msgid "Modern Infowindow"
380
+ msgstr "InfoWindow Settings"
381
+
382
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1284
383
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5849
384
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6920
385
+ msgid "Modern Plus Infowindow"
386
+ msgstr ""
387
+
388
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1286
389
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5851
390
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6921
391
+ #, fuzzy
392
+ msgid "Circular Infowindow"
393
+ msgstr "InfoWindow Settings"
394
+
395
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
396
+ msgid "Currently using your selection chosen in the global settings"
397
+ msgstr ""
398
+
399
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
400
+ msgid "Download this as a CSV file"
401
+ msgstr "Download this as a CSV file"
402
+
403
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
404
+ msgid "Download this data as a CSV file"
405
+ msgstr "Download this data as a CSV file"
406
+
407
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
408
+ msgid "Please update your basic version to use this function."
409
+ msgstr ""
410
+
411
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
412
+ #, fuzzy
413
+ msgid "Add a New Dataset"
414
+ msgstr "Add New Category"
415
+
416
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
417
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4762
418
+ #, fuzzy
419
+ msgid "Create your Map"
420
+ msgstr "Slett kartet."
421
+
422
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1381
423
+ #, fuzzy
424
+ msgid "New"
425
+ msgstr "Legg til"
426
+
427
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1388
428
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4767
429
+ #, fuzzy
430
+ msgid "General Settings"
431
+ msgstr "Generelle kart-innstillinger"
432
+
433
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1389
434
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:30
435
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4768
436
+ msgid "Themes"
437
+ msgstr ""
438
+
439
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1390
440
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2596
441
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2846
442
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3645
443
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:197
444
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:200
445
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:278
446
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
447
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4769
448
+ msgid "Directions"
449
+ msgstr "Kjørebeskrivelse"
450
+
451
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1391
452
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:138
453
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:141
454
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:30
455
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:23
456
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4770
457
+ #, fuzzy
458
+ msgid "Store Locator"
459
+ msgstr "Endre posisjon"
460
+
461
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1392
462
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5595
463
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4294
464
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4771
465
+ #, fuzzy
466
+ msgid "Advanced Settings"
467
+ msgstr "Avanserte Kart-innstillinger"
468
+
469
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1393
470
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4772
471
+ #, fuzzy
472
+ msgid "Marker Listing Options"
473
+ msgstr "Marker Listing Settings"
474
+
475
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1431
476
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4805
477
+ msgid "Short code"
478
+ msgstr "Short code"
479
+
480
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1432
481
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4806
482
+ msgid "copy this into your post or page to display the map"
483
+ msgstr "copy this into your post or page to display the map"
484
+
485
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1436
486
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4809
487
+ msgid "Map Name"
488
+ msgstr "Kart navn"
489
+
490
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1440
491
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4835
492
+ msgid "Zoom Level"
493
+ msgstr ""
494
+
495
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1447
496
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7208
497
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4510
498
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4813
499
+ msgid "Width"
500
+ msgstr "Bredde"
501
+
502
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1454
503
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4820
504
+ #, php-format
505
+ msgid "Set to 100% for a responsive map"
506
+ msgstr ""
507
+
508
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1459
509
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7209
510
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4511
511
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4825
512
+ msgid "Height"
513
+ msgstr "Høyde"
514
+
515
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1464
516
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4830
517
+ #, php-format
518
+ msgid ""
519
+ "We recommend that you leave your height in PX. Depending on your theme, "
520
+ "using % for the height may break your map."
521
+ msgstr ""
522
+
523
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
524
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
525
+ #, fuzzy
526
+ msgid "Select a theme for your map"
527
+ msgstr "Slett kartet."
528
+
529
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1513
530
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4898
531
+ msgid "Or use a custom theme"
532
+ msgstr ""
533
+
534
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1514
535
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4899
536
+ msgid "Browse the theme directory"
537
+ msgstr ""
538
+
539
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1515
540
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4900
541
+ #, fuzzy
542
+ msgid "Paste your custom theme data here:"
543
+ msgstr "Lim inn JSON-dataene her"
544
+
545
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1517
546
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4902
547
+ #, fuzzy
548
+ msgid "Preview"
549
+ msgstr "Forrige"
550
+
551
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1535
552
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4928
553
+ msgid "Enable Directions?"
554
+ msgstr "Aktiver kjørebeskrivelse"
555
+
556
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1547
557
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4940
558
+ msgid "Directions Box Open by Default?"
559
+ msgstr "Kjørebeskrivelse-Boksen åpen som standard?"
560
+
561
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1552
562
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4945
563
+ msgid "Yes, on the left"
564
+ msgstr "Ja, venstre"
565
+
566
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1553
567
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4946
568
+ msgid "Yes, on the right"
569
+ msgstr "Ja, høyre"
570
+
571
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1554
572
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4947
573
+ msgid "Yes, above"
574
+ msgstr "Ja, over"
575
+
576
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1555
577
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4948
578
+ msgid "Yes, below"
579
+ msgstr "Ja, under"
580
+
581
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1561
582
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4954
583
+ msgid "Directions Box Width"
584
+ msgstr "Bredde på boks for kjørebeskrivelse"
585
+
586
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1566
587
+ msgid "px"
588
+ msgstr ""
589
+
590
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1567
591
+ msgid "%"
592
+ msgstr ""
593
+
594
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1572
595
+ msgid "Default 'To' address"
596
+ msgstr "Standard \"til\" adresse"
597
+
598
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1588
599
+ #, fuzzy
600
+ msgid "General options"
601
+ msgstr "Generelle kart-innstillinger"
602
+
603
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1592
604
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4968
605
+ #, fuzzy
606
+ msgid "Enable Store Locator"
607
+ msgstr "Aktiver kjørebeskrivelse"
608
+
609
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1599
610
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4976
611
+ msgid "Restrict to country"
612
+ msgstr ""
613
+
614
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1608
615
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4982
616
+ msgid "No country selected"
617
+ msgstr ""
618
+
619
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
620
+ msgid "Insert country TLD. For example, use DE for Germany."
621
+ msgstr ""
622
+
623
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
624
+ msgid "Leave blank for no restrictions."
625
+ msgstr ""
626
+
627
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1626
628
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4996
629
+ msgid "Show distance in"
630
+ msgstr ""
631
+
632
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
633
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
634
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
635
+ msgid "Miles"
636
+ msgstr ""
637
+
638
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
639
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
640
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
641
+ msgid "Kilometers"
642
+ msgstr ""
643
+
644
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1635
645
+ #, fuzzy
646
+ msgid "Store Locator Placement"
647
+ msgstr "Endre posisjon"
648
+
649
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
650
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
651
+ msgid "Below Map"
652
+ msgstr ""
653
+
654
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
655
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
656
+ #, fuzzy
657
+ msgid "Above Map"
658
+ msgstr "Lagre"
659
+
660
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1644
661
+ msgid "Allow category selection"
662
+ msgstr ""
663
+
664
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
665
+ #, fuzzy
666
+ msgid "Allow users to use their location as the starting point"
667
+ msgstr "Allow users to select a marker category?"
668
+
669
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
670
+ msgid ""
671
+ "Please ensure that \"show user's location\" is enabled in the \"Advanced "
672
+ "Settings\" tab."
673
+ msgstr ""
674
+
675
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
676
+ msgid "Show center point as an icon"
677
+ msgstr ""
678
+
679
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1669
680
+ msgid "Default Icon"
681
+ msgstr ""
682
+
683
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1674
684
+ msgid "Hide all markers until a search is done"
685
+ msgstr ""
686
+
687
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1688
688
+ msgid "Query String"
689
+ msgstr ""
690
+
691
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1693
692
+ #, fuzzy
693
+ msgid "Enable title search"
694
+ msgstr "Aktiver sykkel-lag?"
695
+
696
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1702
697
+ msgid "Title search String"
698
+ msgstr ""
699
+
700
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1707
701
+ #, fuzzy
702
+ msgid "Style options"
703
+ msgstr "skjul valg"
704
+
705
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1712
706
+ msgid "Line color"
707
+ msgstr ""
708
+
709
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1720
710
+ msgid "Line opacity"
711
+ msgstr ""
712
+
713
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1723
714
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1739
715
+ msgid "(0 - 1.0) example: 0.5 for 50%"
716
+ msgstr ""
717
+
718
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1728
719
+ msgid "Fill color"
720
+ msgstr ""
721
+
722
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1736
723
+ msgid "Fill opacity"
724
+ msgstr ""
725
+
726
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
727
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
728
+ msgid "View"
729
+ msgstr ""
730
+
731
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
732
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
733
+ msgid "Store Locator Documentation"
734
+ msgstr ""
735
+
736
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1761
737
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5095
738
+ msgid "Default Marker Image"
739
+ msgstr "Standard markør-bilde"
740
+
741
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
742
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2180
743
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2184
744
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
745
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
746
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5096
747
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5463
748
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5467
749
+ msgid "Upload Image"
750
+ msgstr "Last opp bilde"
751
+
752
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1762
753
+ #, fuzzy
754
+ msgid ""
755
+ "Get great map markers <a href='http://www.wpgmaps.com/marker-icons/' "
756
+ "target='_BLANK' title='Great Google Map Markers'>here</a>"
757
+ msgstr ""
758
+ "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
759
+ "target='_BLANK' title='Great Google Map Markers'>here</a>"
760
+
761
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1766
762
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4851
763
+ msgid "Map type"
764
+ msgstr "Kart-type"
765
+
766
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1768
767
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7217
768
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4519
769
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4853
770
+ msgid "Roadmap"
771
+ msgstr "Veikart"
772
+
773
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1769
774
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7218
775
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4520
776
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4854
777
+ msgid "Satellite"
778
+ msgstr "Satelitt"
779
+
780
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1770
781
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7219
782
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4521
783
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4855
784
+ msgid "Hybrid"
785
+ msgstr "Hybrid"
786
+
787
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1771
788
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7220
789
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4522
790
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4856
791
+ msgid "Terrain"
792
+ msgstr "Terreng"
793
+
794
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1777
795
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4841
796
+ msgid "Map Alignment"
797
+ msgstr "Kart justering"
798
+
799
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1779
800
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4843
801
+ msgid "Left"
802
+ msgstr "Venstre"
803
+
804
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1780
805
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4844
806
+ msgid "Center"
807
+ msgstr "Midtstilt"
808
+
809
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1781
810
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4845
811
+ msgid "Right"
812
+ msgstr "Høyre"
813
+
814
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1782
815
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2197
816
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4846
817
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5144
818
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5384
819
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5439
820
+ msgid "None"
821
+ msgstr "Ingen"
822
+
823
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1788
824
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5100
825
+ msgid "Show User's Location?"
826
+ msgstr "Vis brukers posisjon?"
827
+
828
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1800
829
+ msgid "Click marker opens link"
830
+ msgstr ""
831
+
832
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1811
833
+ msgid "Maximum Zoom Out Level"
834
+ msgstr ""
835
+
836
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1840
837
+ msgid "Maximum Zoom In Level"
838
+ msgstr ""
839
+
840
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1875
841
+ #, fuzzy
842
+ msgid "Enable Layers"
843
+ msgstr "Aktiver sykkel-lag?"
844
+
845
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1879
846
+ #, fuzzy
847
+ msgid "Bicycle Layer"
848
+ msgstr "Aktiver sykkel-lag?"
849
+
850
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1882
851
+ #, fuzzy
852
+ msgid "Traffic Layer"
853
+ msgstr "Aktiver trafikk-lag?"
854
+
855
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1885
856
+ msgid "Transit Layer"
857
+ msgstr ""
858
+
859
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1891
860
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5119
861
+ msgid "KML/GeoRSS URL"
862
+ msgstr "KML/GeoRSS URL"
863
+
864
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
865
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5121
866
+ msgid "The KML/GeoRSS layer will over-ride most of your map settings"
867
+ msgstr "The KML/GeoRSS layer will over-ride most of your map settings"
868
+
869
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
870
+ msgid "For multiple sources, separate each one by a comma."
871
+ msgstr ""
872
+
873
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1897
874
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5125
875
+ msgid "Fusion table ID"
876
+ msgstr "Fusion table ID"
877
+
878
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1899
879
+ msgid ""
880
+ "Read data directly from your Fusion Table. For more information, see <a "
881
+ "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
882
+ "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
883
+ "maps-api.html</a>"
884
+ msgstr ""
885
+ "Read data directly from your Fusion Table. For more information, see <a "
886
+ "href='http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-maps-"
887
+ "api.html'>http://googlemapsmania.blogspot.com/2010/05/fusion-tables-google-"
888
+ "maps-api.html</a>"
889
+
890
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1909
891
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5874
892
+ #, fuzzy
893
+ msgid "Infowindow Style"
894
+ msgstr "InfoWindow Settings"
895
+
896
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1927
897
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2024
898
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5894
899
+ #, fuzzy
900
+ msgid "Your selection:"
901
+ msgstr "Use my location"
902
+
903
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1960
904
+ #, fuzzy
905
+ msgid "Infowindow Colors"
906
+ msgstr "InfoWindow Settings"
907
+
908
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1964
909
+ msgid "Primary Color"
910
+ msgstr ""
911
+
912
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1972
913
+ msgid "Accent Color"
914
+ msgstr ""
915
+
916
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1980
917
+ msgid "Text Color"
918
+ msgstr ""
919
+
920
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2003
921
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
922
+ #, fuzzy
923
+ msgid "Marker Listing Style"
924
+ msgstr "Marker Listing Settings"
925
+
926
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2033
927
+ #, fuzzy
928
+ msgid "Marker Listing Placement"
929
+ msgstr "Marker Listing Settings"
930
+
931
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2042
932
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5161
933
+ msgid "Order markers by"
934
+ msgstr "Sorter markører etter"
935
+
936
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2045
937
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7206
938
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7395
939
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:527
940
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:470
941
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:491
942
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:414
943
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:673
944
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:657
945
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4508
946
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4562
947
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5164
948
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5581
949
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5867
950
+ msgid "ID"
951
+ msgstr "ID"
952
+
953
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2046
954
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2161
955
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6597
956
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6682
957
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7207
958
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:416
959
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:441
960
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:464
961
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:42
962
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
963
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
964
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4509
965
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4565
966
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5165
967
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5455
968
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5869
969
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5888
970
+ msgid "Title"
971
+ msgstr "Tittel"
972
+
973
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2047
974
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:418
975
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:443
976
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:466
977
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4566
978
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5166
979
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5871
980
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5890
981
+ msgid "Address"
982
+ msgstr "Adresse"
983
+
984
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2048
985
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2171
986
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:419
987
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:444
988
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:467
989
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5167
990
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5460
991
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5872
992
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5891
993
+ msgid "Description"
994
+ msgstr "Beskrivelse"
995
+
996
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2049
997
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2188
998
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7050
999
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:528
1000
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:417
1001
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:442
1002
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:465
1003
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3039
1004
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5168
1005
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5469
1006
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5870
1007
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5889
1008
+ msgid "Category"
1009
+ msgstr "Kategori"
1010
+
1011
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2052
1012
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5171
1013
+ msgid "Ascending"
1014
+ msgstr "Stigende"
1015
+
1016
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2053
1017
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5172
1018
+ msgid "Descending"
1019
+ msgstr "Synkende"
1020
+
1021
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2064
1022
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5184
1023
+ msgid "Move list inside map"
1024
+ msgstr ""
1025
+
1026
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1027
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5187
1028
+ msgid "Move your marker list inside the map area"
1029
+ msgstr ""
1030
+
1031
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1032
+ msgid "(still in beta)"
1033
+ msgstr ""
1034
+
1035
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2088
1036
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5189
1037
+ msgid "Placement: "
1038
+ msgstr ""
1039
+
1040
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2090
1041
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5191
1042
+ #, fuzzy
1043
+ msgid "Top Center"
1044
+ msgstr "Midtstilt"
1045
+
1046
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2091
1047
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5192
1048
+ #, fuzzy
1049
+ msgid "Top Left"
1050
+ msgstr "Venstre"
1051
+
1052
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2092
1053
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5193
1054
+ #, fuzzy
1055
+ msgid "Top Right"
1056
+ msgstr "Høyre"
1057
+
1058
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2093
1059
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5194
1060
+ #, fuzzy
1061
+ msgid "Left Top "
1062
+ msgstr "Venstre"
1063
+
1064
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2094
1065
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5195
1066
+ #, fuzzy
1067
+ msgid "Right Top"
1068
+ msgstr "Høyre"
1069
+
1070
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2095
1071
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5196
1072
+ #, fuzzy
1073
+ msgid "Left Center"
1074
+ msgstr "Midtstilt"
1075
+
1076
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2096
1077
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5197
1078
+ #, fuzzy
1079
+ msgid "Right Center"
1080
+ msgstr "Midtstilt"
1081
+
1082
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2097
1083
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5198
1084
+ msgid "Left Bottom"
1085
+ msgstr ""
1086
+
1087
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2098
1088
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5199
1089
+ msgid "Right Bottom"
1090
+ msgstr ""
1091
+
1092
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2099
1093
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5200
1094
+ #, fuzzy
1095
+ msgid "Bottom Center"
1096
+ msgstr "Midtstilt"
1097
+
1098
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2100
1099
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5201
1100
+ msgid "Bottom Left"
1101
+ msgstr ""
1102
+
1103
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2101
1104
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5202
1105
+ msgid "Bottom Right"
1106
+ msgstr ""
1107
+
1108
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2103
1109
+ msgid "Container Width: "
1110
+ msgstr ""
1111
+
1112
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2104
1113
+ msgid "Container Height: "
1114
+ msgstr ""
1115
+
1116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2114
1117
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5153
1118
+ msgid "Filter by Category"
1119
+ msgstr "Filtrer etter kategori"
1120
+
1121
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2117
1122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5156
1123
+ msgid "Allow users to filter by category?"
1124
+ msgstr "Tillat brukere å filtrere etter kategori?"
1125
+
1126
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2136
1127
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5352
1128
+ msgid "Save Map"
1129
+ msgstr "Lagre"
1130
+
1131
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2138
1132
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5355
1133
+ msgid ""
1134
+ "Tip: Use your mouse to change the layout of your map. When you have "
1135
+ "positioned the map to your desired location, press \"Save Map\" to keep your "
1136
+ "settings."
1137
+ msgstr ""
1138
+ "Tip: Use your mouse to change the layout of your map. When you have "
1139
+ "positioned the map to your desired location, press \"Save Map\" to keep your "
1140
+ "settings."
1141
+
1142
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2148
1143
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5362
1144
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5371
1145
+ msgid "Markers"
1146
+ msgstr "Markører"
1147
+
1148
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2149
1149
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:35
1150
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5489
1151
+ msgid "Polygons"
1152
+ msgstr "Polygoner"
1153
+
1154
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2150
1155
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:40
1156
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:35
1157
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5365
1158
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5494
1159
+ msgid "Polylines"
1160
+ msgstr "Polylinjer"
1161
+
1162
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2151
1163
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5366
1164
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5499
1165
+ msgid "Heatmaps"
1166
+ msgstr ""
1167
+
1168
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2156
1169
+ #, fuzzy
1170
+ msgid "Add a marker"
1171
+ msgstr "Legg til markør"
1172
+
1173
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2166
1174
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5375
1175
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5430
1176
+ msgid "Address/GPS"
1177
+ msgstr "Adresse/GPS"
1178
+
1179
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2167
1180
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5376
1181
+ msgid "Or right click on the map"
1182
+ msgstr ""
1183
+
1184
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2179
1185
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5462
1186
+ msgid "Pic URL"
1187
+ msgstr "Bilde URL"
1188
+
1189
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2181
1190
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5464
1191
+ msgid "Link URL"
1192
+ msgstr "Lenke URL"
1193
+
1194
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2182
1195
+ msgid "Format: http://www.domain.com"
1196
+ msgstr "Format: http://www.domain.com"
1197
+
1198
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2183
1199
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5466
1200
+ msgid "Custom Marker"
1201
+ msgstr "Egendefinert markør"
1202
+
1203
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2184
1204
+ msgid "ignore if you want to use the default marker"
1205
+ msgstr "ignore if you want to use the default marker"
1206
+
1207
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2185
1208
+ #, fuzzy
1209
+ msgid "This is a retina ready marker"
1210
+ msgstr "Det oppstod et problem ved sletting av markøren."
1211
+
1212
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2194
1213
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5381
1214
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5436
1215
+ msgid "Animation"
1216
+ msgstr "Animasjon"
1217
+
1218
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2198
1219
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5385
1220
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5440
1221
+ msgid "Bounce"
1222
+ msgstr "Sprett"
1223
+
1224
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2199
1225
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5386
1226
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5441
1227
+ msgid "Drop"
1228
+ msgstr "Fall"
1229
+
1230
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2203
1231
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5392
1232
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5447
1233
+ msgid "InfoWindow open by default"
1234
+ msgstr "Info-vindu synlig som standard"
1235
+
1236
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2213
1237
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5402
1238
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5478
1239
+ msgid "Add Marker"
1240
+ msgstr "Legg til markør"
1241
+
1242
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2213
1243
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
1244
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5402
1245
+ msgid "Adding"
1246
+ msgstr "Legger til"
1247
+
1248
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2214
1249
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5403
1250
+ msgid "Save Marker"
1251
+ msgstr "Lagre markør"
1252
+
1253
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2214
1254
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5403
1255
+ msgid "Saving"
1256
+ msgstr "Lagrer"
1257
+
1258
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2217
1259
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5406
1260
+ #, fuzzy
1261
+ msgid "Remember to save your marker"
1262
+ msgstr "Husk å lagre!"
1263
+
1264
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2227
1265
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6588
1266
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6672
1267
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:25
1268
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:29
1269
+ msgid "Add a Polygon"
1270
+ msgstr "Legg til polygon"
1271
+
1272
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2228
1273
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5490
1274
+ msgid "Add a New Polygon"
1275
+ msgstr "Add a New Polygon"
1276
+
1277
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2232
1278
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:25
1279
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:28
1280
+ msgid "Add a Polyline"
1281
+ msgstr "Legg til polylinje"
1282
+
1283
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2233
1284
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5495
1285
+ msgid "Add a New Polyline"
1286
+ msgstr "Add a New Polyline"
1287
+
1288
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2237
1289
+ msgid "Add a dataset"
1290
+ msgstr ""
1291
+
1292
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2251
1293
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5517
1294
+ msgid "Remember to save your map!"
1295
+ msgstr "Husk å lagre!"
1296
+
1297
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2259
1298
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5530
1299
+ msgid "Your Markers"
1300
+ msgstr "Dine markører"
1301
+
1302
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
1303
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
1304
+ msgid ""
1305
+ "WP Google Maps encourages you to make use of the amazing icons created by "
1306
+ "Nicolas Mollet's Maps Icons Collection"
1307
+ msgstr ""
1308
+ "WP Google Maps anbefaler at du bruker de utrolige markørene lagd av Nicolas "
1309
+ "Mollets"
1310
+
1311
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2269
1312
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5553
1313
+ msgid "and to credit him when doing so."
1314
+ msgstr "og gi ham kreditering når du bruker dem."
1315
+
1316
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2442
1317
+ msgid ""
1318
+ "The map ID you have entered does not exist. Please enter a map ID that "
1319
+ "exists."
1320
+ msgstr ""
1321
+
1322
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
1323
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
1324
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7000
1325
+ #, fuzzy
1326
+ msgid "Use my location"
1327
+ msgstr "Mitt sted"
1328
+
1329
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2677
1330
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2684
1331
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2692
1332
+ msgid "Filter by"
1333
+ msgstr "Filter by"
1334
+
1335
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2846
1336
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:278
1337
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:369
1338
+ msgid "Get directions to"
1339
+ msgstr "Hent kjørebeskrivelse til"
1340
+
1341
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2877
1342
+ msgid "Get Directions"
1343
+ msgstr "Hent kjørebeskrivelse"
1344
+
1345
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2882
1346
+ msgid "For"
1347
+ msgstr "For"
1348
+
1349
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2886
1350
+ msgid "Driving"
1351
+ msgstr "Kjører"
1352
+
1353
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2887
1354
+ msgid "Walking"
1355
+ msgstr "Går"
1356
+
1357
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2888
1358
+ msgid "Bicycling"
1359
+ msgstr "Sykler"
1360
+
1361
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2891
1362
+ msgid "show options"
1363
+ msgstr "vis valg"
1364
+
1365
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2892
1366
+ msgid "hide options"
1367
+ msgstr "skjul valg"
1368
+
1369
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2894
1370
+ msgid "Avoid Tolls"
1371
+ msgstr "Unngå bomvei"
1372
+
1373
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2895
1374
+ msgid "Avoid Highways"
1375
+ msgstr "Unngå motorvei"
1376
+
1377
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2901
1378
+ msgid "From"
1379
+ msgstr "Fra"
1380
+
1381
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2909
1382
+ msgid "To"
1383
+ msgstr "Til"
1384
+
1385
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2919
1386
+ msgid "Go"
1387
+ msgstr "OK"
1388
+
1389
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2962
1390
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2995
1391
+ msgid "Fetching directions..."
1392
+ msgstr "Henter kjørebeskrivelse..."
1393
+
1394
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2965
1395
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2997
1396
+ msgid "Reset directions"
1397
+ msgstr "Nullstill kjørebeskrivelse"
1398
+
1399
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2967
1400
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2999
1401
+ #, fuzzy
1402
+ msgid "Print directions"
1403
+ msgstr "Hent kjørebeskrivelse"
1404
+
1405
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3073
1406
+ msgid "Thank you. Your marker is awaiting approval."
1407
+ msgstr ""
1408
+
1409
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3641
1410
+ msgid "Get directions"
1411
+ msgstr "Hent kjørebeskrivelse"
1412
+
1413
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3642
1414
+ msgid "My location"
1415
+ msgstr "Mitt sted"
1416
+
1417
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3643
1418
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2114
1419
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2255
1420
+ msgid "km away"
1421
+ msgstr ""
1422
+
1423
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3644
1424
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2112
1425
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2253
1426
+ msgid "miles away"
1427
+ msgstr ""
1428
+
1429
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3648
1430
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3650
1431
+ #, fuzzy
1432
+ msgid "Please fill out both the \"from\" and \"to\" fields"
1433
+ msgstr "Fyll ut både \"fra\" og \"til\" feltene"
1434
+
1435
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3653
1436
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3655
1437
+ msgid "Getting your current location address..."
1438
+ msgstr "Henter din nåværende adresse..."
1439
+
1440
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3659
1441
+ msgid "Show _MENU_ entries"
1442
+ msgstr "Show _MENU_ entries"
1443
+
1444
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3660
1445
+ msgid "Nothing found - sorry"
1446
+ msgstr "Nothing found - sorry"
1447
+
1448
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3661
1449
+ msgid "Showing _START_ to _END_ of _TOTAL_ records"
1450
+ msgstr "Showing _START_ to _END_ of _TOTAL_ records"
1451
+
1452
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3662
1453
+ msgid "Showing 0 to 0 of 0 records"
1454
+ msgstr "Showing 0 to 0 of 0 records"
1455
+
1456
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3663
1457
+ msgid "(filtered from _MAX_ total records)"
1458
+ msgstr "(filtered from _MAX_ total records)"
1459
+
1460
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3664
1461
+ msgid "First"
1462
+ msgstr "Første"
1463
+
1464
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3665
1465
+ msgid "Last"
1466
+ msgstr "Siste"
1467
+
1468
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3666
1469
+ msgid "Next"
1470
+ msgstr "Neste"
1471
+
1472
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3667
1473
+ #, fuzzy
1474
+ msgid "Previous"
1475
+ msgstr "Forrige"
1476
+
1477
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3668
1478
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7070
1479
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3046
1480
+ msgid "Search"
1481
+ msgstr "Søk"
1482
+
1483
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3673
1484
+ msgid "Please prove that you are human by checking the checkbox above"
1485
+ msgstr "Please prove that you are human by checking the checkbox above"
1486
+
1487
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1488
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:7
1489
+ msgid "WP Google Maps"
1490
+ msgstr "WP Google Maps"
1491
+
1492
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5020
1493
+ msgid ""
1494
+ "Please ensure you have <strong>both</strong> the <strong>Basic</strong> and "
1495
+ "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1496
+ "the same time in order for the plugin to function correctly."
1497
+ msgstr ""
1498
+ "Please ensure you have <strong>both</strong> the <strong>Basic</strong> and "
1499
+ "<strong>Pro</strong> versions of WP Google Maps installed and activated at "
1500
+ "the same time in order for the plugin to function correctly."
1501
+
1502
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5067
1503
+ msgid "Download ALL marker data to a CSV file"
1504
+ msgstr "Download ALL marker data to a CSV file"
1505
+
1506
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5068
1507
+ #, fuzzy
1508
+ msgid "Download ALL map data to a CSV file"
1509
+ msgstr "Download ALL marker data to a CSV file"
1510
+
1511
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5069
1512
+ #, fuzzy
1513
+ msgid "Download ALL polygon data to a CSV file"
1514
+ msgstr "Download ALL marker data to a CSV file"
1515
+
1516
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5070
1517
+ #, fuzzy
1518
+ msgid "Download ALL polyline data to a CSV file"
1519
+ msgstr "Download ALL marker data to a CSV file"
1520
+
1521
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5072
1522
+ msgid "Advanced Options"
1523
+ msgstr "Advanced Options"
1524
+
1525
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5087
1526
+ #, fuzzy
1527
+ msgid "Map Data"
1528
+ msgstr "Kart navn"
1529
+
1530
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5088
1531
+ #, fuzzy
1532
+ msgid "Marker Data"
1533
+ msgstr "Endre markør-posisjon"
1534
+
1535
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5089
1536
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:471
1537
+ msgid "Polygon Data"
1538
+ msgstr "Polygon Data"
1539
+
1540
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5090
1541
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:492
1542
+ msgid "Polyline Data"
1543
+ msgstr "Polyline Data"
1544
+
1545
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5095
1546
+ #, fuzzy
1547
+ msgid "Upload Map CSV File"
1548
+ msgstr "Upload CSV File"
1549
+
1550
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5103
1551
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5117
1552
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5139
1553
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5158
1554
+ msgid "Replace existing data with data in file"
1555
+ msgstr "Replace existing data with data in file"
1556
+
1557
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5106
1558
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5123
1559
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5142
1560
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5161
1561
+ msgid "Upload File"
1562
+ msgstr "Upload File"
1563
+
1564
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5107
1565
+ msgid "Download Map Data"
1566
+ msgstr ""
1567
+
1568
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5113
1569
+ #, fuzzy
1570
+ msgid "Upload Marker CSV File"
1571
+ msgstr "Upload CSV File"
1572
+
1573
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5118
1574
+ msgid ""
1575
+ "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1576
+ msgstr ""
1577
+
1578
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
1579
+ #, fuzzy
1580
+ msgid "Google API Key (Required)"
1581
+ msgstr "WP Google Maps"
1582
+
1583
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1584
+ msgid ""
1585
+ "You will need a Google Maps Geocode API key for this to work. See <a "
1586
+ "href='https://developers.google.com/maps/documentation/geocoding/"
1587
+ "#Limits'>Geocoding Documentation</a>"
1588
+ msgstr ""
1589
+
1590
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1591
+ msgid "There is a 0.12second delay between each request"
1592
+ msgstr ""
1593
+
1594
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5124
1595
+ #, fuzzy
1596
+ msgid "Download Marker Data"
1597
+ msgstr "Download ALL marker data to a CSV file"
1598
+
1599
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5131
1600
+ #, fuzzy
1601
+ msgid "Upload Polygon CSV File"
1602
+ msgstr "Upload CSV File"
1603
+
1604
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5143
1605
+ #, fuzzy
1606
+ msgid "Download Polygon Data"
1607
+ msgstr "Polygon Data"
1608
+
1609
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5150
1610
+ #, fuzzy
1611
+ msgid "Upload Polyline CSV File"
1612
+ msgstr "Upload CSV File"
1613
+
1614
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5162
1615
+ #, fuzzy
1616
+ msgid "Download Polyline Data"
1617
+ msgstr "Polyline Data"
1618
+
1619
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5166
1620
+ #, fuzzy
1621
+ msgid "Need help? Read the documentation."
1622
+ msgstr "WP Google Map innstillinger"
1623
+
1624
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5175
1625
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6471
1626
+ #, fuzzy
1627
+ msgid "WP Google Maps Support"
1628
+ msgstr "WP Google Maps"
1629
+
1630
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5178
1631
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6474
1632
+ msgid "Documentation"
1633
+ msgstr ""
1634
+
1635
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5180
1636
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6476
1637
+ msgid ""
1638
+ "Getting started? Read through some of these articles to help you along your "
1639
+ "way."
1640
+ msgstr ""
1641
+
1642
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
1643
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
1644
+ msgid "Documentation:"
1645
+ msgstr ""
1646
+
1647
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5183
1648
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6479
1649
+ #, fuzzy
1650
+ msgid "Creating your first map"
1651
+ msgstr "Create your Map"
1652
+
1653
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5184
1654
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6480
1655
+ msgid "Using your map as a Widget"
1656
+ msgstr ""
1657
+
1658
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5185
1659
+ msgid "Exporting and Importing your map markers"
1660
+ msgstr ""
1661
+
1662
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5186
1663
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6481
1664
+ msgid "Changing the Google Maps language"
1665
+ msgstr ""
1666
+
1667
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1668
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1669
+ #, fuzzy
1670
+ msgid "WP Google Maps Documentation"
1671
+ msgstr "WP Google Map innstillinger"
1672
+
1673
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1674
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1675
+ msgid "View all documentation."
1676
+ msgstr ""
1677
+
1678
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5191
1679
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6486
1680
+ #, fuzzy
1681
+ msgid "Troubleshooting"
1682
+ msgstr "Troubleshooting Options"
1683
+
1684
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5193
1685
+ msgid ""
1686
+ "WP Google Maps Pro has a diverse and wide range of features which may, from "
1687
+ "time to time, run into conflicts with the thousands of themes and other "
1688
+ "plugins on the market."
1689
+ msgstr ""
1690
+
1691
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
1692
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
1693
+ msgid "Common issues:"
1694
+ msgstr ""
1695
+
1696
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5196
1697
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6491
1698
+ msgid "My map is not showing on my website"
1699
+ msgstr ""
1700
+
1701
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5197
1702
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6492
1703
+ msgid "My markers are not showing on my map in the front-end"
1704
+ msgstr ""
1705
+
1706
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5198
1707
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6493
1708
+ msgid "I'm getting jQuery errors showing on my website"
1709
+ msgstr ""
1710
+
1711
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5202
1712
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:40
1713
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:45
1714
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3831
1715
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6497
1716
+ #, fuzzy
1717
+ msgid "Support"
1718
+ msgstr "Support forum."
1719
+
1720
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5204
1721
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6499
1722
+ msgid "Still need help? Use one of these links below."
1723
+ msgstr ""
1724
+
1725
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5206
1726
+ #, fuzzy
1727
+ msgid "Support desk"
1728
+ msgstr "Support forum."
1729
+
1730
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5207
1731
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6502
1732
+ msgid "Contact us"
1733
+ msgstr ""
1734
+
1735
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5223
1736
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4015
1737
+ msgid "WP Google Map Settings"
1738
+ msgstr "WP Google Map innstillinger"
1739
+
1740
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5247
1741
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3826
1742
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4149
1743
+ msgid "Maps"
1744
+ msgstr "Kart"
1745
+
1746
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5248
1747
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4150
1748
+ #, fuzzy
1749
+ msgid "InfoWindows"
1750
+ msgstr "InfoWindow Settings"
1751
+
1752
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5249
1753
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:236
1754
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:239
1755
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4151
1756
+ #, fuzzy
1757
+ msgid "Marker Listing"
1758
+ msgstr "Marker Listing Settings"
1759
+
1760
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5250
1761
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3829
1762
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4152
1763
+ msgid "Advanced"
1764
+ msgstr "Avansert"
1765
+
1766
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5251
1767
+ #, fuzzy
1768
+ msgid "Visitor Generated Markers"
1769
+ msgstr "Enable Visitor Generated Markers?"
1770
+
1771
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5252
1772
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4153
1773
+ msgid "Error Log"
1774
+ msgstr ""
1775
+
1776
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5270
1777
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4373
1778
+ #, fuzzy
1779
+ msgid "WP Google Maps Error log"
1780
+ msgstr "of WP Google Maps for only"
1781
+
1782
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5271
1783
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4374
1784
+ msgid ""
1785
+ "Having issues? Perhaps something below can give you a clue as to what's "
1786
+ "wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
1787
+ msgstr ""
1788
+
1789
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5284
1790
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
1791
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4381
1792
+ msgid "Save Settings"
1793
+ msgstr "Lagre innstillingene"
1794
+
1795
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5393
1796
+ #, fuzzy
1797
+ msgid "Visitor Generated Markers Settings"
1798
+ msgstr "Visitor Generated Marker Settings"
1799
+
1800
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
1801
+ #, fuzzy
1802
+ msgid "Purchase the Visitor Generated Markers Add-on"
1803
+ msgstr "Enable Visitor Generated Markers?"
1804
+
1805
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
1806
+ msgid ""
1807
+ "to enable this feature. <br /><br />If you have already purchased it please "
1808
+ "ensure that you have uploaded activated the plugin."
1809
+ msgstr ""
1810
+
1811
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
1812
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
1813
+ msgid "Marker Listing Settings"
1814
+ msgstr "Marker Listing Settings"
1815
+
1816
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
1817
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
1818
+ msgid ""
1819
+ "Changing these settings will alter the way the marker list appears on your "
1820
+ "website."
1821
+ msgstr ""
1822
+
1823
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
1824
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
1825
+ #, fuzzy
1826
+ msgid "Advanced Marker Listing"
1827
+ msgstr "Avanserte Kart-innstillinger"
1828
+
1829
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
1830
+ #, fuzzy
1831
+ msgid "Basic Marker Listings"
1832
+ msgstr "Marker Listing Settings"
1833
+
1834
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5476
1835
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4243
1836
+ #, fuzzy
1837
+ msgid "Column settings"
1838
+ msgstr "Other settings"
1839
+
1840
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5478
1841
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4245
1842
+ msgid "Hide the Icon column"
1843
+ msgstr "Hide the Icon column"
1844
+
1845
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5479
1846
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4246
1847
+ msgid "Hide the Title column"
1848
+ msgstr "Hide the Title column"
1849
+
1850
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5480
1851
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4247
1852
+ msgid "Hide the Address column"
1853
+ msgstr "Hide the Address column"
1854
+
1855
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5481
1856
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4248
1857
+ msgid "Hide the Category column"
1858
+ msgstr "Hide the Category column"
1859
+
1860
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5482
1861
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4249
1862
+ msgid "Hide the Description column"
1863
+ msgstr "Hide the Description column"
1864
+
1865
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5486
1866
+ #, fuzzy
1867
+ msgid "Show X items by default"
1868
+ msgstr "Info-vindu synlig som standard"
1869
+
1870
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5501
1871
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4255
1872
+ #, fuzzy
1873
+ msgid "Carousel Marker Listing"
1874
+ msgstr "Lagre markørens posisjon"
1875
+
1876
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5504
1877
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4258
1878
+ #, fuzzy
1879
+ msgid "Theme selection"
1880
+ msgstr "Use my location"
1881
+
1882
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5507
1883
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4261
1884
+ msgid "Sky"
1885
+ msgstr ""
1886
+
1887
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5508
1888
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4262
1889
+ msgid "Sun"
1890
+ msgstr ""
1891
+
1892
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5509
1893
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4263
1894
+ msgid "Earth"
1895
+ msgstr ""
1896
+
1897
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5510
1898
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4264
1899
+ msgid "Monotone"
1900
+ msgstr ""
1901
+
1902
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5511
1903
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4265
1904
+ msgid "PinkPurple"
1905
+ msgstr ""
1906
+
1907
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5512
1908
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4266
1909
+ msgid "White"
1910
+ msgstr ""
1911
+
1912
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5513
1913
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4267
1914
+ msgid "Black"
1915
+ msgstr ""
1916
+
1917
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5518
1918
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4272
1919
+ #, fuzzy
1920
+ msgid "Carousel settings"
1921
+ msgstr "Lagre innstillingene"
1922
+
1923
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5520
1924
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4274
1925
+ #, fuzzy
1926
+ msgid "Hide the Image"
1927
+ msgstr "Hide the Icon column"
1928
+
1929
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5521
1930
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4275
1931
+ #, fuzzy
1932
+ msgid "Hide the Title"
1933
+ msgstr "Hide the Title column"
1934
+
1935
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5522
1936
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4276
1937
+ #, fuzzy
1938
+ msgid "Hide the Marker Icon"
1939
+ msgstr "Hide the Category column"
1940
+
1941
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5523
1942
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4277
1943
+ #, fuzzy
1944
+ msgid "Hide the Address"
1945
+ msgstr "Hide the Address column"
1946
+
1947
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5524
1948
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4278
1949
+ #, fuzzy
1950
+ msgid "Hide the Description"
1951
+ msgstr "Hide the Description column"
1952
+
1953
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5525
1954
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4279
1955
+ #, fuzzy
1956
+ msgid "Hide the Marker Link"
1957
+ msgstr "Hide the address field"
1958
+
1959
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5526
1960
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4280
1961
+ #, fuzzy
1962
+ msgid "Hide the Directions Link"
1963
+ msgstr "Hide the Description column"
1964
+
1965
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5527
1966
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4281
1967
+ msgid "Resize Images with Timthumb"
1968
+ msgstr ""
1969
+
1970
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5528
1971
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4282
1972
+ msgid "Enable lazyload of images"
1973
+ msgstr ""
1974
+
1975
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5529
1976
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4283
1977
+ msgid "Enable autoheight"
1978
+ msgstr ""
1979
+
1980
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5530
1981
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4284
1982
+ #, fuzzy
1983
+ msgid "Enable pagination"
1984
+ msgstr "Aktiver kjørebeskrivelse"
1985
+
1986
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5531
1987
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4285
1988
+ #, fuzzy
1989
+ msgid "Enable navigation"
1990
+ msgstr "Aktiver kjørebeskrivelse"
1991
+
1992
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5532
1993
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4286
1994
+ msgid "Items"
1995
+ msgstr ""
1996
+
1997
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5533
1998
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4287
1999
+ msgid "Autoplay after x milliseconds (1000 = 1 second)"
2000
+ msgstr ""
2001
+
2002
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5548
2003
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5549
2004
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4311
2005
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4321
2006
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4342
2007
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4352
2008
+ msgid "You can use the following"
2009
+ msgstr ""
2010
+
2011
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5577
2012
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4127
2013
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6457
2014
+ msgid "This folder does not exist. Please create it."
2015
+ msgstr ""
2016
+
2017
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
2018
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
2019
+ msgid "File Permissions:"
2020
+ msgstr ""
2021
+
2022
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
2023
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
2024
+ msgid ""
2025
+ " - The plugin does not have write access to this folder. Please CHMOD this "
2026
+ "folder to 755 or 777, or change the location"
2027
+ msgstr ""
2028
+
2029
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
2030
+ #, fuzzy
2031
+ msgid "Google Maps API Key (optional)"
2032
+ msgstr "WP Google Maps"
2033
+
2034
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
2035
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
2036
+ msgid ""
2037
+ "This API key can be obtained from the <a href='https://console.developers."
2038
+ "google.com' target='_BLANK'>Google Developers Console</a>. Our <a "
2039
+ "href='http://www.wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
2040
+ "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2041
+ "this. "
2042
+ msgstr ""
2043
+
2044
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
2045
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
2046
+ msgid ""
2047
+ "We suggest that you change the two fields below ONLY if you are experiencing "
2048
+ "issues when trying to save the marker XML files."
2049
+ msgstr ""
2050
+
2051
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
2052
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
2053
+ msgid "Pull marker data from"
2054
+ msgstr ""
2055
+
2056
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5615
2057
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4332
2058
+ msgid "Database (Great for small amounts of markers)"
2059
+ msgstr ""
2060
+
2061
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5616
2062
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4333
2063
+ msgid "XML File (Great for large amounts of markers)"
2064
+ msgstr ""
2065
+
2066
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5620
2067
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4307
2068
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4338
2069
+ #, fuzzy
2070
+ msgid "Marker data XML directory"
2071
+ msgstr "Marker Category"
2072
+
2073
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5626
2074
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5636
2075
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4312
2076
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4322
2077
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4343
2078
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4353
2079
+ msgid "Currently using"
2080
+ msgstr ""
2081
+
2082
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5630
2083
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4316
2084
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4347
2085
+ msgid "Marker data XML URL"
2086
+ msgstr ""
2087
+
2088
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5640
2089
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5643
2090
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4357
2091
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4360
2092
+ #, fuzzy
2093
+ msgid "Custom CSS"
2094
+ msgstr "Egendefinert markør"
2095
+
2096
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5725
2097
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4156
2098
+ msgid "Map Settings"
2099
+ msgstr "Innstillinger for kart"
2100
+
2101
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5732
2102
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4159
2103
+ msgid "General Map Settings"
2104
+ msgstr "Generelle kart-innstillinger"
2105
+
2106
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5734
2107
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4161
2108
+ msgid "Disable StreetView"
2109
+ msgstr "Deaktiver StreetView"
2110
+
2111
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5735
2112
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4162
2113
+ msgid "Disable Zoom Controls"
2114
+ msgstr "Deaktiver Zoom-kontrollene"
2115
+
2116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5736
2117
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4163
2118
+ msgid "Disable Pan Controls"
2119
+ msgstr "Deaktiver Pan-kontrollene"
2120
+
2121
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5737
2122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4164
2123
+ msgid "Disable Map Type Controls"
2124
+ msgstr "Deaktiver kart type-kontrollene"
2125
+
2126
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5738
2127
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4165
2128
+ msgid "Disable Mouse Wheel Zoom"
2129
+ msgstr "Disable Mouse Wheel Zoom"
2130
+
2131
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5739
2132
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4166
2133
+ msgid "Disable Mouse Dragging"
2134
+ msgstr "Disable Mouse Dragging"
2135
+
2136
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5740
2137
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4167
2138
+ msgid "Disable Mouse Double Click Zooming"
2139
+ msgstr "Disable Mouse Double Click Zooming"
2140
+
2141
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5744
2142
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4224
2143
+ #, fuzzy
2144
+ msgid "Open Marker InfoWindows by"
2145
+ msgstr "Max InfoWindow Width"
2146
+
2147
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5748
2148
+ #, fuzzy
2149
+ msgid "Filter by category displayed as"
2150
+ msgstr "Filtrer etter kategori"
2151
+
2152
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5750
2153
+ #, fuzzy
2154
+ msgid "Dropdown"
2155
+ msgstr "Fall"
2156
+
2157
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5751
2158
+ msgid "Checkboxes"
2159
+ msgstr ""
2160
+
2161
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5757
2162
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4172
2163
+ msgid "Troubleshooting Options"
2164
+ msgstr "Troubleshooting Options"
2165
+
2166
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5759
2167
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4174
2168
+ #, fuzzy
2169
+ msgid ""
2170
+ "Over-ride current jQuery with version 1.11.3 (Tick this box if you are "
2171
+ "receiving jQuery related errors after updating to WordPress 4.5)"
2172
+ msgstr ""
2173
+ "Over-ride current jQuery with version 1.8.3 (Tick this box if you are "
2174
+ "receiving jQuery related errors)"
2175
+
2176
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5766
2177
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4181
2178
+ msgid ""
2179
+ "Do not load the Google Maps API (Only check this if your theme loads the "
2180
+ "Google Maps API by default)"
2181
+ msgstr ""
2182
+
2183
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5771
2184
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4186
2185
+ #, fuzzy
2186
+ msgid "Use Google Maps API"
2187
+ msgstr "WP Google Maps"
2188
+
2189
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5782
2190
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4197
2191
+ msgid "Lowest level of access to the map editor"
2192
+ msgstr ""
2193
+
2194
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5794
2195
+ #, fuzzy
2196
+ msgid "Retina Icon Width"
2197
+ msgstr "Bredde på boks for kjørebeskrivelse"
2198
+
2199
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5798
2200
+ msgid "Retina Icon Height"
2201
+ msgstr ""
2202
+
2203
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5853
2204
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5855
2205
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6922
2206
+ #, fuzzy
2207
+ msgid "No Global Setting"
2208
+ msgstr "Generelle kart-innstillinger"
2209
+
2210
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5868
2211
+ #, fuzzy
2212
+ msgid "InfoWindow Settings"
2213
+ msgstr "InfoWindow Settings"
2214
+
2215
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5904
2216
+ msgid "Image Thumbnails"
2217
+ msgstr "Image Thumbnails"
2218
+
2219
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5906
2220
+ msgid "Do not use TimThumb"
2221
+ msgstr "Do not use TimThumb"
2222
+
2223
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5907
2224
+ msgid ""
2225
+ "(Timthumb support will be discontinued in the next pro version release. "
2226
+ "Please check this box and make the necessary changes to your images using "
2227
+ "the settings below.)"
2228
+ msgstr ""
2229
+
2230
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
2231
+ msgid "Resize Images"
2232
+ msgstr ""
2233
+
2234
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5914
2235
+ msgid "Resize all images to the below sizes"
2236
+ msgstr ""
2237
+
2238
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5918
2239
+ msgid "Default Image Width"
2240
+ msgstr "Default Image Width"
2241
+
2242
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5919
2243
+ msgid "(can be left blank - max width will be limited to max infowindow width)"
2244
+ msgstr ""
2245
+
2246
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5922
2247
+ msgid "Default Image Height"
2248
+ msgstr "Default Image Height"
2249
+
2250
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5923
2251
+ msgid ""
2252
+ "(can be left blank - leaving both the width and height blank will revert to "
2253
+ "full size images being used)"
2254
+ msgstr ""
2255
+
2256
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
2257
+ #, fuzzy
2258
+ msgid "Max InfoWindow Width"
2259
+ msgstr "InfoWindow Settings"
2260
+
2261
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5927
2262
+ #, fuzzy
2263
+ msgid "(Minimum: 200px)"
2264
+ msgstr "(Minimum: 250px)"
2265
+
2266
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5930
2267
+ #, fuzzy
2268
+ msgid "Other settings"
2269
+ msgstr "Innstillinger"
2270
+
2271
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5932
2272
+ msgid "Open links in a new window"
2273
+ msgstr "Open links in a new window"
2274
+
2275
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5933
2276
+ msgid "(Tick this if you want to open your links in a new window)"
2277
+ msgstr "(Tick this if you want to open your links in a new window)"
2278
+
2279
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5934
2280
+ #, fuzzy
2281
+ msgid "Hide the address field"
2282
+ msgstr "Hide the Address column"
2283
+
2284
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5938
2285
+ msgid "Link text"
2286
+ msgstr "Link text"
2287
+
2288
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6215
2289
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3217
2290
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3651
2291
+ msgid "Your marker location has been saved."
2292
+ msgstr "Stedsmarkøren ble lagret."
2293
+
2294
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6270
2295
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3270
2296
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3682
2297
+ msgid "Your polygon has been created."
2298
+ msgstr "Polygonen ble opprettet."
2299
+
2300
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6330
2301
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3326
2302
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3714
2303
+ msgid "Your polygon has been saved."
2304
+ msgstr "Polygonen ble lagret."
2305
+
2306
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6364
2307
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3369
2308
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3745
2309
+ msgid "Your polyline has been created."
2310
+ msgstr "Polylinjen ble opprettet."
2311
+
2312
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6399
2313
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3411
2314
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3777
2315
+ msgid "Your polyline has been saved."
2316
+ msgstr "Polylinjen ble lagret."
2317
+
2318
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6442
2319
+ #, fuzzy
2320
+ msgid "Your dataset has been created."
2321
+ msgstr "Your category has been created."
2322
+
2323
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6487
2324
+ #, fuzzy
2325
+ msgid "Your dataset has been saved."
2326
+ msgstr "Your category has been saved."
2327
+
2328
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6594
2329
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6679
2330
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7396
2331
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8007
2332
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8095
2333
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:35
2334
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:121
2335
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:674
2336
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:34
2337
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:119
2338
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:658
2339
+ #, fuzzy
2340
+ msgid "Name"
2341
+ msgstr "Kart navn"
2342
+
2343
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6600
2344
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6685
2345
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:421
2346
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:41
2347
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:127
2348
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4569
2349
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5874
2350
+ msgid "Link"
2351
+ msgstr "Lenke"
2352
+
2353
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6603
2354
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6688
2355
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:28
2356
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:44
2357
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:130
2358
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:42
2359
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:127
2360
+ msgid "Line Color"
2361
+ msgstr ""
2362
+
2363
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6606
2364
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6691
2365
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:47
2366
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:133
2367
+ msgid "Line Opacity"
2368
+ msgstr ""
2369
+
2370
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6609
2371
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6694
2372
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:29
2373
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:50
2374
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:136
2375
+ msgid "Fill Color"
2376
+ msgstr ""
2377
+
2378
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6612
2379
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6697
2380
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8023
2381
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8111
2382
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:30
2383
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:53
2384
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:139
2385
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:50
2386
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:135
2387
+ msgid "Opacity"
2388
+ msgstr ""
2389
+
2390
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6615
2391
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6700
2392
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:56
2393
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:142
2394
+ msgid "On Hover Line Color"
2395
+ msgstr ""
2396
+
2397
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6618
2398
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6703
2399
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:59
2400
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:145
2401
+ msgid "On Hover Fill Color"
2402
+ msgstr ""
2403
+
2404
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6621
2405
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6706
2406
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:62
2407
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:148
2408
+ msgid "On Hover Opacity"
2409
+ msgstr ""
2410
+
2411
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6630
2412
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6714
2413
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:73
2414
+ msgid "Click on the map to insert a vertex."
2415
+ msgstr ""
2416
+
2417
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6631
2418
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6715
2419
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:74
2420
+ msgid "Click on a vertex to remove it."
2421
+ msgstr ""
2422
+
2423
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6632
2424
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6716
2425
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:75
2426
+ msgid "Drag a vertex to move it."
2427
+ msgstr ""
2428
+
2429
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6640
2430
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6724
2431
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:42
2432
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:90
2433
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:81
2434
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:167
2435
+ msgid "Save Polygon"
2436
+ msgstr "Save Polygon"
2437
+
2438
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6913
2439
+ #, fuzzy
2440
+ msgid "No marker listing"
2441
+ msgstr "Marker Listing Settings"
2442
+
2443
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6919
2444
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5641
2445
+ msgid "Copied to clipboard"
2446
+ msgstr ""
2447
+
2448
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7015
2449
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8031
2450
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8119
2451
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3004
2452
+ msgid "Radius"
2453
+ msgstr "Radius"
2454
+
2455
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7021
2456
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3010
2457
+ msgid "1mi"
2458
+ msgstr ""
2459
+
2460
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7022
2461
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3011
2462
+ msgid "5mi"
2463
+ msgstr ""
2464
+
2465
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7023
2466
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3012
2467
+ msgid "10mi"
2468
+ msgstr ""
2469
+
2470
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7024
2471
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3013
2472
+ msgid "25mi"
2473
+ msgstr ""
2474
+
2475
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7025
2476
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3014
2477
+ msgid "50mi"
2478
+ msgstr ""
2479
+
2480
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7026
2481
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3015
2482
+ msgid "75mi"
2483
+ msgstr ""
2484
+
2485
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7027
2486
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3016
2487
+ msgid "100mi"
2488
+ msgstr ""
2489
+
2490
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7028
2491
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3017
2492
+ msgid "150mi"
2493
+ msgstr ""
2494
+
2495
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7029
2496
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3018
2497
+ msgid "200mi"
2498
+ msgstr ""
2499
+
2500
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7030
2501
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3019
2502
+ msgid "300mi"
2503
+ msgstr ""
2504
+
2505
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7032
2506
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3021
2507
+ msgid "1km"
2508
+ msgstr ""
2509
+
2510
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7033
2511
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3022
2512
+ msgid "5km"
2513
+ msgstr ""
2514
+
2515
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7034
2516
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3023
2517
+ msgid "10km"
2518
+ msgstr ""
2519
+
2520
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7035
2521
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3024
2522
+ msgid "25km"
2523
+ msgstr ""
2524
+
2525
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7036
2526
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3025
2527
+ msgid "50km"
2528
+ msgstr ""
2529
+
2530
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7037
2531
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3026
2532
+ msgid "75km"
2533
+ msgstr ""
2534
+
2535
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7038
2536
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3027
2537
+ msgid "100km"
2538
+ msgstr ""
2539
+
2540
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7039
2541
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3028
2542
+ msgid "150km"
2543
+ msgstr ""
2544
+
2545
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7040
2546
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3029
2547
+ msgid "200km"
2548
+ msgstr ""
2549
+
2550
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7041
2551
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3030
2552
+ msgid "300km"
2553
+ msgstr ""
2554
+
2555
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7071
2556
+ msgid "Reset"
2557
+ msgstr ""
2558
+
2559
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7210
2560
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4512
2561
+ msgid "Type"
2562
+ msgstr "Type"
2563
+
2564
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7211
2565
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4513
2566
+ #, fuzzy
2567
+ msgid "Shortcode"
2568
+ msgstr "Short code"
2569
+
2570
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7221
2571
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:536
2572
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4524
2573
+ msgid "Trash"
2574
+ msgstr "Søppel"
2575
+
2576
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7222
2577
+ msgid "Duplicate"
2578
+ msgstr ""
2579
+
2580
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7225
2581
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7416
2582
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:540
2583
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:495
2584
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:516
2585
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:701
2586
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:685
2587
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4530
2588
+ msgid "Edit"
2589
+ msgstr "Rediger"
2590
+
2591
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7397
2592
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:472
2593
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:493
2594
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:422
2595
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:675
2596
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:659
2597
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5875
2598
+ msgid "Action"
2599
+ msgstr "Action"
2600
+
2601
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7417
2602
+ #, fuzzy
2603
+ msgid "Delete this dataset"
2604
+ msgstr "Slett denne markøren"
2605
+
2606
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8001
2607
+ msgid "Add heatmap data"
2608
+ msgstr ""
2609
+
2610
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8015
2611
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8103
2612
+ msgid "Gradient"
2613
+ msgstr ""
2614
+
2615
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2616
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2617
+ msgid "Default"
2618
+ msgstr ""
2619
+
2620
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2621
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2622
+ msgid "Blue"
2623
+ msgstr ""
2624
+
2625
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8056
2626
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8142
2627
+ #, fuzzy
2628
+ msgid "Save Dataset"
2629
+ msgstr "Save Category"
2630
+
2631
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8088
2632
+ msgid "Edit Dataset"
2633
+ msgstr ""
2634
+
2635
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2636
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:18
2637
+ msgid "Marker Categories"
2638
+ msgstr "Marker Categories"
2639
+
2640
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2641
+ msgid "Add New Category"
2642
+ msgstr "Add New Category"
2643
+
2644
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2645
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
2646
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
2647
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
2648
+ msgid "Pro Version"
2649
+ msgstr "Pro versjon"
2650
+
2651
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2652
+ #, fuzzy
2653
+ msgid "Create marker categories"
2654
+ msgstr "Marker Categories"
2655
+
2656
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2657
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
2658
+ msgid "with the"
2659
+ msgstr "med"
2660
+
2661
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2662
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
2663
+ msgid "of WP Google Maps for only"
2664
+ msgstr "of WP Google Maps for only"
2665
+
2666
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:24
2667
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4489
2668
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4549
2669
+ msgid "Problems with the plugin? See the troubleshooting manual."
2670
+ msgstr "Problems with the plugin? See the troubleshooting manual."
2671
+
2672
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:32
2673
+ msgid "There was a problem deleting the category."
2674
+ msgstr "There was a problem deleting the category."
2675
+
2676
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
2677
+ msgid "Delete your Category"
2678
+ msgstr "Delete your Category"
2679
+
2680
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:35
2681
+ msgid "Are you sure you want to delete the category"
2682
+ msgstr "Are you sure you want to delete the category"
2683
+
2684
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:85
2685
+ msgid "Add a Marker Category"
2686
+ msgstr "Add a Marker Category"
2687
+
2688
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:89
2689
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:171
2690
+ msgid "Category Name"
2691
+ msgstr "Category Name"
2692
+
2693
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:99
2694
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:181
2695
+ msgid "Category Marker"
2696
+ msgstr "Category Marker"
2697
+
2698
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:101
2699
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:183
2700
+ msgid ""
2701
+ "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
2702
+ "target='_BLANK' title='Great Google Map Markers'>here</a>"
2703
+ msgstr ""
2704
+ "Get great map markers <a href='http://mapicons.nicolasmollet.com/' "
2705
+ "target='_BLANK' title='Great Google Map Markers'>here</a>"
2706
+
2707
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
2708
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
2709
+ msgid "Retina Ready"
2710
+ msgstr ""
2711
+
2712
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:105
2713
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:187
2714
+ msgid "This marker is a retina-ready marker"
2715
+ msgstr ""
2716
+
2717
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:114
2718
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:196
2719
+ msgid "Assigned to "
2720
+ msgstr "Assigned to "
2721
+
2722
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:127
2723
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:210
2724
+ msgid "Save Category"
2725
+ msgstr "Save Category"
2726
+
2727
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:166
2728
+ #, fuzzy
2729
+ msgid "Edit a Marker Category"
2730
+ msgstr "Add a Marker Category"
2731
+
2732
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:292
2733
+ msgid "Your category has been created."
2734
+ msgstr "Your category has been created."
2735
+
2736
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:364
2737
+ msgid "Your category has been saved."
2738
+ msgstr "Your category has been saved."
2739
+
2740
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:374
2741
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:408
2742
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:439
2743
+ msgid "All"
2744
+ msgstr "All"
2745
+
2746
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:412
2747
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:463
2748
+ msgid "<em><small>No categories found</small></em>"
2749
+ msgstr ""
2750
+
2751
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:498
2752
+ msgid "All maps"
2753
+ msgstr "All maps"
2754
+
2755
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:529
2756
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:415
2757
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4563
2758
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5868
2759
+ msgid "Icon"
2760
+ msgstr "Ikon"
2761
+
2762
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:530
2763
+ msgid "Linked maps"
2764
+ msgstr "Linked maps"
2765
+
2766
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:255
2767
+ msgid "Header 1 should be 'id', not"
2768
+ msgstr "Header 1 should be 'id', not"
2769
+
2770
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:256
2771
+ msgid "Header 2 should be 'map_id', not"
2772
+ msgstr "Header 2 should be 'map_id', not"
2773
+
2774
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:257
2775
+ msgid "Header 3 should be 'address', not"
2776
+ msgstr "Header 3 should be 'address', not"
2777
+
2778
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:258
2779
+ msgid "Header 4 should be 'description', not"
2780
+ msgstr "Header 4 should be 'description', not"
2781
+
2782
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:259
2783
+ msgid "Header 5 should be 'pic', not"
2784
+ msgstr "Header 5 should be 'pic', not"
2785
+
2786
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:260
2787
+ msgid "Header 6 should be 'link', not"
2788
+ msgstr "Header 6 should be 'link', not"
2789
+
2790
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:261
2791
+ msgid "Header 7 should be 'icon', not"
2792
+ msgstr "Header 7 should be 'icon', not"
2793
+
2794
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:262
2795
+ msgid "Header 8 should be 'lat', not"
2796
+ msgstr "Header 8 should be 'lat', not"
2797
+
2798
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:263
2799
+ msgid "Header 9 should be 'lng', not"
2800
+ msgstr "Header 9 should be 'lng', not"
2801
+
2802
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:264
2803
+ msgid "Header 10 should be 'anim', not"
2804
+ msgstr "Header 10 should be 'anim', not"
2805
+
2806
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:265
2807
+ msgid "Header 11 should be 'title', not"
2808
+ msgstr "Header 11 should be 'title', not"
2809
+
2810
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:266
2811
+ msgid "Header 12 should be 'infoopen', not"
2812
+ msgstr "Header 12 should be 'infoopen', not"
2813
+
2814
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:267
2815
+ msgid "Header 13 should be 'category', not"
2816
+ msgstr "Header 13 should be 'category', not"
2817
+
2818
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:268
2819
+ #, fuzzy
2820
+ msgid "Header 14 should be 'approved', not"
2821
+ msgstr "Header 1 should be 'id', not"
2822
+
2823
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:269
2824
+ #, fuzzy
2825
+ msgid "Header 15 should be 'retina', not"
2826
+ msgstr "Header 1 should be 'id', not"
2827
+
2828
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:271
2829
+ msgid "CSV import failed"
2830
+ msgstr "CSV import failed"
2831
+
2832
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:341
2833
+ #, php-format
2834
+ msgid "Cannot import line %d as the LAT and/or LNG is not defined."
2835
+ msgstr ""
2836
+
2837
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
2838
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
2839
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:581
2840
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:662
2841
+ msgid "Your CSV file has been successfully imported"
2842
+ msgstr "Your CSV file has been successfully imported"
2843
+
2844
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:73
2845
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:114
2846
+ msgid "Edit Polygon"
2847
+ msgstr "Edit Polygon"
2848
+
2849
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
2850
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:702
2851
+ msgid "Delete this polygon"
2852
+ msgstr "Delete this polygon"
2853
+
2854
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polygons.php:496
2855
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
2856
+ msgid "Delete"
2857
+ msgstr "Slett"
2858
+
2859
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:42
2860
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:90
2861
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:81
2862
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:164
2863
+ msgid "Save Polyline"
2864
+ msgstr "Save Polyline"
2865
+
2866
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:73
2867
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:112
2868
+ msgid "Edit Polyline"
2869
+ msgstr "Edit Polyline"
2870
+
2871
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_polylines.php:517
2872
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:686
2873
+ msgid "Delete this polyline"
2874
+ msgstr "Delete this polyline"
2875
+
2876
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
2877
+ msgid "Select a Map Type (beta)"
2878
+ msgstr ""
2879
+
2880
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
2881
+ msgid "Show distance in:"
2882
+ msgstr ""
2883
+
2884
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
2885
+ msgid "Show bouncing icon:"
2886
+ msgstr ""
2887
+
2888
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
2889
+ msgid "Hide markers until search is done:"
2890
+ msgstr ""
2891
+
2892
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
2893
+ #, fuzzy
2894
+ msgid "Default 'To' Address:"
2895
+ msgstr "Standard \"til\" adresse"
2896
+
2897
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
2898
+ #, fuzzy
2899
+ msgid "Enter Address"
2900
+ msgstr "Adresse"
2901
+
2902
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:252
2903
+ #, fuzzy
2904
+ msgid "Basic Table"
2905
+ msgstr "Fusion table ID"
2906
+
2907
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:253
2908
+ #, fuzzy
2909
+ msgid "Basic List"
2910
+ msgstr "Fusion table ID"
2911
+
2912
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:254
2913
+ #, fuzzy
2914
+ msgid "Advanced Table"
2915
+ msgstr "Add marker"
2916
+
2917
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
2918
+ msgid "Blank Map"
2919
+ msgstr ""
2920
+
2921
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:221
2922
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5829
2923
+ msgid "View this link"
2924
+ msgstr "Vis denne lenken"
2925
+
2926
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:234
2927
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:235
2928
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5843
2929
+ msgid "Edit this marker"
2930
+ msgstr "Endre denne markøren"
2931
+
2932
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:237
2933
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5846
2934
+ #, fuzzy
2935
+ msgid "Approve this marker"
2936
+ msgstr "Slett denne markøren"
2937
+
2938
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:239
2939
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5848
2940
+ msgid "Delete this marker"
2941
+ msgstr "Slett denne markøren"
2942
+
2943
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:420
2944
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:327
2945
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5873
2946
+ msgid "Image"
2947
+ msgstr "Bilde"
2948
+
2949
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:169
2950
+ msgid "Visitor Generated Markers - Settings"
2951
+ msgstr "Visitor Generated Markers - Settings"
2952
+
2953
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:175
2954
+ msgid "Enable Visitor Generated Markers?"
2955
+ msgstr "Enable Visitor Generated Markers?"
2956
+
2957
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:184
2958
+ msgid "Who can add markers?"
2959
+ msgstr "Who can add markers?"
2960
+
2961
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
2962
+ msgid "Everyone"
2963
+ msgstr "Everyone"
2964
+
2965
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
2966
+ msgid "Registered Users"
2967
+ msgstr "Registered Users"
2968
+
2969
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
2970
+ msgid "Allow users to select a marker category?"
2971
+ msgstr "Allow users to select a marker category?"
2972
+
2973
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:202
2974
+ #, fuzzy
2975
+ msgid "Allow users to upload images?"
2976
+ msgstr "Allow users to select a marker category?"
2977
+
2978
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:306
2979
+ #, fuzzy
2980
+ msgid "Add your own marker"
2981
+ msgstr "Legg til markør"
2982
+
2983
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:314
2984
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:315
2985
+ msgid "Marker Title"
2986
+ msgstr "Marker Title"
2987
+
2988
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:318
2989
+ msgid "Marker Address or GPS Location"
2990
+ msgstr "Marker Address or GPS Location"
2991
+
2992
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
2993
+ #, fuzzy
2994
+ msgid "Marker Address"
2995
+ msgstr "Adresse"
2996
+
2997
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
2998
+ msgid "Or click on the map and drag to add a marker"
2999
+ msgstr ""
3000
+
3001
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
3002
+ msgid "Marker Description"
3003
+ msgstr "Marker Description"
3004
+
3005
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:338
3006
+ #, fuzzy
3007
+ msgid "Marker Category"
3008
+ msgstr "Marker Categories"
3009
+
3010
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:348
3011
+ msgid "Please tick this box to prove you are human"
3012
+ msgstr "Please tick this box to prove you are human"
3013
+
3014
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:352
3015
+ #, fuzzy
3016
+ msgid "Add marker"
3017
+ msgstr "Legg til markør"
3018
+
3019
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
3020
+ msgid "A new marker has been submitted for your map"
3021
+ msgstr ""
3022
+
3023
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
3024
+ msgid ""
3025
+ "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3026
+ "version 5.50 to allow for these settings"
3027
+ msgstr ""
3028
+
3029
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
3030
+ msgid "Visitor Generated Marker Settings"
3031
+ msgstr "Visitor Generated Marker Settings"
3032
+
3033
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:596
3034
+ msgid "Visitor Marker Input Settings"
3035
+ msgstr "Visitor Marker Input Settings"
3036
+
3037
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3038
+ msgid "Strip all HTML tags in descriptions and titles"
3039
+ msgstr "Strip all HTML tags in descriptions and titles"
3040
+
3041
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
3042
+ #, fuzzy
3043
+ msgid "Automatically approve visitor generated markers"
3044
+ msgstr "Enable Visitor Generated Markers?"
3045
+
3046
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3047
+ msgid "Email me whenever there is a new marker"
3048
+ msgstr ""
3049
+
3050
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3051
+ msgid "Email address:"
3052
+ msgstr ""
3053
+
3054
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:22
3055
+ msgid "Welcome to"
3056
+ msgstr ""
3057
+
3058
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:24
3059
+ msgid ""
3060
+ "Amazing maps. Simple interface. Powerful functionality. World Class Support."
3061
+ msgstr ""
3062
+
3063
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:26
3064
+ msgid "What's new?"
3065
+ msgstr ""
3066
+
3067
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:31
3068
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:24
3069
+ msgid "Let users search for products, branches and stores near them"
3070
+ msgstr ""
3071
+
3072
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:36
3073
+ msgid "Create service areas or coverage maps with polygons"
3074
+ msgstr ""
3075
+
3076
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:41
3077
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:36
3078
+ msgid "Create custom routes or outlines using polylines"
3079
+ msgstr ""
3080
+
3081
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:53
3082
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:49
3083
+ msgid "How did you find out about us?"
3084
+ msgstr ""
3085
+
3086
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:60
3087
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:56
3088
+ msgid "WordPress.org plugin repository"
3089
+ msgstr ""
3090
+
3091
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:61
3092
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:57
3093
+ msgid "What search term did you use?"
3094
+ msgstr ""
3095
+
3096
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:65
3097
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:61
3098
+ msgid "Google or other search engine"
3099
+ msgstr ""
3100
+
3101
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:69
3102
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:65
3103
+ msgid "Friend recommendation"
3104
+ msgstr ""
3105
+
3106
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:73
3107
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:69
3108
+ msgid "Other"
3109
+ msgstr ""
3110
+
3111
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:74
3112
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:70
3113
+ msgid "Please explain"
3114
+ msgstr ""
3115
+
3116
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:96
3117
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:92
3118
+ #, fuzzy
3119
+ msgid "New to WP Google Maps?"
3120
+ msgstr "WP Google Maps"
3121
+
3122
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3123
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3124
+ msgid "You may want to"
3125
+ msgstr ""
3126
+
3127
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3128
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3129
+ msgid "review our documentation"
3130
+ msgstr ""
3131
+
3132
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3133
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3134
+ msgid ""
3135
+ "before you get started. If you're a tech-savvy individual, you may skip this "
3136
+ "step."
3137
+ msgstr ""
3138
+
3139
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:100
3140
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:96
3141
+ msgid "Help me!"
3142
+ msgstr ""
3143
+
3144
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:101
3145
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3146
+ msgid "Visit our"
3147
+ msgstr ""
3148
+
3149
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:101
3150
+ #, fuzzy
3151
+ msgid "Support Forum"
3152
+ msgstr "Support forum."
3153
+
3154
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:101
3155
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3156
+ msgid "for quick and friendly help. We'll answer your request within 24hours."
3157
+ msgstr ""
3158
+
3159
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:104
3160
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:100
3161
+ msgid "Feedback"
3162
+ msgstr ""
3163
+
3164
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:105
3165
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:101
3166
+ msgid "We need you to help us make this plugin better."
3167
+ msgstr ""
3168
+
3169
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:105
3170
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:101
3171
+ msgid "Send us your feedback"
3172
+ msgstr ""
3173
+
3174
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:105
3175
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:101
3176
+ msgid "and we'll act on it as soon as humanly possible."
3177
+ msgstr ""
3178
+
3179
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:109
3180
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:105
3181
+ msgid "OK! Let's start"
3182
+ msgstr ""
3183
+
3184
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:9
3185
+ msgid "Add your map as a widget"
3186
+ msgstr ""
3187
+
3188
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:47
3189
+ #, fuzzy
3190
+ msgid "Select your map:"
3191
+ msgstr "Slett kartet."
3192
+
3193
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:3
3194
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:4
3195
+ #, fuzzy
3196
+ msgid "Welcome to WP Google Maps version 6.3"
3197
+ msgstr "WP Google Maps"
3198
+
3199
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
3200
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
3201
+ msgid ""
3202
+ "Thank you for updating! WP Google Maps version 6 helps you build amazing "
3203
+ "maps through a simple interface and powerful functionality along with world "
3204
+ "class support."
3205
+ msgstr ""
3206
+
3207
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
3208
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
3209
+ msgid "Welcome"
3210
+ msgstr ""
3211
+
3212
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:11
3213
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:12
3214
+ msgid "Credits"
3215
+ msgstr ""
3216
+
3217
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:15
3218
+ msgid "WP Google Maps is created by an international team of developers."
3219
+ msgstr ""
3220
+
3221
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:16
3222
+ msgid "Project Leaders"
3223
+ msgstr ""
3224
+
3225
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:22
3226
+ msgid "Founder &amp; Lead Developer"
3227
+ msgstr ""
3228
+
3229
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:25
3230
+ msgid "Contributers"
3231
+ msgstr ""
3232
+
3233
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:30
3234
+ msgid "Developer"
3235
+ msgstr ""
3236
+
3237
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:35
3238
+ msgid "Developer &amp; Support"
3239
+ msgstr ""
3240
+
3241
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:50
3242
+ #, fuzzy
3243
+ msgid "Marketing"
3244
+ msgstr "Marker Listing Settings"
3245
+
3246
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:55
3247
+ msgid "Security suggestions"
3248
+ msgstr ""
3249
+
3250
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3251
+ msgid "Want to see your name on this page?"
3252
+ msgstr ""
3253
+
3254
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3255
+ msgid "Get involved on GitHub."
3256
+ msgstr ""
3257
+
3258
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:18
3259
+ #, fuzzy
3260
+ msgid "Unlimited Markers"
3261
+ msgstr "List opp alle markører"
3262
+
3263
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:19
3264
+ #, fuzzy
3265
+ msgid "Create as many markers as you like"
3266
+ msgstr "Create marker categories"
3267
+
3268
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:31
3269
+ msgid ""
3270
+ "Select from various <a href='http://wpgmaps.com/map-themes/' "
3271
+ "target='_BLANK'>map themes</a>, or make your own."
3272
+ msgstr ""
3273
+
3274
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3275
+ #, fuzzy
3276
+ msgid "Support Desk"
3277
+ msgstr "Support forum."
3278
+
3279
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3280
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:56
3281
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:59
3282
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:62
3283
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
3284
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:142
3285
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:145
3286
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:148
3287
+ #, fuzzy
3288
+ msgid "Pro version only"
3289
+ msgstr "Pro versjon"
3290
+
3291
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3292
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
3293
+ #, fuzzy
3294
+ msgid "Get the Pro add-on"
3295
+ msgstr "Purchase the Pro Edition"
3296
+
3297
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:58
3298
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:143
3299
+ msgid "Line Thickness"
3300
+ msgstr ""
3301
+
3302
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:320
3303
+ msgid "My first map"
3304
+ msgstr ""
3305
+
3306
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3307
+ msgid ""
3308
+ "<strong>WP Google Maps cannot find the directory it uses to save marker data "
3309
+ "to. Please confirm that <em>"
3310
+ msgstr ""
3311
+
3312
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3313
+ msgid ""
3314
+ "</em>exists. Please also ensure that you assign file permissions of 755 (or "
3315
+ "777) to this directory."
3316
+ msgstr ""
3317
+
3318
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:549
3319
+ #, fuzzy
3320
+ msgid ""
3321
+ "Timthumb does not have 'write' permission for the cache directory. Please "
3322
+ "enable 'write' permissions (755 or 777) for "
3323
+ msgstr ""
3324
+ "The plugin directory does not have 'write' permissions. Please enable "
3325
+ "'write' permissions (755) for "
3326
+
3327
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
3328
+ #, fuzzy
3329
+ msgid "in order for images to show up while using Timthumb. Please see "
3330
+ msgstr "in order for this plugin to work! Please see "
3331
+
3332
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
3333
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
3334
+ msgid "this page"
3335
+ msgstr "this page"
3336
+
3337
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:555
3338
+ msgid ""
3339
+ "for help on how to do it. Alternatively, you can disable the use of Timthumb "
3340
+ "in Maps->Settings"
3341
+ msgstr ""
3342
+
3343
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
3344
+ msgid "DOMDocument is not enabled"
3345
+ msgstr ""
3346
+
3347
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2540
3348
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2550
3349
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2555
3350
+ msgid "Could not save XML file"
3351
+ msgstr ""
3352
+
3353
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3354
+ msgid "Error: The map ID"
3355
+ msgstr ""
3356
+
3357
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3358
+ msgid "does not exist"
3359
+ msgstr ""
3360
+
3361
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3228
3362
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3283
3363
+ msgid "You cannot save a blank polygon"
3364
+ msgstr ""
3365
+
3366
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3338
3367
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3382
3368
+ msgid "You cannot save a blank polyline"
3369
+ msgstr ""
3370
+
3371
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3478
3372
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3482
3373
+ msgid "Thank you for your feedback!"
3374
+ msgstr ""
3375
+
3376
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3828
3377
+ msgid "Categories"
3378
+ msgstr "Kategorier"
3379
+
3380
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3830
3381
+ msgid "Settings"
3382
+ msgstr "Innstillinger"
3383
+
3384
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3385
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3963
3386
+ msgid "Experiencing problems with the plugin?"
3387
+ msgstr "Opplever du problemer med pluginen?"
3388
+
3389
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3390
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3963
3391
+ msgid "See the troubleshooting manual."
3392
+ msgstr "See the troubleshooting manual."
3393
+
3394
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3395
+ msgid "Or ask a question on our "
3396
+ msgstr "Or ask a question on our "
3397
+
3398
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3399
+ msgid "Support forum."
3400
+ msgstr "Support forum."
3401
+
3402
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3857
3403
+ msgid "There was a problem deleting the map."
3404
+ msgstr "Det oppstod et problem ved sletting av kartet."
3405
+
3406
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
3407
+ msgid "Delete your map"
3408
+ msgstr "Slett kartet."
3409
+
3410
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3861
3411
+ msgid "Are you sure you want to delete the map"
3412
+ msgstr "Er du sikker på at du vil slette kartet"
3413
+
3414
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3870
3415
+ #, fuzzy
3416
+ msgid "There was a problem duplicating the map."
3417
+ msgstr "Det oppstod et problem ved sletting av kartet."
3418
+
3419
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3972
3420
+ msgid "There was a problem deleting the marker."
3421
+ msgstr "Det oppstod et problem ved sletting av markøren."
3422
+
3423
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
3424
+ msgid "Delete Marker"
3425
+ msgstr "Slett markør"
3426
+
3427
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3976
3428
+ msgid "Are you sure you want to delete this marker:"
3429
+ msgstr "Er du sikker på at du vil slette denne markøren:"
3430
+
3431
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3997
3432
+ msgid ""
3433
+ "We have detected a conflict between your current theme's version and our "
3434
+ "plugin. Should you be experiencing issues with your maps displaying, please "
3435
+ "update Avada to version 3.9.4 or check the checkbox labelled 'Over-ride "
3436
+ "current jQuery with version 1.11.3'."
3437
+ msgstr ""
3438
+
3439
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
3440
+ #, fuzzy
3441
+ msgid "Enable Usage Tracking"
3442
+ msgstr "Aktiver kjørebeskrivelse"
3443
+
3444
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
3445
+ msgid ""
3446
+ "Allow us to anonymously track how you use your maps and we will send you a "
3447
+ "15% Sola Plugins coupon as a token of our gratitude (Coupon will be sent to "
3448
+ "the administrator's email address)"
3449
+ msgstr ""
3450
+
3451
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4221
3452
+ #, fuzzy
3453
+ msgid "Marker InfoWindow Settings"
3454
+ msgstr "InfoWindow Settings"
3455
+
3456
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4296
3457
+ #, fuzzy
3458
+ msgid "Google Maps API Key"
3459
+ msgstr "WP Google Maps"
3460
+
3461
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4300
3462
+ #, fuzzy
3463
+ msgid "Google Maps API Key (required)"
3464
+ msgstr "WP Google Maps"
3465
+
3466
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4327
3467
+ #, fuzzy
3468
+ msgid "Marker Data Location"
3469
+ msgstr "Endre markør-posisjon"
3470
+
3471
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4421
3472
+ #, php-format
3473
+ msgid ""
3474
+ "<h3>We need your love!</h3><p>If you are enjoying our plugin, please "
3475
+ "consider <a href=\"%1$s\" target=\"_blank\" class=\"button button-primary"
3476
+ "\">reviewing WP Google Maps</a>. It would mean the world to us! If you are "
3477
+ "experiencing issues with the plugin, please <a href=\"%2$s\" target=\"_blank"
3478
+ "\" class=\"button button-secondary\">contact us</a> and we will help you as "
3479
+ "soon as humanly possible!</p>"
3480
+ msgstr ""
3481
+
3482
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3483
+ msgid "We will not nag you again, promise!"
3484
+ msgstr ""
3485
+
3486
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3487
+ msgid "Close"
3488
+ msgstr ""
3489
+
3490
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3491
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4467
3492
+ msgid "My Maps"
3493
+ msgstr "Mine kart"
3494
+
3495
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3496
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4546
3497
+ msgid "Add New"
3498
+ msgstr "Legg til"
3499
+
3500
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3501
+ msgid "Wizard"
3502
+ msgstr ""
3503
+
3504
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
3505
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
3506
+ msgid ""
3507
+ "We have detected a conflict between your current theme's version and our "
3508
+ "plugin. Should you be experiencing issues with your maps displaying, please "
3509
+ "update Avada to version 3.9.4 or go to <a href='"
3510
+ msgstr ""
3511
+
3512
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
3513
+ msgid "Create unlimited maps"
3514
+ msgstr "Lag uendelige kart"
3515
+
3516
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4546
3517
+ msgid "My Markers"
3518
+ msgstr "Markører"
3519
+
3520
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4564
3521
+ msgid "Linked to"
3522
+ msgstr "Lenket til"
3523
+
3524
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4567
3525
+ msgid "GPS"
3526
+ msgstr "GPS"
3527
+
3528
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4568
3529
+ msgid "Pic"
3530
+ msgstr "Bilde"
3531
+
3532
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4705
3533
+ msgid ""
3534
+ "Add custom icons, titles, descriptions, pictures and links to your markers "
3535
+ "with the"
3536
+ msgstr ""
3537
+ "Legg til egendefinerte ikoner, titler, beskrivelser, bilder og lenker til "
3538
+ "markørene med"
3539
+
3540
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4705
3541
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4706
3542
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3543
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3544
+ msgid "Pro Edition"
3545
+ msgstr "Pro Edition"
3546
+
3547
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4705
3548
+ msgid "of this plugin for just"
3549
+ msgstr "of this plugin for just"
3550
+
3551
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4706
3552
+ msgid "Purchase the Pro Edition"
3553
+ msgstr "Purchase the Pro Edition"
3554
+
3555
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4706
3556
+ msgid "of WP Google Maps and save your markers to a CSV file!"
3557
+ msgstr "of WP Google Maps and save your markers to a CSV file!"
3558
+
3559
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4731
3560
+ msgid "Please note"
3561
+ msgstr ""
3562
+
3563
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4731
3564
+ msgid ""
3565
+ "We've noticed that you are using W3 Total Cache and that you have CDN "
3566
+ "enabled.<br /><br />In order for the markers to show up on your map, you "
3567
+ "need to add '<strong><em>{uploads_dir}/wp-google-maps*</strong></em>' to the "
3568
+ "'<strong>rejected files</strong>' list in the <a href='admin.php?"
3569
+ "page=w3tc_cdn#advanced'>CDN settings page</a> of W3 Total Cache"
3570
+ msgstr ""
3571
+
3572
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
3573
+ msgid "Pro Upgrade"
3574
+ msgstr ""
3575
+
3576
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5004
3577
+ msgid "Query string"
3578
+ msgstr ""
3579
+
3580
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5009
3581
+ msgid "Show bouncing icon"
3582
+ msgstr ""
3583
+
3584
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5026
3585
+ msgid "Enable Bicycle Layer?"
3586
+ msgstr "Aktiver sykkel-lag?"
3587
+
3588
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5035
3589
+ msgid "Enable Traffic Layer?"
3590
+ msgstr "Aktiver trafikk-lag?"
3591
+
3592
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5046
3593
+ #, fuzzy
3594
+ msgid "Enable Public Transport Layer?"
3595
+ msgstr "Aktiver trafikk-lag?"
3596
+
3597
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5057
3598
+ msgid "Maximum Zoom Level"
3599
+ msgstr ""
3600
+
3601
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5089
3602
+ #, fuzzy
3603
+ msgid ""
3604
+ "Get the rest of these advanced features with the Pro version for only <a "
3605
+ "href=\"http://www.wpgmaps.com/purchase-professional-version/?"
3606
+ "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$39.99 once off</"
3607
+ "a>. Support and updates included forever."
3608
+ msgstr ""
3609
+ "Get all of these advanced features with the Pro version for only <a href="
3610
+ "\"http://www.wpgmaps.com/purchase-professional-version/?"
3611
+ "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$14.99 once off</"
3612
+ "a>. Support and updates included forever."
3613
+
3614
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
3615
+ msgid "Read data directly from your Fusion Table."
3616
+ msgstr "Read data directly from your Fusion Table."
3617
+
3618
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
3619
+ #, fuzzy
3620
+ msgid ""
3621
+ "Enable Marker Listing with the <a href=\"http://www.wpgmaps.com/purchase-"
3622
+ "professional-version/?"
3623
+ "utm_source=plugin&utm_medium=link&utm_campaign=marker_listing\">Pro version "
3624
+ "for only $39.99 once off</a>. Support and updates included forever."
3625
+ msgstr ""
3626
+ "Get all of these advanced features with the Pro version for only <a href="
3627
+ "\"http://www.wpgmaps.com/purchase-professional-version/?"
3628
+ "utm_source=plugin&utm_medium=link&utm_campaign=advanced\">$14.99 once off</"
3629
+ "a>. Support and updates included forever."
3630
+
3631
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5141
3632
+ #, fuzzy
3633
+ msgid "List Markers"
3634
+ msgstr "List opp alle markører"
3635
+
3636
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5146
3637
+ msgid "Advanced table with real time search and filtering"
3638
+ msgstr ""
3639
+
3640
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
3641
+ msgid "beta"
3642
+ msgstr ""
3643
+
3644
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5218
3645
+ msgid "Basic"
3646
+ msgstr ""
3647
+
3648
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5219
3649
+ msgid "Show a basic list of your markers"
3650
+ msgstr ""
3651
+
3652
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5228
3653
+ msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
3654
+ msgstr ""
3655
+
3656
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5236
3657
+ msgid "Tabular"
3658
+ msgstr ""
3659
+
3660
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
3661
+ msgid "Advanced, tabular marker listing functionality with real time filtering"
3662
+ msgstr ""
3663
+
3664
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
3665
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5424
3666
+ #, fuzzy
3667
+ msgid "Advanced markers"
3668
+ msgstr "Add marker"
3669
+
3670
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5364
3671
+ #, fuzzy
3672
+ msgid "Polygon"
3673
+ msgstr "Polygoner"
3674
+
3675
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5412
3676
+ msgid "Please add the current marker before trying to add another marker"
3677
+ msgstr ""
3678
+
3679
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
3680
+ #, fuzzy
3681
+ msgid "Add advanced markers"
3682
+ msgstr "Legg til markør"
3683
+
3684
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
3685
+ #, fuzzy
3686
+ msgid "with the Pro version"
3687
+ msgstr "Pro versjon"
3688
+
3689
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5472
3690
+ msgid "Select"
3691
+ msgstr "Velg"
3692
+
3693
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
3694
+ msgid "Add dynamic heatmap data"
3695
+ msgstr ""
3696
+
3697
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
3698
+ #, fuzzy
3699
+ msgid "with the Pro version."
3700
+ msgstr "Pro versjon"
3701
+
3702
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5501
3703
+ msgid "View a demo."
3704
+ msgstr ""
3705
+
3706
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
3707
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
3708
+ msgid "The map could not load."
3709
+ msgstr ""
3710
+
3711
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
3712
+ msgid ""
3713
+ "This is normally caused by a conflict with another plugin or a JavaScript "
3714
+ "error that is preventing our plugin's Javascript from executing. Please try "
3715
+ "disable all plugins one by one and see if this problem persists."
3716
+ msgstr ""
3717
+
3718
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
3719
+ msgid "Add detailed information to your markers!"
3720
+ msgstr "Legg til detaljert informasjon om markørene!"
3721
+
3722
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5537
3723
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5541
3724
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5545
3725
+ msgid "Add custom markers to your map!"
3726
+ msgstr "Legg til egendefinerte markører til kartet!"
3727
+
3728
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5538
3729
+ msgid "Add detailed information to your markers for only"
3730
+ msgstr "Legg til detaljert informasjon til markørene kun for"
3731
+
3732
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5538
3733
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3734
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3735
+ msgid "Click"
3736
+ msgstr "Klikk"
3737
+
3738
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5538
3739
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3740
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3741
+ msgid "here"
3742
+ msgstr "her"
3743
+
3744
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3745
+ msgid ""
3746
+ "Add different marker icons, or your own icons to make your map really stand "
3747
+ "out!"
3748
+ msgstr ""
3749
+ "Legg til forskjellige markør-ikoner, eller dine egne ikoner til kartet!"
3750
+
3751
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3752
+ msgid "Allow your visitors to get directions to your markers!"
3753
+ msgstr "Tillat dine besøkende å få kjørebeskrivelse til markørene!"
3754
+
3755
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5581
3756
+ msgid "Edit Marker Location"
3757
+ msgstr "Endre markør-posisjon"
3758
+
3759
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5590
3760
+ msgid "Marker Latitude"
3761
+ msgstr "Markørens breddegrad"
3762
+
3763
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5594
3764
+ msgid "Marker Longitude"
3765
+ msgstr "Markørens lengdegrad"
3766
+
3767
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5599
3768
+ msgid "Save Marker Location"
3769
+ msgstr "Lagre markørens posisjon"
3770
+
3771
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5600
3772
+ msgid ""
3773
+ "Tip: Use your mouse to change the location of the marker. Simply click and "
3774
+ "drag it to your desired location."
3775
+ msgstr ""
3776
+ "Tip: Use your mouse to change the location of the marker. Simply click and "
3777
+ "drag it to your desired location."
3778
+
3779
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
3780
+ msgid ""
3781
+ "This is normally caused by a conflict with another plugin or a JavaScript "
3782
+ "error that is preventing our plugin's Javascript from executing. Please try "
3783
+ "disable all plugins one by one and see if this problem persists. If it "
3784
+ "persists, please contact nick@wpgmaps.com for support."
3785
+ msgstr ""
3786
+
3787
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5778
3788
+ #, fuzzy
3789
+ msgid ""
3790
+ "There are too many markers to make use of the live edit function. The "
3791
+ "maximum amount for this functionality is 5000 markers. Anything more than "
3792
+ "that could crash your browser. In order to edit your markers, you would need "
3793
+ "to download the table in CSV format, edit it and re-upload it."
3794
+ msgstr ""
3795
+ "There are too many markers to make use of the live edit function. The "
3796
+ "maximum amount for this functionality is 2000 markers. Anything more than "
3797
+ "that could crash your browser. In order to edit your markers, you would need "
3798
+ "to download the table in CSV format, edit it and re-upload it."
3799
+
3800
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5844
3801
+ #, fuzzy
3802
+ msgid "Edit this marker location"
3803
+ msgstr "Endre markør-posisjon"
3804
+
3805
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6023
3806
+ msgid ""
3807
+ "The plugin directory does not have 'write' permissions. Please enable "
3808
+ "'write' permissions (755) for "
3809
+ msgstr ""
3810
+ "The plugin directory does not have 'write' permissions. Please enable "
3811
+ "'write' permissions (755) for "
3812
+
3813
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
3814
+ msgid "in order for this plugin to work! Please see "
3815
+ msgstr "in order for this plugin to work! Please see "
3816
+
3817
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6029
3818
+ msgid "for help on how to do it."
3819
+ msgstr "for help on how to do it."
3820
+
3821
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
3822
+ msgid ""
3823
+ "WP Google Maps does not have write permission to the marker location "
3824
+ "directory. This is required to store marker data. Please CHMOD the folder "
3825
+ msgstr ""
3826
+
3827
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6460
3828
+ msgid ""
3829
+ " to 755 or 777, or change the directory in the Maps->Settings page. (Current "
3830
+ "file permissions are "
3831
+ msgstr ""
3832
+
3833
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6488
3834
+ msgid ""
3835
+ "WP Google Maps has a diverse and wide range of features which may, from time "
3836
+ "to time, run into conflicts with the thousands of themes and other plugins "
3837
+ "on the market."
3838
+ msgstr ""
3839
+
3840
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
3841
+ #, fuzzy
3842
+ msgid "Support forum"
3843
+ msgstr "Support forum."
3844
+
3845
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6658
3846
+ msgid "United States of America"
3847
+ msgstr ""
3848
+
3849
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6668
3850
+ #, fuzzy
3851
+ msgid "View the instruction video"
3852
+ msgstr "Hide the Description column"
3853
+
3854
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6669
3855
+ #, fuzzy
3856
+ msgid "Read the documentation"
3857
+ msgstr "WP Google Map innstillinger"
3858
+
3859
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6670
3860
+ msgid "Important Notification"
3861
+ msgstr ""
3862
+
3863
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6671
3864
+ msgid "You can read more about that here."
3865
+ msgstr ""
3866
+
3867
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
3868
+ msgid ""
3869
+ "Before you begin please note that *ALL* Google Maps now require an API key "
3870
+ "to function."
3871
+ msgstr ""
3872
+
3873
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
3874
+ msgid "Create an API key now (free)"
3875
+ msgstr ""
3876
+
3877
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
3878
+ msgid "Once created, simply paste your API key here and press save."
3879
+ msgstr ""
3880
+
3881
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
3882
+ #, php-format
3883
+ msgid "Need help? %s or %s."
3884
+ msgstr ""
3885
+
3886
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6676
3887
+ msgid "Google Maps JavaScript API Key: "
3888
+ msgstr ""
3889
+
3890
+ #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
3891
+ msgid "Once saved, it may take up to 5 minutes for your map to display."
3892
+ msgstr ""
3893
+
3894
+ #~ msgid ""
3895
+ #~ "Use the <a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/"
3896
+ #~ "styledmaps/wizard/index.html' target='_BLANK'>Google Maps API Styled Map "
3897
+ #~ "Wizard</a> to get your style settings"
3898
+ #~ msgstr ""
3899
+ #~ "Bruk \n"
3900
+ #~ "<a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/styledmaps/"
3901
+ #~ "wizard/index.html' target='_BLANK'>Google Maps API Styled Map Wizard</a> "
3902
+ #~ "for å hente stil-innstillingene"
3903
+
3904
+ #~ msgid "Enable Advanced Styling"
3905
+ #~ msgstr "Aktiver avansert styling"
3906
+
3907
+ #~ msgid "Save Style Settings"
3908
+ #~ msgstr "Lagre stil-innstillingene"
3909
+
3910
+ #~ msgid "List all markers below the map"
3911
+ #~ msgstr "List opp alle markører under kartet"
3912
+
3913
+ #~ msgid "Select this for the advanced listing functionality"
3914
+ #~ msgstr "Velg dette for avansert listefunksjon"
3915
+
3916
+ #~ msgid "Add Polygons to your maps for only"
3917
+ #~ msgstr "Legg til polygoner til kartet kun for"
3918
+
3919
+ #~ msgid "Add Polylines and routes to your maps for only"
3920
+ #~ msgstr "Legg til polylinjer til kartet kun for"
3921
+
3922
+ #~ msgid "Map Dimensions"
3923
+ #~ msgstr "Map Dimensions"
3924
+
3925
+ #~ msgid "Or paste image URL"
3926
+ #~ msgstr "Or paste image URL"
3927
+
3928
+ #~ msgid "OR"
3929
+ #~ msgstr "OR"
3930
+
3931
+ #~ msgid "(Tick this if you are having problems viewing your thumbnail images)"
3932
+ #~ msgstr ""
3933
+ #~ "(Tick this if you are having problems viewing your thumbnail images)"
languages/wp-google-maps-pl_PL.mo CHANGED
Binary file
languages/wp-google-maps-pl_PL.po CHANGED
@@ -2,33 +2,32 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: wpgooglemaps\n"
4
  "POT-Creation-Date: 2016-07-18 13:38+0200\n"
5
- "PO-Revision-Date: 2016-07-18 13:38+0200\n"
6
  "Last-Translator: Michał Kotnowski <michal.kotnowski@ukotka.com>\n"
7
  "Language-Team: Michal Kotnowski <michal.kotnowski@ukotka.com>\n"
8
  "Language: pl_PL\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-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
16
  "|| n%100>=20) ? 1 : 2);\n"
17
- "X-Poedit-SearchPath-0: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
18
- "google-maps\n"
19
- "X-Poedit-SearchPath-1: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
20
- "google-maps-pro\n"
21
- "X-Poedit-SearchPath-2: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
22
- "google-maps-gold\n"
23
- "X-Poedit-SearchPath-3: C:\\wamp\\www\\wordpress38\\wp-content\\plugins\\wp-"
24
- "google-maps-ugm\n"
25
 
26
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
27
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
28
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:764
29
- #, fuzzy
30
  msgid "settings"
31
- msgstr "Ustawienia"
32
 
33
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:244
34
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3713
@@ -38,6 +37,8 @@ msgid ""
38
  "Your Google Maps API key has been successfully saved. This API key can be "
39
  "changed in the %s page"
40
  msgstr ""
 
 
41
 
42
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
43
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
@@ -140,9 +141,8 @@ msgstr "Nie"
140
 
141
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1610
142
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6677
143
- #, fuzzy
144
  msgid "Save"
145
- msgstr "Zapisz mapę"
146
 
147
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
148
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
@@ -172,11 +172,11 @@ msgstr "Ustawienia zostały zapisane."
172
 
173
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1811
174
  msgid "Location Tracking"
175
- msgstr ""
176
 
177
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1838
178
  msgid "Real time location tracking"
179
- msgstr ""
180
 
181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1841
182
  #, fuzzy
@@ -186,7 +186,7 @@ msgstr "Włącz lokalizację sklepów"
186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1849
187
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1796
188
  msgid "Default User Location Icon"
189
- msgstr ""
190
 
191
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1850
192
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1670
@@ -197,57 +197,57 @@ msgstr "Załaduj obrazek"
197
 
198
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1854
199
  msgid "Show"
200
- msgstr ""
201
 
202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
203
  msgid "Route"
204
- msgstr ""
205
 
206
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
207
- #, fuzzy
208
  msgid "Last Location"
209
- msgstr "Edytuj położenie"
210
 
211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1862
212
  msgid "Route Styling"
213
- msgstr ""
214
 
215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1870
216
  msgid "Route Colour - Normal"
217
- msgstr ""
218
 
219
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1877
220
  msgid "Route Colour - Hover"
221
- msgstr ""
222
 
223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1884
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
  msgid "Route Thickness"
229
- msgstr ""
230
 
231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1906
232
  msgid "Devices"
233
- msgstr ""
234
 
235
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1924
236
- #, fuzzy
237
  msgid "Marker Clustering"
238
- msgstr "Ustawienia pokazywania znaczników"
239
 
240
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1984
241
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1987
242
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1990
243
  msgid "Real Time Location Tracking"
244
- msgstr ""
245
 
246
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
247
  msgid ""
248
  "Track your location via our app and plot your current location on a map, "
249
  "publicly or privately."
250
  msgstr ""
 
 
251
 
252
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
253
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
@@ -260,47 +260,50 @@ msgstr "Utwórz mapę"
260
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2049
261
  #, php-format
262
  msgid "Location as at %1$s"
263
- msgstr ""
264
 
265
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2131
266
  msgid "Successfully accepted the device. Thank you"
267
- msgstr ""
268
 
269
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2172
270
  msgid "Device has been removed. Thank you"
271
- msgstr ""
272
 
273
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2193
274
- #, fuzzy
275
  msgid "Marker Data Cleared."
276
- msgstr "Edycja położenia znacznika"
277
 
278
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
279
  msgid "A new device needs your approval to enable real time location tracking."
280
  msgstr ""
 
 
281
 
282
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2231
283
  msgid "Device ID:"
284
- msgstr ""
285
 
286
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2232
287
  #, php-format
288
  msgid "To accept this device, Please follow this link: %1$s"
289
- msgstr ""
290
 
291
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2238
292
  msgid "To reject the device, simply ignore this email."
293
- msgstr ""
294
 
295
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2239
296
  msgid ""
297
  "A new device needs your approval to enable real time location tracking - WP "
298
  "Google Maps"
299
  msgstr ""
 
 
300
 
301
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
302
  msgid "No devices"
303
- msgstr ""
304
 
305
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
306
  msgid "including Pro &amp; Gold add-ons"
@@ -315,20 +318,21 @@ msgid ""
315
  "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
316
  "a>. Your current Gold version is not compatible with the current Pro version."
317
  msgstr ""
 
 
 
318
 
319
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
320
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6983
321
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2991
322
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4619
323
- #, fuzzy
324
  msgid "ZIP / Address:"
325
- msgstr "Kod pocztowy/Adres"
326
 
327
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1140
328
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6984
329
- #, fuzzy
330
  msgid "Title / Description:"
331
- msgstr "Opis"
332
 
333
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1189
334
  #, fuzzy
@@ -345,13 +349,12 @@ msgstr "ID tabeli Fusion"
345
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1195
346
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6914
347
  msgid "Basic list"
348
- msgstr ""
349
 
350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1198
351
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6916
352
- #, fuzzy
353
  msgid "Advanced table"
354
- msgstr "Zaawansowane"
355
 
356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1201
357
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6912
@@ -359,38 +362,35 @@ msgstr "Zaawansowane"
359
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
360
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5227
361
  msgid "Carousel"
362
- msgstr ""
363
 
364
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1280
365
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5845
366
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6917
367
  msgid "Default Infowindow"
368
- msgstr ""
369
 
370
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1282
371
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5847
372
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6918
373
- #, fuzzy
374
  msgid "Modern Infowindow"
375
- msgstr "Otwórz okna informacyjne znacznika poprzez"
376
 
377
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1284
378
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5849
379
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6920
380
- #, fuzzy
381
  msgid "Modern Plus Infowindow"
382
- msgstr "Otwórz okna informacyjne znacznika poprzez"
383
 
384
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1286
385
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5851
386
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6921
387
- #, fuzzy
388
  msgid "Circular Infowindow"
389
- msgstr "Otwórz okna informacyjne znacznika poprzez"
390
 
391
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
392
  msgid "Currently using your selection chosen in the global settings"
393
- msgstr ""
394
 
395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
396
  msgid "Download this as a CSV file"
@@ -403,6 +403,7 @@ msgstr "Pobierz dane jako plik CSV"
403
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
404
  msgid "Please update your basic version to use this function."
405
  msgstr ""
 
406
 
407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
408
  #, fuzzy
@@ -429,7 +430,7 @@ msgstr "Ogólne ustawienia map"
429
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:30
430
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4768
431
  msgid "Themes"
432
- msgstr ""
433
 
434
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1390
435
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2596
@@ -474,7 +475,7 @@ msgstr "Krótki kod"
474
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1432
475
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4806
476
  msgid "copy this into your post or page to display the map"
477
- msgstr "skopiuj tą informację do postu lub strony, aby wyświetlić mapę"
478
 
479
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1436
480
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4809
@@ -484,7 +485,7 @@ msgstr "Nazwa mapy"
484
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1440
485
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4835
486
  msgid "Zoom Level"
487
- msgstr ""
488
 
489
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1447
490
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7208
@@ -497,7 +498,7 @@ msgstr "Szerokość"
497
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4820
498
  #, php-format
499
  msgid "Set to 100% for a responsive map"
500
- msgstr ""
501
 
502
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1459
503
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7209
@@ -513,6 +514,9 @@ msgid ""
513
  "We recommend that you leave your height in PX. Depending on your theme, "
514
  "using % for the height may break your map."
515
  msgstr ""
 
 
 
516
 
517
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
518
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
@@ -523,29 +527,27 @@ msgstr "Usuń mapę"
523
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1513
524
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4898
525
  msgid "Or use a custom theme"
526
- msgstr ""
527
 
528
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1514
529
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4899
530
  msgid "Browse the theme directory"
531
- msgstr ""
532
 
533
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1515
534
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4900
535
- #, fuzzy
536
  msgid "Paste your custom theme data here:"
537
- msgstr "Wkej tutaj dane JSON"
538
 
539
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1517
540
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4902
541
- #, fuzzy
542
  msgid "Preview"
543
- msgstr "Poprzednie"
544
 
545
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1535
546
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4928
547
  msgid "Enable Directions?"
548
- msgstr "Włączyć wskazówki dojazu?"
549
 
550
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1547
551
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4940
@@ -579,15 +581,15 @@ msgstr "Szerokosć okna wskazówek"
579
 
580
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1566
581
  msgid "px"
582
- msgstr ""
583
 
584
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1567
585
  msgid "%"
586
- msgstr ""
587
 
588
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1572
589
  msgid "Default 'To' address"
590
- msgstr "Domyślny adres 'Do'"
591
 
592
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1588
593
  #, fuzzy
@@ -602,20 +604,20 @@ msgstr "Włącz lokalizację sklepów"
602
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1599
603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4976
604
  msgid "Restrict to country"
605
- msgstr ""
606
 
607
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1608
608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4982
609
  msgid "No country selected"
610
- msgstr ""
611
 
612
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
613
  msgid "Insert country TLD. For example, use DE for Germany."
614
- msgstr ""
615
 
616
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
617
  msgid "Leave blank for no restrictions."
618
- msgstr ""
619
 
620
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1626
621
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4996
@@ -626,95 +628,92 @@ msgstr "Pokazuj odległość w"
626
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
627
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
628
  msgid "Miles"
629
- msgstr "milach"
630
 
631
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
632
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
634
  msgid "Kilometers"
635
- msgstr "kilometrach"
636
 
637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1635
638
- #, fuzzy
639
  msgid "Store Locator Placement"
640
- msgstr "Dokumentacja lokalizatora sklepów"
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
  msgid "Below Map"
645
- msgstr ""
646
 
647
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
648
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
649
- #, fuzzy
650
  msgid "Above Map"
651
- msgstr "Zapisz mapę"
652
 
653
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1644
654
  msgid "Allow category selection"
655
- msgstr ""
656
 
657
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
658
- #, fuzzy
659
  msgid "Allow users to use their location as the starting point"
660
- msgstr "Zezwolić użytkownikom na wybór kategorii znacznika?"
661
 
662
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
663
  msgid ""
664
  "Please ensure that \"show user's location\" is enabled in the \"Advanced "
665
  "Settings\" tab."
666
  msgstr ""
 
 
667
 
668
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
669
  msgid "Show center point as an icon"
670
- msgstr ""
671
 
672
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1669
673
  msgid "Default Icon"
674
- msgstr ""
675
 
676
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1674
677
  msgid "Hide all markers until a search is done"
678
- msgstr ""
679
 
680
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1688
681
  msgid "Query String"
682
- msgstr ""
683
 
684
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1693
685
- #, fuzzy
686
  msgid "Enable title search"
687
- msgstr "Włączyć Trasy rowerowe?"
688
 
689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1702
690
  msgid "Title search String"
691
- msgstr ""
692
 
693
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1707
694
- #, fuzzy
695
  msgid "Style options"
696
- msgstr "ukryj opcje"
697
 
698
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1712
699
  msgid "Line color"
700
- msgstr ""
701
 
702
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1720
703
  msgid "Line opacity"
704
- msgstr ""
705
 
706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1723
707
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1739
708
  msgid "(0 - 1.0) example: 0.5 for 50%"
709
- msgstr ""
710
 
711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1728
712
  msgid "Fill color"
713
- msgstr ""
714
 
715
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1736
716
  msgid "Fill opacity"
717
- msgstr ""
718
 
719
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
720
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
@@ -792,17 +791,17 @@ msgstr "Położenie mapy"
792
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1779
793
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4843
794
  msgid "Left"
795
- msgstr "po lewej"
796
 
797
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1780
798
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4844
799
  msgid "Center"
800
- msgstr "na środku"
801
 
802
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1781
803
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4845
804
  msgid "Right"
805
- msgstr "po prawej"
806
 
807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1782
808
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2197
@@ -811,7 +810,7 @@ msgstr "po prawej"
811
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5384
812
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5439
813
  msgid "None"
814
- msgstr "brak"
815
 
816
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1788
817
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5100
@@ -820,34 +819,31 @@ msgstr "Pokazać lokalizację użytkownika?"
820
 
821
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1800
822
  msgid "Click marker opens link"
823
- msgstr ""
824
 
825
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1811
826
  msgid "Maximum Zoom Out Level"
827
- msgstr ""
828
 
829
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1840
830
  msgid "Maximum Zoom In Level"
831
- msgstr ""
832
 
833
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1875
834
- #, fuzzy
835
  msgid "Enable Layers"
836
- msgstr "Włączyć Trasy rowerowe?"
837
 
838
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1879
839
- #, fuzzy
840
  msgid "Bicycle Layer"
841
- msgstr "Włączyć Trasy rowerowe?"
842
 
843
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1882
844
- #, fuzzy
845
  msgid "Traffic Layer"
846
- msgstr "Włączyć Natęzenie ruchu?"
847
 
848
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1885
849
  msgid "Transit Layer"
850
- msgstr ""
851
 
852
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1891
853
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5119
@@ -861,7 +857,7 @@ msgstr "Warstwa KML/GeoRSS nadpisze większość Twoich ustawień mapy"
861
 
862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
863
  msgid "For multiple sources, separate each one by a comma."
864
- msgstr ""
865
 
866
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1897
867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5125
@@ -890,7 +886,7 @@ msgstr "Ustawienia okna informacyjnego"
890
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2024
891
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5894
892
  msgid "Your selection:"
893
- msgstr ""
894
 
895
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1960
896
  #, fuzzy
@@ -899,15 +895,15 @@ msgstr "Ustawienia okna informacyjnego"
899
 
900
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1964
901
  msgid "Primary Color"
902
- msgstr ""
903
 
904
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1972
905
  msgid "Accent Color"
906
- msgstr ""
907
 
908
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1980
909
  msgid "Text Color"
910
- msgstr ""
911
 
912
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2003
913
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
@@ -1003,107 +999,99 @@ msgstr "Kategoria"
1003
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2052
1004
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5171
1005
  msgid "Ascending"
1006
- msgstr "rosnąco"
1007
 
1008
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2053
1009
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5172
1010
  msgid "Descending"
1011
- msgstr "malejąco"
1012
 
1013
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2064
1014
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5184
1015
  msgid "Move list inside map"
1016
- msgstr ""
1017
 
1018
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1019
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5187
1020
  msgid "Move your marker list inside the map area"
1021
- msgstr ""
1022
 
1023
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2067
1024
  msgid "(still in beta)"
1025
- msgstr ""
1026
 
1027
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2088
1028
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5189
1029
  msgid "Placement: "
1030
- msgstr ""
1031
 
1032
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2090
1033
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5191
1034
- #, fuzzy
1035
  msgid "Top Center"
1036
- msgstr "na środku"
1037
 
1038
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2091
1039
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5192
1040
- #, fuzzy
1041
  msgid "Top Left"
1042
- msgstr "po lewej"
1043
 
1044
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2092
1045
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5193
1046
- #, fuzzy
1047
  msgid "Top Right"
1048
- msgstr "po prawej"
1049
 
1050
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2093
1051
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5194
1052
- #, fuzzy
1053
  msgid "Left Top "
1054
- msgstr "po lewej"
1055
 
1056
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2094
1057
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5195
1058
- #, fuzzy
1059
  msgid "Right Top"
1060
- msgstr "po prawej"
1061
 
1062
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2095
1063
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5196
1064
- #, fuzzy
1065
  msgid "Left Center"
1066
- msgstr "na środku"
1067
 
1068
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2096
1069
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5197
1070
- #, fuzzy
1071
  msgid "Right Center"
1072
- msgstr "na środku"
1073
 
1074
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2097
1075
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5198
1076
  msgid "Left Bottom"
1077
- msgstr ""
1078
 
1079
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2098
1080
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5199
1081
  msgid "Right Bottom"
1082
- msgstr ""
1083
 
1084
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2099
1085
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5200
1086
- #, fuzzy
1087
  msgid "Bottom Center"
1088
- msgstr "na środku"
1089
 
1090
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2100
1091
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5201
1092
  msgid "Bottom Left"
1093
- msgstr ""
1094
 
1095
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2101
1096
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5202
1097
  msgid "Bottom Right"
1098
- msgstr ""
1099
 
1100
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2103
1101
  msgid "Container Width: "
1102
- msgstr ""
1103
 
1104
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2104
1105
  msgid "Container Height: "
1106
- msgstr ""
1107
 
1108
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2114
1109
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5153
@@ -1154,7 +1142,7 @@ msgstr "Linie łamane"
1154
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5366
1155
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5499
1156
  msgid "Heatmaps"
1157
- msgstr ""
1158
 
1159
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2156
1160
  msgid "Add a marker"
@@ -1169,7 +1157,7 @@ msgstr "Adres/pozycja GPS"
1169
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2167
1170
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5376
1171
  msgid "Or right click on the map"
1172
- msgstr ""
1173
 
1174
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2179
1175
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5462
@@ -1195,9 +1183,8 @@ msgid "ignore if you want to use the default marker"
1195
  msgstr "pomiń, jeżeli chcesz użyć domyślnego znacznika"
1196
 
1197
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2185
1198
- #, fuzzy
1199
  msgid "This is a retina ready marker"
1200
- msgstr "Wystąpił problem z usunięciem markera."
1201
 
1202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2194
1203
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5381
@@ -1209,13 +1196,13 @@ msgstr "Animacja"
1209
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5385
1210
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5440
1211
  msgid "Bounce"
1212
- msgstr "podskakiwanie"
1213
 
1214
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2199
1215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5386
1216
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5441
1217
  msgid "Drop"
1218
- msgstr "opuszczenie"
1219
 
1220
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2203
1221
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5392
@@ -1247,9 +1234,8 @@ msgstr "Zapisywanie"
1247
 
1248
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2217
1249
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5406
1250
- #, fuzzy
1251
  msgid "Remember to save your marker"
1252
- msgstr "Pamiętaj, aby zapisać mapę!"
1253
 
1254
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2227
1255
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6588
@@ -1308,7 +1294,7 @@ msgstr "i wynagrodzenia go za to."
1308
  msgid ""
1309
  "The map ID you have entered does not exist. Please enter a map ID that "
1310
  "exists."
1311
- msgstr ""
1312
 
1313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
1314
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
@@ -1334,19 +1320,19 @@ msgstr "Wyznaczanie trasy"
1334
 
1335
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2882
1336
  msgid "For"
1337
- msgstr "dla"
1338
 
1339
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2886
1340
  msgid "Driving"
1341
- msgstr "samochodem"
1342
 
1343
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2887
1344
  msgid "Walking"
1345
- msgstr "spacerem"
1346
 
1347
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2888
1348
  msgid "Bicycling"
1349
- msgstr "na rowerze"
1350
 
1351
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2891
1352
  msgid "show options"
@@ -1358,19 +1344,19 @@ msgstr "ukryj opcje"
1358
 
1359
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2894
1360
  msgid "Avoid Tolls"
1361
- msgstr "unikaj dróg płatnych"
1362
 
1363
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2895
1364
  msgid "Avoid Highways"
1365
- msgstr "unikaj autostrad"
1366
 
1367
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2901
1368
  msgid "From"
1369
- msgstr "z"
1370
 
1371
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2909
1372
  msgid "To"
1373
- msgstr "do"
1374
 
1375
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2919
1376
  msgid "Go"
@@ -1394,7 +1380,7 @@ msgstr "Wyznaczanie trasy"
1394
 
1395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3073
1396
  msgid "Thank you. Your marker is awaiting approval."
1397
- msgstr ""
1398
 
1399
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3641
1400
  msgid "Get directions"
@@ -1408,19 +1394,18 @@ msgstr "Moje położenie"
1408
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2114
1409
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2255
1410
  msgid "km away"
1411
- msgstr ""
1412
 
1413
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3644
1414
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2112
1415
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2253
1416
  msgid "miles away"
1417
- msgstr ""
1418
 
1419
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3648
1420
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3650
1421
- #, fuzzy
1422
  msgid "Please fill out both the \"from\" and \"to\" fields"
1423
- msgstr "Wypełnij proszę oba pola: 'z' i 'do'"
1424
 
1425
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3653
1426
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3655
@@ -1552,7 +1537,7 @@ msgstr "Załaduj plik"
1552
 
1553
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5107
1554
  msgid "Download Map Data"
1555
- msgstr ""
1556
 
1557
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5113
1558
  #, fuzzy
@@ -1563,10 +1548,11 @@ msgstr "Załaduj plik CSV"
1563
  msgid ""
1564
  "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1565
  msgstr ""
 
1566
 
1567
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
1568
  msgid "Google API Key (Required)"
1569
- msgstr ""
1570
 
1571
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1572
  msgid ""
@@ -1574,10 +1560,13 @@ msgid ""
1574
  "href='https://developers.google.com/maps/documentation/geocoding/"
1575
  "#Limits'>Geocoding Documentation</a>"
1576
  msgstr ""
 
 
 
1577
 
1578
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1579
  msgid "There is a 0.12second delay between each request"
1580
- msgstr ""
1581
 
1582
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5124
1583
  #, fuzzy
@@ -1585,9 +1574,8 @@ msgid "Download Marker Data"
1585
  msgstr "Pobierz WSZYSTKIE dane znaczników do pliku CSV"
1586
 
1587
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5131
1588
- #, fuzzy
1589
  msgid "Upload Polygon CSV File"
1590
- msgstr "Załaduj plik CSV"
1591
 
1592
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5143
1593
  #, fuzzy
@@ -1606,7 +1594,7 @@ msgstr "Dane linii łamanej"
1606
 
1607
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5166
1608
  msgid "Need help? Read the documentation."
1609
- msgstr ""
1610
 
1611
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5175
1612
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6471
@@ -1625,13 +1613,12 @@ msgstr "Dokumentacja lokalizatora sklepów"
1625
  msgid ""
1626
  "Getting started? Read through some of these articles to help you along your "
1627
  "way."
1628
- msgstr ""
1629
 
1630
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
1631
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
1632
- #, fuzzy
1633
  msgid "Documentation:"
1634
- msgstr "Dokumentacja lokalizatora sklepów"
1635
 
1636
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5183
1637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6479
@@ -1642,16 +1629,16 @@ msgstr "Utwórz mapę"
1642
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5184
1643
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6480
1644
  msgid "Using your map as a Widget"
1645
- msgstr ""
1646
 
1647
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5185
1648
  msgid "Exporting and Importing your map markers"
1649
- msgstr ""
1650
 
1651
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5186
1652
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6481
1653
  msgid "Changing the Google Maps language"
1654
- msgstr ""
1655
 
1656
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1657
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
@@ -1661,9 +1648,8 @@ msgstr "Ustawienia WP Google Map"
1661
 
1662
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1663
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
1664
- #, fuzzy
1665
  msgid "View all documentation."
1666
- msgstr "zapoznać się z naszą dokumentacją,"
1667
 
1668
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5191
1669
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6486
@@ -1681,22 +1667,22 @@ msgstr ""
1681
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
1682
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
1683
  msgid "Common issues:"
1684
- msgstr ""
1685
 
1686
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5196
1687
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6491
1688
  msgid "My map is not showing on my website"
1689
- msgstr ""
1690
 
1691
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5197
1692
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6492
1693
  msgid "My markers are not showing on my map in the front-end"
1694
- msgstr ""
1695
 
1696
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5198
1697
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6493
1698
  msgid "I'm getting jQuery errors showing on my website"
1699
- msgstr ""
1700
 
1701
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5202
1702
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:40
@@ -1710,7 +1696,7 @@ msgstr "Forum wsparcia"
1710
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5204
1711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6499
1712
  msgid "Still need help? Use one of these links below."
1713
- msgstr ""
1714
 
1715
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5206
1716
  #, fuzzy
@@ -1720,7 +1706,7 @@ msgstr "Forum wsparcia"
1720
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5207
1721
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6502
1722
  msgid "Contact us"
1723
- msgstr ""
1724
 
1725
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5223
1726
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4015
@@ -1754,14 +1740,13 @@ msgid "Advanced"
1754
  msgstr "Zaawansowane"
1755
 
1756
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5251
1757
- #, fuzzy
1758
  msgid "Visitor Generated Markers"
1759
- msgstr "Zezwolić na znaczniki generowane przez odwiedzających?"
1760
 
1761
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5252
1762
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4153
1763
  msgid "Error Log"
1764
- msgstr ""
1765
 
1766
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5270
1767
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4373
@@ -1775,6 +1760,8 @@ msgid ""
1775
  "Having issues? Perhaps something below can give you a clue as to what's "
1776
  "wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
1777
  msgstr ""
 
 
1778
 
1779
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5284
1780
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
@@ -1788,20 +1775,21 @@ msgid "Visitor Generated Markers Settings"
1788
  msgstr "Ustawienia znacznika generowanego przez odwiedzającego"
1789
 
1790
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
1791
- #, fuzzy
1792
  msgid "Purchase the Visitor Generated Markers Add-on"
1793
- msgstr "Zezwolić na znaczniki generowane przez odwiedzających?"
1794
 
1795
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
1796
  msgid ""
1797
  "to enable this feature. <br /><br />If you have already purchased it please "
1798
  "ensure that you have uploaded activated the plugin."
1799
  msgstr ""
 
 
1800
 
1801
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
1802
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
1803
  msgid "Marker Listing Settings"
1804
- msgstr "Ustawienia pokazywania znaczników"
1805
 
1806
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
1807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
@@ -1809,23 +1797,21 @@ msgid ""
1809
  "Changing these settings will alter the way the marker list appears on your "
1810
  "website."
1811
  msgstr ""
 
1812
 
1813
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
1814
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
1815
- #, fuzzy
1816
  msgid "Advanced Marker Listing"
1817
- msgstr "Zaawansowane ustawienia map"
1818
 
1819
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
1820
- #, fuzzy
1821
  msgid "Basic Marker Listings"
1822
- msgstr "Ustawienia pokazywania znaczników"
1823
 
1824
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5476
1825
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4243
1826
- #, fuzzy
1827
  msgid "Column settings"
1828
- msgstr "Inne ustawienia"
1829
 
1830
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5478
1831
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4245
@@ -1865,44 +1851,43 @@ msgstr "Zapisz położenie znacznika"
1865
 
1866
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5504
1867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4258
1868
- #, fuzzy
1869
  msgid "Theme selection"
1870
- msgstr "Użyj mojego położenia"
1871
 
1872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5507
1873
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4261
1874
  msgid "Sky"
1875
- msgstr ""
1876
 
1877
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5508
1878
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4262
1879
  msgid "Sun"
1880
- msgstr ""
1881
 
1882
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5509
1883
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4263
1884
  msgid "Earth"
1885
- msgstr ""
1886
 
1887
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5510
1888
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4264
1889
  msgid "Monotone"
1890
- msgstr ""
1891
 
1892
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5511
1893
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4265
1894
  msgid "PinkPurple"
1895
- msgstr ""
1896
 
1897
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5512
1898
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4266
1899
  msgid "White"
1900
- msgstr ""
1901
 
1902
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5513
1903
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4267
1904
  msgid "Black"
1905
- msgstr ""
1906
 
1907
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5518
1908
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4272
@@ -1955,39 +1940,37 @@ msgstr "Ukryj kolumne Opis"
1955
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5527
1956
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4281
1957
  msgid "Resize Images with Timthumb"
1958
- msgstr ""
1959
 
1960
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5528
1961
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4282
1962
  msgid "Enable lazyload of images"
1963
- msgstr ""
1964
 
1965
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5529
1966
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4283
1967
  msgid "Enable autoheight"
1968
- msgstr ""
1969
 
1970
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5530
1971
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4284
1972
- #, fuzzy
1973
  msgid "Enable pagination"
1974
- msgstr "Włączyć wskazówki dojazu?"
1975
 
1976
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5531
1977
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4285
1978
- #, fuzzy
1979
  msgid "Enable navigation"
1980
- msgstr "Włączyć wskazówki dojazu?"
1981
 
1982
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5532
1983
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4286
1984
  msgid "Items"
1985
- msgstr ""
1986
 
1987
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5533
1988
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4287
1989
  msgid "Autoplay after x milliseconds (1000 = 1 second)"
1990
- msgstr ""
1991
 
1992
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5548
1993
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5549
@@ -1996,18 +1979,18 @@ msgstr ""
1996
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4342
1997
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4352
1998
  msgid "You can use the following"
1999
- msgstr ""
2000
 
2001
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5577
2002
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4127
2003
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6457
2004
  msgid "This folder does not exist. Please create it."
2005
- msgstr ""
2006
 
2007
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
2008
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
2009
  msgid "File Permissions:"
2010
- msgstr ""
2011
 
2012
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
2013
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
@@ -2015,11 +1998,12 @@ msgid ""
2015
  " - The plugin does not have write access to this folder. Please CHMOD this "
2016
  "folder to 755 or 777, or change the location"
2017
  msgstr ""
 
 
2018
 
2019
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
2020
- #, fuzzy
2021
  msgid "Google Maps API Key (optional)"
2022
- msgstr "WP Google Maps"
2023
 
2024
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
2025
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
@@ -2030,6 +2014,11 @@ msgid ""
2030
  "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2031
  "this. "
2032
  msgstr ""
 
 
 
 
 
2033
 
2034
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
2035
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
@@ -2037,21 +2026,23 @@ msgid ""
2037
  "We suggest that you change the two fields below ONLY if you are experiencing "
2038
  "issues when trying to save the marker XML files."
2039
  msgstr ""
 
 
2040
 
2041
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
2042
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
2043
  msgid "Pull marker data from"
2044
- msgstr ""
2045
 
2046
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5615
2047
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4332
2048
  msgid "Database (Great for small amounts of markers)"
2049
- msgstr ""
2050
 
2051
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5616
2052
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4333
2053
  msgid "XML File (Great for large amounts of markers)"
2054
- msgstr ""
2055
 
2056
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5620
2057
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4307
@@ -2067,13 +2058,13 @@ msgstr "Kategoria znacznika"
2067
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4343
2068
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4353
2069
  msgid "Currently using"
2070
- msgstr ""
2071
 
2072
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5630
2073
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4316
2074
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4347
2075
  msgid "Marker data XML URL"
2076
- msgstr ""
2077
 
2078
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5640
2079
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5643
@@ -2139,11 +2130,11 @@ msgstr "Filtruj wg kategorii wyświetlanej jako"
2139
 
2140
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5750
2141
  msgid "Dropdown"
2142
- msgstr "lista rozwijana"
2143
 
2144
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5751
2145
  msgid "Checkboxes"
2146
- msgstr "zaznaczenia"
2147
 
2148
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5757
2149
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4172
@@ -2176,23 +2167,21 @@ msgstr "WP Google Maps"
2176
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5782
2177
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4197
2178
  msgid "Lowest level of access to the map editor"
2179
- msgstr ""
2180
 
2181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5794
2182
- #, fuzzy
2183
  msgid "Retina Icon Width"
2184
- msgstr "Szerokosć okna wskazówek"
2185
 
2186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5798
2187
  msgid "Retina Icon Height"
2188
- msgstr ""
2189
 
2190
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5853
2191
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5855
2192
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6922
2193
- #, fuzzy
2194
  msgid "No Global Setting"
2195
- msgstr "Ogólne ustawienia map"
2196
 
2197
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5868
2198
  msgid "InfoWindow Settings"
@@ -2212,14 +2201,16 @@ msgid ""
2212
  "Please check this box and make the necessary changes to your images using "
2213
  "the settings below.)"
2214
  msgstr ""
 
 
2215
 
2216
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
2217
  msgid "Resize Images"
2218
- msgstr ""
2219
 
2220
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5914
2221
  msgid "Resize all images to the below sizes"
2222
- msgstr ""
2223
 
2224
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5918
2225
  msgid "Default Image Width"
@@ -2228,6 +2219,8 @@ msgstr "Domyślna szerokosć obrazka"
2228
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5919
2229
  msgid "(can be left blank - max width will be limited to max infowindow width)"
2230
  msgstr ""
 
 
2231
 
2232
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5922
2233
  msgid "Default Image Height"
@@ -2238,15 +2231,16 @@ msgid ""
2238
  "(can be left blank - leaving both the width and height blank will revert to "
2239
  "full size images being used)"
2240
  msgstr ""
 
 
2241
 
2242
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
2243
  msgid "Max InfoWindow Width"
2244
  msgstr "Maks. szerokość okna informacyjnego"
2245
 
2246
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5927
2247
- #, fuzzy
2248
  msgid "(Minimum: 200px)"
2249
- msgstr "(Minimum: 250px)"
2250
 
2251
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5930
2252
  msgid "Other settings"
@@ -2331,7 +2325,7 @@ msgstr "Nazwa mapy"
2331
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4569
2332
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5874
2333
  msgid "Link"
2334
- msgstr "Link"
2335
 
2336
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6603
2337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6688
@@ -2341,14 +2335,14 @@ msgstr "Link"
2341
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:42
2342
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:127
2343
  msgid "Line Color"
2344
- msgstr ""
2345
 
2346
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6606
2347
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6691
2348
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:47
2349
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:133
2350
  msgid "Line Opacity"
2351
- msgstr ""
2352
 
2353
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6609
2354
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6694
@@ -2356,7 +2350,7 @@ msgstr ""
2356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:50
2357
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:136
2358
  msgid "Fill Color"
2359
- msgstr ""
2360
 
2361
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6612
2362
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6697
@@ -2368,46 +2362,46 @@ msgstr ""
2368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:50
2369
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:135
2370
  msgid "Opacity"
2371
- msgstr ""
2372
 
2373
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6615
2374
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6700
2375
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:56
2376
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:142
2377
  msgid "On Hover Line Color"
2378
- msgstr ""
2379
 
2380
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6618
2381
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6703
2382
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:59
2383
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:145
2384
  msgid "On Hover Fill Color"
2385
- msgstr ""
2386
 
2387
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6621
2388
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6706
2389
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:62
2390
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:148
2391
  msgid "On Hover Opacity"
2392
- msgstr ""
2393
 
2394
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6630
2395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6714
2396
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:73
2397
  msgid "Click on the map to insert a vertex."
2398
- msgstr ""
2399
 
2400
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6631
2401
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6715
2402
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:74
2403
  msgid "Click on a vertex to remove it."
2404
- msgstr ""
2405
 
2406
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6632
2407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6716
2408
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:75
2409
  msgid "Drag a vertex to move it."
2410
- msgstr ""
2411
 
2412
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6640
2413
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6724
@@ -2426,7 +2420,7 @@ msgstr "Ustawienia pokazywania znaczników"
2426
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6919
2427
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5641
2428
  msgid "Copied to clipboard"
2429
- msgstr ""
2430
 
2431
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7015
2432
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8031
@@ -2537,7 +2531,7 @@ msgstr "300 km"
2537
 
2538
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7071
2539
  msgid "Reset"
2540
- msgstr ""
2541
 
2542
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7210
2543
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4512
@@ -2558,7 +2552,7 @@ msgstr "Kosz"
2558
 
2559
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7222
2560
  msgid "Duplicate"
2561
- msgstr ""
2562
 
2563
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7225
2564
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7416
@@ -2588,22 +2582,22 @@ msgstr "Usuń ten znacznik"
2588
 
2589
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8001
2590
  msgid "Add heatmap data"
2591
- msgstr ""
2592
 
2593
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8015
2594
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8103
2595
  msgid "Gradient"
2596
- msgstr ""
2597
 
2598
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2599
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2600
  msgid "Default"
2601
- msgstr ""
2602
 
2603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2604
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2605
  msgid "Blue"
2606
- msgstr ""
2607
 
2608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8056
2609
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8142
@@ -2613,7 +2607,7 @@ msgstr "Zapisz kategorię"
2613
 
2614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8088
2615
  msgid "Edit Dataset"
2616
- msgstr ""
2617
 
2618
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2619
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:18
@@ -2643,7 +2637,7 @@ msgstr "z"
2643
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2644
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
2645
  msgid "of WP Google Maps for only"
2646
- msgstr "WP Google Maps tylko za"
2647
 
2648
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:24
2649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4489
@@ -2689,17 +2683,17 @@ msgstr ""
2689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
2690
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
2691
  msgid "Retina Ready"
2692
- msgstr ""
2693
 
2694
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:105
2695
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:187
2696
  msgid "This marker is a retina-ready marker"
2697
- msgstr ""
2698
 
2699
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:114
2700
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:196
2701
  msgid "Assigned to "
2702
- msgstr "Przypisana do"
2703
 
2704
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:127
2705
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:210
@@ -2728,11 +2722,11 @@ msgstr "Wszystkie"
2728
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:412
2729
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:463
2730
  msgid "<em><small>No categories found</small></em>"
2731
- msgstr ""
2732
 
2733
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:498
2734
  msgid "All maps"
2735
- msgstr "Wszystkie mapy:"
2736
 
2737
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:529
2738
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:415
@@ -2815,6 +2809,8 @@ msgstr "Import pliku CSV nie powiódł się"
2815
  #, php-format
2816
  msgid "Cannot import line %d as the LAT and/or LNG is not defined."
2817
  msgstr ""
 
 
2818
 
2819
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
2820
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
@@ -2857,25 +2853,23 @@ msgstr "Usuń tą linię łamaną"
2857
 
2858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
2859
  msgid "Select a Map Type (beta)"
2860
- msgstr ""
2861
 
2862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
2863
- #, fuzzy
2864
  msgid "Show distance in:"
2865
- msgstr "Pokazuj odległość w"
2866
 
2867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
2868
  msgid "Show bouncing icon:"
2869
- msgstr ""
2870
 
2871
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
2872
  msgid "Hide markers until search is done:"
2873
- msgstr ""
2874
 
2875
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
2876
- #, fuzzy
2877
  msgid "Default 'To' Address:"
2878
- msgstr "Domyślny adres 'Do'"
2879
 
2880
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
2881
  #, fuzzy
@@ -2899,7 +2893,7 @@ msgstr "Zaawansowane"
2899
 
2900
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
2901
  msgid "Blank Map"
2902
- msgstr ""
2903
 
2904
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:221
2905
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5829
@@ -2943,11 +2937,11 @@ msgstr "Kto może dodawać znaczniki?"
2943
 
2944
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
2945
  msgid "Everyone"
2946
- msgstr "każdy"
2947
 
2948
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
2949
  msgid "Registered Users"
2950
- msgstr "zarejestrowani użytkownicy"
2951
 
2952
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
2953
  msgid "Allow users to select a marker category?"
@@ -2979,7 +2973,7 @@ msgstr "Adres"
2979
 
2980
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
2981
  msgid "Or click on the map and drag to add a marker"
2982
- msgstr ""
2983
 
2984
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
2985
  msgid "Marker Description"
@@ -2999,13 +2993,15 @@ msgstr "Dodaj znacznik"
2999
 
3000
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
3001
  msgid "A new marker has been submitted for your map"
3002
- msgstr ""
3003
 
3004
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
3005
  msgid ""
3006
  "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3007
  "version 5.50 to allow for these settings"
3008
  msgstr ""
 
 
3009
 
3010
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
3011
  msgid "Visitor Generated Marker Settings"
@@ -3017,20 +3013,19 @@ msgstr "Ustawienia wprowadzania znacznika odwiedzającego"
3017
 
3018
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3019
  msgid "Strip all HTML tags in descriptions and titles"
3020
- msgstr "Usuń wszystkie tago HTML z opisów i tytułów"
3021
 
3022
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
3023
- #, fuzzy
3024
  msgid "Automatically approve visitor generated markers"
3025
- msgstr "Zezwolić na znaczniki generowane przez odwiedzających?"
3026
 
3027
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3028
  msgid "Email me whenever there is a new marker"
3029
- msgstr ""
3030
 
3031
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3032
  msgid "Email address:"
3033
- msgstr ""
3034
 
3035
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:22
3036
  msgid "Welcome to"
@@ -3069,7 +3064,7 @@ msgstr "Skąd się o nas dowiedziałeś?"
3069
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:60
3070
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:56
3071
  msgid "WordPress.org plugin repository"
3072
- msgstr "z repozytorium wtyczek Wordpress.org"
3073
 
3074
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:61
3075
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:57
@@ -3079,17 +3074,17 @@ msgstr "Jakich słów kluczowych użyłeś?"
3079
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:65
3080
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:61
3081
  msgid "Google or other search engine"
3082
- msgstr "z wyszukiwarki Google lub innej"
3083
 
3084
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:69
3085
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:65
3086
  msgid "Friend recommendation"
3087
- msgstr "z polecenia znajomego"
3088
 
3089
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:73
3090
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:69
3091
  msgid "Other"
3092
- msgstr "z innego źródła"
3093
 
3094
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:74
3095
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:70
@@ -3109,7 +3104,7 @@ msgstr "Możesz chcieć"
3109
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3110
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3111
  msgid "review our documentation"
3112
- msgstr "zapoznać się z naszą dokumentacją,"
3113
 
3114
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3115
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
@@ -3168,18 +3163,16 @@ msgstr "OK! Zaczynajmy"
3168
 
3169
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:9
3170
  msgid "Add your map as a widget"
3171
- msgstr ""
3172
 
3173
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:47
3174
- #, fuzzy
3175
  msgid "Select your map:"
3176
- msgstr "Usuń mapę"
3177
 
3178
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:3
3179
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:4
3180
- #, fuzzy
3181
  msgid "Welcome to WP Google Maps version 6.3"
3182
- msgstr "Jesteś nowy w WP Google Maps?"
3183
 
3184
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
3185
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
@@ -3188,6 +3181,9 @@ msgid ""
3188
  "maps through a simple interface and powerful functionality along with world "
3189
  "class support."
3190
  msgstr ""
 
 
 
3191
 
3192
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
3193
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
@@ -3198,48 +3194,47 @@ msgstr "Witamy w"
3198
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:11
3199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:12
3200
  msgid "Credits"
3201
- msgstr ""
3202
 
3203
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:15
3204
  msgid "WP Google Maps is created by an international team of developers."
3205
- msgstr ""
3206
 
3207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:16
3208
  msgid "Project Leaders"
3209
- msgstr ""
3210
 
3211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:22
3212
  msgid "Founder &amp; Lead Developer"
3213
- msgstr ""
3214
 
3215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:25
3216
  msgid "Contributers"
3217
- msgstr ""
3218
 
3219
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:30
3220
  msgid "Developer"
3221
- msgstr ""
3222
 
3223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:35
3224
  msgid "Developer &amp; Support"
3225
- msgstr ""
3226
 
3227
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:50
3228
- #, fuzzy
3229
  msgid "Marketing"
3230
- msgstr "Ustawienia pokazywania znaczników"
3231
 
3232
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:55
3233
  msgid "Security suggestions"
3234
- msgstr ""
3235
 
3236
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3237
  msgid "Want to see your name on this page?"
3238
- msgstr ""
3239
 
3240
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3241
  msgid "Get involved on GitHub."
3242
- msgstr ""
3243
 
3244
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:18
3245
  #, fuzzy
@@ -3256,6 +3251,8 @@ msgid ""
3256
  "Select from various <a href='http://wpgmaps.com/map-themes/' "
3257
  "target='_BLANK'>map themes</a>, or make your own."
3258
  msgstr ""
 
 
3259
 
3260
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3261
  #, fuzzy
@@ -3276,44 +3273,45 @@ msgstr "Wersja Pro"
3276
 
3277
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3278
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
3279
- #, fuzzy
3280
  msgid "Get the Pro add-on"
3281
- msgstr "przy użyciu wersji Pro"
3282
 
3283
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:58
3284
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:143
3285
  msgid "Line Thickness"
3286
- msgstr ""
3287
 
3288
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:320
3289
  msgid "My first map"
3290
- msgstr ""
3291
 
3292
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3293
  msgid ""
3294
  "<strong>WP Google Maps cannot find the directory it uses to save marker data "
3295
  "to. Please confirm that <em>"
3296
  msgstr ""
 
 
3297
 
3298
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3299
  msgid ""
3300
  "</em>exists. Please also ensure that you assign file permissions of 755 (or "
3301
  "777) to this directory."
3302
  msgstr ""
 
 
3303
 
3304
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:549
3305
- #, fuzzy
3306
  msgid ""
3307
  "Timthumb does not have 'write' permission for the cache directory. Please "
3308
  "enable 'write' permissions (755 or 777) for "
3309
  msgstr ""
3310
  "Brak uprawnień 'zapisu' dla katalogu wtyczki. Nadaj proszę uprawnienia do "
3311
- "'zapisu' (755) dla"
3312
 
3313
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
3314
- #, fuzzy
3315
  msgid "in order for images to show up while using Timthumb. Please see "
3316
- msgstr "aby wtyczka mogła działać prawidłowo! Zobacz"
3317
 
3318
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
3319
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
@@ -3324,35 +3322,35 @@ msgstr "tą stronę"
3324
  msgid ""
3325
  "for help on how to do it. Alternatively, you can disable the use of Timthumb "
3326
  "in Maps->Settings"
3327
- msgstr ""
3328
 
3329
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
3330
  msgid "DOMDocument is not enabled"
3331
- msgstr ""
3332
 
3333
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2540
3334
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2550
3335
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2555
3336
  msgid "Could not save XML file"
3337
- msgstr ""
3338
 
3339
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3340
  msgid "Error: The map ID"
3341
- msgstr ""
3342
 
3343
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3344
  msgid "does not exist"
3345
- msgstr ""
3346
 
3347
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3228
3348
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3283
3349
  msgid "You cannot save a blank polygon"
3350
- msgstr ""
3351
 
3352
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3338
3353
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3382
3354
  msgid "You cannot save a blank polyline"
3355
- msgstr ""
3356
 
3357
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3478
3358
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3482
@@ -3379,11 +3377,11 @@ msgstr "Sprawdź w instrukcji rozwiązywania problemów."
3379
 
3380
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3381
  msgid "Or ask a question on our "
3382
- msgstr "Lub zadaj pytanie na naszym"
3383
 
3384
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3385
  msgid "Support forum."
3386
- msgstr "forum Wsparcia."
3387
 
3388
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3857
3389
  msgid "There was a problem deleting the map."
@@ -3423,9 +3421,8 @@ msgid ""
3423
  msgstr ""
3424
 
3425
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
3426
- #, fuzzy
3427
  msgid "Enable Usage Tracking"
3428
- msgstr "Włączyć wskazówki dojazu?"
3429
 
3430
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
3431
  msgid ""
@@ -3467,11 +3464,11 @@ msgstr ""
3467
 
3468
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3469
  msgid "We will not nag you again, promise!"
3470
- msgstr ""
3471
 
3472
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3473
  msgid "Close"
3474
- msgstr ""
3475
 
3476
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3477
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4467
@@ -3485,7 +3482,7 @@ msgstr "Dodaj nową"
3485
 
3486
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3487
  msgid "Wizard"
3488
- msgstr ""
3489
 
3490
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
3491
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
@@ -3527,7 +3524,7 @@ msgstr ""
3527
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3528
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3529
  msgid "Pro Edition"
3530
- msgstr "wersji Pro"
3531
 
3532
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4705
3533
  msgid "of this plugin for just"
@@ -3539,7 +3536,7 @@ msgstr "Kup wersję Pro"
3539
 
3540
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4706
3541
  msgid "of WP Google Maps and save your markers to a CSV file!"
3542
- msgstr "WP Google Maps i zapisz markery do pliku CSV!"
3543
 
3544
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4731
3545
  #, fuzzy
@@ -3557,15 +3554,15 @@ msgstr ""
3557
 
3558
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
3559
  msgid "Pro Upgrade"
3560
- msgstr ""
3561
 
3562
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5004
3563
  msgid "Query string"
3564
- msgstr ""
3565
 
3566
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5009
3567
  msgid "Show bouncing icon"
3568
- msgstr ""
3569
 
3570
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5026
3571
  msgid "Enable Bicycle Layer?"
@@ -3598,7 +3595,7 @@ msgstr ""
3598
 
3599
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
3600
  msgid "Read data directly from your Fusion Table."
3601
- msgstr "Odczytaj dane bezpośrednio z Twojej tabeli Fusion"
3602
 
3603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
3604
  #, fuzzy
@@ -3621,45 +3618,46 @@ msgstr "Pokaż wszystkie znaczniki"
3621
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5146
3622
  msgid "Advanced table with real time search and filtering"
3623
  msgstr ""
 
3624
 
3625
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
3626
  msgid "beta"
3627
- msgstr ""
3628
 
3629
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5218
3630
  msgid "Basic"
3631
- msgstr ""
3632
 
3633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5219
3634
  msgid "Show a basic list of your markers"
3635
- msgstr ""
3636
 
3637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5228
3638
  msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
3639
  msgstr ""
 
 
3640
 
3641
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5236
3642
  msgid "Tabular"
3643
- msgstr ""
3644
 
3645
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
3646
  msgid "Advanced, tabular marker listing functionality with real time filtering"
3647
- msgstr ""
3648
 
3649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
3650
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5424
3651
- #, fuzzy
3652
  msgid "Advanced markers"
3653
- msgstr "Dodaj znaczniki zaawansowane"
3654
 
3655
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5364
3656
- #, fuzzy
3657
  msgid "Polygon"
3658
- msgstr "Wielokąty"
3659
 
3660
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5412
3661
  msgid "Please add the current marker before trying to add another marker"
3662
- msgstr ""
3663
 
3664
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
3665
  msgid "Add advanced markers"
@@ -3675,17 +3673,15 @@ msgstr "Wybierz"
3675
 
3676
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
3677
  msgid "Add dynamic heatmap data"
3678
- msgstr ""
3679
 
3680
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
3681
- #, fuzzy
3682
  msgid "with the Pro version."
3683
- msgstr "przy użyciu wersji Pro"
3684
 
3685
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5501
3686
- #, fuzzy
3687
  msgid "View a demo."
3688
- msgstr "zapoznać się z naszą dokumentacją,"
3689
 
3690
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
3691
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
@@ -3803,11 +3799,11 @@ msgid ""
3803
  "'write' permissions (755) for "
3804
  msgstr ""
3805
  "Brak uprawnień 'zapisu' dla katalogu wtyczki. Nadaj proszę uprawnienia do "
3806
- "'zapisu' (755) dla"
3807
 
3808
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
3809
  msgid "in order for this plugin to work! Please see "
3810
- msgstr "aby wtyczka mogła działać prawidłowo! Zobacz"
3811
 
3812
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6029
3813
  msgid "for help on how to do it."
@@ -3833,58 +3829,57 @@ msgid ""
3833
  msgstr ""
3834
 
3835
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
3836
- #, fuzzy
3837
  msgid "Support forum"
3838
- msgstr "forum Wsparcia."
3839
 
3840
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6658
3841
  msgid "United States of America"
3842
- msgstr ""
3843
 
3844
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6668
3845
- #, fuzzy
3846
  msgid "View the instruction video"
3847
- msgstr "Ukryj kolumne Opis"
3848
 
3849
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6669
3850
- #, fuzzy
3851
  msgid "Read the documentation"
3852
- msgstr "zapoznać się z naszą dokumentacją,"
3853
 
3854
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6670
3855
  msgid "Important Notification"
3856
- msgstr ""
3857
 
3858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6671
3859
  msgid "You can read more about that here."
3860
- msgstr ""
3861
 
3862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
3863
  msgid ""
3864
  "Before you begin please note that *ALL* Google Maps now require an API key "
3865
  "to function."
3866
- msgstr ""
3867
 
3868
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
3869
  msgid "Create an API key now (free)"
3870
- msgstr ""
3871
 
3872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
3873
  msgid "Once created, simply paste your API key here and press save."
3874
- msgstr ""
3875
 
3876
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
3877
  #, php-format
3878
  msgid "Need help? %s or %s."
3879
- msgstr ""
3880
 
3881
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6676
3882
  msgid "Google Maps JavaScript API Key: "
3883
- msgstr ""
3884
 
3885
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
3886
  msgid "Once saved, it may take up to 5 minutes for your map to display."
3887
  msgstr ""
 
 
3888
 
3889
  #~ msgid ""
3890
  #~ "Use the <a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/"
2
  msgstr ""
3
  "Project-Id-Version: wpgooglemaps\n"
4
  "POT-Creation-Date: 2016-07-18 13:38+0200\n"
5
+ "PO-Revision-Date: 2017-11-07 02:16+0100\n"
6
  "Last-Translator: Michał Kotnowski <michal.kotnowski@ukotka.com>\n"
7
  "Language-Team: Michal Kotnowski <michal.kotnowski@ukotka.com>\n"
8
  "Language: pl_PL\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.4\n"
13
  "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e\n"
14
  "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
16
  "|| n%100>=20) ? 1 : 2);\n"
17
+ "X-Poedit-SearchPath-0: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
18
+ "maps\n"
19
+ "X-Poedit-SearchPath-1: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
20
+ "maps-pro\n"
21
+ "X-Poedit-SearchPath-2: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
22
+ "maps-gold\n"
23
+ "X-Poedit-SearchPath-3: C:/wamp/www/wordpress38/wp-content/plugins/wp-google-"
24
+ "maps-ugm\n"
25
 
26
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:243
27
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3712
28
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:764
 
29
  msgid "settings"
30
+ msgstr "ustawienia"
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
37
  "Your Google Maps API key has been successfully saved. This API key can be "
38
  "changed in the %s page"
39
  msgstr ""
40
+ "Twój klucz Google Maps API key został zapisany. Ten klucz może zostać "
41
+ "zmieniony na stronie %s"
42
 
43
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:720
44
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:839
141
 
142
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1610
143
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6677
 
144
  msgid "Save"
145
+ msgstr "Zapisz"
146
 
147
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1689
148
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5375
172
 
173
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1811
174
  msgid "Location Tracking"
175
+ msgstr "Śledzenie lokalizacji"
176
 
177
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1838
178
  msgid "Real time location tracking"
179
+ msgstr "Śledzenie lokalizacji w czasie rzeczywistym"
180
 
181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1841
182
  #, fuzzy
186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1849
187
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1796
188
  msgid "Default User Location Icon"
189
+ msgstr "Domyślna ikona lokalizacji użytkownika"
190
 
191
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1850
192
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1670
197
 
198
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1854
199
  msgid "Show"
200
+ msgstr "Pokaż"
201
 
202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
203
  msgid "Route"
204
+ msgstr "Trasa"
205
 
206
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1856
 
207
  msgid "Last Location"
208
+ msgstr "Ostatnia lokalizacja"
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 "Styl trasy"
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 "Kolor trasy - normalny"
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 "Kolor trasy - pod kursorem"
221
 
222
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1884
223
  msgid "Route Opacity"
224
+ msgstr "Przeźroczystość trasy"
225
 
226
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1891
227
  msgid "Route Thickness"
228
+ msgstr "Grubość trasy"
229
 
230
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1906
231
  msgid "Devices"
232
+ msgstr "Urządzenia"
233
 
234
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1924
 
235
  msgid "Marker Clustering"
236
+ msgstr "Grupowanie znaczników"
237
 
238
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1984
239
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1987
240
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1990
241
  msgid "Real Time Location Tracking"
242
+ msgstr "Śledzenie lokalizacji w czasie rzeczywistym"
243
 
244
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:1995
245
  msgid ""
246
  "Track your location via our app and plot your current location on a map, "
247
  "publicly or privately."
248
  msgstr ""
249
+ "Śledź swoją lokalizację w czasie rzeczywistym i pokaż swoją pozycję na "
250
+ "mapie, publicznie lub prywatnie."
251
 
252
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2004
253
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:182
260
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2049
261
  #, php-format
262
  msgid "Location as at %1$s"
263
+ msgstr "Lokalizacja jak na %1$s"
264
 
265
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2131
266
  msgid "Successfully accepted the device. Thank you"
267
+ msgstr "Urządzenie zostało zaakceptowane. Dziękujemy"
268
 
269
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2172
270
  msgid "Device has been removed. Thank you"
271
+ msgstr "Urządzenie zostało usunięte. Dziękujemy"
272
 
273
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2193
 
274
  msgid "Marker Data Cleared."
275
+ msgstr "Edycja położenia znacznika."
276
 
277
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2230
278
  msgid "A new device needs your approval to enable real time location tracking."
279
  msgstr ""
280
+ "Nowe urządzenie wymaga twojej zgody na użycie śledzenia lokalizacji w czasie "
281
+ "rzeczywistym."
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 "ID urządzenia:"
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 "Aby zaakceptować to urządzenie przejdź do: %1$s"
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 "Aby odrzucić zgodę dla urządzenia zignoruj ten e-mail."
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
+ "Nowe urządzenie potrzebuje twojej zgody na użycie śledzenia lokalizacji w "
302
+ "czasie rzeczywistym"
303
 
304
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-gold/wp-google-maps-gold.php:2369
305
  msgid "No devices"
306
+ msgstr "Brak urządzeń"
307
 
308
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1051
309
  msgid "including Pro &amp; Gold add-ons"
318
  "Please <a href='update-core.php'>update your WP Google Maps GOLD version</"
319
  "a>. Your current Gold version is not compatible with the current Pro version."
320
  msgstr ""
321
+ "Prosimy o <a href='update-core.php'>zaktualizowanie wersji WP Google Maps "
322
+ "GOLD</a>. Twoja obecna wersja GOLD nie jest kompatybilna z aktualną wersją "
323
+ "PRO."
324
 
325
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1139
326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6983
327
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2991
328
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4619
 
329
  msgid "ZIP / Address:"
330
+ msgstr "Kod pocztowy/Adres:"
331
 
332
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1140
333
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6984
 
334
  msgid "Title / Description:"
335
+ msgstr "Tytuł / Opis:"
336
 
337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1189
338
  #, fuzzy
349
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1195
350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6914
351
  msgid "Basic list"
352
+ msgstr "Lista podstawowa"
353
 
354
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1198
355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6916
 
356
  msgid "Advanced table"
357
+ msgstr "Zaawansowana tabela"
358
 
359
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1201
360
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6912
362
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
363
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5227
364
  msgid "Carousel"
365
+ msgstr "Karuzela"
366
 
367
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1280
368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5845
369
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6917
370
  msgid "Default Infowindow"
371
+ msgstr "Domyślne okienko informacyjne"
372
 
373
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1282
374
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5847
375
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6918
 
376
  msgid "Modern Infowindow"
377
+ msgstr "Nowoczesne okienko informacyjne"
378
 
379
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1284
380
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5849
381
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6920
 
382
  msgid "Modern Plus Infowindow"
383
+ msgstr "Rozszerzone nowoczesne okienko informacyjne"
384
 
385
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1286
386
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5851
387
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6921
 
388
  msgid "Circular Infowindow"
389
+ msgstr "Okrągłe okienko informacyjne"
390
 
391
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1288
392
  msgid "Currently using your selection chosen in the global settings"
393
+ msgstr "Obecnie aktywny jest wybór dokonany w ustawieniach ogólnych"
394
 
395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1353
396
  msgid "Download this as a CSV file"
403
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1365
404
  msgid "Please update your basic version to use this function."
405
  msgstr ""
406
+ "Aby korzystać z tej funkcji konieczna jest aktualizacja wersji podstawowej."
407
 
408
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1367
409
  #, fuzzy
430
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:30
431
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4768
432
  msgid "Themes"
433
+ msgstr "Motywy"
434
 
435
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1390
436
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2596
475
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1432
476
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4806
477
  msgid "copy this into your post or page to display the map"
478
+ msgstr "skopiuj do postu lub strony, aby wyświetlić mapę"
479
 
480
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1436
481
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4809
485
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1440
486
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4835
487
  msgid "Zoom Level"
488
+ msgstr "Powiększenie"
489
 
490
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1447
491
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7208
498
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4820
499
  #, php-format
500
  msgid "Set to 100% for a responsive map"
501
+ msgstr "Ustaw 100 proc. dla mapy elastycznej"
502
 
503
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1459
504
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7209
514
  "We recommend that you leave your height in PX. Depending on your theme, "
515
  "using % for the height may break your map."
516
  msgstr ""
517
+ "Sugerujemy ustawienie wysokości w PX. W zależności od wybranego motywu, "
518
+ "użycie wartości procentowej może spowodować, że mapa nie będzie działać "
519
+ "prawidłowo."
520
 
521
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1476
522
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4864
527
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1513
528
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4898
529
  msgid "Or use a custom theme"
530
+ msgstr "Lub użyj własnego motywu"
531
 
532
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1514
533
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4899
534
  msgid "Browse the theme directory"
535
+ msgstr "Przeglądaj katalog motywów"
536
 
537
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1515
538
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4900
 
539
  msgid "Paste your custom theme data here:"
540
+ msgstr "Wklej tutaj dane własnego motywu:"
541
 
542
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1517
543
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4902
 
544
  msgid "Preview"
545
+ msgstr "Podgląd"
546
 
547
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1535
548
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4928
549
  msgid "Enable Directions?"
550
+ msgstr "Włączyć wskazówki dojazdu?"
551
 
552
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1547
553
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4940
581
 
582
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1566
583
  msgid "px"
584
+ msgstr "px"
585
 
586
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1567
587
  msgid "%"
588
+ msgstr "%"
589
 
590
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1572
591
  msgid "Default 'To' address"
592
+ msgstr "Domyślny adres 'Do' "
593
 
594
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1588
595
  #, fuzzy
604
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1599
605
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4976
606
  msgid "Restrict to country"
607
+ msgstr "Ogranicz do kraju"
608
 
609
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1608
610
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4982
611
  msgid "No country selected"
612
+ msgstr "Nie wybrano kraju"
613
 
614
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
615
  msgid "Insert country TLD. For example, use DE for Germany."
616
+ msgstr "Wpisz TLD kraju. Na przykład, dla Polski wpisz PL."
617
 
618
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1620
619
  msgid "Leave blank for no restrictions."
620
+ msgstr "Zostaw puste, aby usunąć ograniczenia."
621
 
622
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1626
623
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4996
628
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
629
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
630
  msgid "Miles"
631
+ msgstr "Milach"
632
 
633
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1629
634
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:153
635
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4999
636
  msgid "Kilometers"
637
+ msgstr "Kilometrach"
638
 
639
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1635
 
640
  msgid "Store Locator Placement"
641
+ msgstr "Położenie lokalizatora sklepów"
642
 
643
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
644
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
645
  msgid "Below Map"
646
+ msgstr "Poniżej mapy"
647
 
648
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1638
649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2036
 
650
  msgid "Above Map"
651
+ msgstr "Powyżej mapy"
652
 
653
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1644
654
  msgid "Allow category selection"
655
+ msgstr "Zezwól na wybór kategorii"
656
 
657
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1652
 
658
  msgid "Allow users to use their location as the starting point"
659
+ msgstr "Zezwól użytkownikom na wybór kategorii znacznika"
660
 
661
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1657
662
  msgid ""
663
  "Please ensure that \"show user's location\" is enabled in the \"Advanced "
664
  "Settings\" tab."
665
  msgstr ""
666
+ "Upewnij się, że opcja \"pokaż lokalizację użytkownika\" jest włączona w "
667
+ "zakładce \"Ustawienia zaawansowane\"."
668
 
669
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1661
670
  msgid "Show center point as an icon"
671
+ msgstr "Pokaż punkt centralny jako znacznik"
672
 
673
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1669
674
  msgid "Default Icon"
675
+ msgstr "Domyślna ikona znacznika"
676
 
677
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1674
678
  msgid "Hide all markers until a search is done"
679
+ msgstr "Ukryj wszystkie znaczniki podczas wyszukiwania"
680
 
681
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1688
682
  msgid "Query String"
683
+ msgstr "Tekst zapytania"
684
 
685
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1693
 
686
  msgid "Enable title search"
687
+ msgstr "Włącz wyszukiwanie tytułów"
688
 
689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1702
690
  msgid "Title search String"
691
+ msgstr "Zapytanie wyszukiwania tytułu"
692
 
693
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1707
 
694
  msgid "Style options"
695
+ msgstr "Opcje stylu"
696
 
697
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1712
698
  msgid "Line color"
699
+ msgstr "Kolor linii"
700
 
701
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1720
702
  msgid "Line opacity"
703
+ msgstr "Przeźroczystość linii"
704
 
705
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1723
706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1739
707
  msgid "(0 - 1.0) example: 0.5 for 50%"
708
+ msgstr "(0 - 1.0) przykład: 0.5 for 50%"
709
 
710
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1728
711
  msgid "Fill color"
712
+ msgstr "Kolor wypełnienienia"
713
 
714
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1736
715
  msgid "Fill opacity"
716
+ msgstr "Przeźroczystość wypełnienia"
717
 
718
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1748
719
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5019
791
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1779
792
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4843
793
  msgid "Left"
794
+ msgstr "Po lewej"
795
 
796
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1780
797
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4844
798
  msgid "Center"
799
+ msgstr "Na środku"
800
 
801
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1781
802
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4845
803
  msgid "Right"
804
+ msgstr "Po prawej"
805
 
806
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1782
807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2197
810
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5384
811
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5439
812
  msgid "None"
813
+ msgstr "Brak"
814
 
815
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1788
816
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5100
819
 
820
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1800
821
  msgid "Click marker opens link"
822
+ msgstr "Kliknięcie znacznika otwiera odnośnik"
823
 
824
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1811
825
  msgid "Maximum Zoom Out Level"
826
+ msgstr "Maksymalne oddalenie"
827
 
828
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1840
829
  msgid "Maximum Zoom In Level"
830
+ msgstr "Maksymalne przybliżenie"
831
 
832
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1875
 
833
  msgid "Enable Layers"
834
+ msgstr "Włącz warstwy"
835
 
836
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1879
 
837
  msgid "Bicycle Layer"
838
+ msgstr "Warstwa tras rowerowych"
839
 
840
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1882
 
841
  msgid "Traffic Layer"
842
+ msgstr "Warstwa natężenia ruchu"
843
 
844
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1885
845
  msgid "Transit Layer"
846
+ msgstr "Warstwa tranzytu"
847
 
848
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1891
849
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5119
857
 
858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1893
859
  msgid "For multiple sources, separate each one by a comma."
860
+ msgstr "Dla wielu źródeł, oddziel każde przecinkiem."
861
 
862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1897
863
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5125
886
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2024
887
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5894
888
  msgid "Your selection:"
889
+ msgstr "Twój wybór:"
890
 
891
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1960
892
  #, fuzzy
895
 
896
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1964
897
  msgid "Primary Color"
898
+ msgstr "Kolor podstawowy:"
899
 
900
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1972
901
  msgid "Accent Color"
902
+ msgstr "Kolor zaznaczenia:"
903
 
904
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:1980
905
  msgid "Text Color"
906
+ msgstr "Kolor takstu:"
907
 
908
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2003
909
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:247
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 "Rosnąco"
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 "Malejąco"
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 "Przesuń listę wewnątrz mapy"
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 "Przesuń listę znaczników wewnątrz mapy"
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 "(wersja beta)"
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 "Położenie:"
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 "Na górze na środku"
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 "Na górze po lewej"
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 "Na górze po prawej"
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 "Po lewej na górze"
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 "Po prawej na górze"
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 "Po lewej na środku"
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 "Po prawej na środku"
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 "Po lewej na dole"
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 "Po prawej na dole"
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 "Na dole na środku"
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 "Na dole po lewej"
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 "Na dole po prawej"
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 "Szerokość kontenera:"
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 "Wysokość kontenera:"
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
1142
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5366
1143
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5499
1144
  msgid "Heatmaps"
1145
+ msgstr "Mapy ciepła"
1146
 
1147
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2156
1148
  msgid "Add a marker"
1157
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2167
1158
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5376
1159
  msgid "Or right click on the map"
1160
+ msgstr "lub kliknij prawym przyciskiem myszy na mapie"
1161
 
1162
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2179
1163
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5462
1183
  msgstr "pomiń, jeżeli chcesz użyć domyślnego znacznika"
1184
 
1185
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2185
 
1186
  msgid "This is a retina ready marker"
1187
+ msgstr "Znacznik w kształcie kropli."
1188
 
1189
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2194
1190
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5381
1196
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5385
1197
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5440
1198
  msgid "Bounce"
1199
+ msgstr "Podskakiwanie"
1200
 
1201
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2199
1202
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5386
1203
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5441
1204
  msgid "Drop"
1205
+ msgstr "Opadanie"
1206
 
1207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2203
1208
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5392
1234
 
1235
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2217
1236
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5406
 
1237
  msgid "Remember to save your marker"
1238
+ msgstr "Pamiętaj, aby zapisać znacznik"
1239
 
1240
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2227
1241
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6588
1294
  msgid ""
1295
  "The map ID you have entered does not exist. Please enter a map ID that "
1296
  "exists."
1297
+ msgstr "Wpisany ID mapy jest nieprawidłowy. Wpisz istniejący ID. "
1298
 
1299
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2647
1300
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2648
1320
 
1321
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2882
1322
  msgid "For"
1323
+ msgstr "Dla"
1324
 
1325
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2886
1326
  msgid "Driving"
1327
+ msgstr "Samochodem"
1328
 
1329
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2887
1330
  msgid "Walking"
1331
+ msgstr "Spacerem"
1332
 
1333
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2888
1334
  msgid "Bicycling"
1335
+ msgstr "Rowerem"
1336
 
1337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2891
1338
  msgid "show options"
1344
 
1345
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2894
1346
  msgid "Avoid Tolls"
1347
+ msgstr "Unikaj dróg płatnych"
1348
 
1349
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2895
1350
  msgid "Avoid Highways"
1351
+ msgstr "Unikaj autostrad"
1352
 
1353
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2901
1354
  msgid "From"
1355
+ msgstr "Z"
1356
 
1357
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2909
1358
  msgid "To"
1359
+ msgstr "Do"
1360
 
1361
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:2919
1362
  msgid "Go"
1380
 
1381
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3073
1382
  msgid "Thank you. Your marker is awaiting approval."
1383
+ msgstr "Dziękujemy! Twój znacznik oczekuje na akceptację."
1384
 
1385
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3641
1386
  msgid "Get directions"
1394
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2114
1395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2255
1396
  msgid "km away"
1397
+ msgstr "km odległości"
1398
 
1399
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3644
1400
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2112
1401
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2253
1402
  msgid "miles away"
1403
+ msgstr "mil odległości"
1404
 
1405
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3648
1406
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3650
 
1407
  msgid "Please fill out both the \"from\" and \"to\" fields"
1408
+ msgstr "Wypełnij proszę oba pola: \"z\" i \"do\"!"
1409
 
1410
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3653
1411
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:3655
1537
 
1538
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5107
1539
  msgid "Download Map Data"
1540
+ msgstr "Pobierz dane mapy"
1541
 
1542
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5113
1543
  #, fuzzy
1548
  msgid ""
1549
  "Automatically geocode addresses to GPS co-ordinates if none are supplied"
1550
  msgstr ""
1551
+ "Automatycznie geokoduj adresy na koordynaty GPS jeśli nie zostały podane"
1552
 
1553
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5120
1554
  msgid "Google API Key (Required)"
1555
+ msgstr "Google API Key (Wymagany)"
1556
 
1557
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1558
  msgid ""
1560
  "href='https://developers.google.com/maps/documentation/geocoding/"
1561
  "#Limits'>Geocoding Documentation</a>"
1562
  msgstr ""
1563
+ "Potrzebujesz klucza Google Maps Geocode API. Sprawdź <a href='https://"
1564
+ "developers.google.com/maps/documentation/geocoding/#Limits'>Geocoding "
1565
+ "Documentation</a>"
1566
 
1567
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5121
1568
  msgid "There is a 0.12second delay between each request"
1569
+ msgstr "Obowiązuje 0.12 sekundy przerwy pomiędzy zapytaniami"
1570
 
1571
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5124
1572
  #, fuzzy
1574
  msgstr "Pobierz WSZYSTKIE dane znaczników do pliku CSV"
1575
 
1576
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5131
 
1577
  msgid "Upload Polygon CSV File"
1578
+ msgstr "Załaduj plik CSV wielokątów"
1579
 
1580
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5143
1581
  #, fuzzy
1594
 
1595
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5166
1596
  msgid "Need help? Read the documentation."
1597
+ msgstr "Potrzebujesz pomocy? Przeczytaj najpierw dokumentację."
1598
 
1599
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5175
1600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6471
1613
  msgid ""
1614
  "Getting started? Read through some of these articles to help you along your "
1615
  "way."
1616
+ msgstr "Zaczynasz? Poczytaj artykuły, które pomogą ci w pracy."
1617
 
1618
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5181
1619
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6477
 
1620
  msgid "Documentation:"
1621
+ msgstr "Dokumentacja:"
1622
 
1623
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5183
1624
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6479
1629
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5184
1630
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6480
1631
  msgid "Using your map as a Widget"
1632
+ msgstr "Korzystanie z mapy jako Wtyczki"
1633
 
1634
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5185
1635
  msgid "Exporting and Importing your map markers"
1636
+ msgstr "Eksportowanie i importowanie twoich znaczników"
1637
 
1638
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5186
1639
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6481
1640
  msgid "Changing the Google Maps language"
1641
+ msgstr "Zmiana języka Google Maps"
1642
 
1643
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5187
1644
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6482
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 "Zobacz całą dokumentację. "
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
1667
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5194
1668
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6489
1669
  msgid "Common issues:"
1670
+ msgstr "Najczęstsze problemy:"
1671
 
1672
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5196
1673
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6491
1674
  msgid "My map is not showing on my website"
1675
+ msgstr "Mojej mapy nie widać na stronie"
1676
 
1677
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5197
1678
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6492
1679
  msgid "My markers are not showing on my map in the front-end"
1680
+ msgstr "Moje znaczniki nie są widoczne na mapie"
1681
 
1682
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5198
1683
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6493
1684
  msgid "I'm getting jQuery errors showing on my website"
1685
+ msgstr "Otrzymuję komunikaty błędu jQuery"
1686
 
1687
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5202
1688
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:40
1696
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5204
1697
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6499
1698
  msgid "Still need help? Use one of these links below."
1699
+ msgstr "Wciąż potrzebujesz pomocy? Skorzystaj z poniższych linków."
1700
 
1701
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5206
1702
  #, fuzzy
1706
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5207
1707
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6502
1708
  msgid "Contact us"
1709
+ msgstr "Skontaktuj się z nami"
1710
 
1711
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5223
1712
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4015
1740
  msgstr "Zaawansowane"
1741
 
1742
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5251
 
1743
  msgid "Visitor Generated Markers"
1744
+ msgstr "Znaczniki generowane przez odwiedzających"
1745
 
1746
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5252
1747
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4153
1748
  msgid "Error Log"
1749
+ msgstr "Lista błędów"
1750
 
1751
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5270
1752
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4373
1760
  "Having issues? Perhaps something below can give you a clue as to what's "
1761
  "wrong. Alternatively, email this through to nick@wpgmaps.com for help!"
1762
  msgstr ""
1763
+ "Masz problemy? Być może coś z poniższej listy pomoże ci ustalić, co poszło "
1764
+ "nie tak. Możesz też napisać do nick@wpgmaps.com, aby uzyskać pomoc!"
1765
 
1766
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5284
1767
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:212
1775
  msgstr "Ustawienia znacznika generowanego przez odwiedzającego"
1776
 
1777
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
 
1778
  msgid "Purchase the Visitor Generated Markers Add-on"
1779
+ msgstr "Kup generator, umożliwiający dodawanie znaczników przez odwiedzających"
1780
 
1781
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5394
1782
  msgid ""
1783
  "to enable this feature. <br /><br />If you have already purchased it please "
1784
  "ensure that you have uploaded activated the plugin."
1785
  msgstr ""
1786
+ "aby włączyć tę funkcję. <br /><br />Jeśli już dokonałeś zakupu, upewnij się, "
1787
+ "że wgrałeś i aktywowałeś wtyczkę."
1788
 
1789
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5469
1790
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4233
1791
  msgid "Marker Listing Settings"
1792
+ msgstr "Ustawienia list znaczników"
1793
 
1794
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5470
1795
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4234
1797
  "Changing these settings will alter the way the marker list appears on your "
1798
  "website."
1799
  msgstr ""
1800
+ "Zmiana tych ustawień spowoduje, że znaczniki będą wyświetlane w inny sposób."
1801
 
1802
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
1803
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4240
 
1804
  msgid "Advanced Marker Listing"
1805
+ msgstr "Zaawansowane listy znaczników"
1806
 
1807
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5473
 
1808
  msgid "Basic Marker Listings"
1809
+ msgstr "Podstawowe listy znaczników"
1810
 
1811
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5476
1812
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4243
 
1813
  msgid "Column settings"
1814
+ msgstr "Ustawienia kolumn"
1815
 
1816
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5478
1817
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4245
1851
 
1852
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5504
1853
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4258
 
1854
  msgid "Theme selection"
1855
+ msgstr "Wybór motywu"
1856
 
1857
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5507
1858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4261
1859
  msgid "Sky"
1860
+ msgstr "Niebo"
1861
 
1862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5508
1863
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4262
1864
  msgid "Sun"
1865
+ msgstr "Słońce"
1866
 
1867
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5509
1868
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4263
1869
  msgid "Earth"
1870
+ msgstr "Ziemia"
1871
 
1872
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5510
1873
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4264
1874
  msgid "Monotone"
1875
+ msgstr "Jeden kolor"
1876
 
1877
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5511
1878
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4265
1879
  msgid "PinkPurple"
1880
+ msgstr "Róż i fiolet"
1881
 
1882
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5512
1883
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4266
1884
  msgid "White"
1885
+ msgstr "Biały"
1886
 
1887
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5513
1888
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4267
1889
  msgid "Black"
1890
+ msgstr "Czarny"
1891
 
1892
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5518
1893
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4272
1940
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5527
1941
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4281
1942
  msgid "Resize Images with Timthumb"
1943
+ msgstr "Przeskaluj obrazki z Timthumb"
1944
 
1945
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5528
1946
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4282
1947
  msgid "Enable lazyload of images"
1948
+ msgstr "Włącz ładowanie obrazków"
1949
 
1950
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5529
1951
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4283
1952
  msgid "Enable autoheight"
1953
+ msgstr "Włącz autowysokość"
1954
 
1955
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5530
1956
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4284
 
1957
  msgid "Enable pagination"
1958
+ msgstr "Włącz podział na strony"
1959
 
1960
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5531
1961
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4285
 
1962
  msgid "Enable navigation"
1963
+ msgstr "Włącz nawigację"
1964
 
1965
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5532
1966
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4286
1967
  msgid "Items"
1968
+ msgstr "Elementy"
1969
 
1970
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5533
1971
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4287
1972
  msgid "Autoplay after x milliseconds (1000 = 1 second)"
1973
+ msgstr "Autoodtwarzanie po x milisekund (1000 = 1 sekunda)"
1974
 
1975
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5548
1976
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5549
1979
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4342
1980
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4352
1981
  msgid "You can use the following"
1982
+ msgstr "Możesz skorzystać z"
1983
 
1984
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5577
1985
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4127
1986
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6457
1987
  msgid "This folder does not exist. Please create it."
1988
+ msgstr "Katalog nie istnieje. Utwórz go."
1989
 
1990
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
1991
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
1992
  msgid "File Permissions:"
1993
+ msgstr "Uprawnienia do plików:"
1994
 
1995
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5583
1996
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4130
1998
  " - The plugin does not have write access to this folder. Please CHMOD this "
1999
  "folder to 755 or 777, or change the location"
2000
  msgstr ""
2001
+ "- Wtyczka nie ma uprawnień do zapisu w tym katalogu. Zmień uprawnienia do "
2002
+ "zapisu katalogu na 755 lub 777, albo zmień katalog."
2003
 
2004
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5601
 
2005
  msgid "Google Maps API Key (optional)"
2006
+ msgstr "Google Maps API Key (opcjonalnie)"
2007
 
2008
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5604
2009
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4305
2014
  "target='_BLANK'>documentation</a> provides a full guide on how to obtain "
2015
  "this. "
2016
  msgstr ""
2017
+ "Klucz API można uzyskać z <a href='https://console.developers.google.com' "
2018
+ "target='_BLANK'>Google Developers Console</a>. Nasza <a href='http://www."
2019
+ "wpgmaps.com/documentation/creating-a-google-maps-api-key/' "
2020
+ "target='_BLANK'>dokumentacja</a> zawiera kompletną instrukcję, jak to "
2021
+ "zrobić. "
2022
 
2023
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5610
2024
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4336
2026
  "We suggest that you change the two fields below ONLY if you are experiencing "
2027
  "issues when trying to save the marker XML files."
2028
  msgstr ""
2029
+ "Radzimy nie zmienić poniższych dwóch pól, jeśli nie msz problemów z zapisem "
2030
+ "znaczników do pliku XML."
2031
 
2032
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5613
2033
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4330
2034
  msgid "Pull marker data from"
2035
+ msgstr "Pobierz dane znaczników z"
2036
 
2037
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5615
2038
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4332
2039
  msgid "Database (Great for small amounts of markers)"
2040
+ msgstr "Baza danych (dobra dla niedużej liczby znaczników)"
2041
 
2042
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5616
2043
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4333
2044
  msgid "XML File (Great for large amounts of markers)"
2045
+ msgstr "Plik XML (dobry dla wielkich ilości znaczników)"
2046
 
2047
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5620
2048
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4307
2058
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4343
2059
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4353
2060
  msgid "Currently using"
2061
+ msgstr "Obecnie używa"
2062
 
2063
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5630
2064
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4316
2065
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4347
2066
  msgid "Marker data XML URL"
2067
+ msgstr "Link do pliku XML"
2068
 
2069
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5640
2070
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5643
2130
 
2131
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5750
2132
  msgid "Dropdown"
2133
+ msgstr "Llista rozwijana"
2134
 
2135
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5751
2136
  msgid "Checkboxes"
2137
+ msgstr "Zaznaczenia"
2138
 
2139
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5757
2140
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4172
2167
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5782
2168
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4197
2169
  msgid "Lowest level of access to the map editor"
2170
+ msgstr "Najniższy poziom dostępu do edytora map"
2171
 
2172
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5794
 
2173
  msgid "Retina Icon Width"
2174
+ msgstr "Szerokość ikony znacznika"
2175
 
2176
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5798
2177
  msgid "Retina Icon Height"
2178
+ msgstr "Wysokość ikony znacznika"
2179
 
2180
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5853
2181
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5855
2182
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6922
 
2183
  msgid "No Global Setting"
2184
+ msgstr "Brak ustawień glowbalnych"
2185
 
2186
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5868
2187
  msgid "InfoWindow Settings"
2201
  "Please check this box and make the necessary changes to your images using "
2202
  "the settings below.)"
2203
  msgstr ""
2204
+ "(Wsparcie Timthumb nie będzie kontynuowane w kolejnych wersjach Pro. Zaznacz "
2205
+ "to pole i wykonaj niezbędne zmiany, korzystając z poniższych ustawień."
2206
 
2207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5912
2208
  msgid "Resize Images"
2209
+ msgstr "Przeskaluj obrazki"
2210
 
2211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5914
2212
  msgid "Resize all images to the below sizes"
2213
+ msgstr "Przeskaluj wszystkie obrazki do poniższych wymiarów"
2214
 
2215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5918
2216
  msgid "Default Image Width"
2219
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5919
2220
  msgid "(can be left blank - max width will be limited to max infowindow width)"
2221
  msgstr ""
2222
+ "(można zostawić puste - maks. szerokość będzie ograniczona do maks. "
2223
+ "szerokości okienka informacyjnego)"
2224
 
2225
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5922
2226
  msgid "Default Image Height"
2231
  "(can be left blank - leaving both the width and height blank will revert to "
2232
  "full size images being used)"
2233
  msgstr ""
2234
+ "(można zostawić puste - pozostawienie zarówno szerokości, jak i wysokości "
2235
+ "pustych przywróci pełne wymiary obrazków)"
2236
 
2237
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5926
2238
  msgid "Max InfoWindow Width"
2239
  msgstr "Maks. szerokość okna informacyjnego"
2240
 
2241
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5927
 
2242
  msgid "(Minimum: 200px)"
2243
+ msgstr "(Minimum: 200px)"
2244
 
2245
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:5930
2246
  msgid "Other settings"
2325
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4569
2326
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5874
2327
  msgid "Link"
2328
+ msgstr "Odnośnik"
2329
 
2330
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6603
2331
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6688
2335
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:42
2336
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:127
2337
  msgid "Line Color"
2338
+ msgstr "Kolor linii"
2339
 
2340
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6606
2341
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6691
2342
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:47
2343
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:133
2344
  msgid "Line Opacity"
2345
+ msgstr "Przezroczystość linii"
2346
 
2347
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6609
2348
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6694
2350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:50
2351
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:136
2352
  msgid "Fill Color"
2353
+ msgstr "Kolor wypełnienia"
2354
 
2355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6612
2356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6697
2362
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:50
2363
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:135
2364
  msgid "Opacity"
2365
+ msgstr "Przezroczystość"
2366
 
2367
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6615
2368
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6700
2369
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:56
2370
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:142
2371
  msgid "On Hover Line Color"
2372
+ msgstr "Kolor linii pod kursorem"
2373
 
2374
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6618
2375
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6703
2376
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:59
2377
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:145
2378
  msgid "On Hover Fill Color"
2379
+ msgstr "Kolor wypełnienia pod kursorem"
2380
 
2381
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6621
2382
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6706
2383
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:62
2384
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:148
2385
  msgid "On Hover Opacity"
2386
+ msgstr "Przezroczystość pod kursorem"
2387
 
2388
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6630
2389
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6714
2390
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:73
2391
  msgid "Click on the map to insert a vertex."
2392
+ msgstr "Kliknij na mapie, aby wstawić wierzchołek"
2393
 
2394
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6631
2395
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6715
2396
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:74
2397
  msgid "Click on a vertex to remove it."
2398
+ msgstr "Kliknij na wierzchołku, aby go usunąć"
2399
 
2400
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6632
2401
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6716
2402
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:75
2403
  msgid "Drag a vertex to move it."
2404
+ msgstr "Przeciągnij wierzchołek, aby zmienić położenie"
2405
 
2406
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6640
2407
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6724
2420
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:6919
2421
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5641
2422
  msgid "Copied to clipboard"
2423
+ msgstr "Skopiowano do schowka"
2424
 
2425
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7015
2426
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8031
2531
 
2532
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7071
2533
  msgid "Reset"
2534
+ msgstr "Zresetuj"
2535
 
2536
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7210
2537
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4512
2552
 
2553
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7222
2554
  msgid "Duplicate"
2555
+ msgstr "Zduplikuj"
2556
 
2557
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7225
2558
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:7416
2582
 
2583
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8001
2584
  msgid "Add heatmap data"
2585
+ msgstr "Dodaj mapę ciepła"
2586
 
2587
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8015
2588
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8103
2589
  msgid "Gradient"
2590
+ msgstr "Gradient"
2591
 
2592
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2593
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2594
  msgid "Default"
2595
+ msgstr "Domyślnie"
2596
 
2597
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8018
2598
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8106
2599
  msgid "Blue"
2600
+ msgstr "Niebieski"
2601
 
2602
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8056
2603
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8142
2607
 
2608
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro.php:8088
2609
  msgid "Edit Dataset"
2610
+ msgstr "Edycja danych"
2611
 
2612
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:15
2613
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:18
2637
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:19
2638
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4468
2639
  msgid "of WP Google Maps for only"
2640
+ msgstr "z WP Google Maps tylko za"
2641
 
2642
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:24
2643
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4489
2683
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:104
2684
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:186
2685
  msgid "Retina Ready"
2686
+ msgstr "Standard Retina Ready"
2687
 
2688
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:105
2689
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:187
2690
  msgid "This marker is a retina-ready marker"
2691
+ msgstr "Ten znacznik jest gotowy do obsługi funkcji Retina-Ready"
2692
 
2693
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:114
2694
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:196
2695
  msgid "Assigned to "
2696
+ msgstr "Przypisane do "
2697
 
2698
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:127
2699
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:210
2722
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:412
2723
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:463
2724
  msgid "<em><small>No categories found</small></em>"
2725
+ msgstr "<em><small>Nie znaleziono kategorii</small></em>"
2726
 
2727
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:498
2728
  msgid "All maps"
2729
+ msgstr "Wszystkie mapy"
2730
 
2731
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_categories.php:529
2732
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:415
2809
  #, php-format
2810
  msgid "Cannot import line %d as the LAT and/or LNG is not defined."
2811
  msgstr ""
2812
+ "Nie można zaimportować linii %d ponieważ LAT i/lub LNG nie zostały "
2813
+ "zdefiniowane."
2814
 
2815
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:370
2816
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_export_import.class.php:501
2853
 
2854
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:13
2855
  msgid "Select a Map Type (beta)"
2856
+ msgstr "Wybierz rodzaj mapy (beta)"
2857
 
2858
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:149
 
2859
  msgid "Show distance in:"
2860
+ msgstr "Pokazuj odległość w:"
2861
 
2862
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:159
2863
  msgid "Show bouncing icon:"
2864
+ msgstr "Pokaż podskakującą ikonę:"
2865
 
2866
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:169
2867
  msgid "Hide markers until search is done:"
2868
+ msgstr "Ukryj znaczniki do zakończenia wyszukiwania:"
2869
 
2870
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:209
 
2871
  msgid "Default 'To' Address:"
2872
+ msgstr "Domyślny adres 'Do':"
2873
 
2874
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:213
2875
  #, fuzzy
2893
 
2894
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wp-google-maps-pro_wizard.php:279
2895
  msgid "Blank Map"
2896
+ msgstr "Pusta mapa"
2897
 
2898
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-pro/wpgmza.php:221
2899
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5829
2937
 
2938
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:187
2939
  msgid "Everyone"
2940
+ msgstr "Każdy"
2941
 
2942
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:188
2943
  msgid "Registered Users"
2944
+ msgstr "Zarejestrowani użytkownicy"
2945
 
2946
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:193
2947
  msgid "Allow users to select a marker category?"
2973
 
2974
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:319
2975
  msgid "Or click on the map and drag to add a marker"
2976
+ msgstr "Kliknij na mapie i przeciągnij, aby dodać znacznik"
2977
 
2978
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:322
2979
  msgid "Marker Description"
2993
 
2994
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:456
2995
  msgid "A new marker has been submitted for your map"
2996
+ msgstr "Nowy znacznik został dodany do twojej mapy"
2997
 
2998
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:588
2999
  msgid ""
3000
  "Please <a href='./update-core.php'>update</a> your Pro Add-on to at least "
3001
  "version 5.50 to allow for these settings"
3002
  msgstr ""
3003
+ "<a href='./update-core.php'>Zaktualizuj</a> swoją wtyczkę Pro co najmniej do "
3004
+ "wersji 5.50 aby korzystać z tych ustawień "
3005
 
3006
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:592
3007
  msgid "Visitor Generated Marker Settings"
3013
 
3014
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:598
3015
  msgid "Strip all HTML tags in descriptions and titles"
3016
+ msgstr "Usuń wszystkie tagi HTML z opisów i tytułów"
3017
 
3018
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:599
 
3019
  msgid "Automatically approve visitor generated markers"
3020
+ msgstr "Automatycznie akceptuj znaczniki generowane przez odwiedzających?"
3021
 
3022
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3023
  msgid "Email me whenever there is a new marker"
3024
+ msgstr "Powiadom o każdym nowym znaczniku"
3025
 
3026
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps-ugm/wp-google-maps-ugm.php:600
3027
  msgid "Email address:"
3028
+ msgstr "Adres e-mail:"
3029
 
3030
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:22
3031
  msgid "Welcome to"
3064
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:60
3065
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:56
3066
  msgid "WordPress.org plugin repository"
3067
+ msgstr "Repozytorium wtyczek Wordpress.org"
3068
 
3069
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:61
3070
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:57
3074
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:65
3075
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:61
3076
  msgid "Google or other search engine"
3077
+ msgstr "Wyszukiwarka Google lub inna"
3078
 
3079
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:69
3080
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:65
3081
  msgid "Friend recommendation"
3082
+ msgstr "Polecenie znajomego"
3083
 
3084
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:73
3085
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:69
3086
  msgid "Other"
3087
+ msgstr "Inne źródło"
3088
 
3089
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:74
3090
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:70
3104
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3105
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3106
  msgid "review our documentation"
3107
+ msgstr "Zapoznaj się z naszą dokumentacją"
3108
 
3109
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/WPGM_templates.php:97
3110
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:93
3163
 
3164
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:9
3165
  msgid "Add your map as a widget"
3166
+ msgstr "Dodaj mapę jako widget."
3167
 
3168
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/classes/widget_module.class.php:47
 
3169
  msgid "Select your map:"
3170
+ msgstr "Wybierz mapę:"
3171
 
3172
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:3
3173
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:4
 
3174
  msgid "Welcome to WP Google Maps version 6.3"
3175
+ msgstr "Witaj w WP Google Maps wersja 6.3"
3176
 
3177
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:5
3178
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:6
3181
  "maps through a simple interface and powerful functionality along with world "
3182
  "class support."
3183
  msgstr ""
3184
+ "Dziękujemy za aktualizację. WP Google Maps w wersji 6 pomogą stworzyć "
3185
+ "niezwykłe mapy przy użyciu prostego interfejsu oraz potężnych narzędzi i "
3186
+ "światowej klasy wsparcia."
3187
 
3188
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:10
3189
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:11
3194
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:11
3195
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:12
3196
  msgid "Credits"
3197
+ msgstr "Podziękowania"
3198
 
3199
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:15
3200
  msgid "WP Google Maps is created by an international team of developers."
3201
+ msgstr "WP Google Maps jest tworzone przez międzynarodowy zespół programistów."
3202
 
3203
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:16
3204
  msgid "Project Leaders"
3205
+ msgstr "Liderzy projektu"
3206
 
3207
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:22
3208
  msgid "Founder &amp; Lead Developer"
3209
+ msgstr "Założyciel i główny programista"
3210
 
3211
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:25
3212
  msgid "Contributers"
3213
+ msgstr "Współpracownicy"
3214
 
3215
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:30
3216
  msgid "Developer"
3217
+ msgstr "Programista"
3218
 
3219
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:35
3220
  msgid "Developer &amp; Support"
3221
+ msgstr "Programista i wsparcie"
3222
 
3223
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:50
 
3224
  msgid "Marketing"
3225
+ msgstr "Marketing"
3226
 
3227
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:55
3228
  msgid "Security suggestions"
3229
+ msgstr "Sugestie bezpieczeństwa"
3230
 
3231
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3232
  msgid "Want to see your name on this page?"
3233
+ msgstr "Czy chcesz zobaczyć swoje imię na tej stronie?"
3234
 
3235
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/credits.php:59
3236
  msgid "Get involved on GitHub."
3237
+ msgstr "Daj się zainspirować przez GitHub."
3238
 
3239
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:18
3240
  #, fuzzy
3251
  "Select from various <a href='http://wpgmaps.com/map-themes/' "
3252
  "target='_BLANK'>map themes</a>, or make your own."
3253
  msgstr ""
3254
+ "Wybierz spośród różnych <a href='http://wpgmaps.com/map-themes/' "
3255
+ "target='_BLANK'>motywów map</a>, lub stwórz własny."
3256
 
3257
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/welcome.php:97
3258
  #, fuzzy
3273
 
3274
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:38
3275
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polygons.php:124
 
3276
  msgid "Get the Pro add-on"
3277
+ msgstr "Kup w wersji Pro"
3278
 
3279
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:58
3280
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/base/includes/wp-google-maps-polylines.php:143
3281
  msgid "Line Thickness"
3282
+ msgstr "Grubość linii"
3283
 
3284
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:320
3285
  msgid "My first map"
3286
+ msgstr "Moja pierwsza mapa"
3287
 
3288
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3289
  msgid ""
3290
  "<strong>WP Google Maps cannot find the directory it uses to save marker data "
3291
  "to. Please confirm that <em>"
3292
  msgstr ""
3293
+ "<strong>WP Google Maps nie może znaleźć katalogu zapisu danych. Prosimy, "
3294
+ "potwierdź to <em>"
3295
 
3296
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:543
3297
  msgid ""
3298
  "</em>exists. Please also ensure that you assign file permissions of 755 (or "
3299
  "777) to this directory."
3300
  msgstr ""
3301
+ "</em>istnieje. Upewnij się, że ustawiłeś prawa do zapisu plików na 755 (lub "
3302
+ "777) dla tego katalogu."
3303
 
3304
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:549
 
3305
  msgid ""
3306
  "Timthumb does not have 'write' permission for the cache directory. Please "
3307
  "enable 'write' permissions (755 or 777) for "
3308
  msgstr ""
3309
  "Brak uprawnień 'zapisu' dla katalogu wtyczki. Nadaj proszę uprawnienia do "
3310
+ "'zapisu' (755) dla "
3311
 
3312
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:551
 
3313
  msgid "in order for images to show up while using Timthumb. Please see "
3314
+ msgstr "aby wtyczka mogła działać prawidłowo! Zobacz "
3315
 
3316
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:553
3317
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6027
3322
  msgid ""
3323
  "for help on how to do it. Alternatively, you can disable the use of Timthumb "
3324
  "in Maps->Settings"
3325
+ msgstr "aby uzyskać pomoc. Możesz też wyłączyć Timthumb w Mapy->Ustawienia"
3326
 
3327
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2436
3328
  msgid "DOMDocument is not enabled"
3329
+ msgstr "DOMDocument nie jest aktywny"
3330
 
3331
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2540
3332
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2550
3333
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2555
3334
  msgid "Could not save XML file"
3335
+ msgstr "Nie można zapisać pliku XML"
3336
 
3337
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3338
  msgid "Error: The map ID"
3339
+ msgstr "Błąd: ID mapy"
3340
 
3341
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:2894
3342
  msgid "does not exist"
3343
+ msgstr "nie istnieje"
3344
 
3345
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3228
3346
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3283
3347
  msgid "You cannot save a blank polygon"
3348
+ msgstr "Nie możesz zapisać pustego wielokąta"
3349
 
3350
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3338
3351
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3382
3352
  msgid "You cannot save a blank polyline"
3353
+ msgstr "Nie możesz zapisać pustej linii"
3354
 
3355
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3478
3356
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3482
3377
 
3378
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3379
  msgid "Or ask a question on our "
3380
+ msgstr "Lub zadaj pytanie na naszym "
3381
 
3382
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3850
3383
  msgid "Support forum."
3384
+ msgstr "Forum Wsparcia."
3385
 
3386
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:3857
3387
  msgid "There was a problem deleting the map."
3421
  msgstr ""
3422
 
3423
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4210
 
3424
  msgid "Enable Usage Tracking"
3425
+ msgstr "Zezwól na śledzenie"
3426
 
3427
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4212
3428
  msgid ""
3464
 
3465
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3466
  msgid "We will not nag you again, promise!"
3467
+ msgstr "Nie będziemy cię więcej męczyć, obiecujemy!"
3468
 
3469
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4426
3470
  msgid "Close"
3471
+ msgstr "Zamknij"
3472
 
3473
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3474
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4467
3482
 
3483
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4446
3484
  msgid "Wizard"
3485
+ msgstr "Kreator"
3486
 
3487
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4458
3488
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4480
3524
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5542
3525
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5546
3526
  msgid "Pro Edition"
3527
+ msgstr "Wersja Pro"
3528
 
3529
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4705
3530
  msgid "of this plugin for just"
3536
 
3537
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4706
3538
  msgid "of WP Google Maps and save your markers to a CSV file!"
3539
+ msgstr "WP Google Maps i zapisz znaczniki do pliku CSV!"
3540
 
3541
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4731
3542
  #, fuzzy
3554
 
3555
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:4773
3556
  msgid "Pro Upgrade"
3557
+ msgstr "Upgrade do wersji Pro"
3558
 
3559
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5004
3560
  msgid "Query string"
3561
+ msgstr "Zapytanie"
3562
 
3563
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5009
3564
  msgid "Show bouncing icon"
3565
+ msgstr "Pokaż podskakującą ikonę"
3566
 
3567
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5026
3568
  msgid "Enable Bicycle Layer?"
3595
 
3596
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5127
3597
  msgid "Read data directly from your Fusion Table."
3598
+ msgstr "Odczytaj dane bezpośrednio z Twojej tabeli Fusion."
3599
 
3600
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5135
3601
  #, fuzzy
3618
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5146
3619
  msgid "Advanced table with real time search and filtering"
3620
  msgstr ""
3621
+ "Zaawansowana tabela z wyszukiwaniem i filtrowaniem w czasie rzeczywistym"
3622
 
3623
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5147
3624
  msgid "beta"
3625
+ msgstr "beta"
3626
 
3627
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5218
3628
  msgid "Basic"
3629
+ msgstr "Podstawowa wersja"
3630
 
3631
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5219
3632
  msgid "Show a basic list of your markers"
3633
+ msgstr "Pokaż podstawową listę znaczników"
3634
 
3635
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5228
3636
  msgid "Beautiful, responsive, mobile-friendly carousel marker listing"
3637
  msgstr ""
3638
+ "Piękna, interaktywna, przyjazna dla urządzeń mobilnych lista w formie "
3639
+ "karuzeli"
3640
 
3641
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5236
3642
  msgid "Tabular"
3643
+ msgstr "Tabelaryczna"
3644
 
3645
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5237
3646
  msgid "Advanced, tabular marker listing functionality with real time filtering"
3647
+ msgstr "Zaawansowana, tabelaryczna lista z filtrowaniem w czasie rzeczywistym"
3648
 
3649
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5363
3650
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5424
 
3651
  msgid "Advanced markers"
3652
+ msgstr "Znaczniki zaawansowane"
3653
 
3654
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5364
 
3655
  msgid "Polygon"
3656
+ msgstr "Wielokąt"
3657
 
3658
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5412
3659
  msgid "Please add the current marker before trying to add another marker"
3660
+ msgstr "Dodaj bieżący znacznik zanim dodasz kolejny"
3661
 
3662
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5426
3663
  msgid "Add advanced markers"
3673
 
3674
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
3675
  msgid "Add dynamic heatmap data"
3676
+ msgstr "Dodaj dynamiczną mapę ciepła"
3677
 
3678
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5500
 
3679
  msgid "with the Pro version."
3680
+ msgstr "przy użyciu wersji Pro."
3681
 
3682
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5501
 
3683
  msgid "View a demo."
3684
+ msgstr "Zobacz wersję demonstracyjną."
3685
 
3686
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5510
3687
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:5606
3799
  "'write' permissions (755) for "
3800
  msgstr ""
3801
  "Brak uprawnień 'zapisu' dla katalogu wtyczki. Nadaj proszę uprawnienia do "
3802
+ "'zapisu' (755) dla "
3803
 
3804
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6025
3805
  msgid "in order for this plugin to work! Please see "
3806
+ msgstr "aby wtyczka mogła działać prawidłowo! Zobacz "
3807
 
3808
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6029
3809
  msgid "for help on how to do it."
3829
  msgstr ""
3830
 
3831
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6501
 
3832
  msgid "Support forum"
3833
+ msgstr "Forum Wsparcia"
3834
 
3835
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6658
3836
  msgid "United States of America"
3837
+ msgstr "Stany Zjednoczone Ameryki"
3838
 
3839
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6668
 
3840
  msgid "View the instruction video"
3841
+ msgstr "Zobacz instrukcję wideo."
3842
 
3843
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6669
 
3844
  msgid "Read the documentation"
3845
+ msgstr "Zapoznaj się z naszą dokumentacją"
3846
 
3847
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6670
3848
  msgid "Important Notification"
3849
+ msgstr "Ważna informacja."
3850
 
3851
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6671
3852
  msgid "You can read more about that here."
3853
+ msgstr "Możesz przeczytać o tym więcej tutaj."
3854
 
3855
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6672
3856
  msgid ""
3857
  "Before you begin please note that *ALL* Google Maps now require an API key "
3858
  "to function."
3859
+ msgstr "WSZYSTKIE mapy Google wymagają obecnie klucza API do działania."
3860
 
3861
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6673
3862
  msgid "Create an API key now (free)"
3863
+ msgstr "Wygeneruj klucz API teraz (za darmo)"
3864
 
3865
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6674
3866
  msgid "Once created, simply paste your API key here and press save."
3867
+ msgstr "Po wygenerowaniu wklej swój klucz API tuta i kliknij Zapisz. "
3868
 
3869
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6675
3870
  #, php-format
3871
  msgid "Need help? %s or %s."
3872
+ msgstr "Potrzebujesz pomocy? %s lub %s."
3873
 
3874
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6676
3875
  msgid "Google Maps JavaScript API Key: "
3876
+ msgstr "Klucz Google Maps JavaScript API: "
3877
 
3878
  #: C:\wamp\www\wordpress38\wp-content\plugins\wp-google-maps/wpGoogleMaps.php:6678
3879
  msgid "Once saved, it may take up to 5 minutes for your map to display."
3880
  msgstr ""
3881
+ "Po zapisaniu może być potrzebne do 5 minut, aby mapa zaczęła się poprawnie "
3882
+ "wyświetlać. "
3883
 
3884
  #~ msgid ""
3885
  #~ "Use the <a href='http://gmaps-samples-v3.googlecode.com/svn/trunk/"
lib/CanvasLayer.js ADDED
@@ -0,0 +1,547 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Copyright 2012 Google Inc. All Rights Reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * @fileoverview Extends OverlayView to provide a canvas "Layer".
19
+ * @author Brendan Kenny
20
+ */
21
+
22
+ /**
23
+ * A map layer that provides a canvas over the slippy map and a callback
24
+ * system for efficient animation. Requires canvas and CSS 2D transform
25
+ * support.
26
+ * @constructor
27
+ * @extends google.maps.OverlayView
28
+ * @param {CanvasLayerOptions=} opt_options Options to set in this CanvasLayer.
29
+ */
30
+ function CanvasLayer(opt_options) {
31
+ /**
32
+ * If true, canvas is in a map pane and the OverlayView is fully functional.
33
+ * See google.maps.OverlayView.onAdd for more information.
34
+ * @type {boolean}
35
+ * @private
36
+ */
37
+ this.isAdded_ = false;
38
+
39
+ /**
40
+ * If true, each update will immediately schedule the next.
41
+ * @type {boolean}
42
+ * @private
43
+ */
44
+ this.isAnimated_ = false;
45
+
46
+ /**
47
+ * The name of the MapPane in which this layer will be displayed.
48
+ * @type {string}
49
+ * @private
50
+ */
51
+ this.paneName_ = CanvasLayer.DEFAULT_PANE_NAME_;
52
+
53
+ /**
54
+ * A user-supplied function called whenever an update is required. Null or
55
+ * undefined if a callback is not provided.
56
+ * @type {?function=}
57
+ * @private
58
+ */
59
+ this.updateHandler_ = null;
60
+
61
+ /**
62
+ * A user-supplied function called whenever an update is required and the
63
+ * map has been resized since the last update. Null or undefined if a
64
+ * callback is not provided.
65
+ * @type {?function}
66
+ * @private
67
+ */
68
+ this.resizeHandler_ = null;
69
+
70
+ /**
71
+ * The LatLng coordinate of the top left of the current view of the map. Will
72
+ * be null when this.isAdded_ is false.
73
+ * @type {google.maps.LatLng}
74
+ * @private
75
+ */
76
+ this.topLeft_ = null;
77
+
78
+ /**
79
+ * The map-pan event listener. Will be null when this.isAdded_ is false. Will
80
+ * be null when this.isAdded_ is false.
81
+ * @type {?function}
82
+ * @private
83
+ */
84
+ this.centerListener_ = null;
85
+
86
+ /**
87
+ * The map-resize event listener. Will be null when this.isAdded_ is false.
88
+ * @type {?function}
89
+ * @private
90
+ */
91
+ this.resizeListener_ = null;
92
+
93
+ /**
94
+ * If true, the map size has changed and this.resizeHandler_ must be called
95
+ * on the next update.
96
+ * @type {boolean}
97
+ * @private
98
+ */
99
+ this.needsResize_ = true;
100
+
101
+ /**
102
+ * A browser-defined id for the currently requested callback. Null when no
103
+ * callback is queued.
104
+ * @type {?number}
105
+ * @private
106
+ */
107
+ this.requestAnimationFrameId_ = null;
108
+
109
+ var canvas = document.createElement('canvas');
110
+ canvas.style.position = 'absolute';
111
+ canvas.style.top = 0;
112
+ canvas.style.left = 0;
113
+ canvas.style.pointerEvents = 'none';
114
+
115
+ /**
116
+ * The canvas element.
117
+ * @type {!HTMLCanvasElement}
118
+ */
119
+ this.canvas = canvas;
120
+
121
+ /**
122
+ * The CSS width of the canvas, which may be different than the width of the
123
+ * backing store.
124
+ * @private {number}
125
+ */
126
+ this.canvasCssWidth_ = 300;
127
+
128
+ /**
129
+ * The CSS height of the canvas, which may be different than the height of
130
+ * the backing store.
131
+ * @private {number}
132
+ */
133
+ this.canvasCssHeight_ = 150;
134
+
135
+ /**
136
+ * A value for scaling the CanvasLayer resolution relative to the CanvasLayer
137
+ * display size.
138
+ * @private {number}
139
+ */
140
+ this.resolutionScale_ = 1;
141
+
142
+ /**
143
+ * Simple bind for functions with no args for bind-less browsers (Safari).
144
+ * @param {Object} thisArg The this value used for the target function.
145
+ * @param {function} func The function to be bound.
146
+ */
147
+ function simpleBindShim(thisArg, func) {
148
+ return function() { func.apply(thisArg); };
149
+ }
150
+
151
+ /**
152
+ * A reference to this.repositionCanvas_ with this bound as its this value.
153
+ * @type {function}
154
+ * @private
155
+ */
156
+ this.repositionFunction_ = simpleBindShim(this, this.repositionCanvas_);
157
+
158
+ /**
159
+ * A reference to this.resize_ with this bound as its this value.
160
+ * @type {function}
161
+ * @private
162
+ */
163
+ this.resizeFunction_ = simpleBindShim(this, this.resize_);
164
+
165
+ /**
166
+ * A reference to this.update_ with this bound as its this value.
167
+ * @type {function}
168
+ * @private
169
+ */
170
+ this.requestUpdateFunction_ = simpleBindShim(this, this.update_);
171
+
172
+ // set provided options, if any
173
+ if (opt_options) {
174
+ this.setOptions(opt_options);
175
+ }
176
+ }
177
+
178
+ CanvasLayer.prototype = new google.maps.OverlayView();
179
+
180
+ /**
181
+ * The default MapPane to contain the canvas.
182
+ * @type {string}
183
+ * @const
184
+ * @private
185
+ */
186
+ CanvasLayer.DEFAULT_PANE_NAME_ = 'overlayLayer';
187
+
188
+ /**
189
+ * Transform CSS property name, with vendor prefix if required. If browser
190
+ * does not support transforms, property will be ignored.
191
+ * @type {string}
192
+ * @const
193
+ * @private
194
+ */
195
+ CanvasLayer.CSS_TRANSFORM_ = (function() {
196
+ var div = document.createElement('div');
197
+ var transformProps = [
198
+ 'transform',
199
+ 'WebkitTransform',
200
+ 'MozTransform',
201
+ 'OTransform',
202
+ 'msTransform'
203
+ ];
204
+ for (var i = 0; i < transformProps.length; i++) {
205
+ var prop = transformProps[i];
206
+ if (div.style[prop] !== undefined) {
207
+ return prop;
208
+ }
209
+ }
210
+
211
+ // return unprefixed version by default
212
+ return transformProps[0];
213
+ })();
214
+
215
+ /**
216
+ * The requestAnimationFrame function, with vendor-prefixed or setTimeout-based
217
+ * fallbacks. MUST be called with window as thisArg.
218
+ * @type {function}
219
+ * @param {function} callback The function to add to the frame request queue.
220
+ * @return {number} The browser-defined id for the requested callback.
221
+ * @private
222
+ */
223
+ CanvasLayer.prototype.requestAnimFrame_ =
224
+ window.requestAnimationFrame ||
225
+ window.webkitRequestAnimationFrame ||
226
+ window.mozRequestAnimationFrame ||
227
+ window.oRequestAnimationFrame ||
228
+ window.msRequestAnimationFrame ||
229
+ function(callback) {
230
+ return window.setTimeout(callback, 1000 / 60);
231
+ };
232
+
233
+ /**
234
+ * The cancelAnimationFrame function, with vendor-prefixed fallback. Does not
235
+ * fall back to clearTimeout as some platforms implement requestAnimationFrame
236
+ * but not cancelAnimationFrame, and the cost is an extra frame on onRemove.
237
+ * MUST be called with window as thisArg.
238
+ * @type {function}
239
+ * @param {number=} requestId The id of the frame request to cancel.
240
+ * @private
241
+ */
242
+ CanvasLayer.prototype.cancelAnimFrame_ =
243
+ window.cancelAnimationFrame ||
244
+ window.webkitCancelAnimationFrame ||
245
+ window.mozCancelAnimationFrame ||
246
+ window.oCancelAnimationFrame ||
247
+ window.msCancelAnimationFrame ||
248
+ function(requestId) {};
249
+
250
+ /**
251
+ * Sets any options provided. See CanvasLayerOptions for more information.
252
+ * @param {CanvasLayerOptions} options The options to set.
253
+ */
254
+ CanvasLayer.prototype.setOptions = function(options) {
255
+ if (options.animate !== undefined) {
256
+ this.setAnimate(options.animate);
257
+ }
258
+
259
+ if (options.paneName !== undefined) {
260
+ this.setPaneName(options.paneName);
261
+ }
262
+
263
+ if (options.updateHandler !== undefined) {
264
+ this.setUpdateHandler(options.updateHandler);
265
+ }
266
+
267
+ if (options.resizeHandler !== undefined) {
268
+ this.setResizeHandler(options.resizeHandler);
269
+ }
270
+
271
+ if (options.resolutionScale !== undefined) {
272
+ this.setResolutionScale(options.resolutionScale);
273
+ }
274
+
275
+ if (options.map !== undefined) {
276
+ this.setMap(options.map);
277
+ }
278
+ };
279
+
280
+ /**
281
+ * Set the animated state of the layer. If true, updateHandler will be called
282
+ * repeatedly, once per frame. If false, updateHandler will only be called when
283
+ * a map property changes that could require the canvas content to be redrawn.
284
+ * @param {boolean} animate Whether the canvas is animated.
285
+ */
286
+ CanvasLayer.prototype.setAnimate = function(animate) {
287
+ this.isAnimated_ = !!animate;
288
+
289
+ if (this.isAnimated_) {
290
+ this.scheduleUpdate();
291
+ }
292
+ };
293
+
294
+ /**
295
+ * @return {boolean} Whether the canvas is animated.
296
+ */
297
+ CanvasLayer.prototype.isAnimated = function() {
298
+ return this.isAnimated_;
299
+ };
300
+
301
+ /**
302
+ * Set the MapPane in which this layer will be displayed, by name. See
303
+ * {@code google.maps.MapPanes} for the panes available.
304
+ * @param {string} paneName The name of the desired MapPane.
305
+ */
306
+ CanvasLayer.prototype.setPaneName = function(paneName) {
307
+ this.paneName_ = paneName;
308
+
309
+ this.setPane_();
310
+ };
311
+
312
+ /**
313
+ * @return {string} The name of the current container pane.
314
+ */
315
+ CanvasLayer.prototype.getPaneName = function() {
316
+ return this.paneName_;
317
+ };
318
+
319
+ /**
320
+ * Adds the canvas to the specified container pane. Since this is guaranteed to
321
+ * execute only after onAdd is called, this is when paneName's existence is
322
+ * checked (and an error is thrown if it doesn't exist).
323
+ * @private
324
+ */
325
+ CanvasLayer.prototype.setPane_ = function() {
326
+ if (!this.isAdded_) {
327
+ return;
328
+ }
329
+
330
+ // onAdd has been called, so panes can be used
331
+ var panes = this.getPanes();
332
+ if (!panes[this.paneName_]) {
333
+ throw new Error('"' + this.paneName_ + '" is not a valid MapPane name.');
334
+ }
335
+
336
+ panes[this.paneName_].appendChild(this.canvas);
337
+ };
338
+
339
+ /**
340
+ * Set a function that will be called whenever the parent map and the overlay's
341
+ * canvas have been resized. If opt_resizeHandler is null or unspecified, any
342
+ * existing callback is removed.
343
+ * @param {?function=} opt_resizeHandler The resize callback function.
344
+ */
345
+ CanvasLayer.prototype.setResizeHandler = function(opt_resizeHandler) {
346
+ this.resizeHandler_ = opt_resizeHandler;
347
+ };
348
+
349
+ /**
350
+ * Sets a value for scaling the canvas resolution relative to the canvas
351
+ * display size. This can be used to save computation by scaling the backing
352
+ * buffer down, or to support high DPI devices by scaling it up (by e.g.
353
+ * window.devicePixelRatio).
354
+ * @param {number} scale
355
+ */
356
+ CanvasLayer.prototype.setResolutionScale = function(scale) {
357
+ if (typeof scale === 'number') {
358
+ this.resolutionScale_ = scale;
359
+ this.resize_();
360
+ }
361
+ };
362
+
363
+ /**
364
+ * Set a function that will be called when a repaint of the canvas is required.
365
+ * If opt_updateHandler is null or unspecified, any existing callback is
366
+ * removed.
367
+ * @param {?function=} opt_updateHandler The update callback function.
368
+ */
369
+ CanvasLayer.prototype.setUpdateHandler = function(opt_updateHandler) {
370
+ this.updateHandler_ = opt_updateHandler;
371
+ };
372
+
373
+ /**
374
+ * @inheritDoc
375
+ */
376
+ CanvasLayer.prototype.onAdd = function() {
377
+ if (this.isAdded_) {
378
+ return;
379
+ }
380
+
381
+ this.isAdded_ = true;
382
+ this.setPane_();
383
+
384
+ this.resizeListener_ = google.maps.event.addListener(this.getMap(),
385
+ 'resize', this.resizeFunction_);
386
+ this.centerListener_ = google.maps.event.addListener(this.getMap(),
387
+ 'center_changed', this.repositionFunction_);
388
+
389
+ this.resize_();
390
+ this.repositionCanvas_();
391
+ };
392
+
393
+ /**
394
+ * @inheritDoc
395
+ */
396
+ CanvasLayer.prototype.onRemove = function() {
397
+ if (!this.isAdded_) {
398
+ return;
399
+ }
400
+
401
+ this.isAdded_ = false;
402
+ this.topLeft_ = null;
403
+
404
+ // remove canvas and listeners for pan and resize from map
405
+ this.canvas.parentElement.removeChild(this.canvas);
406
+ if (this.centerListener_) {
407
+ google.maps.event.removeListener(this.centerListener_);
408
+ this.centerListener_ = null;
409
+ }
410
+ if (this.resizeListener_) {
411
+ google.maps.event.removeListener(this.resizeListener_);
412
+ this.resizeListener_ = null;
413
+ }
414
+
415
+ // cease canvas update callbacks
416
+ if (this.requestAnimationFrameId_) {
417
+ this.cancelAnimFrame_.call(window, this.requestAnimationFrameId_);
418
+ this.requestAnimationFrameId_ = null;
419
+ }
420
+ };
421
+
422
+ /**
423
+ * The internal callback for resize events that resizes the canvas to keep the
424
+ * map properly covered.
425
+ * @private
426
+ */
427
+ CanvasLayer.prototype.resize_ = function() {
428
+ if (!this.isAdded_) {
429
+ return;
430
+ }
431
+
432
+ var map = this.getMap();
433
+ var mapWidth = map.getDiv().offsetWidth;
434
+ var mapHeight = map.getDiv().offsetHeight;
435
+
436
+ var newWidth = mapWidth * this.resolutionScale_;
437
+ var newHeight = mapHeight * this.resolutionScale_;
438
+ var oldWidth = this.canvas.width;
439
+ var oldHeight = this.canvas.height;
440
+
441
+ // resizing may allocate a new back buffer, so do so conservatively
442
+ if (oldWidth !== newWidth || oldHeight !== newHeight) {
443
+ this.canvas.width = newWidth;
444
+ this.canvas.height = newHeight;
445
+
446
+ this.needsResize_ = true;
447
+ this.scheduleUpdate();
448
+ }
449
+
450
+ // reset styling if new sizes don't match; resize of data not needed
451
+ if (this.canvasCssWidth_ !== mapWidth ||
452
+ this.canvasCssHeight_ !== mapHeight) {
453
+ this.canvasCssWidth_ = mapWidth;
454
+ this.canvasCssHeight_ = mapHeight;
455
+ this.canvas.style.width = mapWidth + 'px';
456
+ this.canvas.style.height = mapHeight + 'px';
457
+ }
458
+ };
459
+
460
+ /**
461
+ * @inheritDoc
462
+ */
463
+ CanvasLayer.prototype.draw = function() {
464
+ this.repositionCanvas_();
465
+ };
466
+
467
+ /**
468
+ * Internal callback for map view changes. Since the Maps API moves the overlay
469
+ * along with the map, this function calculates the opposite translation to
470
+ * keep the canvas in place.
471
+ * @private
472
+ */
473
+ CanvasLayer.prototype.repositionCanvas_ = function() {
474
+ // TODO(bckenny): *should* only be executed on RAF, but in current browsers
475
+ // this causes noticeable hitches in map and overlay relative
476
+ // positioning.
477
+
478
+ var map = this.getMap();
479
+
480
+ // topLeft can't be calculated from map.getBounds(), because bounds are
481
+ // clamped to -180 and 180 when completely zoomed out. Instead, calculate
482
+ // left as an offset from the center, which is an unwrapped LatLng.
483
+ var top = map.getBounds().getNorthEast().lat();
484
+ var center = map.getCenter();
485
+ var scale = Math.pow(2, map.getZoom());
486
+ var left = center.lng() - (this.canvasCssWidth_ * 180) / (256 * scale);
487
+ this.topLeft_ = new google.maps.LatLng(top, left);
488
+
489
+ // Canvas position relative to draggable map's container depends on
490
+ // overlayView's projection, not the map's. Have to use the center of the
491
+ // map for this, not the top left, for the same reason as above.
492
+ var projection = this.getProjection();
493
+ var divCenter = projection.fromLatLngToDivPixel(center);
494
+ var offsetX = -Math.round(this.canvasCssWidth_ / 2 - divCenter.x);
495
+ var offsetY = -Math.round(this.canvasCssHeight_ / 2 - divCenter.y);
496
+ this.canvas.style[CanvasLayer.CSS_TRANSFORM_] = 'translate(' +
497
+ offsetX + 'px,' + offsetY + 'px)';
498
+
499
+ this.scheduleUpdate();
500
+ };
501
+
502
+ /**
503
+ * Internal callback that serves as main animation scheduler via
504
+ * requestAnimationFrame. Calls resize and update callbacks if set, and
505
+ * schedules the next frame if overlay is animated.
506
+ * @private
507
+ */
508
+ CanvasLayer.prototype.update_ = function() {
509
+ this.requestAnimationFrameId_ = null;
510
+
511
+ if (!this.isAdded_) {
512
+ return;
513
+ }
514
+
515
+ if (this.isAnimated_) {
516
+ this.scheduleUpdate();
517
+ }
518
+
519
+ if (this.needsResize_ && this.resizeHandler_) {
520
+ this.needsResize_ = false;
521
+ this.resizeHandler_();
522
+ }
523
+
524
+ if (this.updateHandler_) {
525
+ this.updateHandler_();
526
+ }
527
+ };
528
+
529
+ /**
530
+ * A convenience method to get the current LatLng coordinate of the top left of
531
+ * the current view of the map.
532
+ * @return {google.maps.LatLng} The top left coordinate.
533
+ */
534
+ CanvasLayer.prototype.getTopLeft = function() {
535
+ return this.topLeft_;
536
+ };
537
+
538
+ /**
539
+ * Schedule a requestAnimationFrame callback to updateHandler. If one is
540
+ * already scheduled, there is no effect.
541
+ */
542
+ CanvasLayer.prototype.scheduleUpdate = function() {
543
+ if (this.isAdded_ && !this.requestAnimationFrameId_) {
544
+ this.requestAnimationFrameId_ =
545
+ this.requestAnimFrame_.call(window, this.requestUpdateFunction_);
546
+ }
547
+ };
lib/CanvasLayerOptions.js ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Copyright 2012 Google Inc. All Rights Reserved.
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * @fileoverview Definitions of all options for CanvasLayer.
19
+ * @author Brendan Kenny
20
+ */
21
+
22
+ /**
23
+ * Options for a CanvasLayer.
24
+ *
25
+ * @interface
26
+ */
27
+ function CanvasLayerOptions() {}
28
+
29
+ /**
30
+ * If true, updateHandler will be called repeatedly, once per frame. If false,
31
+ * updateHandler will only be called when a map property changes that could
32
+ * require the canvas content to be redrawn.
33
+ * @type {boolean}
34
+ */
35
+ CanvasLayerOptions.prototype.animate;
36
+
37
+ /**
38
+ * Map on which to overlay the canvas.
39
+ * @type {google.maps.Map}
40
+ */
41
+ CanvasLayerOptions.prototype.map;
42
+
43
+ /**
44
+ * The name of the MapPane in which this layer will be displayed. See
45
+ * {@code google.maps.MapPanes} for the panes available. Default is
46
+ * "overlayLayer".
47
+ * @type {string}
48
+ */
49
+ CanvasLayerOptions.prototype.paneName;
50
+
51
+ /**
52
+ * A function that is called whenever the canvas has been resized to fit the
53
+ * map.
54
+ * @type {function}
55
+ */
56
+ CanvasLayerOptions.prototype.resizeHandler;
57
+
58
+ /**
59
+ * A value for scaling the CanvasLayer resolution relative to the CanvasLayer
60
+ * display size. This can be used to save computation by scaling the backing
61
+ * buffer down, or to support high DPI devices by scaling it up (by e.g.
62
+ * window.devicePixelRatio).
63
+ * @type {number}
64
+ */
65
+ CanvasLayerOptions.prototype.resolutionScale;
66
+
67
+ /**
68
+ * A function that is called when a repaint of the canvas is required.
69
+ * @type {function}
70
+ */
71
+ CanvasLayerOptions.prototype.updateHandler;
lib/codecabin/deactivate-feedback-form.css ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .codecabin-deactivate-dialog
2
+ {
3
+ text-align: left;
4
+ width: auto;
5
+ }
6
+
7
+ .codecabin-deactivate-dialog-buttons
8
+ {
9
+ text-align: right;
10
+ }
11
+
12
+ .codecabin-deactivate-dialog
13
+ {
14
+ width: auto !important;
15
+ }
16
+
17
+ .codecabin-deactivate-dialog h2
18
+ {
19
+ color: gray;
20
+ font-variant: small-caps;
21
+ font-size: 1.2em;
22
+ padding-bottom: 0.2em;
23
+ border-bottom: 1px solid lightgray;
24
+
25
+ }
26
+
27
+ .codecabin-deactivate-dialog input[name="comments"]
28
+ {
29
+ width: 380px;
30
+ }
lib/codecabin/deactivate-feedback-form.js ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function($) {
2
+
3
+ if(!window.codecabin)
4
+ window.codecabin = {};
5
+
6
+ if(codecabin.DeactivateFeedbackForm)
7
+ return;
8
+
9
+ function DeactivateFeedbackForm(plugin)
10
+ {
11
+ var self = this;
12
+ var strings = codecabin_deactivate_feedback_form_strings;
13
+
14
+ this.plugin = plugin;
15
+
16
+ // Dialog HTML
17
+ var element = $('\
18
+ <div class="codecabin-deactivate-dialog" data-remodal-id="' + plugin.slug + '">\
19
+ <form>\
20
+ <input type="hidden" name="plugin"/>\
21
+ <h2>' + strings.quick_feedback + '</h2>\
22
+ <p>\
23
+ ' + strings.foreword + '\
24
+ </p>\
25
+ <ul class="codecabin-deactivate-reasons"></ul>\
26
+ <input name="comments" placeholder="' + strings.brief_description + '"/>\
27
+ <br>\
28
+ <p class="codecabin-deactivate-dialog-buttons">\
29
+ <input type="submit" class="button confirm" value="' + strings.skip_and_deactivate + '"/>\
30
+ <button data-remodal-action="cancel" class="button button-primary">' + strings.cancel + '</button>\
31
+ </p>\
32
+ </form>\
33
+ </div>\
34
+ ')[0];
35
+ this.element = element;
36
+
37
+ $(element).find("input[name='plugin']").val(JSON.stringify(plugin));
38
+
39
+ $(element).on("click", "input[name='reason']", function(event) {
40
+ $(element).find("input[type='submit']").val(
41
+ strings.submit_and_deactivate
42
+ );
43
+ });
44
+
45
+ $(element).find("form").on("submit", function(event) {
46
+ self.onSubmit(event);
47
+ });
48
+
49
+ // Reasons list
50
+ var ul = $(element).find("ul.codecabin-deactivate-reasons");
51
+ for(var key in plugin.reasons)
52
+ {
53
+ var li = $("<li><input type='radio' name='reason'/> <span></span></li>");
54
+
55
+ $(li).find("input").val(key);
56
+ $(li).find("span").html(plugin.reasons[key]);
57
+
58
+ $(ul).append(li);
59
+ }
60
+
61
+ // Listen for deactivate
62
+ $("#the-list [data-slug='" + plugin.slug + "'] .deactivate>a").on("click", function(event) {
63
+ self.onDeactivateClicked(event);
64
+ });
65
+ }
66
+
67
+ DeactivateFeedbackForm.prototype.onDeactivateClicked = function(event)
68
+ {
69
+ this.deactivateURL = event.target.href;
70
+
71
+ event.preventDefault();
72
+
73
+ if(!this.dialog)
74
+ this.dialog = $(this.element).remodal();
75
+ this.dialog.open();
76
+ }
77
+
78
+ DeactivateFeedbackForm.prototype.onSubmit = function(event)
79
+ {
80
+ var element = this.element;
81
+ var strings = codecabin_deactivate_feedback_form_strings;
82
+ var self = this;
83
+ var data = $(element).find("form").serialize();
84
+
85
+ $(element).find("button, input[type='submit']").prop("disabled", true);
86
+
87
+ if($(element).find("input[name='reason']:checked").length)
88
+ {
89
+ $(element).find("input[type='submit']").val(strings.thank_you);
90
+
91
+ $.ajax({
92
+ type: "POST",
93
+ url: "https://www.ccplugins.co/api-deactivation-dialog/feedback.php",
94
+ data: data,
95
+ complete: function() {
96
+ window.location.href = self.deactivateURL;
97
+ }
98
+ });
99
+ }
100
+ else
101
+ {
102
+ $(element).find("input[type='submit']").val(strings.please_wait);
103
+ window.location.href = self.deactivateURL;
104
+ }
105
+
106
+ event.preventDefault();
107
+ return false;
108
+ }
109
+
110
+ $(document).ready(function() {
111
+
112
+ for(var i = 0; i < codecabin_deactivate_feedback_form_plugins.length; i++)
113
+ {
114
+ var plugin = codecabin_deactivate_feedback_form_plugins[i];
115
+ new DeactivateFeedbackForm(plugin);
116
+ }
117
+
118
+ });
119
+
120
+ })(jQuery);
lib/codecabin/deactivate-feedback-form.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+
4
+ add_action('admin_enqueue_scripts', 'wpgmaps_deactivation_survey' );
5
+
6
+ function wpgmaps_deactivation_survey() {
7
+
8
+ // Enqueue scripts
9
+ wp_enqueue_script('remodal', plugin_dir_url(__FILE__) . 'remodal.min.js');
10
+ wp_enqueue_style('remodal', plugin_dir_url(__FILE__) . 'remodal.css');
11
+ wp_enqueue_style('remodal-default-theme', plugin_dir_url(__FILE__) . 'remodal-default-theme.css');
12
+
13
+ wp_enqueue_script('codecabin-deactivate-feedback-form', plugin_dir_url(__FILE__) . 'deactivate-feedback-form.js');
14
+ wp_enqueue_style('codecabin-deactivate-feedback-form', plugin_dir_url(__FILE__) . 'deactivate-feedback-form.css');
15
+
16
+ // Localized strings
17
+ wp_localize_script('codecabin-deactivate-feedback-form', 'codecabin_deactivate_feedback_form_strings', array(
18
+ 'quick_feedback' => __('Quick Feedback', 'codecabin'),
19
+ 'foreword' => __('If you would be kind enough, please tell us why you\'re deactivating?', 'codecabin'),
20
+ 'better_plugins_name' => __('Please tell us which plugin?', 'codecabin'),
21
+ 'please_tell_us' => __('Please tell us the reason so we can improve the plugin', 'codecabin'),
22
+ 'do_not_attach_email' => __('Do not send my e-mail address with this feedback', 'codecabin'),
23
+
24
+ 'brief_description' => __('Please give us any feedback that could help us improve', 'codecabin'),
25
+
26
+ 'cancel' => __('Cancel', 'codecabin'),
27
+ 'skip_and_deactivate' => __('Skip &amp; Deactivate', 'codecabin'),
28
+ 'submit_and_deactivate' => __('Submit &amp; Deactivate', 'codecabin'),
29
+ 'please_wait' => __('Please wait', 'codecabin'),
30
+ 'thank_you' => __('Thank you!', 'codecabin')
31
+ ));
32
+
33
+ // Plugins
34
+ $plugins = apply_filters('codecabin_deactivate_feedback_form_plugins', array());
35
+
36
+ // Reasons
37
+ $defaultReasons = array(
38
+ 'suddenly-stopped-working' => __('The plugin suddenly stopped working', 'codecabin'),
39
+ 'plugin-broke-site' => __('The plugin broke my site', 'codecabin'),
40
+ 'no-longer-needed' => __('I don\'t need this plugin any more', 'codecabin'),
41
+ 'found-better-plugin' => __('I found a better plugin', 'codecabin'),
42
+ 'temporary-deactivation' => __('It\'s a temporary deactivation, I\'m troubleshooting', 'codecabin'),
43
+ 'other' => __('Other', 'codecabin')
44
+ );
45
+
46
+ foreach($plugins as $plugin) {
47
+ $plugin->reasons = apply_filters('codecabin_deactivate_feedback_form_reasons', $defaultReasons, $plugin);
48
+ }
49
+
50
+ // Send plugin data
51
+ wp_localize_script('codecabin-deactivate-feedback-form', 'codecabin_deactivate_feedback_form_plugins', $plugins);
52
+ }
53
+
54
+ /**
55
+ * Hook for adding plugins, pass an array of objects in the following format:
56
+ * 'slug' => 'plugin-slug'
57
+ * 'version' => 'plugin-version'
58
+ * @return array The plugins in the format described above
59
+ */
60
+ add_filter('codecabin_deactivate_feedback_form_plugins', 'wpgmaps_deactivation_form_feedback_form_plugins' );
61
+ function wpgmaps_deactivation_form_feedback_form_plugins( $plugins ) {
62
+ return $plugins;
63
+ }
64
+
lib/codecabin/remodal-default-theme.css ADDED
@@ -0,0 +1,323 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Remodal - v1.1.1
3
+ * Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
4
+ * http://vodkabears.github.io/remodal/
5
+ *
6
+ * Made by Ilya Makarov
7
+ * Under MIT License
8
+ */
9
+
10
+ /* ==========================================================================
11
+ Remodal's default mobile first theme
12
+ ========================================================================== */
13
+
14
+ /* Default theme styles for the background */
15
+
16
+ .remodal-bg.remodal-is-opening,
17
+ .remodal-bg.remodal-is-opened {
18
+ -webkit-filter: blur(3px);
19
+ filter: blur(3px);
20
+ }
21
+
22
+ /* Default theme styles of the overlay */
23
+
24
+ .remodal-overlay {
25
+ background: rgba(43, 46, 56, 0.9);
26
+ }
27
+
28
+ .remodal-overlay.remodal-is-opening,
29
+ .remodal-overlay.remodal-is-closing {
30
+ -webkit-animation-duration: 0.3s;
31
+ animation-duration: 0.3s;
32
+ -webkit-animation-fill-mode: forwards;
33
+ animation-fill-mode: forwards;
34
+ }
35
+
36
+ .remodal-overlay.remodal-is-opening {
37
+ -webkit-animation-name: remodal-overlay-opening-keyframes;
38
+ animation-name: remodal-overlay-opening-keyframes;
39
+ }
40
+
41
+ .remodal-overlay.remodal-is-closing {
42
+ -webkit-animation-name: remodal-overlay-closing-keyframes;
43
+ animation-name: remodal-overlay-closing-keyframes;
44
+ }
45
+
46
+ /* Default theme styles of the wrapper */
47
+
48
+ .remodal-wrapper {
49
+ padding: 10px 10px 0;
50
+ }
51
+
52
+ /* Default theme styles of the modal dialog */
53
+
54
+ .remodal {
55
+ box-sizing: border-box;
56
+ width: 100%;
57
+ margin-bottom: 10px;
58
+ padding: 35px;
59
+
60
+ -webkit-transform: translate3d(0, 0, 0);
61
+ transform: translate3d(0, 0, 0);
62
+
63
+ color: #2b2e38;
64
+ background: #fff;
65
+ }
66
+
67
+ .remodal.remodal-is-opening,
68
+ .remodal.remodal-is-closing {
69
+ -webkit-animation-duration: 0.3s;
70
+ animation-duration: 0.3s;
71
+ -webkit-animation-fill-mode: forwards;
72
+ animation-fill-mode: forwards;
73
+ }
74
+
75
+ .remodal.remodal-is-opening {
76
+ -webkit-animation-name: remodal-opening-keyframes;
77
+ animation-name: remodal-opening-keyframes;
78
+ }
79
+
80
+ .remodal.remodal-is-closing {
81
+ -webkit-animation-name: remodal-closing-keyframes;
82
+ animation-name: remodal-closing-keyframes;
83
+ }
84
+
85
+ /* Vertical align of the modal dialog */
86
+
87
+ .remodal,
88
+ .remodal-wrapper:after {
89
+ vertical-align: middle;
90
+ }
91
+
92
+ /* Close button */
93
+
94
+ .remodal-close {
95
+ position: absolute;
96
+ top: 0;
97
+ left: 0;
98
+
99
+ display: block;
100
+ overflow: visible;
101
+
102
+ width: 35px;
103
+ height: 35px;
104
+ margin: 0;
105
+ padding: 0;
106
+
107
+ cursor: pointer;
108
+ -webkit-transition: color 0.2s;
109
+ transition: color 0.2s;
110
+ text-decoration: none;
111
+
112
+ color: #95979c;
113
+ border: 0;
114
+ outline: 0;
115
+ background: transparent;
116
+ }
117
+
118
+ .remodal-close:hover,
119
+ .remodal-close:focus {
120
+ color: #2b2e38;
121
+ }
122
+
123
+ .remodal-close:before {
124
+ font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
125
+ font-size: 25px;
126
+ line-height: 35px;
127
+
128
+ position: absolute;
129
+ top: 0;
130
+ left: 0;
131
+
132
+ display: block;
133
+
134
+ width: 35px;
135
+
136
+ content: "\00d7";
137
+ text-align: center;
138
+ }
139
+
140
+ /* Dialog buttons */
141
+
142
+ .remodal-confirm,
143
+ .remodal-cancel {
144
+ font: inherit;
145
+
146
+ display: inline-block;
147
+ overflow: visible;
148
+
149
+ min-width: 110px;
150
+ margin: 0;
151
+ padding: 12px 0;
152
+
153
+ cursor: pointer;
154
+ -webkit-transition: background 0.2s;
155
+ transition: background 0.2s;
156
+ text-align: center;
157
+ vertical-align: middle;
158
+ text-decoration: none;
159
+
160
+ border: 0;
161
+ outline: 0;
162
+ }
163
+
164
+ .remodal-confirm {
165
+ color: #fff;
166
+ background: #81c784;
167
+ }
168
+
169
+ .remodal-confirm:hover,
170
+ .remodal-confirm:focus {
171
+ background: #66bb6a;
172
+ }
173
+
174
+ .remodal-cancel {
175
+ color: #fff;
176
+ background: #e57373;
177
+ }
178
+
179
+ .remodal-cancel:hover,
180
+ .remodal-cancel:focus {
181
+ background: #ef5350;
182
+ }
183
+
184
+ /* Remove inner padding and border in Firefox 4+ for the button tag. */
185
+
186
+ .remodal-confirm::-moz-focus-inner,
187
+ .remodal-cancel::-moz-focus-inner,
188
+ .remodal-close::-moz-focus-inner {
189
+ padding: 0;
190
+
191
+ border: 0;
192
+ }
193
+
194
+ /* Keyframes
195
+ ========================================================================== */
196
+
197
+ @-webkit-keyframes remodal-opening-keyframes {
198
+ from {
199
+ -webkit-transform: scale(1.05);
200
+ transform: scale(1.05);
201
+
202
+ opacity: 0;
203
+ }
204
+ to {
205
+ -webkit-transform: none;
206
+ transform: none;
207
+
208
+ opacity: 1;
209
+
210
+ -webkit-filter: blur(0);
211
+ filter: blur(0);
212
+ }
213
+ }
214
+
215
+ @keyframes remodal-opening-keyframes {
216
+ from {
217
+ -webkit-transform: scale(1.05);
218
+ transform: scale(1.05);
219
+
220
+ opacity: 0;
221
+ }
222
+ to {
223
+ -webkit-transform: none;
224
+ transform: none;
225
+
226
+ opacity: 1;
227
+
228
+ -webkit-filter: blur(0);
229
+ filter: blur(0);
230
+ }
231
+ }
232
+
233
+ @-webkit-keyframes remodal-closing-keyframes {
234
+ from {
235
+ -webkit-transform: scale(1);
236
+ transform: scale(1);
237
+
238
+ opacity: 1;
239
+ }
240
+ to {
241
+ -webkit-transform: scale(0.95);
242
+ transform: scale(0.95);
243
+
244
+ opacity: 0;
245
+
246
+ -webkit-filter: blur(0);
247
+ filter: blur(0);
248
+ }
249
+ }
250
+
251
+ @keyframes remodal-closing-keyframes {
252
+ from {
253
+ -webkit-transform: scale(1);
254
+ transform: scale(1);
255
+
256
+ opacity: 1;
257
+ }
258
+ to {
259
+ -webkit-transform: scale(0.95);
260
+ transform: scale(0.95);
261
+
262
+ opacity: 0;
263
+
264
+ -webkit-filter: blur(0);
265
+ filter: blur(0);
266
+ }
267
+ }
268
+
269
+ @-webkit-keyframes remodal-overlay-opening-keyframes {
270
+ from {
271
+ opacity: 0;
272
+ }
273
+ to {
274
+ opacity: 1;
275
+ }
276
+ }
277
+
278
+ @keyframes remodal-overlay-opening-keyframes {
279
+ from {
280
+ opacity: 0;
281
+ }
282
+ to {
283
+ opacity: 1;
284
+ }
285
+ }
286
+
287
+ @-webkit-keyframes remodal-overlay-closing-keyframes {
288
+ from {
289
+ opacity: 1;
290
+ }
291
+ to {
292
+ opacity: 0;
293
+ }
294
+ }
295
+
296
+ @keyframes remodal-overlay-closing-keyframes {
297
+ from {
298
+ opacity: 1;
299
+ }
300
+ to {
301
+ opacity: 0;
302
+ }
303
+ }
304
+
305
+ /* Media queries
306
+ ========================================================================== */
307
+
308
+ @media only screen and (min-width: 641px) {
309
+ .remodal {
310
+ max-width: 700px;
311
+ }
312
+ }
313
+
314
+ /* IE8
315
+ ========================================================================== */
316
+
317
+ .lt-ie9 .remodal-overlay {
318
+ background: #2b2e38;
319
+ }
320
+
321
+ .lt-ie9 .remodal {
322
+ width: 700px;
323
+ }
lib/codecabin/remodal.css ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Remodal - v1.1.1
3
+ * Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
4
+ * http://vodkabears.github.io/remodal/
5
+ *
6
+ * Made by Ilya Makarov
7
+ * Under MIT License
8
+ */
9
+
10
+ /* ==========================================================================
11
+ Remodal's necessary styles
12
+ ========================================================================== */
13
+
14
+ /* Hide scroll bar */
15
+
16
+ html.remodal-is-locked {
17
+ overflow: hidden;
18
+
19
+ -ms-touch-action: none;
20
+ touch-action: none;
21
+ }
22
+
23
+ /* Anti FOUC */
24
+
25
+ .remodal,
26
+ [data-remodal-id] {
27
+ display: none;
28
+ }
29
+
30
+ /* Necessary styles of the overlay */
31
+
32
+ .remodal-overlay {
33
+ position: fixed;
34
+ z-index: 9999;
35
+ top: -5000px;
36
+ right: -5000px;
37
+ bottom: -5000px;
38
+ left: -5000px;
39
+
40
+ display: none;
41
+ }
42
+
43
+ /* Necessary styles of the wrapper */
44
+
45
+ .remodal-wrapper {
46
+ position: fixed;
47
+ z-index: 10000;
48
+ top: 0;
49
+ right: 0;
50
+ bottom: 0;
51
+ left: 0;
52
+
53
+ display: none;
54
+ overflow: auto;
55
+
56
+ text-align: center;
57
+
58
+ -webkit-overflow-scrolling: touch;
59
+ }
60
+
61
+ .remodal-wrapper:after {
62
+ display: inline-block;
63
+
64
+ height: 100%;
65
+ margin-left: -0.05em;
66
+
67
+ content: "";
68
+ }
69
+
70
+ /* Fix iPad, iPhone glitches */
71
+
72
+ .remodal-overlay,
73
+ .remodal-wrapper {
74
+ -webkit-backface-visibility: hidden;
75
+ backface-visibility: hidden;
76
+ }
77
+
78
+ /* Necessary styles of the modal dialog */
79
+
80
+ .remodal {
81
+ position: relative;
82
+
83
+ outline: none;
84
+
85
+ -webkit-text-size-adjust: 100%;
86
+ -ms-text-size-adjust: 100%;
87
+ text-size-adjust: 100%;
88
+ }
89
+
90
+ .remodal-is-initialized {
91
+ /* Disable Anti-FOUC */
92
+ display: inline-block;
93
+ }
lib/codecabin/remodal.min.js ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Remodal - v1.1.1
3
+ * Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
4
+ * http://vodkabears.github.io/remodal/
5
+ *
6
+ * Made by Ilya Makarov
7
+ * Under MIT License
8
+ */
9
+
10
+ !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(c){return b(a,c)}):"object"==typeof exports?b(a,require("jquery")):b(a,a.jQuery||a.Zepto)}(this,function(a,b){"use strict";function c(a){if(w&&"none"===a.css("animation-name")&&"none"===a.css("-webkit-animation-name")&&"none"===a.css("-moz-animation-name")&&"none"===a.css("-o-animation-name")&&"none"===a.css("-ms-animation-name"))return 0;var b,c,d,e,f=a.css("animation-duration")||a.css("-webkit-animation-duration")||a.css("-moz-animation-duration")||a.css("-o-animation-duration")||a.css("-ms-animation-duration")||"0s",g=a.css("animation-delay")||a.css("-webkit-animation-delay")||a.css("-moz-animation-delay")||a.css("-o-animation-delay")||a.css("-ms-animation-delay")||"0s",h=a.css("animation-iteration-count")||a.css("-webkit-animation-iteration-count")||a.css("-moz-animation-iteration-count")||a.css("-o-animation-iteration-count")||a.css("-ms-animation-iteration-count")||"1";for(f=f.split(", "),g=g.split(", "),h=h.split(", "),e=0,c=f.length,b=Number.NEGATIVE_INFINITY;e<c;e++)d=parseFloat(f[e])*parseInt(h[e],10)+parseFloat(g[e]),d>b&&(b=d);return b}function d(){if(b(document).height()<=b(window).height())return 0;var a,c,d=document.createElement("div"),e=document.createElement("div");return d.style.visibility="hidden",d.style.width="100px",document.body.appendChild(d),a=d.offsetWidth,d.style.overflow="scroll",e.style.width="100%",d.appendChild(e),c=e.offsetWidth,d.parentNode.removeChild(d),a-c}function e(){if(!x){var a,c,e=b("html"),f=k("is-locked");e.hasClass(f)||(c=b(document.body),a=parseInt(c.css("padding-right"),10)+d(),c.css("padding-right",a+"px"),e.addClass(f))}}function f(){if(!x){var a,c,e=b("html"),f=k("is-locked");e.hasClass(f)&&(c=b(document.body),a=parseInt(c.css("padding-right"),10)-d(),c.css("padding-right",a+"px"),e.removeClass(f))}}function g(a,b,c,d){var e=k("is",b),f=[k("is",u.CLOSING),k("is",u.OPENING),k("is",u.CLOSED),k("is",u.OPENED)].join(" ");a.$bg.removeClass(f).addClass(e),a.$overlay.removeClass(f).addClass(e),a.$wrapper.removeClass(f).addClass(e),a.$modal.removeClass(f).addClass(e),a.state=b,!c&&a.$modal.trigger({type:b,reason:d},[{reason:d}])}function h(a,d,e){var f=0,g=function(a){a.target===this&&f++},h=function(a){a.target===this&&0===--f&&(b.each(["$bg","$overlay","$wrapper","$modal"],function(a,b){e[b].off(r+" "+s)}),d())};b.each(["$bg","$overlay","$wrapper","$modal"],function(a,b){e[b].on(r,g).on(s,h)}),a(),0===c(e.$bg)&&0===c(e.$overlay)&&0===c(e.$wrapper)&&0===c(e.$modal)&&(b.each(["$bg","$overlay","$wrapper","$modal"],function(a,b){e[b].off(r+" "+s)}),d())}function i(a){a.state!==u.CLOSED&&(b.each(["$bg","$overlay","$wrapper","$modal"],function(b,c){a[c].off(r+" "+s)}),a.$bg.removeClass(a.settings.modifier),a.$overlay.removeClass(a.settings.modifier).hide(),a.$wrapper.hide(),f(),g(a,u.CLOSED,!0))}function j(a){var b,c,d,e,f={};for(a=a.replace(/\s*:\s*/g,":").replace(/\s*,\s*/g,","),b=a.split(","),e=0,c=b.length;e<c;e++)b[e]=b[e].split(":"),d=b[e][1],("string"==typeof d||d instanceof String)&&(d="true"===d||"false"!==d&&d),("string"==typeof d||d instanceof String)&&(d=isNaN(d)?d:+d),f[b[e][0]]=d;return f}function k(){for(var a=q,b=0;b<arguments.length;++b)a+="-"+arguments[b];return a}function l(){var a,c,d=location.hash.replace("#","");if(d){try{c=b('[data-remodal-id="'+d+'"]')}catch(e){}c&&c.length&&(a=b[p].lookup[c.data(p)],a&&a.settings.hashTracking&&a.open())}else n&&n.state===u.OPENED&&n.settings.hashTracking&&n.close()}function m(a,c){var d=b(document.body),e=d,f=this;f.settings=b.extend({},t,c),f.index=b[p].lookup.push(f)-1,f.state=u.CLOSED,f.$overlay=b("."+k("overlay")),null!==f.settings.appendTo&&f.settings.appendTo.length&&(e=b(f.settings.appendTo)),f.$overlay.length||(f.$overlay=b("<div>").addClass(k("overlay")+" "+k("is",u.CLOSED)).hide(),e.append(f.$overlay)),f.$bg=b("."+k("bg")).addClass(k("is",u.CLOSED)),f.$modal=a.addClass(q+" "+k("is-initialized")+" "+f.settings.modifier+" "+k("is",u.CLOSED)).attr("tabindex","-1"),f.$wrapper=b("<div>").addClass(k("wrapper")+" "+f.settings.modifier+" "+k("is",u.CLOSED)).hide().append(f.$modal),e.append(f.$wrapper),f.$wrapper.on("click."+q,'[data-remodal-action="close"]',function(a){a.preventDefault(),f.close()}),f.$wrapper.on("click."+q,'[data-remodal-action="cancel"]',function(a){a.preventDefault(),f.$modal.trigger(v.CANCELLATION),f.settings.closeOnCancel&&f.close(v.CANCELLATION)}),f.$wrapper.on("click."+q,'[data-remodal-action="confirm"]',function(a){a.preventDefault(),f.$modal.trigger(v.CONFIRMATION),f.settings.closeOnConfirm&&f.close(v.CONFIRMATION)}),f.$wrapper.on("click."+q,function(a){var c=b(a.target);c.hasClass(k("wrapper"))&&f.settings.closeOnOutsideClick&&f.close()})}var n,o,p="remodal",q=a.REMODAL_GLOBALS&&a.REMODAL_GLOBALS.NAMESPACE||p,r=b.map(["animationstart","webkitAnimationStart","MSAnimationStart","oAnimationStart"],function(a){return a+"."+q}).join(" "),s=b.map(["animationend","webkitAnimationEnd","MSAnimationEnd","oAnimationEnd"],function(a){return a+"."+q}).join(" "),t=b.extend({hashTracking:!0,closeOnConfirm:!0,closeOnCancel:!0,closeOnEscape:!0,closeOnOutsideClick:!0,modifier:"",appendTo:null},a.REMODAL_GLOBALS&&a.REMODAL_GLOBALS.DEFAULTS),u={CLOSING:"closing",CLOSED:"closed",OPENING:"opening",OPENED:"opened"},v={CONFIRMATION:"confirmation",CANCELLATION:"cancellation"},w=function(){var a=document.createElement("div").style;return void 0!==a.animationName||void 0!==a.WebkitAnimationName||void 0!==a.MozAnimationName||void 0!==a.msAnimationName||void 0!==a.OAnimationName}(),x=/iPad|iPhone|iPod/.test(navigator.platform);m.prototype.open=function(){var a,c=this;c.state!==u.OPENING&&c.state!==u.CLOSING&&(a=c.$modal.attr("data-remodal-id"),a&&c.settings.hashTracking&&(o=b(window).scrollTop(),location.hash=a),n&&n!==c&&i(n),n=c,e(),c.$bg.addClass(c.settings.modifier),c.$overlay.addClass(c.settings.modifier).show(),c.$wrapper.show().scrollTop(0),c.$modal.focus(),h(function(){g(c,u.OPENING)},function(){g(c,u.OPENED)},c))},m.prototype.close=function(a){var c=this;c.state!==u.OPENING&&c.state!==u.CLOSING&&c.state!==u.CLOSED&&(c.settings.hashTracking&&c.$modal.attr("data-remodal-id")===location.hash.substr(1)&&(location.hash="",b(window).scrollTop(o)),h(function(){g(c,u.CLOSING,!1,a)},function(){c.$bg.removeClass(c.settings.modifier),c.$overlay.removeClass(c.settings.modifier).hide(),c.$wrapper.hide(),f(),g(c,u.CLOSED,!1,a)},c))},m.prototype.getState=function(){return this.state},m.prototype.destroy=function(){var a,c=b[p].lookup;i(this),this.$wrapper.remove(),delete c[this.index],a=b.grep(c,function(a){return!!a}).length,0===a&&(this.$overlay.remove(),this.$bg.removeClass(k("is",u.CLOSING)+" "+k("is",u.OPENING)+" "+k("is",u.CLOSED)+" "+k("is",u.OPENED)))},b[p]={lookup:[]},b.fn[p]=function(a){var c,d;return this.each(function(e,f){d=b(f),null==d.data(p)?(c=new m(d,a),d.data(p,c.index),c.settings.hashTracking&&d.attr("data-remodal-id")===location.hash.substr(1)&&c.open()):c=b[p].lookup[d.data(p)]}),c},b(document).ready(function(){b(document).on("click","[data-remodal-target]",function(a){a.preventDefault();var c=a.currentTarget,d=c.getAttribute("data-remodal-target"),e=b('[data-remodal-id="'+d+'"]');b[p].lookup[e.data(p)].open()}),b(document).find("."+q).each(function(a,c){var d=b(c),e=d.data("remodal-options");e?("string"==typeof e||e instanceof String)&&(e=j(e)):e={},d[p](e)}),b(document).on("keydown."+q,function(a){n&&n.settings.closeOnEscape&&n.state===u.OPENED&&27===a.keyCode&&n.close()}),b(window).on("hashchange."+q,l)})});
lib/jquery.tokeninput.js ADDED
@@ -0,0 +1,1106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * jQuery Plugin: Tokenizing Autocomplete Text Entry
3
+ * Version 1.6.2
4
+ *
5
+ * Copyright (c) 2009 James Smith (http://loopj.com)
6
+ * Licensed jointly under the GPL and MIT licenses,
7
+ * choose which one suits your project best!
8
+ *
9
+ */
10
+ ;(function ($) {
11
+ var DEFAULT_SETTINGS = {
12
+ // Search settings
13
+ method: "GET",
14
+ queryParam: "q",
15
+ searchDelay: 300,
16
+ minChars: 1,
17
+ propertyToSearch: "name",
18
+ jsonContainer: null,
19
+ contentType: "json",
20
+ excludeCurrent: false,
21
+ excludeCurrentParameter: "x",
22
+
23
+ // Prepopulation settings
24
+ prePopulate: null,
25
+ processPrePopulate: false,
26
+
27
+ // Display settings
28
+ hintText: "Type in a search term",
29
+ noResultsText: "No results",
30
+ searchingText: "Searching...",
31
+ deleteText: "&#215;",
32
+ animateDropdown: true,
33
+ placeholder: null,
34
+ theme: null,
35
+ zindex: 999,
36
+ resultsLimit: null,
37
+
38
+ enableHTML: false,
39
+
40
+ resultsFormatter: function(item) {
41
+ var string = item[this.propertyToSearch];
42
+ return "<li>" + (this.enableHTML ? string : _escapeHTML(string)) + "</li>";
43
+ },
44
+
45
+ tokenFormatter: function(item) {
46
+ var string = item[this.propertyToSearch];
47
+ return "<li><p>" + (this.enableHTML ? string : _escapeHTML(string)) + "</p></li>";
48
+ },
49
+
50
+ // Tokenization settings
51
+ tokenLimit: null,
52
+ tokenDelimiter: ",",
53
+ preventDuplicates: false,
54
+ tokenValue: "id",
55
+
56
+ // Behavioral settings
57
+ allowFreeTagging: false,
58
+ allowTabOut: false,
59
+ autoSelectFirstResult: false,
60
+
61
+ // Callbacks
62
+ onResult: null,
63
+ onCachedResult: null,
64
+ onAdd: null,
65
+ onFreeTaggingAdd: null,
66
+ onDelete: null,
67
+ onReady: null,
68
+
69
+ // Other settings
70
+ idPrefix: "token-input-",
71
+
72
+ // Keep track if the input is currently in disabled mode
73
+ disabled: false
74
+ };
75
+
76
+ // Default classes to use when theming
77
+ var DEFAULT_CLASSES = {
78
+ tokenList : "token-input-list",
79
+ token : "token-input-token",
80
+ tokenReadOnly : "token-input-token-readonly",
81
+ tokenDelete : "token-input-delete-token",
82
+ selectedToken : "token-input-selected-token",
83
+ highlightedToken : "token-input-highlighted-token",
84
+ dropdown : "token-input-dropdown",
85
+ dropdownItem : "token-input-dropdown-item",
86
+ dropdownItem2 : "token-input-dropdown-item2",
87
+ selectedDropdownItem : "token-input-selected-dropdown-item",
88
+ inputToken : "token-input-input-token",
89
+ focused : "token-input-focused",
90
+ disabled : "token-input-disabled"
91
+ };
92
+
93
+ // Input box position "enum"
94
+ var POSITION = {
95
+ BEFORE : 0,
96
+ AFTER : 1,
97
+ END : 2
98
+ };
99
+
100
+ // Keys "enum"
101
+ var KEY = {
102
+ BACKSPACE : 8,
103
+ TAB : 9,
104
+ ENTER : 13,
105
+ ESCAPE : 27,
106
+ SPACE : 32,
107
+ PAGE_UP : 33,
108
+ PAGE_DOWN : 34,
109
+ END : 35,
110
+ HOME : 36,
111
+ LEFT : 37,
112
+ UP : 38,
113
+ RIGHT : 39,
114
+ DOWN : 40,
115
+ NUMPAD_ENTER : 108,
116
+ COMMA : 188
117
+ };
118
+
119
+ var HTML_ESCAPES = {
120
+ '&' : '&amp;',
121
+ '<' : '&lt;',
122
+ '>' : '&gt;',
123
+ '"' : '&quot;',
124
+ "'" : '&#x27;',
125
+ '/' : '&#x2F;'
126
+ };
127
+
128
+ var HTML_ESCAPE_CHARS = /[&<>"'\/]/g;
129
+
130
+ function coerceToString(val) {
131
+ return String((val === null || val === undefined) ? '' : val);
132
+ }
133
+
134
+ function _escapeHTML(text) {
135
+ return coerceToString(text).replace(HTML_ESCAPE_CHARS, function(match) {
136
+ return HTML_ESCAPES[match];
137
+ });
138
+ }
139
+
140
+ // Additional public (exposed) methods
141
+ var methods = {
142
+ init: function(url_or_data_or_function, options) {
143
+ var settings = $.extend({}, DEFAULT_SETTINGS, options || {});
144
+
145
+ return this.each(function () {
146
+ $(this).data("settings", settings);
147
+ $(this).data("tokenInputObject", new $.TokenList(this, url_or_data_or_function, settings));
148
+ });
149
+ },
150
+ clear: function() {
151
+ this.data("tokenInputObject").clear();
152
+ return this;
153
+ },
154
+ add: function(item) {
155
+ this.data("tokenInputObject").add(item);
156
+ return this;
157
+ },
158
+ remove: function(item) {
159
+ this.data("tokenInputObject").remove(item);
160
+ return this;
161
+ },
162
+ get: function() {
163
+ return this.data("tokenInputObject").getTokens();
164
+ },
165
+ toggleDisabled: function(disable) {
166
+ this.data("tokenInputObject").toggleDisabled(disable);
167
+ return this;
168
+ },
169
+ setOptions: function(options){
170
+ $(this).data("settings", $.extend({}, $(this).data("settings"), options || {}));
171
+ return this;
172
+ },
173
+ destroy: function () {
174
+ if (this.data("tokenInputObject")) {
175
+ this.data("tokenInputObject").clear();
176
+ var tmpInput = this;
177
+ var closest = this.parent();
178
+ closest.empty();
179
+ tmpInput.show();
180
+ closest.append(tmpInput);
181
+ return tmpInput;
182
+ }
183
+ }
184
+ };
185
+
186
+ // Expose the .tokenInput function to jQuery as a plugin
187
+ $.fn.tokenInput = function (method) {
188
+ // Method calling and initialization logic
189
+ if (methods[method]) {
190
+ return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));
191
+ } else {
192
+ return methods.init.apply(this, arguments);
193
+ }
194
+ };
195
+
196
+ // TokenList class for each input
197
+ $.TokenList = function (input, url_or_data, settings) {
198
+ //
199
+ // Initialization
200
+ //
201
+
202
+ // Configure the data source
203
+ if (typeof(url_or_data) === "string" || typeof(url_or_data) === "function") {
204
+ // Set the url to query against
205
+ $(input).data("settings").url = url_or_data;
206
+
207
+ // If the URL is a function, evaluate it here to do our initalization work
208
+ var url = computeURL();
209
+
210
+ // Make a smart guess about cross-domain if it wasn't explicitly specified
211
+ if ($(input).data("settings").crossDomain === undefined && typeof url === "string") {
212
+ if(url.indexOf("://") === -1) {
213
+ $(input).data("settings").crossDomain = false;
214
+ } else {
215
+ $(input).data("settings").crossDomain = (location.href.split(/\/+/g)[1] !== url.split(/\/+/g)[1]);
216
+ }
217
+ }
218
+ } else if (typeof(url_or_data) === "object") {
219
+ // Set the local data to search through
220
+ $(input).data("settings").local_data = url_or_data;
221
+ }
222
+
223
+ // Build class names
224
+ if($(input).data("settings").classes) {
225
+ // Use custom class names
226
+ $(input).data("settings").classes = $.extend({}, DEFAULT_CLASSES, $(input).data("settings").classes);
227
+ } else if($(input).data("settings").theme) {
228
+ // Use theme-suffixed default class names
229
+ $(input).data("settings").classes = {};
230
+ $.each(DEFAULT_CLASSES, function(key, value) {
231
+ $(input).data("settings").classes[key] = value + "-" + $(input).data("settings").theme;
232
+ });
233
+ } else {
234
+ $(input).data("settings").classes = DEFAULT_CLASSES;
235
+ }
236
+
237
+ // Save the tokens
238
+ var saved_tokens = [];
239
+
240
+ // Keep track of the number of tokens in the list
241
+ var token_count = 0;
242
+
243
+ // Basic cache to save on db hits
244
+ var cache = new $.TokenList.Cache();
245
+
246
+ // Keep track of the timeout, old vals
247
+ var timeout;
248
+ var input_val;
249
+
250
+ // Create a new text input an attach keyup events
251
+ var input_box = $("<input type=\"text\" autocomplete=\"off\" autocapitalize=\"off\"/>")
252
+ .css({
253
+ outline: "none"
254
+ })
255
+ .attr("id", $(input).data("settings").idPrefix + input.id)
256
+ .focus(function () {
257
+ if ($(input).data("settings").disabled) {
258
+ return false;
259
+ } else
260
+ if ($(input).data("settings").tokenLimit === null || $(input).data("settings").tokenLimit !== token_count) {
261
+ show_dropdown_hint();
262
+ }
263
+ token_list.addClass($(input).data("settings").classes.focused);
264
+ })
265
+ .blur(function () {
266
+ hide_dropdown();
267
+
268
+ if ($(input).data("settings").allowFreeTagging) {
269
+ add_freetagging_tokens();
270
+ }
271
+
272
+ $(this).val("");
273
+ token_list.removeClass($(input).data("settings").classes.focused);
274
+ })
275
+ .bind("keyup keydown blur update", resize_input)
276
+ .keydown(function (event) {
277
+ var previous_token;
278
+ var next_token;
279
+
280
+ switch(event.keyCode) {
281
+ case KEY.LEFT:
282
+ case KEY.RIGHT:
283
+ case KEY.UP:
284
+ case KEY.DOWN:
285
+ if(this.value.length === 0) {
286
+ previous_token = input_token.prev();
287
+ next_token = input_token.next();
288
+
289
+ if((previous_token.length && previous_token.get(0) === selected_token) ||
290
+ (next_token.length && next_token.get(0) === selected_token)) {
291
+ // Check if there is a previous/next token and it is selected
292
+ if(event.keyCode === KEY.LEFT || event.keyCode === KEY.UP) {
293
+ deselect_token($(selected_token), POSITION.BEFORE);
294
+ } else {
295
+ deselect_token($(selected_token), POSITION.AFTER);
296
+ }
297
+ } else if((event.keyCode === KEY.LEFT || event.keyCode === KEY.UP) && previous_token.length) {
298
+ // We are moving left, select the previous token if it exists
299
+ select_token($(previous_token.get(0)));
300
+ } else if((event.keyCode === KEY.RIGHT || event.keyCode === KEY.DOWN) && next_token.length) {
301
+ // We are moving right, select the next token if it exists
302
+ select_token($(next_token.get(0)));
303
+ }
304
+ } else {
305
+ var dropdown_item = null;
306
+
307
+ if (event.keyCode === KEY.DOWN || event.keyCode === KEY.RIGHT) {
308
+ dropdown_item = $(dropdown).find('li').first();
309
+
310
+ if (selected_dropdown_item) {
311
+ dropdown_item = $(selected_dropdown_item).next();
312
+ }
313
+ } else {
314
+ dropdown_item = $(dropdown).find('li').last();
315
+
316
+ if (selected_dropdown_item) {
317
+ dropdown_item = $(selected_dropdown_item).prev();
318
+ }
319
+ }
320
+
321
+ select_dropdown_item(dropdown_item);
322
+ }
323
+
324
+ break;
325
+
326
+ case KEY.BACKSPACE:
327
+ previous_token = input_token.prev();
328
+
329
+ if (this.value.length === 0) {
330
+ if (selected_token) {
331
+ delete_token($(selected_token));
332
+ hiddenInput.change();
333
+ } else if(previous_token.length) {
334
+ select_token($(previous_token.get(0)));
335
+ }
336
+
337
+ return false;
338
+ } else if($(this).val().length === 1) {
339
+ hide_dropdown();
340
+ } else {
341
+ // set a timeout just long enough to let this function finish.
342
+ setTimeout(function(){ do_search(); }, 5);
343
+ }
344
+ break;
345
+
346
+ case KEY.TAB:
347
+ case KEY.ENTER:
348
+ case KEY.NUMPAD_ENTER:
349
+ case KEY.COMMA:
350
+ if(selected_dropdown_item) {
351
+ add_token($(selected_dropdown_item).data("tokeninput"));
352
+ hiddenInput.change();
353
+ } else {
354
+ if ($(input).data("settings").allowFreeTagging) {
355
+ if($(input).data("settings").allowTabOut && $(this).val() === "") {
356
+ return true;
357
+ } else {
358
+ add_freetagging_tokens();
359
+ }
360
+ } else {
361
+ $(this).val("");
362
+ if($(input).data("settings").allowTabOut) {
363
+ return true;
364
+ }
365
+ }
366
+ event.stopPropagation();
367
+ event.preventDefault();
368
+ }
369
+ return false;
370
+
371
+ case KEY.ESCAPE:
372
+ hide_dropdown();
373
+ return true;
374
+
375
+ default:
376
+ if (String.fromCharCode(event.which)) {
377
+ // set a timeout just long enough to let this function finish.
378
+ setTimeout(function(){ do_search(); }, 5);
379
+ }
380
+ break;
381
+ }
382
+ });
383
+
384
+ // Keep reference for placeholder
385
+ if (settings.placeholder) {
386
+ input_box.attr("placeholder", settings.placeholder);
387
+ }
388
+
389
+ // Keep a reference to the original input box
390
+ var hiddenInput = $(input)
391
+ .hide()
392
+ .val("")
393
+ .focus(function () {
394
+ focusWithTimeout(input_box);
395
+ })
396
+ .blur(function () {
397
+ input_box.blur();
398
+
399
+ //return the object to this can be referenced in the callback functions.
400
+ return hiddenInput;
401
+ })
402
+ ;
403
+
404
+ // Keep a reference to the selected token and dropdown item
405
+ var selected_token = null;
406
+ var selected_token_index = 0;
407
+ var selected_dropdown_item = null;
408
+
409
+ // The list to store the token items in
410
+ var token_list = $("<ul />")
411
+ .addClass($(input).data("settings").classes.tokenList)
412
+ .click(function (event) {
413
+ var li = $(event.target).closest("li");
414
+ if(li && li.get(0) && $.data(li.get(0), "tokeninput")) {
415
+ toggle_select_token(li);
416
+ } else {
417
+ // Deselect selected token
418
+ if(selected_token) {
419
+ deselect_token($(selected_token), POSITION.END);
420
+ }
421
+
422
+ // Focus input box
423
+ focusWithTimeout(input_box);
424
+ }
425
+ })
426
+ .mouseover(function (event) {
427
+ var li = $(event.target).closest("li");
428
+ if(li && selected_token !== this) {
429
+ li.addClass($(input).data("settings").classes.highlightedToken);
430
+ }
431
+ })
432
+ .mouseout(function (event) {
433
+ var li = $(event.target).closest("li");
434
+ if(li && selected_token !== this) {
435
+ li.removeClass($(input).data("settings").classes.highlightedToken);
436
+ }
437
+ })
438
+ .insertBefore(hiddenInput);
439
+
440
+ // The token holding the input box
441
+ var input_token = $("<li />")
442
+ .addClass($(input).data("settings").classes.inputToken)
443
+ .appendTo(token_list)
444
+ .append(input_box);
445
+
446
+ // The list to store the dropdown items in
447
+ var dropdown = $("<div/>")
448
+ .addClass($(input).data("settings").classes.dropdown)
449
+ .appendTo("body")
450
+ .hide();
451
+
452
+ // Magic element to help us resize the text input
453
+ var input_resizer = $("<tester/>")
454
+ .insertAfter(input_box)
455
+ .css({
456
+ position: "absolute",
457
+ top: -9999,
458
+ left: -9999,
459
+ width: "auto",
460
+ fontSize: input_box.css("fontSize"),
461
+ fontFamily: input_box.css("fontFamily"),
462
+ fontWeight: input_box.css("fontWeight"),
463
+ letterSpacing: input_box.css("letterSpacing"),
464
+ whiteSpace: "nowrap"
465
+ });
466
+
467
+ // Pre-populate list if items exist
468
+ hiddenInput.val("");
469
+ var li_data = $(input).data("settings").prePopulate || hiddenInput.data("pre");
470
+
471
+ if ($(input).data("settings").processPrePopulate && $.isFunction($(input).data("settings").onResult)) {
472
+ li_data = $(input).data("settings").onResult.call(hiddenInput, li_data);
473
+ }
474
+
475
+ if (li_data && li_data.length) {
476
+ $.each(li_data, function (index, value) {
477
+ insert_token(value);
478
+ checkTokenLimit();
479
+ input_box.attr("placeholder", null)
480
+ });
481
+ }
482
+
483
+ // Check if widget should initialize as disabled
484
+ if ($(input).data("settings").disabled) {
485
+ toggleDisabled(true);
486
+ }
487
+
488
+ // Initialization is done
489
+ if (typeof($(input).data("settings").onReady) === "function") {
490
+ $(input).data("settings").onReady.call();
491
+ }
492
+
493
+ //
494
+ // Public functions
495
+ //
496
+
497
+ this.clear = function() {
498
+ token_list.children("li").each(function() {
499
+ if ($(this).children("input").length === 0) {
500
+ delete_token($(this));
501
+ }
502
+ });
503
+ };
504
+
505
+ this.add = function(item) {
506
+ add_token(item);
507
+ };
508
+
509
+ this.remove = function(item) {
510
+ token_list.children("li").each(function() {
511
+ if ($(this).children("input").length === 0) {
512
+ var currToken = $(this).data("tokeninput");
513
+ var match = true;
514
+ for (var prop in item) {
515
+ if (item[prop] !== currToken[prop]) {
516
+ match = false;
517
+ break;
518
+ }
519
+ }
520
+ if (match) {
521
+ delete_token($(this));
522
+ }
523
+ }
524
+ });
525
+ };
526
+
527
+ this.getTokens = function() {
528
+ return saved_tokens;
529
+ };
530
+
531
+ this.toggleDisabled = function(disable) {
532
+ toggleDisabled(disable);
533
+ };
534
+
535
+ // Resize input to maximum width so the placeholder can be seen
536
+ resize_input();
537
+
538
+ //
539
+ // Private functions
540
+ //
541
+
542
+ function escapeHTML(text) {
543
+ return $(input).data("settings").enableHTML ? text : _escapeHTML(text);
544
+ }
545
+
546
+ // Toggles the widget between enabled and disabled state, or according
547
+ // to the [disable] parameter.
548
+ function toggleDisabled(disable) {
549
+ if (typeof disable === 'boolean') {
550
+ $(input).data("settings").disabled = disable
551
+ } else {
552
+ $(input).data("settings").disabled = !$(input).data("settings").disabled;
553
+ }
554
+ input_box.attr('disabled', $(input).data("settings").disabled);
555
+ token_list.toggleClass($(input).data("settings").classes.disabled, $(input).data("settings").disabled);
556
+ // if there is any token selected we deselect it
557
+ if(selected_token) {
558
+ deselect_token($(selected_token), POSITION.END);
559
+ }
560
+ hiddenInput.attr('disabled', $(input).data("settings").disabled);
561
+ }
562
+
563
+ function checkTokenLimit() {
564
+ if($(input).data("settings").tokenLimit !== null && token_count >= $(input).data("settings").tokenLimit) {
565
+ input_box.hide();
566
+ hide_dropdown();
567
+ return;
568
+ }
569
+ }
570
+
571
+ function resize_input() {
572
+ if(input_val === (input_val = input_box.val())) {return;}
573
+
574
+ // Get width left on the current line
575
+ var width_left = token_list.width() - input_box.offset().left - token_list.offset().left;
576
+ // Enter new content into resizer and resize input accordingly
577
+ input_resizer.html(_escapeHTML(input_val) || _escapeHTML(settings.placeholder));
578
+ // Get maximum width, minimum the size of input and maximum the widget's width
579
+ input_box.width(Math.min(token_list.width(),
580
+ Math.max(width_left, input_resizer.width() + 30)));
581
+ }
582
+
583
+ function add_freetagging_tokens() {
584
+ var value = $.trim(input_box.val());
585
+ var tokens = value.split($(input).data("settings").tokenDelimiter);
586
+ $.each(tokens, function(i, token) {
587
+ if (!token) {
588
+ return;
589
+ }
590
+
591
+ if ($.isFunction($(input).data("settings").onFreeTaggingAdd)) {
592
+ token = $(input).data("settings").onFreeTaggingAdd.call(hiddenInput, token);
593
+ }
594
+ var object = {};
595
+ object[$(input).data("settings").tokenValue] = object[$(input).data("settings").propertyToSearch] = token;
596
+ add_token(object);
597
+ });
598
+ }
599
+
600
+ // Inner function to a token to the list
601
+ function insert_token(item) {
602
+ var $this_token = $($(input).data("settings").tokenFormatter(item));
603
+ var readonly = item.readonly === true;
604
+
605
+ if(readonly) $this_token.addClass($(input).data("settings").classes.tokenReadOnly);
606
+
607
+ $this_token.addClass($(input).data("settings").classes.token).insertBefore(input_token);
608
+
609
+ // The 'delete token' button
610
+ if(!readonly) {
611
+ $("<span>" + $(input).data("settings").deleteText + "</span>")
612
+ .addClass($(input).data("settings").classes.tokenDelete)
613
+ .appendTo($this_token)
614
+ .click(function () {
615
+ if (!$(input).data("settings").disabled) {
616
+ delete_token($(this).parent());
617
+ hiddenInput.change();
618
+ return false;
619
+ }
620
+ });
621
+ }
622
+
623
+ // Store data on the token
624
+ var token_data = item;
625
+ $.data($this_token.get(0), "tokeninput", item);
626
+
627
+ // Save this token for duplicate checking
628
+ saved_tokens = saved_tokens.slice(0,selected_token_index).concat([token_data]).concat(saved_tokens.slice(selected_token_index));
629
+ selected_token_index++;
630
+
631
+ // Update the hidden input
632
+ update_hiddenInput(saved_tokens, hiddenInput);
633
+
634
+ token_count += 1;
635
+
636
+ // Check the token limit
637
+ if($(input).data("settings").tokenLimit !== null && token_count >= $(input).data("settings").tokenLimit) {
638
+ input_box.hide();
639
+ hide_dropdown();
640
+ }
641
+
642
+ return $this_token;
643
+ }
644
+
645
+ // Add a token to the token list based on user input
646
+ function add_token (item) {
647
+ var callback = $(input).data("settings").onAdd;
648
+
649
+ // See if the token already exists and select it if we don't want duplicates
650
+ if(token_count > 0 && $(input).data("settings").preventDuplicates) {
651
+ var found_existing_token = null;
652
+ token_list.children().each(function () {
653
+ var existing_token = $(this);
654
+ var existing_data = $.data(existing_token.get(0), "tokeninput");
655
+ if(existing_data && existing_data[settings.tokenValue] === item[settings.tokenValue]) {
656
+ found_existing_token = existing_token;
657
+ return false;
658
+ }
659
+ });
660
+
661
+ if(found_existing_token) {
662
+ select_token(found_existing_token);
663
+ input_token.insertAfter(found_existing_token);
664
+ focusWithTimeout(input_box);
665
+ return;
666
+ }
667
+ }
668
+
669
+ // Squeeze input_box so we force no unnecessary line break
670
+ input_box.width(1);
671
+
672
+ // Insert the new tokens
673
+ if($(input).data("settings").tokenLimit == null || token_count < $(input).data("settings").tokenLimit) {
674
+ insert_token(item);
675
+ // Remove the placeholder so it's not seen after you've added a token
676
+ input_box.attr("placeholder", null);
677
+ checkTokenLimit();
678
+ }
679
+
680
+ // Clear input box
681
+ input_box.val("");
682
+
683
+ // Don't show the help dropdown, they've got the idea
684
+ hide_dropdown();
685
+
686
+ // Execute the onAdd callback if defined
687
+ if($.isFunction(callback)) {
688
+ callback.call(hiddenInput,item);
689
+ }
690
+ }
691
+
692
+ // Select a token in the token list
693
+ function select_token (token) {
694
+ if (!$(input).data("settings").disabled) {
695
+ token.addClass($(input).data("settings").classes.selectedToken);
696
+ selected_token = token.get(0);
697
+
698
+ // Hide input box
699
+ input_box.val("");
700
+
701
+ // Hide dropdown if it is visible (eg if we clicked to select token)
702
+ hide_dropdown();
703
+ }
704
+ }
705
+
706
+ // Deselect a token in the token list
707
+ function deselect_token (token, position) {
708
+ token.removeClass($(input).data("settings").classes.selectedToken);
709
+ selected_token = null;
710
+
711
+ if(position === POSITION.BEFORE) {
712
+ input_token.insertBefore(token);
713
+ selected_token_index--;
714
+ } else if(position === POSITION.AFTER) {
715
+ input_token.insertAfter(token);
716
+ selected_token_index++;
717
+ } else {
718
+ input_token.appendTo(token_list);
719
+ selected_token_index = token_count;
720
+ }
721
+
722
+ // Show the input box and give it focus again
723
+ focusWithTimeout(input_box);
724
+ }
725
+
726
+ // Toggle selection of a token in the token list
727
+ function toggle_select_token(token) {
728
+ var previous_selected_token = selected_token;
729
+
730
+ if(selected_token) {
731
+ deselect_token($(selected_token), POSITION.END);
732
+ }
733
+
734
+ if(previous_selected_token === token.get(0)) {
735
+ deselect_token(token, POSITION.END);
736
+ } else {
737
+ select_token(token);
738
+ }
739
+ }
740
+
741
+ // Delete a token from the token list
742
+ function delete_token (token) {
743
+ // Remove the id from the saved list
744
+ var token_data = $.data(token.get(0), "tokeninput");
745
+ var callback = $(input).data("settings").onDelete;
746
+
747
+ var index = token.prevAll().length;
748
+ if(index > selected_token_index) index--;
749
+
750
+ // Delete the token
751
+ token.remove();
752
+ selected_token = null;
753
+
754
+ // Show the input box and give it focus again
755
+ focusWithTimeout(input_box);
756
+
757
+ // Remove this token from the saved list
758
+ saved_tokens = saved_tokens.slice(0,index).concat(saved_tokens.slice(index+1));
759
+ if (saved_tokens.length == 0) {
760
+ input_box.attr("placeholder", settings.placeholder)
761
+ }
762
+ if(index < selected_token_index) selected_token_index--;
763
+
764
+ // Update the hidden input
765
+ update_hiddenInput(saved_tokens, hiddenInput);
766
+
767
+ token_count -= 1;
768
+
769
+ if($(input).data("settings").tokenLimit !== null) {
770
+ input_box
771
+ .show()
772
+ .val("");
773
+ focusWithTimeout(input_box);
774
+ }
775
+
776
+ // Execute the onDelete callback if defined
777
+ if($.isFunction(callback)) {
778
+ callback.call(hiddenInput,token_data);
779
+ }
780
+ }
781
+
782
+ // Update the hidden input box value
783
+ function update_hiddenInput(saved_tokens, hiddenInput) {
784
+ var token_values = $.map(saved_tokens, function (el) {
785
+ if(typeof $(input).data("settings").tokenValue == 'function')
786
+ return $(input).data("settings").tokenValue.call(this, el);
787
+
788
+ return el[$(input).data("settings").tokenValue];
789
+ });
790
+ hiddenInput.val(token_values.join($(input).data("settings").tokenDelimiter));
791
+
792
+ }
793
+
794
+ // Hide and clear the results dropdown
795
+ function hide_dropdown () {
796
+ dropdown.hide().empty();
797
+ selected_dropdown_item = null;
798
+ }
799
+
800
+ function show_dropdown() {
801
+ dropdown
802
+ .css({
803
+ position: "absolute",
804
+ top: token_list.offset().top + token_list.outerHeight(true),
805
+ left: token_list.offset().left,
806
+ width: token_list.width(),
807
+ 'z-index': $(input).data("settings").zindex
808
+ })
809
+ .show();
810
+ }
811
+
812
+ function show_dropdown_searching () {
813
+ if($(input).data("settings").searchingText) {
814
+ dropdown.html("<p>" + escapeHTML($(input).data("settings").searchingText) + "</p>");
815
+ show_dropdown();
816
+ }
817
+ }
818
+
819
+ function show_dropdown_hint () {
820
+ if($(input).data("settings").hintText) {
821
+ dropdown.html("<p>" + escapeHTML($(input).data("settings").hintText) + "</p>");
822
+ show_dropdown();
823
+ }
824
+ }
825
+
826
+ var regexp_special_chars = new RegExp('[.\\\\+*?\\[\\^\\]$(){}=!<>|:\\-]', 'g');
827
+ function regexp_escape(term) {
828
+ return term.replace(regexp_special_chars, '\\$&');
829
+ }
830
+
831
+ // Highlight the query part of the search term
832
+ function highlight_term(value, term) {
833
+ return value.replace(
834
+ new RegExp(
835
+ "(?![^&;]+;)(?!<[^<>]*)(" + regexp_escape(term) + ")(?![^<>]*>)(?![^&;]+;)",
836
+ "gi"
837
+ ), function(match, p1) {
838
+ return "<b>" + escapeHTML(p1) + "</b>";
839
+ }
840
+ );
841
+ }
842
+
843
+ function find_value_and_highlight_term(template, value, term) {
844
+ return template.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + regexp_escape(value) + ")(?![^<>]*>)(?![^&;]+;)", "g"), highlight_term(value, term));
845
+ }
846
+
847
+ // exclude existing tokens from dropdown, so the list is clearer
848
+ function excludeCurrent(results) {
849
+ if ($(input).data("settings").excludeCurrent) {
850
+ var currentTokens = $(input).data("tokenInputObject").getTokens(),
851
+ trimmedList = [];
852
+ if (currentTokens.length) {
853
+ $.each(results, function(index, value) {
854
+ var notFound = true;
855
+ $.each(currentTokens, function(cIndex, cValue) {
856
+ if (value[$(input).data("settings").propertyToSearch] == cValue[$(input).data("settings").propertyToSearch]) {
857
+ notFound = false;
858
+ return false;
859
+ }
860
+ });
861
+
862
+ if (notFound) {
863
+ trimmedList.push(value);
864
+ }
865
+ });
866
+ results = trimmedList;
867
+ }
868
+ }
869
+
870
+ return results;
871
+ }
872
+
873
+ // Populate the results dropdown with some results
874
+ function populateDropdown (query, results) {
875
+ // exclude current tokens if configured
876
+ results = excludeCurrent(results);
877
+
878
+ if(results && results.length) {
879
+ dropdown.empty();
880
+ var dropdown_ul = $("<ul/>")
881
+ .appendTo(dropdown)
882
+ .mouseover(function (event) {
883
+ select_dropdown_item($(event.target).closest("li"));
884
+ })
885
+ .mousedown(function (event) {
886
+ add_token($(event.target).closest("li").data("tokeninput"));
887
+ hiddenInput.change();
888
+ return false;
889
+ })
890
+ .hide();
891
+
892
+ if ($(input).data("settings").resultsLimit && results.length > $(input).data("settings").resultsLimit) {
893
+ results = results.slice(0, $(input).data("settings").resultsLimit);
894
+ }
895
+
896
+ $.each(results, function(index, value) {
897
+ var this_li = $(input).data("settings").resultsFormatter(value);
898
+
899
+ this_li = find_value_and_highlight_term(this_li ,value[$(input).data("settings").propertyToSearch], query);
900
+ this_li = $(this_li).appendTo(dropdown_ul);
901
+
902
+ if(index % 2) {
903
+ this_li.addClass($(input).data("settings").classes.dropdownItem);
904
+ } else {
905
+ this_li.addClass($(input).data("settings").classes.dropdownItem2);
906
+ }
907
+
908
+ if(index === 0 && $(input).data("settings").autoSelectFirstResult) {
909
+ select_dropdown_item(this_li);
910
+ }
911
+
912
+ $.data(this_li.get(0), "tokeninput", value);
913
+ });
914
+
915
+ show_dropdown();
916
+
917
+ if($(input).data("settings").animateDropdown) {
918
+ dropdown_ul.slideDown("fast");
919
+ } else {
920
+ dropdown_ul.show();
921
+ }
922
+ } else {
923
+ if($(input).data("settings").noResultsText) {
924
+ dropdown.html("<p>" + escapeHTML($(input).data("settings").noResultsText) + "</p>");
925
+ show_dropdown();
926
+ }
927
+ }
928
+ }
929
+
930
+ // Highlight an item in the results dropdown
931
+ function select_dropdown_item (item) {
932
+ if(item) {
933
+ if(selected_dropdown_item) {
934
+ deselect_dropdown_item($(selected_dropdown_item));
935
+ }
936
+
937
+ item.addClass($(input).data("settings").classes.selectedDropdownItem);
938
+ selected_dropdown_item = item.get(0);
939
+ }
940
+ }
941
+
942
+ // Remove highlighting from an item in the results dropdown
943
+ function deselect_dropdown_item (item) {
944
+ item.removeClass($(input).data("settings").classes.selectedDropdownItem);
945
+ selected_dropdown_item = null;
946
+ }
947
+
948
+ // Do a search and show the "searching" dropdown if the input is longer
949
+ // than $(input).data("settings").minChars
950
+ function do_search() {
951
+ var query = input_box.val();
952
+
953
+ if(query && query.length) {
954
+ if(selected_token) {
955
+ deselect_token($(selected_token), POSITION.AFTER);
956
+ }
957
+
958
+ if(query.length >= $(input).data("settings").minChars) {
959
+ show_dropdown_searching();
960
+ clearTimeout(timeout);
961
+
962
+ timeout = setTimeout(function(){
963
+ run_search(query);
964
+ }, $(input).data("settings").searchDelay);
965
+ } else {
966
+ hide_dropdown();
967
+ }
968
+ }
969
+ }
970
+
971
+ // Do the actual search
972
+ function run_search(query) {
973
+ var cache_key = query + computeURL();
974
+ var cached_results = cache.get(cache_key);
975
+ if (cached_results) {
976
+ if ($.isFunction($(input).data("settings").onCachedResult)) {
977
+ cached_results = $(input).data("settings").onCachedResult.call(hiddenInput, cached_results);
978
+ }
979
+ populateDropdown(query, cached_results);
980
+ } else {
981
+ // Are we doing an ajax search or local data search?
982
+ if($(input).data("settings").url) {
983
+ var url = computeURL();
984
+ // Extract existing get params
985
+ var ajax_params = {};
986
+ ajax_params.data = {};
987
+ if(url.indexOf("?") > -1) {
988
+ var parts = url.split("?");
989
+ ajax_params.url = parts[0];
990
+
991
+ var param_array = parts[1].split("&");
992
+ $.each(param_array, function (index, value) {
993
+ var kv = value.split("=");
994
+ ajax_params.data[kv[0]] = kv[1];
995
+ });
996
+ } else {
997
+ ajax_params.url = url;
998
+ }
999
+
1000
+ // Prepare the request
1001
+ ajax_params.data[$(input).data("settings").queryParam] = query;
1002
+ ajax_params.type = $(input).data("settings").method;
1003
+ ajax_params.dataType = $(input).data("settings").contentType;
1004
+ if ($(input).data("settings").crossDomain) {
1005
+ ajax_params.dataType = "jsonp";
1006
+ }
1007
+
1008
+ // exclude current tokens?
1009
+ // send exclude list to the server, so it can also exclude existing tokens
1010
+ if ($(input).data("settings").excludeCurrent) {
1011
+ var currentTokens = $(input).data("tokenInputObject").getTokens();
1012
+ var tokenList = $.map(currentTokens, function (el) {
1013
+ if(typeof $(input).data("settings").tokenValue == 'function')
1014
+ return $(input).data("settings").tokenValue.call(this, el);
1015
+
1016
+ return el[$(input).data("settings").tokenValue];
1017
+ });
1018
+
1019
+ ajax_params.data[$(input).data("settings").excludeCurrentParameter] = tokenList.join($(input).data("settings").tokenDelimiter);
1020
+ }
1021
+
1022
+ // Attach the success callback
1023
+ ajax_params.success = function(results) {
1024
+ cache.add(cache_key, $(input).data("settings").jsonContainer ? results[$(input).data("settings").jsonContainer] : results);
1025
+ if($.isFunction($(input).data("settings").onResult)) {
1026
+ results = $(input).data("settings").onResult.call(hiddenInput, results);
1027
+ }
1028
+
1029
+ // only populate the dropdown if the results are associated with the active search query
1030
+ if(input_box.val() === query) {
1031
+ populateDropdown(query, $(input).data("settings").jsonContainer ? results[$(input).data("settings").jsonContainer] : results);
1032
+ }
1033
+ };
1034
+
1035
+ // Provide a beforeSend callback
1036
+ if (settings.onSend) {
1037
+ settings.onSend(ajax_params);
1038
+ }
1039
+
1040
+ // Make the request
1041
+ $.ajax(ajax_params);
1042
+ } else if($(input).data("settings").local_data) {
1043
+ // Do the search through local data
1044
+ var results = $.grep($(input).data("settings").local_data, function (row) {
1045
+ return row[$(input).data("settings").propertyToSearch].toLowerCase().indexOf(query.toLowerCase()) > -1;
1046
+ });
1047
+
1048
+ cache.add(cache_key, results);
1049
+ if($.isFunction($(input).data("settings").onResult)) {
1050
+ results = $(input).data("settings").onResult.call(hiddenInput, results);
1051
+ }
1052
+ populateDropdown(query, results);
1053
+ }
1054
+ }
1055
+ }
1056
+
1057
+ // compute the dynamic URL
1058
+ function computeURL() {
1059
+ var settings = $(input).data("settings");
1060
+ return typeof settings.url == 'function' ? settings.url.call(settings) : settings.url;
1061
+ }
1062
+
1063
+ // Bring browser focus to the specified object.
1064
+ // Use of setTimeout is to get around an IE bug.
1065
+ // (See, e.g., http://stackoverflow.com/questions/2600186/focus-doesnt-work-in-ie)
1066
+ //
1067
+ // obj: a jQuery object to focus()
1068
+ function focusWithTimeout(object) {
1069
+ setTimeout(
1070
+ function() {
1071
+ object.focus();
1072
+ },
1073
+ 50
1074
+ );
1075
+ }
1076
+ };
1077
+
1078
+ // Really basic cache for the results
1079
+ $.TokenList.Cache = function (options) {
1080
+ var settings, data = {}, size = 0, flush;
1081
+
1082
+ settings = $.extend({ max_size: 500 }, options);
1083
+
1084
+ flush = function () {
1085
+ data = {};
1086
+ size = 0;
1087
+ };
1088
+
1089
+ this.add = function (query, results) {
1090
+ if (size > settings.max_size) {
1091
+ flush();
1092
+ }
1093
+
1094
+ if (!data[query]) {
1095
+ size += 1;
1096
+ }
1097
+
1098
+ data[query] = results;
1099
+ };
1100
+
1101
+ this.get = function (query) {
1102
+ return data[query];
1103
+ };
1104
+ };
1105
+
1106
+ }(jQuery));
lib/token-input-facebook.css ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Example tokeninput style #2: Facebook style */
2
+ ul.token-input-list-facebook {
3
+ overflow: hidden;
4
+ height: auto !important;
5
+ height: 1%;
6
+ width: 400px;
7
+ border: 1px solid #8496ba;
8
+ cursor: text;
9
+ font-size: 12px;
10
+ font-family: Verdana, sans-serif;
11
+ min-height: 1px;
12
+ z-index: 999;
13
+ margin: 0;
14
+ padding: 0;
15
+ background-color: #fff;
16
+ list-style-type: none;
17
+ clear: left;
18
+ }
19
+
20
+ ul.token-input-list-facebook li input {
21
+ border: 0;
22
+ width: 100px;
23
+ padding: 3px 8px;
24
+ background-color: white;
25
+ margin: 2px 0;
26
+ -webkit-appearance: caret;
27
+ }
28
+
29
+ li.token-input-token-facebook {
30
+ overflow: hidden;
31
+ height: auto !important;
32
+ height: 15px;
33
+ margin: 3px;
34
+ padding: 1px 3px;
35
+ background-color: #eff2f7;
36
+ color: #000;
37
+ cursor: default;
38
+ border: 1px solid #ccd5e4;
39
+ font-size: 11px;
40
+ border-radius: 5px;
41
+ -moz-border-radius: 5px;
42
+ -webkit-border-radius: 5px;
43
+ float: left;
44
+ white-space: nowrap;
45
+ }
46
+
47
+ li.token-input-token-facebook p {
48
+ display: inline;
49
+ padding: 0;
50
+ margin: 0;
51
+ }
52
+
53
+ li.token-input-token-facebook span {
54
+ color: #a6b3cf;
55
+ margin-left: 5px;
56
+ font-weight: bold;
57
+ cursor: pointer;
58
+ }
59
+
60
+ li.token-input-selected-token-facebook {
61
+ background-color: #5670a6;
62
+ border: 1px solid #3b5998;
63
+ color: #fff;
64
+ }
65
+
66
+ li.token-input-input-token-facebook {
67
+ float: left;
68
+ margin: 0;
69
+ padding: 0;
70
+ list-style-type: none;
71
+ }
72
+
73
+ div.token-input-dropdown-facebook {
74
+ position: absolute;
75
+ width: 400px;
76
+ background-color: #fff;
77
+ overflow: hidden;
78
+ border-left: 1px solid #ccc;
79
+ border-right: 1px solid #ccc;
80
+ border-bottom: 1px solid #ccc;
81
+ cursor: default;
82
+ font-size: 11px;
83
+ font-family: Verdana, sans-serif;
84
+ z-index: 1;
85
+ }
86
+
87
+ div.token-input-dropdown-facebook p {
88
+ margin: 0;
89
+ padding: 5px;
90
+ font-weight: bold;
91
+ color: #777;
92
+ }
93
+
94
+ div.token-input-dropdown-facebook ul {
95
+ margin: 0;
96
+ padding: 0;
97
+ }
98
+
99
+ div.token-input-dropdown-facebook ul li {
100
+ background-color: #fff;
101
+ padding: 3px;
102
+ margin: 0;
103
+ list-style-type: none;
104
+ }
105
+
106
+ div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
107
+ background-color: #fff;
108
+ }
109
+
110
+ div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
111
+ background-color: #fff;
112
+ }
113
+
114
+ div.token-input-dropdown-facebook ul li em {
115
+ font-weight: bold;
116
+ font-style: normal;
117
+ }
118
+
119
+ div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
120
+ background-color: #3b5998;
121
+ color: #fff;
122
+ }
lib/token-input-mac.css ADDED
@@ -0,0 +1,204 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Example tokeninput style #2: Mac Style */
2
+ fieldset.token-input-mac {
3
+ position: relative;
4
+ padding: 0;
5
+ margin: 5px 0;
6
+ background: #fff;
7
+ width: 400px;
8
+ border: 1px solid #A4BDEC;
9
+ border-radius: 10px;
10
+ -moz-border-radius: 10px;
11
+ -webkit-border-radius: 10px;
12
+ }
13
+
14
+ fieldset.token-input-mac.token-input-dropdown-mac {
15
+ border-radius: 10px 10px 0 0;
16
+ -moz-border-radius: 10px 10px 0 0;
17
+ -webkit-border-radius: 10px 10px 0 0;
18
+ box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
19
+ -moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
20
+ -webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
21
+ }
22
+
23
+ ul.token-input-list-mac {
24
+ overflow: hidden;
25
+ height: auto !important;
26
+ height: 1%;
27
+ cursor: text;
28
+ font-size: 12px;
29
+ font-family: Verdana, sans-serif;
30
+ min-height: 1px;
31
+ z-index: 999;
32
+ margin: 0;
33
+ padding: 3px;
34
+ background: transparent;
35
+ }
36
+
37
+ ul.token-input-list-mac.error {
38
+ border: 1px solid #C52020;
39
+ }
40
+
41
+ ul.token-input-list-mac li {
42
+ list-style-type: none;
43
+ }
44
+
45
+ li.token-input-token-mac p {
46
+ display: inline;
47
+ padding: 0;
48
+ margin: 0;
49
+ }
50
+
51
+ li.token-input-token-mac span {
52
+ color: #a6b3cf;
53
+ margin-left: 5px;
54
+ font-weight: bold;
55
+ cursor: pointer;
56
+ }
57
+
58
+ /* TOKENS */
59
+
60
+ li.token-input-token-mac {
61
+ font-family: "Lucida Grande", Arial, sans-serif;
62
+ font-size: 9pt;
63
+ line-height: 12pt;
64
+ overflow: hidden;
65
+ height: 16px;
66
+ margin: 3px;
67
+ padding: 0 10px;
68
+ background: none;
69
+ background-color: #dee7f8;
70
+ color: #000;
71
+ cursor: default;
72
+ border: 1px solid #a4bdec;
73
+ border-radius: 15px;
74
+ -moz-border-radius: 15px;
75
+ -webkit-border-radius: 15px;
76
+ float: left;
77
+ }
78
+
79
+ li.token-input-highlighted-token-mac {
80
+ background-color: #bbcef1;
81
+ border: 1px solid #598bec;
82
+ color: #000;
83
+ }
84
+
85
+ li.token-input-selected-token-mac {
86
+ background-color: #598bec;
87
+ border: 1px solid transparent;
88
+ color: #fff;
89
+ }
90
+
91
+ li.token-input-highlighted-token-mac span.token-input-delete-token-mac {
92
+ color: #000;
93
+ }
94
+
95
+ li.token-input-selected-token-mac span.token-input-delete-token-mac {
96
+ color: #fff;
97
+ }
98
+
99
+ li.token-input-input-token-mac {
100
+ border: none;
101
+ background: transparent;
102
+ float: left;
103
+ padding: 0;
104
+ margin: 0;
105
+ }
106
+
107
+ li.token-input-input-token-mac input {
108
+ border: 0;
109
+ width: 100px;
110
+ padding: 3px;
111
+ background-color: transparent;
112
+ margin: 0;
113
+ }
114
+
115
+ div.token-input-dropdown-mac {
116
+ position: absolute;
117
+ border: 1px solid #A4BDEC;
118
+ border-top: none;
119
+ left: -1px;
120
+ right: -1px;
121
+ background-color: #fff;
122
+ overflow: hidden;
123
+ cursor: default;
124
+ font-size: 10pt;
125
+ font-family: "Lucida Grande", Arial, sans-serif;
126
+ padding: 5px;
127
+ border-radius: 0 0 10px 10px;
128
+ -moz-border-radius: 0 0 10px 10px;
129
+ -webkit-border-radius: 0 0 10px 10px;
130
+ box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
131
+ -moz-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
132
+ -webkit-box-shadow: 0 5px 20px 0 rgba(0,0,0,0.25);
133
+ clip:rect(0px, 1000px, 1000px, -10px);
134
+ }
135
+
136
+ div.token-input-dropdown-mac p {
137
+ font-size: 8pt;
138
+ margin: 0;
139
+ padding: 0 5px;
140
+ font-style: italic;
141
+ color: #aaa;
142
+ }
143
+
144
+ div.token-input-dropdown-mac h3.token-input-dropdown-category-mac {
145
+ font-family: "Lucida Grande", Arial, sans-serif;
146
+ font-size: 10pt;
147
+ font-weight: bold;
148
+ border: none;
149
+ padding: 0 5px;
150
+ margin: 0;
151
+ }
152
+
153
+ div.token-input-dropdown-mac ul {
154
+ margin: 0;
155
+ padding: 0;
156
+ }
157
+
158
+ div.token-input-dropdown-mac ul li {
159
+ list-style-type: none;
160
+ cursor: pointer;
161
+ background: none;
162
+ background-color: #fff;
163
+ margin: 0;
164
+ padding: 0 0 0 25px;
165
+ }
166
+
167
+ div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac {
168
+ background-color: #fff;
169
+ }
170
+
171
+ div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac.odd {
172
+ background-color: #ECF4F9;
173
+ border-radius: 15px;
174
+ -moz-border-radius: 15px;
175
+ -webkit-border-radius: 15px;
176
+ }
177
+
178
+ div.token-input-dropdown-mac ul li.token-input-dropdown-item-mac span.token-input-dropdown-item-description-mac {
179
+ float: right;
180
+ font-size: 8pt;
181
+ font-style: italic;
182
+ padding: 0 10px 0 0;
183
+ color: #999;
184
+ }
185
+
186
+ div.token-input-dropdown-mac ul li strong {
187
+ font-weight: bold;
188
+ text-decoration: underline;
189
+ font-style: none;
190
+ }
191
+
192
+ div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac,
193
+ div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac.odd {
194
+ background-color: #598bec;
195
+ color: #fff;
196
+ border-radius: 15px;
197
+ -moz-border-radius: 15px;
198
+ -webkit-border-radius: 15px;
199
+ }
200
+
201
+ div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac span.token-input-dropdown-item-description-mac,
202
+ div.token-input-dropdown-mac ul li.token-input-selected-dropdown-item-mac.odd span.token-input-dropdown-item-description-mac {
203
+ color: #fff;
204
+ }
lib/token-input.css ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Example tokeninput style #1: Token vertical list*/
2
+ ul.token-input-list {
3
+ overflow: hidden;
4
+ height: auto !important;
5
+ height: 1%;
6
+ width: 400px;
7
+ border: 1px solid #999;
8
+ cursor: text;
9
+ font-size: 12px;
10
+ font-family: Verdana, sans-serif;
11
+ z-index: 999;
12
+ margin: 0;
13
+ padding: 0;
14
+ background-color: #fff;
15
+ list-style-type: none;
16
+ clear: left;
17
+ }
18
+
19
+ ul.token-input-list li {
20
+ list-style-type: none;
21
+ }
22
+
23
+ ul.token-input-list li input {
24
+ border: 0;
25
+ width: 350px;
26
+ padding: 3px 8px;
27
+ background-color: white;
28
+ -webkit-appearance: caret;
29
+ }
30
+
31
+ ul.token-input-disabled,
32
+ ul.token-input-disabled li input {
33
+ background-color: #E8E8E8;
34
+ }
35
+
36
+ ul.token-input-disabled li.token-input-token {
37
+ background-color: #D9E3CA;
38
+ color: #7D7D7D
39
+ }
40
+
41
+ ul.token-input-disabled li.token-input-token span {
42
+ color: #CFCFCF;
43
+ cursor: default;
44
+ }
45
+
46
+ li.token-input-token {
47
+ overflow: hidden;
48
+ height: auto !important;
49
+ height: 1%;
50
+ margin: 3px;
51
+ padding: 3px 5px;
52
+ background-color: #d0efa0;
53
+ color: #000;
54
+ font-weight: bold;
55
+ cursor: default;
56
+ display: block;
57
+ }
58
+
59
+ li.token-input-token p {
60
+ float: left;
61
+ padding: 0;
62
+ margin: 0;
63
+ }
64
+
65
+ li.token-input-token span {
66
+ float: right;
67
+ color: #777;
68
+ cursor: pointer;
69
+ }
70
+
71
+ li.token-input-selected-token {
72
+ background-color: #08844e;
73
+ color: #fff;
74
+ }
75
+
76
+ li.token-input-selected-token span {
77
+ color: #bbb;
78
+ }
79
+
80
+ div.token-input-dropdown {
81
+ position: absolute;
82
+ width: 400px;
83
+ background-color: #fff;
84
+ overflow: hidden;
85
+ border-left: 1px solid #ccc;
86
+ border-right: 1px solid #ccc;
87
+ border-bottom: 1px solid #ccc;
88
+ cursor: default;
89
+ font-size: 12px;
90
+ font-family: Verdana, sans-serif;
91
+ z-index: 1;
92
+ }
93
+
94
+ div.token-input-dropdown p {
95
+ margin: 0;
96
+ padding: 5px;
97
+ font-weight: bold;
98
+ color: #777;
99
+ }
100
+
101
+ div.token-input-dropdown ul {
102
+ margin: 0;
103
+ padding: 0;
104
+ }
105
+
106
+ div.token-input-dropdown ul li {
107
+ background-color: #fff;
108
+ padding: 3px;
109
+ list-style-type: none;
110
+ }
111
+
112
+ div.token-input-dropdown ul li.token-input-dropdown-item {
113
+ background-color: #fafafa;
114
+ }
115
+
116
+ div.token-input-dropdown ul li.token-input-dropdown-item2 {
117
+ background-color: #fff;
118
+ }
119
+
120
+ div.token-input-dropdown ul li em {
121
+ font-weight: bold;
122
+ font-style: normal;
123
+ }
124
+
125
+ div.token-input-dropdown ul li.token-input-selected-dropdown-item {
126
+ background-color: #d0efa0;
127
+ }
readme.txt CHANGED
@@ -3,7 +3,8 @@ Contributors: WPGMaps, NickDuncan, CodeCabin_, DylanAuty
3
  Donate link: http://www.wpgmaps.com
4
  Tags: google maps, maps, map, map markers, google map, google maps plugin, wp google maps, wp google map, map plugin, directions, google map plugin, map widget
5
  Requires at least: 3.5
6
- Tested up to: 4.9.1
 
7
  Stable tag: trunk
8
  License: GPLv2
9
 
@@ -40,6 +41,7 @@ The [WP Google Maps Pro Version](http://www.wpgmaps.com/purchase-professional-ve
40
  * Add Polylines / Routes to your map
41
  * Create a map in less than a 30 seconds!
42
  * Right click to add a marker to your Google map
 
43
  * No advertising or links
44
  * Google Maps Autocomplete
45
  * Google Maps Transport Layer
@@ -47,7 +49,7 @@ The [WP Google Maps Pro Version](http://www.wpgmaps.com/purchase-professional-ve
47
  * Serve your map marker data via your database or an XML file
48
  * Compatible with caching plugins
49
  * Compatible with Cloudfare
50
- * Latest Google Maps API (V3.23, V3.24 & V3.exp)
51
 
52
  = Professional Edition =
53
  * Create multiple Google maps!
@@ -194,6 +196,9 @@ Try [Nifty Maps](http://www.niftymaps.co) - Comprehensive Map Builder for all we
194
 
195
  == Upgrade Notice ==
196
 
 
 
 
197
  = 6.3.15 =
198
  Please update your WP Google Maps version to 6.3.15 to ensure you are using the latest security enhancements.
199
 
@@ -203,17 +208,22 @@ Please update your WP Google Maps version to 6.3.14 to ensure you are using the
203
  = 6.2.1 =
204
  Please update your WP Google Maps version to 6.2.1 to ensure you are using the latest security enhancements.
205
 
206
- = 6.1.10 =
207
- Please update WP Google Maps to version 6.1.10 to enable our latest security enhancements.
208
-
209
- = 6.1.5 =
210
- We no longer support timthumb and we have opted to remove it from WP Google Maps. Please update to 6.1.5 to ensure the removal of the timthumb script.
211
-
212
- = 6.0.27 =
213
- Please upgrade your version of WP Google Maps to version 6.0.27 as it includes multiple security improvements.
214
-
215
  == Changelog ==
216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  = 6.4.09 - 2018-01-15 - Medium priority =
218
  * Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
219
 
3
  Donate link: http://www.wpgmaps.com
4
  Tags: google maps, maps, map, map markers, google map, google maps plugin, wp google maps, wp google map, map plugin, directions, google map plugin, map widget
5
  Requires at least: 3.5
6
+ Tested up to: 4.9
7
+ Requires PHP: 5.3
8
  Stable tag: trunk
9
  License: GPLv2
10
 
41
  * Add Polylines / Routes to your map
42
  * Create a map in less than a 30 seconds!
43
  * Right click to add a marker to your Google map
44
+ * Enable or disable Points of Interest (POI)
45
  * No advertising or links
46
  * Google Maps Autocomplete
47
  * Google Maps Transport Layer
49
  * Serve your map marker data via your database or an XML file
50
  * Compatible with caching plugins
51
  * Compatible with Cloudfare
52
+ * Latest Google Maps API (V3.30, V3.31 & V3.exp)
53
 
54
  = Professional Edition =
55
  * Create multiple Google maps!
196
 
197
  == Upgrade Notice ==
198
 
199
+ = 6.4.10 =
200
+ Please update your WP Google Maps version to 6.4.10 to ensure you are using the latest security enhancements.
201
+
202
  = 6.3.15 =
203
  Please update your WP Google Maps version to 6.3.15 to ensure you are using the latest security enhancements.
204
 
208
  = 6.2.1 =
209
  Please update your WP Google Maps version to 6.2.1 to ensure you are using the latest security enhancements.
210
 
 
 
 
 
 
 
 
 
 
211
  == Changelog ==
212
 
213
+ = 6.4.10 - 2018-03-12 - High priority =
214
+ * XSS vulnerability fixed. Ouch! (thank you Luigi Gubello)
215
+ * Backend UI enhancements such as "select all markers" and "delete all markers"
216
+ * Frontend UX improvements (Esc to close infofindow, better jQuery checks, etc.)
217
+ * Neatened up and modified the front end JS
218
+ * New feature: Enable/disable InfoWindows
219
+ * New feature: Show/hide points of interest
220
+ * Paving the way for WP Google Maps version 7!
221
+ * Updated Polish translations (Thank you Wojciech Dorosz)
222
+ * Fixed Norwegian translations (Thank you Kristoffer Gressli)
223
+ * Added support for themes that use FastClick
224
+ * Fixed a bug with "Editor" access roles
225
+ * Updated the default marker to the new Google Maps retina-ready marker
226
+
227
  = 6.4.09 - 2018-01-15 - Medium priority =
228
  * Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
229
 
wpGoogleMaps.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Google Maps
4
  Plugin URI: https://www.wpgmaps.com
5
  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.
6
- Version: 6.4.09
7
  Author: WP Google Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
@@ -12,9 +12,25 @@ Domain Path: /languages
12
 
13
  /*
14
  *
15
- * 6.4.09 - 2018-01-15 - Medium priority
16
- * Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  *
 
 
 
18
  * 6.4.08 - 2018-01-14 - Medium priority
19
  * Update Google Maps API versions to include 3.30 and 3.31
20
  * On first installation, users are now taken to the welcome page
@@ -349,7 +365,7 @@ $wpgmza_tblname_poly = $wpdb->prefix . "wpgmza_polygon";
349
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
350
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
351
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
352
- $wpgmza_version = "6.4.09";
353
  $wpgmza_p_version = "6.19";
354
  $wpgmza_t = "basic";
355
  define("WPGMAPS", $wpgmza_version);
@@ -360,6 +376,18 @@ include ( "base/includes/wp-google-maps-polylines.php" );
360
  include ( "base/classes/widget_module.class.php" );
361
  include ( "base/includes/deprecated.php" );
362
 
 
 
 
 
 
 
 
 
 
 
 
 
363
 
364
 
365
 
@@ -1112,7 +1140,7 @@ function wpgmaps_admin_javascript_basic() {
1112
 
1113
 
1114
 
1115
- $wpgmza_current_map_id = $_GET['map_id'];
1116
 
1117
 
1118
  wp_enqueue_script('wpgmaps_admin_core', plugins_url('/js/wpgmaps-admin-core.js',__FILE__), $wpgaps_core_dependancy, $wpgmza_version.'b' , false);
@@ -3821,7 +3849,7 @@ function wpgmaps_settings_page_basic() {
3821
  if (isset($wpgmza_settings['wpgmza_settings_access_level'])) { $wpgmza_access_level = $wpgmza_settings['wpgmza_settings_access_level']; } else { $wpgmza_access_level = ""; }
3822
  if ($wpgmza_access_level == "manage_options") { $wpgmza_access_level_checked[0] = "selected"; }
3823
  else if ($wpgmza_access_level == "edit_pages") { $wpgmza_access_level_checked[1] = "selected"; }
3824
- else if ($wpgmza_access_level == "publish_posts") { $wpgmza_access_level_checked[2] = "selected"; }
3825
  else if ($wpgmza_access_level == "edit_posts") { $wpgmza_access_level_checked[3] = "selected"; }
3826
  else if ($wpgmza_access_level == "read") { $wpgmza_access_level_checked[4] = "selected"; }
3827
  else { $wpgmza_access_level_checked[0] = "selected"; }
@@ -3954,7 +3982,7 @@ function wpgmaps_settings_page_basic() {
3954
  $ret .= " <select id='wpgmza_access_level' name='wpgmza_access_level' >";
3955
  $ret .= " <option value=\"manage_options\" ".$wpgmza_access_level_checked[0].">Admin</option>";
3956
  $ret .= " <option value=\"edit_pages\" ".$wpgmza_access_level_checked[1].">Editor</option>";
3957
- $ret .= " <option value=\"publish_posts\" ".$wpgmza_access_level_checked[2].">Author</option>";
3958
  $ret .= " <option value=\"edit_posts\" ".$wpgmza_access_level_checked[3].">Contributor</option>";
3959
  $ret .= " <option value=\"read\" ".$wpgmza_access_level_checked[4].">Subscriber</option>";
3960
  $ret .= " </select> ";
@@ -3992,7 +4020,7 @@ function wpgmaps_settings_page_basic() {
3992
  $ret .= " <tr>";
3993
  $ret .= " <td valign='top' width='200' style='vertical-align:top;'>".__("Disable InfoWindows","wp-google-maps")." </td>";
3994
  $ret .= " <td>";
3995
- $ret .= " <input name='wpgmza_settings_disable_infowindows' type='checkbox' value='1' {$wpgmza_settings_disable_infowindows}/>";
3996
  $ret .= " </td>";
3997
  $ret .= " </tr>";
3998
 
@@ -4852,6 +4880,22 @@ function wpgmza_basic_menu() {
4852
 
4853
  </td>
4854
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4855
 
4856
  <tr>
4857
  <td width='320'>".__("Maximum Zoom Level","wp-google-maps").":</td>
@@ -4909,21 +4953,7 @@ function wpgmza_basic_menu() {
4909
 
4910
  </td>
4911
  </tr>
4912
- <tr>
4913
- <td><label for=\"wpgmza_show_points_of_interest\">".__("Show Points of Interest?", "wp-google-maps")."</label></td>
4914
- <td>
4915
- <input type='checkbox' id='wpgmza_show_points_of_interest' name='wpgmza_show_points_of_interest' " .
4916
- (
4917
- !isset($other_settings_data['wpgmza_show_points_of_interest']) ||
4918
- $other_settings_data['wpgmza_show_points_of_interest'] == 1
4919
- ?
4920
- "checked='checked'"
4921
- :
4922
- ''
4923
- )
4924
- . "/>
4925
- </td>
4926
- </tr>
4927
 
4928
  <tr>
4929
  </tr>
@@ -5603,7 +5633,7 @@ function wpgmza_return_marker_list($map_id,$admin = true,$width = "100%",$mashup
5603
 
5604
  $res = wpgmza_get_map_data($map_id);
5605
  if (!$res->default_marker) {
5606
- $default_marker = "<img src='".wpgmaps_get_plugin_url()."images/marker.png' />";
5607
  } else {
5608
  $default_marker = "<img src='".$res->default_marker."' />";
5609
  }
3
  Plugin Name: WP Google Maps
4
  Plugin URI: https://www.wpgmaps.com
5
  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.
6
+ Version: 6.4.10
7
  Author: WP Google Maps
8
  Author URI: https://www.wpgmaps.com
9
  Text Domain: wp-google-maps
12
 
13
  /*
14
  *
15
+ *
16
+ * 6.4.10 - 2018-03-12 - High priority
17
+ * XSS vulnerability fixed. Ouch! (thank you Luigi Gubello)
18
+ * Backend UI enhancements such as "select all markers" and "delete all markers"
19
+ * Frontend UX improvements (Esc to close infofindow, better jQuery checks, etc.)
20
+ * Neatened up and modified the front end JS
21
+ * New feature: Enable/disable InfoWindows
22
+ * New feature: Show/hide points of interest
23
+ * Paving the way for WP Google Maps version 7!
24
+ * Updated Polish translations (Thank you Wojciech Dorosz)
25
+ * Fixed Norwegian translations (Thank you Kristoffer Gressli)
26
+ * Added support for themes that use FastClick
27
+ * Fixed a bug with "Editor" access roles
28
+ * Updated the default marker to the new Google Maps retina-ready marker
29
+ *
30
  *
31
+ * 6.4.09 - 2018-01-15 - Medium priority
32
+ * Removed the plugin deactivation survey as there are PHP compatibility issues. Will have to retest and add this back at a later stage.
33
+ *
34
  * 6.4.08 - 2018-01-14 - Medium priority
35
  * Update Google Maps API versions to include 3.30 and 3.31
36
  * On first installation, users are now taken to the welcome page
365
  $wpgmza_tblname_polylines = $wpdb->prefix . "wpgmza_polylines";
366
  $wpgmza_tblname_categories = $wpdb->prefix. "wpgmza_categories";
367
  $wpgmza_tblname_category_maps = $wpdb->prefix. "wpgmza_category_maps";
368
+ $wpgmza_version = "6.4.10";
369
  $wpgmza_p_version = "6.19";
370
  $wpgmza_t = "basic";
371
  define("WPGMAPS", $wpgmza_version);
376
  include ( "base/classes/widget_module.class.php" );
377
  include ( "base/includes/deprecated.php" );
378
 
379
+ /* plugin deactivation checks */
380
+ include ( "lib/codecabin/deactivate-feedback-form.php" );
381
+ add_filter( 'codecabin_deactivate_feedback_form_plugins', 'wpgmaps_deactivation_survey_t' );
382
+ function wpgmaps_deactivation_survey_t( $plugins ) {
383
+ global $wpgmza_version;
384
+ $plugins[] = (object)array(
385
+ 'slug' => 'wp-google-maps',
386
+ 'version' => WPGMAPS
387
+ );
388
+
389
+ return $plugins;
390
+ }
391
 
392
 
393
 
1140
 
1141
 
1142
 
1143
+ $wpgmza_current_map_id = sanitize_text_field( $_GET['map_id'] );
1144
 
1145
 
1146
  wp_enqueue_script('wpgmaps_admin_core', plugins_url('/js/wpgmaps-admin-core.js',__FILE__), $wpgaps_core_dependancy, $wpgmza_version.'b' , false);
3849
  if (isset($wpgmza_settings['wpgmza_settings_access_level'])) { $wpgmza_access_level = $wpgmza_settings['wpgmza_settings_access_level']; } else { $wpgmza_access_level = ""; }
3850
  if ($wpgmza_access_level == "manage_options") { $wpgmza_access_level_checked[0] = "selected"; }
3851
  else if ($wpgmza_access_level == "edit_pages") { $wpgmza_access_level_checked[1] = "selected"; }
3852
+ else if ($wpgmza_access_level == "edit_published_posts") { $wpgmza_access_level_checked[2] = "selected"; }
3853
  else if ($wpgmza_access_level == "edit_posts") { $wpgmza_access_level_checked[3] = "selected"; }
3854
  else if ($wpgmza_access_level == "read") { $wpgmza_access_level_checked[4] = "selected"; }
3855
  else { $wpgmza_access_level_checked[0] = "selected"; }
3982
  $ret .= " <select id='wpgmza_access_level' name='wpgmza_access_level' >";
3983
  $ret .= " <option value=\"manage_options\" ".$wpgmza_access_level_checked[0].">Admin</option>";
3984
  $ret .= " <option value=\"edit_pages\" ".$wpgmza_access_level_checked[1].">Editor</option>";
3985
+ $ret .= " <option value=\"edit_published_posts\" ".$wpgmza_access_level_checked[2].">Author</option>";
3986
  $ret .= " <option value=\"edit_posts\" ".$wpgmza_access_level_checked[3].">Contributor</option>";
3987
  $ret .= " <option value=\"read\" ".$wpgmza_access_level_checked[4].">Subscriber</option>";
3988
  $ret .= " </select> ";
4020
  $ret .= " <tr>";
4021
  $ret .= " <td valign='top' width='200' style='vertical-align:top;'>".__("Disable InfoWindows","wp-google-maps")." </td>";
4022
  $ret .= " <td>";
4023
+ $ret .= " <input id='wpgmza_settings_disable_infowindows' name='wpgmza_settings_disable_infowindows' value='1' type='checkbox' class='cmn-toggle cmn-toggle-yes-no' {$wpgmza_settings_disable_infowindows}/><label for='wpgmza_settings_disable_infowindows' data-on='".__("Yes", "wp-google-maps")."' data-off='".__("No", "wp-google-maps")."'></label>";
4024
  $ret .= " </td>";
4025
  $ret .= " </tr>";
4026
 
4880
 
4881
  </td>
4882
  </tr>
4883
+
4884
+ <tr>
4885
+ <td><label for=\"wpgmza_show_points_of_interest\">".__("Show Points of Interest?", "wp-google-maps")."</label></td>
4886
+ <td>
4887
+ <input type='checkbox' id='wpgmza_show_points_of_interest' name='wpgmza_show_points_of_interest' class='postform cmn-toggle cmn-toggle-yes-no' " .
4888
+ (
4889
+ !isset($other_settings_data['wpgmza_show_points_of_interest']) ||
4890
+ $other_settings_data['wpgmza_show_points_of_interest'] == 1
4891
+ ?
4892
+ "checked='checked'"
4893
+ :
4894
+ ''
4895
+ )
4896
+ . "/><label class='cmn-override-big' for='wpgmza_show_points_of_interest' data-on='".__("Yes","wp-google-maps")."' data-off='".__("No","wp-google-maps")."''></label>
4897
+ </td>
4898
+ </tr>
4899
 
4900
  <tr>
4901
  <td width='320'>".__("Maximum Zoom Level","wp-google-maps").":</td>
4953
 
4954
  </td>
4955
  </tr>
4956
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4957
 
4958
  <tr>
4959
  </tr>
5633
 
5634
  $res = wpgmza_get_map_data($map_id);
5635
  if (!$res->default_marker) {
5636
+ $default_marker = "<img width='27' height='43' src='".wpgmaps_get_plugin_url()."images/spotlight-poi2_hdpi.png' />";
5637
  } else {
5638
  $default_marker = "<img src='".$res->default_marker."' />";
5639
  }