MapPress Easy Google Maps - Version 2.40.4

Version Description

Download this release

Release Info

Developer chrisvrichardson
Plugin Icon 128x128 MapPress Easy Google Maps
Version 2.40.4
Comparing to
See all releases

Code changes from version 2.40.3 to 2.40.4

css/mappress.css CHANGED
@@ -91,7 +91,7 @@
91
  /* Map tiles */
92
  .mapp-canvas img {
93
  background-color: transparent !important;
94
- max-width: none !important; /* Some themes have max-width/max-height set */
95
  max-height: none !important;
96
  visibility: inherit !important;
97
  padding: 0px !important;
@@ -111,6 +111,7 @@
111
  */
112
 
113
  .mapp-iw {
 
114
  padding: 0px ;
115
  margin: 0px ;
116
  color: black ;
@@ -159,7 +160,7 @@
159
  -webkit-box-shadow: 5px 5px 5px #888;
160
  box-shadow: 5px 5px 5px #888;
161
  display: none;
162
- max-width: 450px;
163
  min-width: 200px;
164
  overflow: auto;
165
  padding: 15px;
@@ -211,7 +212,7 @@
211
  .mapp-poi-list table {
212
  margin-top: 10px ;
213
  width: 100% ;
214
- line-height: normal ;
215
  border-collapse: collapse ;
216
  }
217
 
91
  /* Map tiles */
92
  .mapp-canvas img {
93
  background-color: transparent !important;
94
+ max-width: 99999px !important; /* Some themes have max-width/max-height set, and some phones can't accept max-width: auto. */
95
  max-height: none !important;
96
  visibility: inherit !important;
97
  padding: 0px !important;
111
  */
112
 
113
  .mapp-iw {
114
+ font-size: 14px; /* Google may apply scrollbars - best size seems to be 12px */
115
  padding: 0px ;
116
  margin: 0px ;
117
  color: black ;
160
  -webkit-box-shadow: 5px 5px 5px #888;
161
  box-shadow: 5px 5px 5px #888;
162
  display: none;
163
+ max-width: 450px;
164
  min-width: 200px;
165
  overflow: auto;
166
  padding: 15px;
212
  .mapp-poi-list table {
213
  margin-top: 10px ;
214
  width: 100% ;
215
+ line-height: normal !important; /* 2012 sets to 2 */
216
  border-collapse: collapse ;
217
  }
218
 
css/mappress_admin.css CHANGED
@@ -52,17 +52,18 @@ table.mapp-e-editor {
52
 
53
  .mapp-e-top-toolbar {
54
  font-size: 12px;
 
55
  }
56
 
57
  .mapp-e-canvas {
58
- max-width: 100%;
59
- min-height: 200px; /* Used only if a % height is applied */
60
  border: 1px solid lightgray;
61
  }
62
 
63
  .mapp-e-poi-list {
64
- border-left: 1px solid lightgray;
65
  cursor: move;
 
66
  overflow: auto;
67
  }
68
 
52
 
53
  .mapp-e-top-toolbar {
54
  font-size: 12px;
55
+ height: 20px;
56
  }
57
 
58
  .mapp-e-canvas {
59
+ width: 100%;
60
+ min-height: 200px;
61
  border: 1px solid lightgray;
62
  }
63
 
64
  .mapp-e-poi-list {
 
65
  cursor: move;
66
+ height: 370px;
67
  overflow: auto;
68
  }
69
 
forms/map_editor.php CHANGED
@@ -9,10 +9,10 @@
9
  <div class='mapp-e-edit-panel'>
10
  <table class='mapp-e-editor'>
11
  <tr>
12
- <td style='width: 25%;'>
13
  <div id='mapp_e_poi_list' class='mapp-e-poi-list'></div>
14
  </td>
15
- <td style='width: 75%;'>
16
  <div id='mapp_e_top_toolbar' class='mapp-e-top-toolbar'>
17
  <a href='#' id='mapp_e_recenter'><?php _e('Center map', 'mappress'); ?></a> |
18
  <?php _e('Click map for lat/lng: ', 'mappress'); ?><span id='mapp_e_latlng'>0,0</span>
9
  <div class='mapp-e-edit-panel'>
10
  <table class='mapp-e-editor'>
11
  <tr>
12
+ <td style='width: 25%'>
13
  <div id='mapp_e_poi_list' class='mapp-e-poi-list'></div>
14
  </td>
15
+ <td style='width: 75%'>
16
  <div id='mapp_e_top_toolbar' class='mapp-e-top-toolbar'>
17
  <a href='#' id='mapp_e_recenter'><?php _e('Center map', 'mappress'); ?></a> |
18
  <?php _e('Click map for lat/lng: ', 'mappress'); ?><span id='mapp_e_latlng'>0,0</span>
forms/map_media.php CHANGED
@@ -24,7 +24,7 @@
24
  </tr>
25
 
26
  <tr>
27
- <td><?php _e('Map Title');?>:</td>
28
  <td><input id='mapp_m_title' type='text' size='40' /></td>
29
  </tr>
30
 
@@ -33,7 +33,7 @@
33
  <td>
34
  <?php
35
  $sizes = array();
36
- foreach(Mappress::$options->mapSizes as $i => $size)
37
  $sizes[] = "<a href='#' class='mapp-m-size' data-width='{$size['width']}' data-height='{$size['height']}'>" . $size['width'] . 'x' . $size['height'] . "</a>";
38
  echo implode(' | ', $sizes);
39
  ?>
24
  </tr>
25
 
26
  <tr>
27
+ <td><?php _e('Map Title', 'mappress');?>:</td>
28
  <td><input id='mapp_m_title' type='text' size='40' /></td>
29
  </tr>
30
 
33
  <td>
34
  <?php
35
  $sizes = array();
36
+ foreach(Mappress::$options->sizes as $i => $size)
37
  $sizes[] = "<a href='#' class='mapp-m-size' data-width='{$size['width']}' data-height='{$size['height']}'>" . $size['width'] . 'x' . $size['height'] . "</a>";
38
  echo implode(' | ', $sizes);
39
  ?>
js/mappress.min.js CHANGED
@@ -1 +1 @@
1
- var mapp=window.mapp||{};mapp.Poi=function(){this.address=null,this.body=null,this.html=null,this.iconid=null,this.map=null,this.overlay=null,this.postid=null,this.title="",this.url=null,this.type=null,this.viewport=null;for(var n in arguments[0])typeof arguments[0][n]!="undefined"&&(this[n]=arguments[0][n])},mapp.Poi.prototype={fromJSON:function(n){var f,u,i,o,t,r,s,e;this.address=n.correctedAddress,this.body=n.body,this.correctedAddress=n.correctedAddress,this.html=n.html,this.iconid=n.iconid,this.postid=n.postid,this.title=n.title,this.type=n.type,this.url=n.url,n.viewport&&(f=new google.maps.LatLng(n.viewport.sw.lat,n.viewport.sw.lng),u=new google.maps.LatLng(n.viewport.ne.lat,n.viewport.ne.lng),this.viewport=f.lat()==0&&f.lng()==0&&u.lat()==0&&u.lng()==0?null:new google.maps.LatLngBounds(f,u)),i=[],o=[];switch(this.type){case"polygon":if(n.poly&&n.poly.paths)for(t=0;t<n.poly.paths.length;t++){for(i=[],r=0;r<n.poly.paths[t].length;r++)i.push(new google.maps.LatLng(n.poly.paths[t][r].lat,n.poly.paths[t][r].lng));o.push(new google.maps.MVCArray(i))}this.overlay=new google.maps.Polygon({paths:new google.maps.MVCArray(o)}),this.setColors(n.poly);break;case"polyline":if(n.poly&&n.poly.path)for(t=0;t<n.poly.path.length;t++)i.push(new google.maps.LatLng(n.poly.path[t].lat,n.poly.path[t].lng));this.overlay=new google.maps.Polyline({path:new google.maps.MVCArray(i)}),this.setColors(n.poly);break;case"circle":e=new google.maps.LatLng(n.point.lat,n.point.lng),this.overlay=new google.maps.Circle({center:e,radius:parseFloat(n.poly.radius)}),this.setColors(n.poly);break;case"rectangle":this.overlay=new google.maps.Rectangle({bounds:this.viewport}),this.setColors(n.poly);break;case"kml":s=n.kml&&n.kml.url?n.kml.url:"",this.overlay=new google.maps.KmlLayer(s,{preserveViewport:!0,suppressInfoWindows:!0});break;case"":default:e=new google.maps.LatLng(n.point.lat,n.point.lng),this.overlay=new google.maps.Marker({position:e})}},toJSON:function(){var n={address:this.address,body:this.body,correctedAddress:this.address,iconid:this.iconid,point:null,poly:null,title:this.title,type:this.type,viewport:null},r=this.getPosition(),t,i;if(n.point={lat:r.lat(),lng:r.lng()},t=this.viewport?this.viewport:this.getBounds(),t&&(n.viewport={sw:{lat:t.getSouthWest().lat(),lng:t.getSouthWest().lng()},ne:{lat:t.getNorthEast().lat(),lng:t.getNorthEast().lng()}}),this.type=="kml"&&(n.kml={url:this.overlay.getUrl()},i=this.overlay.getDefaultViewport(),n.viewport={sw:{lat:i.getSouthWest().lat(),lng:i.getSouthWest().lng()},ne:{lat:i.getNorthEast().lat(),lng:i.getNorthEast().lng()}}),this.isPoly()){n.poly=this.getColors();switch(this.type){case"circle":n.poly.radius=this.overlay.getRadius();break;case"polyline":n.poly.path=[],this.overlay.getPath().forEach(function(t){n.poly.path.push({lat:t.lat(),lng:t.lng()})});break;case"polygon":n.poly.paths=[],this.overlay.getPaths().forEach(function(t){var i=[];t.forEach(function(n){i.push({lat:n.lat(),lng:n.lng()})}),n.poly.paths.push(i)})}}return n},setTooltip:function(n){this.map.getTooltips()&&(this.type||(n?this.overlay.setTitle(n):this.overlay.setTitle(jQuery("<div>").html(this.title).text())))},setMap:function(n){var t=this;if(google.maps.event.clearInstanceListeners(this.overlay),n==null){this.overlay.setMap(null);return}this.type=="kml"&&(google.maps.event.addListener(this.overlay,"defaultviewport_changed",function(){t.viewport=t.overlay.getDefaultViewport()}),google.maps.event.addListener(this.overlay,"status_changed",function(){var n=t.overlay.getStatus();n!="OK"&&mappl10n.ajaxErrors&&alert(mappl10n.kml_error+":"+n)})),this.map=n,this.overlay.setMap(n.getMap()),this.setEditable(this.map.getEditable()),this.setIcon(this.iconid),this.setZIndex(0),this.setTooltip(),google.maps.event.addListener(this.overlay,"click",function(n){t.open(n)})},setEditable:function(n){var t=this;if(this.isPoly()){t.overlay.setEditable(n),n&&(google.maps.event.addListener(this.overlay,"click",function(){t.overlay.setEditable(!0)}),google.maps.event.addListener(this.overlay,"mouseover",function(){t.overlay.setEditable(!0)}));return}this.type!="kml"&&(this.overlay.setDraggable(n),n?(this.setTooltip(mappl10n.click_and_drag),google.maps.event.addListener(this.overlay,"dragstart",function(){t.map.closeInfoWindow()}),google.maps.event.addListener(this.overlay,"dragend",function(n){t.viewport=null,t.address=null,t.map.openPoi(t),google.maps.event.trigger(t.map,"dragend",t,n)})):this.setTooltip())},getZIndex:function(){return this.type?this.overlay.zIndex:this.overlay.getZIndex()},setZIndex:function(n){this.type?this.overlay.zIndex=n:this.overlay.setZIndex(n)},setIcon:function(n){if(!this.type){this.overlay.setIcon(null),this.overlay.setShadow(null);var t=mapp.Icons.get(n);t&&(t.anchor?(this.overlay.setIcon(new google.maps.MarkerImage(t.url,null,null,t.anchor,null)),this.overlay.setShadow(new google.maps.MarkerImage(t.shadowUrl,null,null,t.anchor,null))):(this.overlay.setIcon(t.url),this.overlay.setShadow(t.shadowUrl)))}},getImage:function(n){var t=mapp.Icons.getUrl(this.iconid);return n=n?n:"","<img class='"+n+"' src='"+t+"' />"},setVisible:function(n){typeof this.overlay.setVisible!="undefined"&&this.overlay.setVisible(n)},setColors:function(n){var r={strokeColor:"",strokeOpacity:"",strokeWeight:"",fillColor:"",fillOpacity:""},i={},t;for(t in r)n&&typeof n[t]!="undefined"&&(i[t]=n[t]);this.overlay.setOptions(i)},getColors:function(){var i={strokeColor:"",strokeOpacity:"",strokeWeight:"",fillColor:"",fillOpacity:""},t={},n;for(n in i)typeof this.overlay[n]!="undefined"&&(t[n]=this.overlay[n]);return t},center:function(n){var t=this.map.getMap(),i;if(!n){t.setCenter(this.getPosition());return}if(typeof n=="number"){t.setCenter(this.getPosition()),t.setZoom(n);return}i=this.getBounds(),i?(t.fitBounds(i),t.setCenter(this.getPosition())):(t.setCenter(this.getPosition()),t.setZoom(this.map.getPoiZoom()))},open:function(n){this.map.openPoi(this,n)},zoomIn:function(){var n=this.map.getMap(),r=n.getZoom(),t=this.getBounds(),i=Math.min(r+2,21);t&&n.fitBounds(t),i>n.getZoom()&&n.setZoom(i),n.setCenter(this.getPosition())},isPoly:function(){return jQuery.inArray(this.type,["polyline","polygon","circle","rectangle"])!=-1},getBounds:function(){var n;if(!this.map.getEditable()&&this.viewport)return this.viewport;switch(this.type){case"polyline":n=new google.maps.LatLngBounds,this.overlay.getPath().forEach(function(t){n.extend(t)});break;case"polygon":n=new google.maps.LatLngBounds,this.overlay.getPaths().forEach(function(t){t.forEach(function(t){n.extend(t)})});break;case"rectangle":case"circle":n=this.overlay.getBounds();break;case"kml":n=this.overlay.getDefaultViewport();break;default:return this.viewport?this.viewport:null}return n},getPosition:function(){if(this.type){var n=this.getBounds();return n?n.getCenter():new google.maps.LatLng(0,0)}return this.overlay.getPosition()},click:function(){google.maps.event.trigger(this.overlay,"click")}};var mapp=window.mapp||{};mapp.Map=function(n){function ht(){var f,h,n;if(!o&&(o=["roadmap","satellite","terrain","hybrid"],mapp.Styles))for(f in mapp.Styles)o.push(f);for(h={backgroundColor:"transparent",center:c,draggable:bt,keyboardShortcuts:at,mapTypeControl:di,mapTypeControlOptions:{style:ki,mapTypeIds:o},maxZoom:nr,minZoom:ii,overviewMapControl:yi,overviewMapControlOptions:{opened:vi},panControl:pi,rotateControl:wi,scaleControl:ir,scrollwheel:hr,streetViewControl:ar,tilt:ur,zoom:v?v:0,zoomControl:er,zoomControlOptions:{style:ai}},i=new google.maps.Map(a,h),n=0;n<t.length;n++)t[n].setMap(r);ri(),r.setMapTypeId(fi),ei(),s=="ib"?(mapp.InfoBox.prototype=new google.maps.OverlayView,u=new mapp.InfoBox):u=new google.maps.InfoWindow,s=="ib"&&(at=!1),ft=new mapp.Geocoder(r,gi,hi),vt!="none"&&(e=new mapp.Directions(r,vt,ft,dt,wt)),r.initCenter(),oi&&jQuery(window).resize(function(){r.resize()})}function ri(){var n,t,r;for(n in mapp.Styles)t=mapp.Styles[n],r=new google.maps.StyledMapType(t,{name:n}),i.mapTypes.set(n,r),lr==n&&i.setOptions({styles:t})}function ei(){fr&&ut("traffic",mappl10n.traffic,ni),ci&&ut("bicycling",mappl10n.bike,kt),or&&ut("transit",mappl10n.transit,gt)}function ut(n,t,r){var e=f+"_"+n,s=r?"checked='checked'":"",o="<div class='gmnoprint mapp-control'><input type='checkbox' id='"+e+"' "+s+" /> "+t+"<\/div>",u=jQuery(o).get(0);i.controls[google.maps.ControlPosition.TOP_RIGHT].push(u),r&&st(n),google.maps.event.clearListeners(u,"click"),google.maps.event.addDomListener(u,"click",function(){st(n)})}function st(n){var r=f+"_"+n,t;switch(n){case"transit":w=w?w:new google.maps.TransitLayer,t=w;break;case"traffic":k=k?k:new google.maps.TrafficLayer,t=k;break;case"bicycling":b=b?b:new google.maps.BicyclingLayer,t=b}t.getMap()?(jQuery("#"+r).prop("checked",!1),t.setMap(null)):(jQuery("#"+r).prop("checked",!0),t.setMap(i))}var c=n.center?new google.maps.LatLng(n.center.lat,n.center.lng):new google.maps.LatLng(0,0),tt=n.height,h=n.mapid,fi=n.mapTypeId?n.mapTypeId:"roadmap",ui=n.metaKey,f=n.name,lt=n.options,yt=n.query,it=n.title,rt=n.width,v=parseInt(n.zoom,10),oi=n.options.adaptive,ci=n.options.bicycling,li=n.options.bigHeight,si=n.options.bigWidth,hi=n.options.country,et=n.options.dataTables,vt=n.options.directions,dt=n.options.directionsServer,wt=n.options.directionsUnits,bt=n.options.draggable,ti=n.options.editable,kt=n.options.initialBicycling,nt=n.options.initialOpenDirections,g=n.options.initialOpenInfo,ni=n.options.initialTraffic,gt=n.options.initialTransit,s=n.options.iwType,pt=n.options.iwDisableAutoPan,at=n.options.keyboardShortcuts,gi=n.options.language,di=n.options.mapTypeControl,ki=parseInt(n.options.mapTypeControlStyle,10),o=n.options.mapTypeIds,tr=n.options.mashupClick,nr=parseInt(n.options.maxZoom),ii=parseInt(n.options.minZoom),yi=n.options.overviewMapControl,vi=n.options.overviewMapControlOpened,pi=n.options.panControl,bi=n.options.poiZoom,wi=n.options.rotateControl,ir=n.options.scaleControl,hr=n.options.scrollwheel,sr=n.height,cr=n.width,ar=n.options.streetViewControl,lr=n.options.style,ur=parseInt(n.options.tilt),rr=n.options.tooltips,fr=n.options.traffic,or=n.options.transit,er=n.options.zoomControl,ai=parseInt(n.options.zoomControlStyle,10),r=this,b,k,w,e=null,y,ot,p,a,l,ft=null,i=null,u=null,t=[],ct=!1,d=0;this.display=function(){if(y=jQuery("#"+f+"_dialog"),ot=jQuery("#"+f+"_directions"),p=jQuery("#"+f+"_layout"),a=document.getElementById(f),l=jQuery("#"+f+"_poi_list"),!a){typeof console!="undefined"&&console.log("MapPress: Missing map name or container for map: "+f);return}if(typeof google=="undefined"){typeof console!="undefined"&&console.log("MapPress: Google API not loaded");return}if(ot.append(jQuery("#"+f+"_directions_").contents()),l.append(jQuery("#"+f+"_poi_list_").contents()),this.setDataTables(),yt){this.ajaxQuery(function(){ht()});return}r.setPois(n.pois,!1),ht()},this.ajaxQuery=function(n,t){e&&e.close(),u&&r.closeInfoWindow(),r.setDialog(),t=t?t:1;var i={action:"mapp_query",name:f,query:yt,options:lt};mapp.Ajax("POST",i,function(t){t.status=="OK"&&(r.hideDialog(),r.setPois(t.data.pois,!0),r.setPoiList(t.data.poiList),n&&n())})},this.setDialog=function(n){n=n?n:'<span class="mapp-spinner"><\/span> Loading...',n='<div class="mapp-dialog-inner">'+n+"<\/div>",jQuery(y).html(n),jQuery(y).show()},this.hideDialog=function(){jQuery(y).hide()},this.setPoiList=function(n){typeof n=="string"?l.html(n):l.append(n),this.setDataTables()},this.setDataTables=function(){if(et&&typeof jQuery.fn.dataTable!="undefined"){var n=et==!0?{bFilter:!1,bPaginate:!1}:et;jQuery("table",l).dataTable(n)}},this.getOptions=function(){return lt},this.getResized=function(){return ct},this.show=function(){p.show(),this.display()},this.closeInfoWindow=function(){u.close()},this.openDirections=function(n,t,i){var u,r;typeof n=="object"?(u=n.address?n.address:n.getPosition().toUrlValue(),n.open()):u=n,typeof t=="object"?(r=t.address?t.address:t.getPosition().toUrlValue(),t.open()):r=t,e.open(u,r,i)},this.setMapTypeId=function(n){n=n&&jQuery.inArray(n,o)!=-1?n:o[0],i.setMapTypeId(n)},this.setCenter=function(n,t){i.setCenter(new google.maps.LatLng(n,t))},this.setZoom=function(n){i.setZoom(n)},this.getPoiZoom=function(){return parseInt(bi)},this.poiToFront=function(n){if(d++,d>google.maps.Marker.MAX_ZINDEX){d=1;for(var i=0;i<t.length;i++)t[i].setZIndex(0)}n.setZIndex(d)},this.getMap=function(){return i},this.getGeocoder=function(){return ft},this.getName=function(){return f},this.setName=function(n){f=n},this.getMapid=function(){return h},this.setMapid=function(n){h=n},this.getTitle=function(){return it},this.setTitle=function(n){it=n},this.getWidth=function(){return rt},this.getHeight=function(){return tt},this.getInfoWindow=function(){return u},this.getEditable=function(){return ti},this.getTooltips=function(){return rr},this.getPoi=function(n){return typeof n=="string"&&(n=parseInt(n,10)),t[n]},this.getPoiById=function(n){for(var i=0;i<t.length;i++)if(t[i].postid==n)return t[i];return null},this.getPois=function(){return t},this.insertPoi=function(n){t.unshift(n),n.setMap(this)},this.addPoi=function(n){t.push(n),n.setMap(this)},this.removePoi=function(n){var i=jQuery.inArray(n,t);i!=-1&&(t[i].setMap(null),t.splice(i,1))},this.setPois=function(n,i){for(var u,r=0;r<t.length;r++)t[r].setMap(null);for(t=[],r=0;r<n.length;r++)u=new mapp.Poi,u.fromJSON(n[r]),t.push(u),i&&u.setMap(this)},this.showPois=function(){for(var n=0;n<t.length;n++)t[n].setVisible(!0)},this.hidePois=function(){for(var n=0;n<t.length;n++)t[n].setVisible(!1)},this.sortPois=function(n){for(var u=Array(),r,i=0;i<n.length;i++){if(r=parseInt(n[i]),isNaN(r))return!1;u.push(t[r])}return u.length!=t.length?!1:(t=u,!0)},this.openPoi=function(n,t){var u,i;if(s&&s!="none"){if(tr=="post"&&n.url){window.location.assign(n.url);return}i={html:null},google.maps.event.trigger(r,"poicontent",n,i),u=i.content?i.content:t&&typeof t.featureData!="undefined"?t.featureData.infoWindowHtml:n.html,this.openInfoWindow(n,u,t)}},this.openInfoWindow=function(n,t,f){if(e&&e.close(),s&&s!="none"){if(this.poiToFront(n),u.close(),u.setContent(t),google.maps.event.addListenerOnce(u,"domready",function(){google.maps.event.trigger(r,"poidomready",n)}),pt){u.setOptions({disableAutoPan:pt});var o=i.getBounds();o.contains(n.getPosition())||n.center()}n.type=="kml"&&f?(u.setOptions({pixelOffset:f.pixelOffset,position:f.latLng}),u.open(i)):n.type?(u.setOptions({position:n.getPosition()}),u.open(i)):u.open(i,n.overlay)}},this.closeInfoWindow=function(){u.close()},this.resize=function(n,t){var r=i.getCenter();n&&t&&(jQuery(a).width(n),jQuery(a).height(t),rt=n,tt=t),google.maps.event.trigger(i,"resize"),i.setCenter(r),ct=!0;return},this.initCenter=function(){if(this.closeInfoWindow(),google.maps.event.addListenerOnce(i,"idle",function(){r.initWindows()}),c&&c.lat()&&c.lng())i.setCenter(c),i.setZoom(v);else{var n=v?v:!0;r.autoCenter(n)}},this.initWindows=function(){var n;e&&nt?(n=isNaN(parseInt(nt))?r.getPoi(0):r.getPoi(parseInt(nt)),n&&(n.center(!1),r.openDirections("",n,!1))):g&&(n=isNaN(parseInt(g))?r.getPoi(0):r.getPoi(parseInt(g)),n&&n.open())},this.autoCenter=function(n){var r,u,f;if(t.length==0){this.setCenter(0,0),typeof n=="number"?i.setZoom(n):i.setZoom(1);return}if(t.length==1){t[0].center(n);return}for(r=new google.maps.LatLngBounds,u=0;u<t.length;u++)f=t[u].getBounds(),r=f?r.union(f):r.extend(t[u].getPosition());if(n===!1){i.setCenter(r.getCenter());return}if(typeof n=="number"){i.setCenter(r.getCenter()),i.setZoom(n);return}i.fitBounds(r)},this.reset=function(){this.initCenter()},this.bigger=function(n,t,i){e&&e.close(),this.closeInfoWindow(),jQuery(n).text()==t?(jQuery(n).text(i),jQuery(p).width(si),this.resize("100%",li)):(jQuery(n).text(t),jQuery(p).width(cr),this.resize("100%",sr))},this.toJSON=function(){return{center:{lat:i.getCenter().lat(),lng:i.getCenter().lng()},height:tt,mapid:h,mapTypeId:i.getMapTypeId(),metaKey:ui,pois:t,title:it,width:rt,zoom:i.getZoom()}},this.ajaxSave=function(n){var t,i;t=typeof Prototype!="undefined"&&typeof Object.toJSON!="undefined"?Object.toJSON(r):t=JSON.stringify(r),i={action:"mapp_save",map:t,postid:mappl10n.postid},mapp.Ajax("POST",i,function(t){t.status=="OK"&&(h=t.data.mapid,n(t.data))})},this.ajaxDelete=function(n){h||n();var t={action:"mapp_delete",mapid:h};mapp.Ajax("POST",t,function(t){t.status=="OK"&&n()})}},mapp.Map.ajaxCreate=function(n,t,i){var r={action:"mapp_create"};mapp.Ajax("GET",r,function(r){if(r.status=="OK"){jQuery.extend(r.data.map.options,t),r.data.map.name=n;var u=new mapp.Map(r.data.map);i(u)}})},mapp.Map.ajaxGet=function(n,t,i,r){var u={action:"mapp_get",mapid:n};mapp.Ajax("GET",u,function(n){if(n.status=="OK"){jQuery.extend(n.data.map.options,i),n.data.map.name=t;var u=new mapp.Map(n.data.map);r(u)}})},mapp.Map.ajaxDelete=function(n,t){var i={action:"mapp_delete",mapid:n};mapp.Ajax("POST",i,function(n){n.status=="OK"&&t&&t()})},mapp.Ajax=function(n,t,i){jQuery.ajax({type:n,cache:!1,url:mappl10n.ajaxurl,data:t,success:function(n){if(n.output&&mappl10n.ajaxErrors&&alert("AJAX Error\r\n"+n.output),n.status=="OK"){i(n);return}mappl10n.ajaxErrors&&(typeof n=="object"?alert("AJAX Error\r\n"+n.status):alert("AJAX Error\r\n"+n))},error:function(n,t,i){typeof i!="undefined"&&i!=""&&mappl10n.ajaxErrors&&alert("AJAX ERROR\r\nStatus="+t+"\r\nError="+i+"\r\nResponseText="+n.responseText)}})},mapp.on=function(n,t,i,r){if(jQuery.fn.on)jQuery(n).on(t,i,r);else i?jQuery(n+" "+i).live(t,r):jQuery(n).live(t,r)};mapp.on("body","tabsshow",null,function(n,t){t&&t.panel&&jQuery(".mapp-canvas",t.panel).each(function(){var t=jQuery(this).attr("id"),n;t&&(n=window[t],n.getResized()||(n.resize(),n.initCenter()))})});this.JSON||(this.JSON={}),function(){function i(n){return n<10?"0"+n:n}function o(n){return f.lastIndex=0,f.test(n)?'"'+n.replace(f,function(n){var t=s[n];return typeof t=="string"?t:"\\u"+("0000"+n.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+n+'"'}function u(i,f){var h,l,c,a,v=n,s,e=f[i];e&&typeof e=="object"&&typeof e.toJSON=="function"&&(e=e.toJSON(i)),typeof t=="function"&&(e=t.call(f,i,e));switch(typeof e){case"string":return o(e);case"number":return isFinite(e)?String(e):"null";case"boolean":case"null":return String(e);case"object":if(!e)return"null";if(n+=r,s=[],Object.prototype.toString.apply(e)==="[object Array]"){for(a=e.length,h=0;h<a;h+=1)s[h]=u(h,e)||"null";return c=s.length===0?"[]":n?"[\n"+n+s.join(",\n"+n)+"\n"+v+"]":"["+s.join(",")+"]",n=v,c}if(t&&typeof t=="object")for(a=t.length,h=0;h<a;h+=1)l=t[h],typeof l=="string"&&(c=u(l,e))&&s.push(o(l)+(n?": ":":")+c);else for(l in e)Object.hasOwnProperty.call(e,l)&&(c=u(l,e))&&s.push(o(l)+(n?": ":":")+c);return c=s.length===0?"{}":n?"{\n"+n+s.join(",\n"+n)+"\n"+v+"}":"{"+s.join(",")+"}",n=v,c}}typeof Date.prototype.toJSON!="function"&&(Date.prototype.toJSON=function(){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+i(this.getUTCMonth()+1)+"-"+i(this.getUTCDate())+"T"+i(this.getUTCHours())+":"+i(this.getUTCMinutes())+":"+i(this.getUTCSeconds())+"Z":null},String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(){return this.valueOf()});var e=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,n,r,s={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},t;typeof JSON.stringify!="function"&&(JSON.stringify=function(i,f,e){var o;if(r=n="",typeof e=="number")for(o=0;o<e;o+=1)r+=" ";else typeof e=="string"&&(r=e);if((t=f)&&typeof f!="function"&&(typeof f!="object"||typeof f.length!="number"))throw Error("JSON.stringify");return u("",{"":i})}),typeof JSON.parse!="function"&&(JSON.parse=function(n,t){function r(n,i){var f,e,u=n[i];if(u&&typeof u=="object")for(f in u)Object.hasOwnProperty.call(u,f)&&(e=r(u,f),e!==undefined?u[f]=e:delete u[f]);return t.call(n,i,u)}var i;if(n=String(n),e.lastIndex=0,e.test(n)&&(n=n.replace(e,function(n){return"\\u"+("0000"+n.charCodeAt(0).toString(16)).slice(-4)})),/^[\],:{}\s]*$/.test(n.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return i=eval("("+n+")"),typeof t=="function"?r({"":i},""):i;throw new SyntaxError("JSON.parse");})}();(function(){jQuery.fn.mappColorpicker=function(n){var u={colors:["800000","FF0000","FFA500","FFFF00","808000","800080","FF00FF","FFFFFF","00FF00","008000","000080","0000FF","00FFFF","008080","000000","808080","C0C0C0",]};n=jQuery.extend(u,n);var r=function(n){var r=n.substr(1,2),i=n.substr(3,2),t=n.substr(5,2);return.212671*r+.71516*i+.072169*t<.5?"ffffff":"000000"},i=function(n){var t=n.val();n.css({"background-color":t,color:"#"+r(t)})},t=jQuery("#mapp_colorpicker");return t.length||(t=jQuery('<div id="mapp_colorpicker"><\/div>').appendTo(document.body).hide()),jQuery(document).click(function(n){jQuery(n.target).is("#mapp_colorpicker")||jQuery(n.target).parents("#mapp_colorpicker").length||t.hide()}),this.each(function(){var r=jQuery(this),u;i(r),u="",jQuery.each(n.colors,function(n,t){u+='<li><a href="#" style="background-color: #'+t+';">'+t+"<\/a><\/li>"}),r.keydown(function(n){n.keyCode===9&&t.hide()}),r.click(function(){var n=r.offset();return t.html("<ul>"+u+"<\/ul>").css({position:"absolute",left:n.left,top:n.top+r.outerHeight()}).show(),jQuery("a",t).click(function(){var n=jQuery(this).text();return r.val("#"+n),r.change(),t.hide(),!1}),!1}),r.change(function(){i(r)})})}})();var mapp=window.mapp||{};mapp.Directions=function(n,t,i,r,u){function y(){jQuery(".mapp-dir-swap",f).click(function(){var t=jQuery(".mapp-dir-daddr",f).val(),n=jQuery(".mapp-dir-saddr",f).val();return jQuery(".mapp-dir-saddr",f).val(t),jQuery(".mapp-dir-daddr",f).val(n),jQuery(".mapp-dir-get",f).click(),!1}),jQuery(".mapp-dir-get",f).click(function(){return o.getDirections(),!1}),jQuery(".mapp-dir-print",f).click(function(){o.printDirections()}),jQuery(".mapp-dir-close",f).click(function(){return o.close(),!1}),jQuery(".mapp-travelmode",f).click(function(){return jQuery(".mapp-travelmode",f).removeClass("mapp-travelmode-on"),jQuery(this).addClass("mapp-travelmode-on"),o.getDirections(),!1}),jQuery(".mapp-myloc",f).click(function(){return c.geolocate(function(n){n?(jQuery(".mapp-dir-saddr",f).val("("+n.coords.latitude+", "+n.coords.longitude+")"),jQuery(".mapp-dir-get",f).click()):alert(mappl10n.no_geolocate)}),!1})}function v(n,t,i){var r;r=jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-walk")?google.maps.DirectionsTravelMode.WALKING:jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-transit")?google.maps.DirectionsTravelMode.TRANSIT:jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-bike")?google.maps.DirectionsTravelMode.BICYCLING:google.maps.DirectionsTravelMode.DRIVING;var o=null,s={travelMode:r,transitOptions:{departureTime:o},provideRouteAlternatives:!0,origin:n,destination:t,unitSystem:w},u=jQuery(".mapp-dir-renderer",f).get(0);jQuery(".mapp-dir-renderer",f).empty(),l||(l=new google.maps.DirectionsService),l.route(s,function(n,t){switch(t){case google.maps.DirectionsStatus.OK:h.hidePois(),e?(e.setDirections(n),e.setMap(a),e.setPanel(u)):e=new google.maps.DirectionsRenderer({map:a,panel:u,directions:n,hideRouteList:!1,draggable:!0});break;case google.maps.DirectionsStatus.NOT_FOUND:alert(mappl10n.dir_not_found);break;case google.maps.DirectionsStatus.ZERO_RESULTS:alert(mappl10n.dir_zero_results);break;default:alert(mappl10n.dir_default+t)}i()})}var h=n,p=t,c=i,s=r,w=u,f=jQuery("#"+n.getName()+"_directions"),e,l,a=n.getMap(),o=this;s.toLowerCase().indexOf("http")==-1&&(s="https://"+s),y(),this.open=function(n,t,i){if(p=="google"){this.openGoogle(n,t,0);return}jQuery(f).show(),jQuery(".mapp-dir-saddr",f).val(n),jQuery(".mapp-dir-daddr",f).val(t),(i||typeof i=="undefined")&&(jQuery(".mapp-dir-get",f).focus(),jQuery(".mapp-dir-saddr",f).focus())},this.close=function(){jQuery(f).hide(),e&&(e.setPanel(null),e.getMap()&&(e.setMap(null),h.showPois()))},this.getDirections=function(){h.closeInfoWindow(),jQuery(".mapp-spinner",f).show();var i=jQuery(".mapp-dir-saddr",f),r=jQuery(".mapp-dir-daddr",f),n=jQuery(".mapp-dir-saddr-err",f),t=jQuery(".mapp-dir-daddr-err",f);c.geocodeField(i,n,function(n){c.geocodeField(r,t,function(t){n&&t?v(n,t,function(){jQuery(".mapp-spinner",f).hide();return}):jQuery(".mapp-spinner",f).hide()})})},this.printDirections=function(){var n;jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-walk")?n="w":jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-bike")&&(n="b"),this.openGoogle(jQuery(".mapp-dir-saddr",f).val(),jQuery(".mapp-dir-daddr",f).val(),3,n)},this.openGoogle=function(n,t,i,r){var u=s;u+="?saddr="+encodeURIComponent(n),u+="&daddr="+encodeURIComponent(t),u+="&pw="+i,u+=r?"&dirflg="+r:"",window.open(u)}};var mapp=window.mapp||{};mapp.Geocoder=function(n,t,i){function u(n,t){jQuery(n).removeClass("mapp-error"),jQuery(t).hide()}function f(n,t,i){jQuery(n).addClass("mapp-error"),jQuery(t).html(i),jQuery(t).show()}var o,e,s,c,h,r;o=i,c=t,h=n,s=h.getMap(),r=this,this.geocode=function(n,t){var i=n instanceof google.maps.LatLng?{latLng:n}:{address:n,region:o,language:c};i.bounds=s.getBounds(),e||(e=new google.maps.Geocoder),e.geocode(i,function(n,i){if(n){for(var r=0;r<n.length;r++)n[r].formatted_address==""&&n.splice(r,1);t(n[0],i)}else t(null,i)})},this.geolocate=function(n){if(!navigator||!navigator.geolocation)return null;navigator.geolocation.getCurrentPosition(function(t){n(t)},function(){n(null)},{timeout:1e4,enableHighAccuracy:!0,maximumAge:3e4})},this.stringToLatLng=function(n){var r=n.split(",",2),i=Number(r[0]),t=Number(r[1]);return isNaN(i)||isNaN(t)?!1:new google.maps.LatLng(i,t)},this.geocodeField=function(n,t,i){u(n,t),checkAddress(n,t,jQuery(n).val(),function(r){if(!r){f(n,t,mappl10n.no_address),i(null);return}if(r&&r.formatted_address){jQuery(n).val(r.formatted_address),i(r.formatted_address);return}i(r);return})},this.autocompleteField=function(n,t,i,e,o){jQuery(n).keypress(function(i){i.which==13&&(checkAddress(n,t,jQuery(n).val(),o),i.preventDefault())}),jQuery(i).click(function(){return checkAddress(n,t,jQuery(n).val(),o),!1}),jQuery(e).click(function(){return u(n,t),r.geolocate(function(i){if(i){var r="("+i.coords.latitude+", "+i.coords.longitude+")";jQuery(n).val(""),checkAddress(n,t,r,o)}else f(n,t,mappl10n.no_geolocate);return}),!1})},checkAddress=function(n,t,i,e){if(u(n,t),i=jQuery.trim(i),i==""){e(null);return}var o=r.stringToLatLng(i);if(o){e(o);return}if(i.substring(0,4)=="http"){e(i);return}r.geocode(i,function(i,r){if(!i||r!=google.maps.GeocoderStatus.OK){f(n,t,mappl10n.no_address),e(null);return}e(i);return})}},mapp.Geocoder.parseAddress=function(n){return!n||n==""?{firstLine:"",secondLine:""}:(n.lastIndexOf(", USA")>0||n.lastIndexOf(", United States")>0)&&(n.lastIndexOf(", USA")>0&&(n=n.slice(0,n.lastIndexOf(", USA"))),n.lastIndexOf(", United States")>0&&(n=n.slice(0,n.lastIndexOf(", United States"))),n.indexOf(",")==n.lastIndexOf(","))?{firstLine:n,secondLine:""}:n.indexOf(",")==-1?{firstLine:n,secondLine:""}:{firstLine:n.slice(0,n.indexOf(",")),secondLine:n.slice(n.indexOf(", ")+2)}};var mapp=window.mapp||{};mapp.Icons={},mapp.Icons.StandardIcons=["blue-dot","ltblue-dot","green-dot","pink-dot","purple-dot","red-dot","yellow-dot","blue","green","lightblue","pink","purple","red","yellow","blue-pushpin","grn-pushpin","ltblu-pushpin","pink-pushpin","purple-pushpin","red-pushpin","ylw-pushpin","bar","coffeehouse","man","wheel_chair_accessible","woman","restaurant","snack_bar","parkinglot","bus","cabs","ferry","helicopter","plane","rail","subway","tram","truck","info","info_circle","rainy","sailing","ski","snowflake_simple","swimming","water","fishing","flag","marina","campfire","campground","cycling","golfer","hiker","horsebackriding","motorcycling","picnic","POI","rangerstation","sportvenue","toilets","trail","tree","arts","conveniencestore","dollar","electronics","euro","gas","grocerystore","homegardenbusiness","mechanic","movies","realestate","salon","shopping","yen","caution","earthquake","fallingrocks","firedept","hospitals","lodging","phone","partly_cloudy","police","postoffice-us","sunny","volcano","camera","webcam","iimm1-blue","iimm1-green","iimm1-orange","iimm1-red","iimm2-blue","iimm2-green","iimm2-orange","iimm2-red","kml","poly"],mapp.Icons.get=function(n){var t,r,i;if(n=n?n:mappl10n.defaultIcon,n&&n!=""&&typeof n!="undefined"&&typeof mappl10n.standardIconsUrl!="undefined"){if(typeof mappl10n.icons!="undefined"&&typeof mappl10n.icons[n]!="undefined")r=mappl10n.iconsUrl+n,i=mappl10n.icons[n].shadow?mappl10n.iconsUrl+mappl10n.icons[n].shadow:null,t=mappl10n.icons[n].anchor;else if(jQuery.inArray(n,mapp.Icons.StandardIcons)>=0)r=mappl10n.standardIconsUrl+n+".png",i=n.indexOf("Marker")!=-1?"msmarker.shadow.png":n+".shadow.png",i=mappl10n.standardIconsUrl+i,t=[16,32];else return;return t=t?new google.maps.Point(t[0],t[1]):null,{url:r,shadowUrl:i,anchor:t}}},mapp.Icons.getUrl=function(n){var t=mapp.Icons.get(n);return t?t.url:"https://maps.google.com/intl/en_us/mapfiles/ms/micons/red-dot.png"},function(){jQuery.fn.mappIconPicker=function(n){var t={open:null,close:null,dialog:null};if(typeof mappl10n.id!="undefined"&&jQuery(".mapp-icon-picker").length!=0)return n=jQuery.extend(t,n),this.each(function(){var i=jQuery(this),r,t;i.after("<img class='mapp-icon' src='"+mapp.Icons.getUrl(i.val())+"' title='"+mappl10n.click_to_change+"' />"),r=i.next(),r.click(function(){function e(n){var i=jQuery(n.target);jQuery(t).has(i).length||u()}function u(u){jQuery(document).off("click",e),typeof u!="undefined"&&(i.attr("name")=="mappress_options[defaultIcon]"&&(mappl10n.defaultIcon=u),i.val(u),jQuery(r).attr("src",mapp.Icons.getUrl(u))),n.close&&n.close(u),n.dialog?t.empty():t.remove()}if(t=n.dialog?n.dialog:jQuery('<div id="mapp_icon_picker_dialog"><\/div>').appendTo(document.body).hide(),t.append(jQuery("#mapp_icon_picker").contents().clone()),t.show(),!n.dialog){var f=r.offset();t.css({left:f.left-parseInt(t.outerWidth()/2)+16,top:f.top+r.outerHeight()})}return jQuery(".mapp-icon-picker-cancel",t).click(function(){return u(),!1}),jQuery(".mapp-icon-picker-default",t).click(function(){return u(null),!1}),jQuery("li",t).click(function(){return u(jQuery(this).attr("data-iconid")),!1}),n.dialog||jQuery(document).click(e),n.open&&n.open(),!1})})}}();var mapp=window.mapp||{};mapp.InfoBox=function(){var u,f,n,i,t,r=this;this.setContent=function(n){u=n},this.onAdd=function(){n=jQuery("<div class='mapp-ib'><div class='mapp-ib-close'>X<\/div><\/div>"),t=jQuery("<div class='mapp-ib-tip'><\/div>"),typeof u=="string"?jQuery(n).append(u):jQuery(n).append(jQuery(u)),jQuery("body").append(n),jQuery("body").append(t),jQuery(".mapp-ib-close",n).click(function(){r.close()}),jQuery(window).resize(function(){r.close()}),this.draw(),google.maps.event.trigger(this,"domready")},this.draw=function(){var u=r.getProjection().fromLatLngToContainerPixel(i),e,o,s;if(u.x=parseInt(u.x),u.y=parseInt(u.y),e=jQuery(this.getMap().getDiv()),u.x>e.width()||u.x<0||u.y>e.height()||u.y<0){jQuery(n).hide(),jQuery(t).hide();return}jQuery(n).show(),jQuery(t).show(),o=e.offset().left+u.x,s=e.offset().top+u.y-32,jQuery(t).offset({top:s-t.outerHeight()-2,left:o-parseInt(t.outerWidth()/2)});var f=o-parseInt(n.outerWidth()/2),c=s-n.outerHeight()-t.outerHeight(),h=jQuery(document).width();f+n.outerWidth()>h&&(f=Math.max(h-n.outerWidth(),o-n.outerWidth()+parseInt(t.outerWidth()/2))),f<0&&(f=0),jQuery(n).offset({top:c,left:f})},this.onRemove=function(){jQuery(n).remove(),jQuery(t).remove()},this.setPosition=function(n){i=n},this.open=function(n,t){f=n,t&&(i=typeof t.getPosition=="function"?t.getPosition():t.getBounds().getCenter()),this.setMap(f),this.disableAutoPan&&n.getBounds().contains(i)||f.panTo(i),google.maps.event.addListenerOnce(n,"drag",function(){r.close()}),google.maps.event.addListenerOnce(n,"click",function(){r.close()})},this.close=function(){google.maps.event.trigger(this,"closeclick"),this.setMap(null)}}
1
+ var mapp=window.mapp||{};mapp.Poi=function(){this.address=null,this.body=null,this.html=null,this.iconid=null,this.map=null,this.overlay=null,this.postid=null,this.title="",this.url=null,this.type=null,this.viewport=null;for(var n in arguments[0])typeof arguments[0][n]!="undefined"&&(this[n]=arguments[0][n])},mapp.Poi.prototype={fromJSON:function(n){var f,u,i,o,t,r,s,e;this.address=n.correctedAddress,this.body=n.body,this.correctedAddress=n.correctedAddress,this.html=n.html,this.iconid=n.iconid,this.postid=n.postid,this.title=n.title,this.type=n.type,this.url=n.url,n.viewport&&(f=new google.maps.LatLng(n.viewport.sw.lat,n.viewport.sw.lng),u=new google.maps.LatLng(n.viewport.ne.lat,n.viewport.ne.lng),this.viewport=f.lat()==0&&f.lng()==0&&u.lat()==0&&u.lng()==0?null:new google.maps.LatLngBounds(f,u)),i=[],o=[];switch(this.type){case"polygon":if(n.poly&&n.poly.paths)for(t=0;t<n.poly.paths.length;t++){for(i=[],r=0;r<n.poly.paths[t].length;r++)i.push(new google.maps.LatLng(n.poly.paths[t][r].lat,n.poly.paths[t][r].lng));o.push(new google.maps.MVCArray(i))}this.overlay=new google.maps.Polygon({paths:new google.maps.MVCArray(o)}),this.setColors(n.poly);break;case"polyline":if(n.poly&&n.poly.path)for(t=0;t<n.poly.path.length;t++)i.push(new google.maps.LatLng(n.poly.path[t].lat,n.poly.path[t].lng));this.overlay=new google.maps.Polyline({path:new google.maps.MVCArray(i)}),this.setColors(n.poly);break;case"circle":e=new google.maps.LatLng(n.point.lat,n.point.lng),this.overlay=new google.maps.Circle({center:e,radius:parseFloat(n.poly.radius)}),this.setColors(n.poly);break;case"rectangle":this.overlay=new google.maps.Rectangle({bounds:this.viewport}),this.setColors(n.poly);break;case"kml":s=n.kml&&n.kml.url?n.kml.url:"",this.overlay=new google.maps.KmlLayer(s,{preserveViewport:!0,suppressInfoWindows:!0});break;case"":default:e=new google.maps.LatLng(n.point.lat,n.point.lng),this.overlay=new google.maps.Marker({position:e})}},toJSON:function(){var n={address:this.address,body:this.body,correctedAddress:this.address,iconid:this.iconid,point:null,poly:null,title:this.title,type:this.type,viewport:null},r=this.getPosition(),t,i;if(n.point={lat:r.lat(),lng:r.lng()},t=this.viewport?this.viewport:this.getBounds(),t&&(n.viewport={sw:{lat:t.getSouthWest().lat(),lng:t.getSouthWest().lng()},ne:{lat:t.getNorthEast().lat(),lng:t.getNorthEast().lng()}}),this.type=="kml"&&(n.kml={url:this.overlay.getUrl()},i=this.overlay.getDefaultViewport(),n.viewport={sw:{lat:i.getSouthWest().lat(),lng:i.getSouthWest().lng()},ne:{lat:i.getNorthEast().lat(),lng:i.getNorthEast().lng()}}),this.isPoly()){n.poly=this.getColors();switch(this.type){case"circle":n.poly.radius=this.overlay.getRadius();break;case"polyline":n.poly.path=[],this.overlay.getPath().forEach(function(t){n.poly.path.push({lat:t.lat(),lng:t.lng()})});break;case"polygon":n.poly.paths=[],this.overlay.getPaths().forEach(function(t){var i=[];t.forEach(function(n){i.push({lat:n.lat(),lng:n.lng()})}),n.poly.paths.push(i)})}}return n},setTooltip:function(n){this.map.getTooltips()&&(this.type||(n?this.overlay.setTitle(n):this.overlay.setTitle(jQuery("<div>").html(this.title).text())))},setMap:function(n){var t=this;if(google.maps.event.clearInstanceListeners(this.overlay),n==null){this.overlay.setMap(null);return}this.type=="kml"&&(google.maps.event.addListener(this.overlay,"defaultviewport_changed",function(){t.viewport=t.overlay.getDefaultViewport()}),google.maps.event.addListener(this.overlay,"status_changed",function(){var n=t.overlay.getStatus();n!="OK"&&mappl10n.ajaxErrors&&alert(mappl10n.kml_error+":"+n)})),this.map=n,this.overlay.setMap(n.getMap()),this.setEditable(this.map.getEditable()),this.setIcon(this.iconid),this.setZIndex(0),this.setTooltip(),google.maps.event.addListener(this.overlay,"click",function(n){t.open(n)})},setEditable:function(n){var t=this;if(this.isPoly()){t.overlay.setEditable(n),n&&(google.maps.event.addListener(this.overlay,"click",function(){t.overlay.setEditable(!0)}),google.maps.event.addListener(this.overlay,"mouseover",function(){t.overlay.setEditable(!0)}));return}this.type!="kml"&&(this.overlay.setDraggable(n),n?(this.setTooltip(mappl10n.click_and_drag),google.maps.event.addListener(this.overlay,"dragstart",function(){t.map.closeInfoWindow()}),google.maps.event.addListener(this.overlay,"dragend",function(n){t.viewport=null,t.address=null,t.map.openPoi(t),google.maps.event.trigger(t.map,"dragend",t,n)})):this.setTooltip())},getZIndex:function(){return this.type?this.overlay.zIndex:this.overlay.getZIndex()},setZIndex:function(n){this.type?this.overlay.zIndex=n:this.overlay.setZIndex(n)},setIcon:function(n){if(!this.type){this.overlay.setIcon(null),this.overlay.setShadow(null);var t=mapp.Icons.get(n);t&&(t.anchor?(this.overlay.setIcon(new google.maps.MarkerImage(t.url,null,null,t.anchor,null)),this.overlay.setShadow(new google.maps.MarkerImage(t.shadowUrl,null,null,t.anchor,null))):(this.overlay.setIcon(t.url),this.overlay.setShadow(t.shadowUrl)))}},getImage:function(n){var t=mapp.Icons.getUrl(this.iconid);return n=n?n:"","<img class='"+n+"' src='"+t+"' />"},setVisible:function(n){typeof this.overlay.setVisible!="undefined"&&this.overlay.setVisible(n)},setColors:function(n){var r={strokeColor:"",strokeOpacity:"",strokeWeight:"",fillColor:"",fillOpacity:""},i={},t;for(t in r)n&&typeof n[t]!="undefined"&&(i[t]=n[t]);this.overlay.setOptions(i)},getColors:function(){var i={strokeColor:"",strokeOpacity:"",strokeWeight:"",fillColor:"",fillOpacity:""},t={},n;for(n in i)typeof this.overlay[n]!="undefined"&&(t[n]=this.overlay[n]);return t},center:function(n){var t=this.map.getMap(),i;if(!n){t.setCenter(this.getPosition());return}if(typeof n=="number"){t.setCenter(this.getPosition()),t.setZoom(n);return}i=this.getBounds(),i?(t.fitBounds(i),t.setCenter(this.getPosition())):(t.setCenter(this.getPosition()),t.setZoom(this.map.getPoiZoom()))},open:function(n){this.map.openPoi(this,n)},zoomIn:function(){var n=this.map.getMap(),r=n.getZoom(),t=this.getBounds(),i=Math.min(r+2,21);t&&n.fitBounds(t),i>n.getZoom()&&n.setZoom(i),n.setCenter(this.getPosition())},isPoly:function(){return jQuery.inArray(this.type,["polyline","polygon","circle","rectangle"])!=-1},getBounds:function(){var n;if(!this.map.getEditable()&&this.viewport)return this.viewport;switch(this.type){case"polyline":n=new google.maps.LatLngBounds,this.overlay.getPath().forEach(function(t){n.extend(t)});break;case"polygon":n=new google.maps.LatLngBounds,this.overlay.getPaths().forEach(function(t){t.forEach(function(t){n.extend(t)})});break;case"rectangle":case"circle":n=this.overlay.getBounds();break;case"kml":n=this.overlay.getDefaultViewport();break;default:return this.viewport?this.viewport:null}return n},getPosition:function(){if(this.type){var n=this.getBounds();return n?n.getCenter():new google.maps.LatLng(0,0)}return this.overlay.getPosition()},click:function(){google.maps.event.trigger(this.overlay,"click")}};var mapp=window.mapp||{};mapp.Map=function(n){function ht(){var c,l,f;if(!s&&(s=["roadmap","satellite","terrain","hybrid"],mapp.Styles))for(c in mapp.Styles)s.push(c);for(o=o?new google.maps.LatLng(n.center.lat,n.center.lng):new google.maps.LatLng(0,0),l={backgroundColor:"transparent",center:o,draggable:bt,keyboardShortcuts:at,mapTypeControl:di,mapTypeControlOptions:{style:ki,mapTypeIds:s},maxZoom:nr,minZoom:ii,overviewMapControl:yi,overviewMapControlOptions:{opened:vi},panControl:pi,rotateControl:wi,scaleControl:ir,scrollwheel:hr,streetViewControl:ar,tilt:ur,zoom:v?v:0,zoomControl:er,zoomControlOptions:{style:ai}},i=new google.maps.Map(a,l),f=0;f<t.length;f++)t[f].setMap(r);ri(),r.setMapTypeId(fi),ei(),h=="ib"?(mapp.InfoBox.prototype=new google.maps.OverlayView,u=new mapp.InfoBox):u=new google.maps.InfoWindow,h=="ib"&&(at=!1),et=new mapp.Geocoder(r,gi,hi),vt!="none"&&(e=new mapp.Directions(r,vt,et,dt,wt)),r.initCenter(),oi&&jQuery(window).resize(function(){r.resize()})}function ri(){var n,t,r;for(n in mapp.Styles)t=mapp.Styles[n],r=new google.maps.StyledMapType(t,{name:n}),i.mapTypes.set(n,r),lr==n&&i.setOptions({styles:t})}function ei(){fr&&ft("traffic",mappl10n.traffic,ni),ci&&ft("bicycling",mappl10n.bike,kt),or&&ft("transit",mappl10n.transit,gt)}function ft(n,t,r){var e=f+"_"+n,s=r?"checked='checked'":"",o="<div class='gmnoprint mapp-control'><input type='checkbox' id='"+e+"' "+s+" /> "+t+"<\/div>",u=jQuery(o).get(0);i.controls[google.maps.ControlPosition.TOP_RIGHT].push(u),r&&st(n),google.maps.event.clearListeners(u,"click"),google.maps.event.addDomListener(u,"click",function(){st(n)})}function st(n){var r=f+"_"+n,t;switch(n){case"transit":y=y?y:new google.maps.TransitLayer,t=y;break;case"traffic":b=b?b:new google.maps.TrafficLayer,t=b;break;case"bicycling":nt=nt?nt:new google.maps.BicyclingLayer,t=nt}t.getMap()?(jQuery("#"+r).prop("checked",!1),t.setMap(null)):(jQuery("#"+r).prop("checked",!0),t.setMap(i))}var o=n.center,k=n.height,c=n.mapid,fi=n.mapTypeId?n.mapTypeId:"roadmap",ui=n.metaKey,f=n.name,lt=n.options,yt=n.query,ut=n.title,g=n.width,v=parseInt(n.zoom,10),oi=n.options.adaptive,ci=n.options.bicycling,li=n.options.bigHeight,si=n.options.bigWidth,hi=n.options.country,rt=n.options.dataTables,vt=n.options.directions,dt=n.options.directionsServer,wt=n.options.directionsUnits,bt=n.options.draggable,ti=n.options.editable,kt=n.options.initialBicycling,it=n.options.initialOpenDirections,tt=n.options.initialOpenInfo,ni=n.options.initialTraffic,gt=n.options.initialTransit,h=n.options.iwType,pt=n.options.iwDisableAutoPan,at=n.options.keyboardShortcuts,gi=n.options.language,di=n.options.mapTypeControl,ki=parseInt(n.options.mapTypeControlStyle,10),s=n.options.mapTypeIds,tr=n.options.mashupClick,nr=parseInt(n.options.maxZoom),ii=parseInt(n.options.minZoom),yi=n.options.overviewMapControl,vi=n.options.overviewMapControlOpened,pi=n.options.panControl,bi=n.options.poiZoom,wi=n.options.rotateControl,ir=n.options.scaleControl,hr=n.options.scrollwheel,sr=n.height,cr=n.width,ar=n.options.streetViewControl,lr=n.options.style,ur=parseInt(n.options.tilt),rr=n.options.tooltips,fr=n.options.traffic,or=n.options.transit,er=n.options.zoomControl,ai=parseInt(n.options.zoomControlStyle,10),r=this,nt,b,y,e=null,w,ot,p,a,l,et=null,i=null,u=null,t=[],ct=!1,d=0;this.display=function(){if(w=jQuery("#"+f+"_dialog"),ot=jQuery("#"+f+"_directions"),p=jQuery("#"+f+"_layout"),a=document.getElementById(f),l=jQuery("#"+f+"_poi_list"),!a){typeof console!="undefined"&&console.log("MapPress: Missing map name or container for map: "+f);return}if(typeof google=="undefined"){typeof console!="undefined"&&console.log("MapPress: Google API not loaded");return}if(ot.append(jQuery("#"+f+"_directions_").contents()),l.append(jQuery("#"+f+"_poi_list_").contents()),this.setDataTables(),yt){this.ajaxQuery(function(){ht()});return}r.setPois(n.pois,!1),ht()},this.ajaxQuery=function(n,t){e&&e.close(),u&&r.closeInfoWindow(),r.setDialog(),t=t?t:1;var i={action:"mapp_query",name:f,query:yt,options:lt};mapp.Ajax("POST",i,function(t){t.status=="OK"&&(r.hideDialog(),r.setPois(t.data.pois,!0),r.setPoiList(t.data.poiList),n&&n())})},this.setDialog=function(n){n=n?n:'<span class="mapp-spinner"><\/span>'+mappl10n.loading,n='<div class="mapp-dialog-inner">'+n+"<\/div>",jQuery(w).html(n),jQuery(w).show()},this.hideDialog=function(){jQuery(w).hide()},this.setPoiList=function(n){typeof n=="string"?l.html(n):l.append(n),this.setDataTables()},this.setDataTables=function(){if(rt&&typeof jQuery.fn.dataTable!="undefined"){var n=rt==!0?{bFilter:!1,bPaginate:!1}:rt;jQuery("table",l).dataTable(n)}},this.getOptions=function(){return lt},this.getResized=function(){return ct},this.show=function(){p.show(),this.display()},this.closeInfoWindow=function(){u.close()},this.openDirections=function(n,t,i){var u,r;typeof n=="object"?(u=n.address?n.address:n.getPosition().toUrlValue(),n.open()):u=n,typeof t=="object"?(r=t.address?t.address:t.getPosition().toUrlValue(),t.open()):r=t,e.open(u,r,i)},this.setMapTypeId=function(n){n=n&&jQuery.inArray(n,s)!=-1?n:s[0],i.setMapTypeId(n)},this.setCenter=function(n,t){i.setCenter(new google.maps.LatLng(n,t))},this.setZoom=function(n){i.setZoom(n)},this.getPoiZoom=function(){return parseInt(bi)},this.poiToFront=function(n){if(d++,d>google.maps.Marker.MAX_ZINDEX){d=1;for(var i=0;i<t.length;i++)t[i].setZIndex(0)}n.setZIndex(d)},this.getMap=function(){return i},this.getGeocoder=function(){return et},this.getName=function(){return f},this.setName=function(n){f=n},this.getMapid=function(){return c},this.setMapid=function(n){c=n},this.getTitle=function(){return ut},this.setTitle=function(n){ut=n},this.getWidth=function(){return g},this.setWidth=function(n){g=n},this.getHeight=function(){return k},this.setHeight=function(n){k=n},this.getInfoWindow=function(){return u},this.getEditable=function(){return ti},this.getTooltips=function(){return rr},this.getPoi=function(n){return typeof n=="string"&&(n=parseInt(n,10)),t[n]},this.getPoiById=function(n){for(var i=0;i<t.length;i++)if(t[i].postid==n)return t[i];return null},this.getPois=function(){return t},this.insertPoi=function(n){t.unshift(n),n.setMap(this)},this.addPoi=function(n){t.push(n),n.setMap(this)},this.removePoi=function(n){var i=jQuery.inArray(n,t);i!=-1&&(t[i].setMap(null),t.splice(i,1))},this.setPois=function(n,i){for(var u,r=0;r<t.length;r++)t[r].setMap(null);for(t=[],r=0;r<n.length;r++)u=new mapp.Poi,u.fromJSON(n[r]),t.push(u),i&&u.setMap(this)},this.showPois=function(){for(var n=0;n<t.length;n++)t[n].setVisible(!0)},this.hidePois=function(){for(var n=0;n<t.length;n++)t[n].setVisible(!1)},this.sortPois=function(n){for(var u=Array(),r,i=0;i<n.length;i++){if(r=parseInt(n[i]),isNaN(r))return!1;u.push(t[r])}return u.length!=t.length?!1:(t=u,!0)},this.openPoi=function(n,t){var u,i;if(h&&h!="none"){if(tr=="post"&&n.url){window.location.assign(n.url);return}i={html:null},google.maps.event.trigger(r,"poicontent",n,i),u=i.content?i.content:t&&typeof t.featureData!="undefined"?t.featureData.infoWindowHtml:n.html,this.openInfoWindow(n,u,t)}},this.openInfoWindow=function(n,t,f){if(e&&e.close(),h&&h!="none"){if(this.poiToFront(n),u.close(),u.setContent(t),google.maps.event.addListenerOnce(u,"domready",function(){google.maps.event.trigger(r,"poidomready",n)}),pt){u.setOptions({disableAutoPan:pt});var o=i.getBounds();o.contains(n.getPosition())||n.center()}n.type=="kml"&&f?(u.setOptions({pixelOffset:f.pixelOffset,position:f.latLng}),u.open(i)):n.type?(u.setOptions({position:n.getPosition()}),u.open(i)):u.open(i,n.overlay)}},this.closeInfoWindow=function(){u.close()},this.resize=function(n,t){var r=i.getCenter();n&&t&&(jQuery(a).width(n),jQuery(a).height(t),g=n,k=t),google.maps.event.trigger(i,"resize"),i.setCenter(r),ct=!0;return},this.initCenter=function(){if(this.closeInfoWindow(),google.maps.event.addListenerOnce(i,"idle",function(){r.initWindows()}),o&&o.lat()&&o.lng())i.setCenter(o),i.setZoom(v);else{var n=v?v:!0;r.autoCenter(n)}},this.initWindows=function(){var n;e&&it?(n=isNaN(parseInt(it))?r.getPoi(0):r.getPoi(parseInt(it)),n&&(n.center(!1),r.openDirections("",n,!1))):tt&&(n=isNaN(parseInt(tt))?r.getPoi(0):r.getPoi(parseInt(tt)),n&&n.open())},this.autoCenter=function(n){var r,u,f;if(t.length==0){this.setCenter(0,0),typeof n=="number"?i.setZoom(n):i.setZoom(1);return}if(t.length==1){t[0].center(n);return}for(r=new google.maps.LatLngBounds,u=0;u<t.length;u++)f=t[u].getBounds(),r=f?r.union(f):r.extend(t[u].getPosition());if(n===!1){i.setCenter(r.getCenter());return}if(typeof n=="number"){i.setCenter(r.getCenter()),i.setZoom(n);return}i.fitBounds(r)},this.reset=function(){this.initCenter()},this.bigger=function(n,t,i){e&&e.close(),this.closeInfoWindow(),jQuery(n).text()==t?(jQuery(n).text(i),jQuery(p).width(si),this.resize("100%",li)):(jQuery(n).text(t),jQuery(p).width(cr),this.resize("100%",sr))},this.toJSON=function(){return{center:{lat:i.getCenter().lat(),lng:i.getCenter().lng()},height:k,mapid:c,mapTypeId:i.getMapTypeId(),metaKey:ui,pois:t,title:ut,width:g,zoom:i.getZoom()}},this.ajaxSave=function(n){var t,i;t=typeof Prototype!="undefined"&&typeof Object.toJSON!="undefined"?Object.toJSON(r):t=JSON.stringify(r),i={action:"mapp_save",map:t,postid:mappl10n.postid},mapp.Ajax("POST",i,function(t){t.status=="OK"&&(c=t.data.mapid,n(t.data))})},this.ajaxDelete=function(n){c||n();var t={action:"mapp_delete",mapid:c};mapp.Ajax("POST",t,function(t){t.status=="OK"&&n()})}},mapp.Map.ajaxCreate=function(n,t,i){var r={action:"mapp_create"};mapp.Ajax("GET",r,function(r){if(r.status=="OK"){jQuery.extend(r.data.map.options,t),r.data.map.name=n;var u=new mapp.Map(r.data.map);i(u)}})},mapp.Map.ajaxGet=function(n,t,i,r){var u={action:"mapp_get",mapid:n};mapp.Ajax("GET",u,function(n){if(n.status=="OK"){jQuery.extend(n.data.map.options,i),n.data.map.name=t;var u=new mapp.Map(n.data.map);r(u)}})},mapp.Map.ajaxDelete=function(n,t){var i={action:"mapp_delete",mapid:n};mapp.Ajax("POST",i,function(n){n.status=="OK"&&t&&t()})},mapp.Ajax=function(n,t,i){jQuery.ajax({type:n,cache:!1,url:mappl10n.ajaxurl,data:t,success:function(n){if(n.output&&mappl10n.ajaxErrors&&alert("AJAX Error\r\n"+n.output),n.status=="OK"){i(n);return}mappl10n.ajaxErrors&&(typeof n=="object"?alert("AJAX Error\r\n"+n.status):alert("AJAX Error\r\n"+n))},error:function(n,t,i){typeof i!="undefined"&&i!=""&&mappl10n.ajaxErrors&&alert("AJAX ERROR\r\nStatus="+t+"\r\nError="+i+"\r\nResponseText="+n.responseText)}})},mapp.on=function(n,t,i,r){if(jQuery.fn.on)jQuery(n).on(t,i,r);else i?jQuery(n+" "+i).live(t,r):jQuery(n).live(t,r)};mapp.on("body","tabsshow",null,function(n,t){t&&t.panel&&jQuery(".mapp-canvas",t.panel).each(function(){var t=jQuery(this).attr("id"),n;t&&(n=window[t],n.getResized()||(n.resize(),n.initCenter()))})});mapp.on("body","tabsactivate",null,function(n,t){t&&t.newPanel&&jQuery(".mapp-canvas",t.newPanel).each(function(){var t=jQuery(this).attr("id"),n;t&&(n=window[t],n.getResized()||(n.resize(),n.initCenter()))})});this.JSON||(this.JSON={}),function(){function i(n){return n<10?"0"+n:n}function o(n){return f.lastIndex=0,f.test(n)?'"'+n.replace(f,function(n){var t=s[n];return typeof t=="string"?t:"\\u"+("0000"+n.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+n+'"'}function u(i,f){var h,l,c,a,v=n,s,e=f[i];e&&typeof e=="object"&&typeof e.toJSON=="function"&&(e=e.toJSON(i)),typeof t=="function"&&(e=t.call(f,i,e));switch(typeof e){case"string":return o(e);case"number":return isFinite(e)?String(e):"null";case"boolean":case"null":return String(e);case"object":if(!e)return"null";if(n+=r,s=[],Object.prototype.toString.apply(e)==="[object Array]"){for(a=e.length,h=0;h<a;h+=1)s[h]=u(h,e)||"null";return c=s.length===0?"[]":n?"[\n"+n+s.join(",\n"+n)+"\n"+v+"]":"["+s.join(",")+"]",n=v,c}if(t&&typeof t=="object")for(a=t.length,h=0;h<a;h+=1)l=t[h],typeof l=="string"&&(c=u(l,e))&&s.push(o(l)+(n?": ":":")+c);else for(l in e)Object.hasOwnProperty.call(e,l)&&(c=u(l,e))&&s.push(o(l)+(n?": ":":")+c);return c=s.length===0?"{}":n?"{\n"+n+s.join(",\n"+n)+"\n"+v+"}":"{"+s.join(",")+"}",n=v,c}}typeof Date.prototype.toJSON!="function"&&(Date.prototype.toJSON=function(){return isFinite(this.valueOf())?this.getUTCFullYear()+"-"+i(this.getUTCMonth()+1)+"-"+i(this.getUTCDate())+"T"+i(this.getUTCHours())+":"+i(this.getUTCMinutes())+":"+i(this.getUTCSeconds())+"Z":null},String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(){return this.valueOf()});var e=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,f=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,n,r,s={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},t;typeof JSON.stringify!="function"&&(JSON.stringify=function(i,f,e){var o;if(r=n="",typeof e=="number")for(o=0;o<e;o+=1)r+=" ";else typeof e=="string"&&(r=e);if((t=f)&&typeof f!="function"&&(typeof f!="object"||typeof f.length!="number"))throw Error("JSON.stringify");return u("",{"":i})}),typeof JSON.parse!="function"&&(JSON.parse=function(n,t){function r(n,i){var f,e,u=n[i];if(u&&typeof u=="object")for(f in u)Object.hasOwnProperty.call(u,f)&&(e=r(u,f),e!==undefined?u[f]=e:delete u[f]);return t.call(n,i,u)}var i;if(n=String(n),e.lastIndex=0,e.test(n)&&(n=n.replace(e,function(n){return"\\u"+("0000"+n.charCodeAt(0).toString(16)).slice(-4)})),/^[\],:{}\s]*$/.test(n.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,"")))return i=eval("("+n+")"),typeof t=="function"?r({"":i},""):i;throw new SyntaxError("JSON.parse");})}();(function(){jQuery.fn.mappColorpicker=function(n){var u={colors:["800000","FF0000","FFA500","FFFF00","808000","800080","FF00FF","FFFFFF","00FF00","008000","000080","0000FF","00FFFF","008080","000000","808080","C0C0C0",]};n=jQuery.extend(u,n);var r=function(n){var r=n.substr(1,2),i=n.substr(3,2),t=n.substr(5,2);return.212671*r+.71516*i+.072169*t<.5?"ffffff":"000000"},i=function(n){var t=n.val();n.css({"background-color":t,color:"#"+r(t)})},t=jQuery("#mapp_colorpicker");return t.length||(t=jQuery('<div id="mapp_colorpicker"><\/div>').appendTo(document.body).hide()),jQuery(document).click(function(n){jQuery(n.target).is("#mapp_colorpicker")||jQuery(n.target).parents("#mapp_colorpicker").length||t.hide()}),this.each(function(){var r=jQuery(this),u;i(r),u="",jQuery.each(n.colors,function(n,t){u+='<li><a href="#" style="background-color: #'+t+';">'+t+"<\/a><\/li>"}),r.keydown(function(n){n.keyCode===9&&t.hide()}),r.click(function(){var n=r.offset();return t.html("<ul>"+u+"<\/ul>").css({position:"absolute",left:n.left,top:n.top+r.outerHeight()}).show(),jQuery("a",t).click(function(){var n=jQuery(this).text();return r.val("#"+n),r.change(),t.hide(),!1}),!1}),r.change(function(){i(r)})})}})();var mapp=window.mapp||{};mapp.Directions=function(n,t,i,r,u){function y(){jQuery(".mapp-dir-swap",f).click(function(){var t=jQuery(".mapp-dir-daddr",f).val(),n=jQuery(".mapp-dir-saddr",f).val();return jQuery(".mapp-dir-saddr",f).val(t),jQuery(".mapp-dir-daddr",f).val(n),jQuery(".mapp-dir-get",f).click(),!1}),jQuery(".mapp-dir-get",f).click(function(){return o.getDirections(),!1}),jQuery(".mapp-dir-print",f).click(function(){o.printDirections()}),jQuery(".mapp-dir-close",f).click(function(){return o.close(),!1}),jQuery(".mapp-travelmode",f).click(function(){return jQuery(".mapp-travelmode",f).removeClass("mapp-travelmode-on"),jQuery(this).addClass("mapp-travelmode-on"),o.getDirections(),!1}),jQuery(".mapp-myloc",f).click(function(){return c.geolocate(function(n){n?(jQuery(".mapp-dir-saddr",f).val("("+n.coords.latitude+", "+n.coords.longitude+")"),jQuery(".mapp-dir-get",f).click()):alert(mappl10n.no_geolocate)}),!1})}function v(n,t,i){var r;r=jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-walk")?google.maps.DirectionsTravelMode.WALKING:jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-transit")?google.maps.DirectionsTravelMode.TRANSIT:jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-bike")?google.maps.DirectionsTravelMode.BICYCLING:google.maps.DirectionsTravelMode.DRIVING;var o=null,s={travelMode:r,transitOptions:{departureTime:o},provideRouteAlternatives:!0,origin:n,destination:t,unitSystem:w},u=jQuery(".mapp-dir-renderer",f).get(0);jQuery(".mapp-dir-renderer",f).empty(),l||(l=new google.maps.DirectionsService),l.route(s,function(n,t){switch(t){case google.maps.DirectionsStatus.OK:h.hidePois(),e?(e.setDirections(n),e.setMap(a),e.setPanel(u)):e=new google.maps.DirectionsRenderer({map:a,panel:u,directions:n,hideRouteList:!1,draggable:!0});break;case google.maps.DirectionsStatus.NOT_FOUND:alert(mappl10n.dir_not_found);break;case google.maps.DirectionsStatus.ZERO_RESULTS:alert(mappl10n.dir_zero_results);break;default:alert(mappl10n.dir_default+t)}i()})}var h=n,p=t,c=i,s=r,w=u,f=jQuery("#"+n.getName()+"_directions"),e,l,a=n.getMap(),o=this;s.toLowerCase().indexOf("http")==-1&&(s="https://"+s),y(),this.open=function(n,t,i){if(p=="google"){this.openGoogle(n,t,0);return}jQuery(f).show(),jQuery(".mapp-dir-saddr",f).val(n),jQuery(".mapp-dir-daddr",f).val(t),(i||typeof i=="undefined")&&(jQuery(".mapp-dir-get",f).focus(),jQuery(".mapp-dir-saddr",f).focus())},this.close=function(){jQuery(f).hide(),e&&(e.setPanel(null),e.getMap()&&(e.setMap(null),h.showPois()))},this.getDirections=function(){h.closeInfoWindow(),jQuery(".mapp-spinner",f).show();var i=jQuery(".mapp-dir-saddr",f),r=jQuery(".mapp-dir-daddr",f),n=jQuery(".mapp-dir-saddr-err",f),t=jQuery(".mapp-dir-daddr-err",f);c.geocodeField(i,n,function(n){c.geocodeField(r,t,function(t){n&&t?v(n,t,function(){jQuery(".mapp-spinner",f).hide();return}):jQuery(".mapp-spinner",f).hide()})})},this.printDirections=function(){var n;jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-walk")?n="w":jQuery(".mapp-travelmode-on > span",f).hasClass("mapp-dir-bike")&&(n="b"),this.openGoogle(jQuery(".mapp-dir-saddr",f).val(),jQuery(".mapp-dir-daddr",f).val(),3,n)},this.openGoogle=function(n,t,i,r){var u=s;u+="?saddr="+encodeURIComponent(n),u+="&daddr="+encodeURIComponent(t),u+="&pw="+i,u+=r?"&dirflg="+r:"",window.open(u)}};var mapp=window.mapp||{};mapp.Geocoder=function(n,t,i){function u(n,t){jQuery(n).removeClass("mapp-error"),jQuery(t).hide()}function f(n,t,i){jQuery(n).addClass("mapp-error"),jQuery(t).html(i),jQuery(t).show()}var o,e,s,c,h,r;o=i,c=t,h=n,s=h.getMap(),r=this,this.geocode=function(n,t){var i=n instanceof google.maps.LatLng?{latLng:n}:{address:n,region:o,language:c};i.bounds=s.getBounds(),e||(e=new google.maps.Geocoder),e.geocode(i,function(n,i){if(n){for(var r=0;r<n.length;r++)n[r].formatted_address==""&&n.splice(r,1);t(n[0],i)}else t(null,i)})},this.geolocate=function(n){if(!navigator||!navigator.geolocation)return null;navigator.geolocation.getCurrentPosition(function(t){n(t)},function(){n(null)},{timeout:1e4,enableHighAccuracy:!0,maximumAge:3e4})},this.stringToLatLng=function(n){var r=n.split(",",2),i=Number(r[0]),t=Number(r[1]);return isNaN(i)||isNaN(t)?!1:new google.maps.LatLng(i,t)},this.geocodeField=function(n,t,i){u(n,t),checkAddress(n,t,jQuery(n).val(),function(r){if(!r){f(n,t,mappl10n.no_address),i(null);return}if(r&&r.formatted_address){jQuery(n).val(r.formatted_address),i(r.formatted_address);return}i(r);return})},this.autocompleteField=function(n,t,i,e,o){jQuery(n).keypress(function(i){i.which==13&&(checkAddress(n,t,jQuery(n).val(),o),i.preventDefault())}),jQuery(i).click(function(){return checkAddress(n,t,jQuery(n).val(),o),!1}),jQuery(e).click(function(){return u(n,t),r.geolocate(function(i){if(i){var r="("+i.coords.latitude+", "+i.coords.longitude+")";jQuery(n).val(""),checkAddress(n,t,r,o)}else f(n,t,mappl10n.no_geolocate);return}),!1})},checkAddress=function(n,t,i,e){if(u(n,t),i=jQuery.trim(i),i==""){e(null);return}var o=r.stringToLatLng(i);if(o){e(o);return}if(i.substring(0,4)=="http"){e(i);return}r.geocode(i,function(i,r){if(!i||r!=google.maps.GeocoderStatus.OK){f(n,t,mappl10n.no_address),e(null);return}e(i);return})}},mapp.Geocoder.parseAddress=function(n){return!n||n==""?{firstLine:"",secondLine:""}:(n.lastIndexOf(", USA")>0||n.lastIndexOf(", United States")>0)&&(n.lastIndexOf(", USA")>0&&(n=n.slice(0,n.lastIndexOf(", USA"))),n.lastIndexOf(", United States")>0&&(n=n.slice(0,n.lastIndexOf(", United States"))),n.indexOf(",")==n.lastIndexOf(","))?{firstLine:n,secondLine:""}:n.indexOf(",")==-1?{firstLine:n,secondLine:""}:{firstLine:n.slice(0,n.indexOf(",")),secondLine:n.slice(n.indexOf(", ")+2)}};var mapp=window.mapp||{};mapp.Icons={},mapp.Icons.StandardIcons=["blue-dot","ltblue-dot","green-dot","pink-dot","purple-dot","red-dot","yellow-dot","blue","green","lightblue","pink","purple","red","yellow","blue-pushpin","grn-pushpin","ltblu-pushpin","pink-pushpin","purple-pushpin","red-pushpin","ylw-pushpin","bar","coffeehouse","man","wheel_chair_accessible","woman","restaurant","snack_bar","parkinglot","bus","cabs","ferry","helicopter","plane","rail","subway","tram","truck","info","info_circle","rainy","sailing","ski","snowflake_simple","swimming","water","fishing","flag","marina","campfire","campground","cycling","golfer","hiker","horsebackriding","motorcycling","picnic","POI","rangerstation","sportvenue","toilets","trail","tree","arts","conveniencestore","dollar","electronics","euro","gas","grocerystore","homegardenbusiness","mechanic","movies","realestate","salon","shopping","yen","caution","earthquake","fallingrocks","firedept","hospitals","lodging","phone","partly_cloudy","police","postoffice-us","sunny","volcano","camera","webcam","iimm1-blue","iimm1-green","iimm1-orange","iimm1-red","iimm2-blue","iimm2-green","iimm2-orange","iimm2-red","kml","poly"],mapp.Icons.get=function(n){var t,r,i;if(n=n?n:mappl10n.defaultIcon,n&&n!=""&&typeof n!="undefined"&&typeof mappl10n.standardIconsUrl!="undefined"){if(typeof mappl10n.icons!="undefined"&&typeof mappl10n.icons[n]!="undefined")r=mappl10n.iconsUrl+n,i=mappl10n.icons[n].shadow?mappl10n.iconsUrl+mappl10n.icons[n].shadow:null,t=mappl10n.icons[n].anchor;else if(jQuery.inArray(n,mapp.Icons.StandardIcons)>=0)r=mappl10n.standardIconsUrl+n+".png",i=n.indexOf("Marker")!=-1?"msmarker.shadow.png":n+".shadow.png",i=mappl10n.standardIconsUrl+i,t=[16,32];else return;return t=t?new google.maps.Point(t[0],t[1]):null,{url:r,shadowUrl:i,anchor:t}}},mapp.Icons.getUrl=function(n){var t=mapp.Icons.get(n);return t?t.url:"https://maps.google.com/intl/en_us/mapfiles/ms/micons/red-dot.png"},function(){jQuery.fn.mappIconPicker=function(n){var t={open:null,close:null,dialog:null};if(typeof mappl10n.id!="undefined"&&jQuery(".mapp-icon-picker").length!=0)return n=jQuery.extend(t,n),this.each(function(){var i=jQuery(this),r,t;i.after("<img class='mapp-icon' src='"+mapp.Icons.getUrl(i.val())+"' title='"+mappl10n.click_to_change+"' />"),r=i.next(),r.click(function(){function e(n){var i=jQuery(n.target);jQuery(t).has(i).length||u()}function u(u){jQuery(document).off("click",e),typeof u!="undefined"&&(i.attr("name")=="mappress_options[defaultIcon]"&&(mappl10n.defaultIcon=u),i.val(u),jQuery(r).attr("src",mapp.Icons.getUrl(u))),n.close&&n.close(u),n.dialog?t.empty():t.remove()}if(t=n.dialog?n.dialog:jQuery('<div id="mapp_icon_picker_dialog"><\/div>').appendTo(document.body).hide(),t.append(jQuery("#mapp_icon_picker").contents().clone()),t.show(),!n.dialog){var f=r.offset();t.css({left:f.left-parseInt(t.outerWidth()/2)+16,top:f.top+r.outerHeight()})}return jQuery(".mapp-icon-picker-cancel",t).click(function(){return u(),!1}),jQuery(".mapp-icon-picker-default",t).click(function(){return u(null),!1}),jQuery("li",t).click(function(){return u(jQuery(this).attr("data-iconid")),!1}),n.dialog||jQuery(document).click(e),n.open&&n.open(),!1})})}}();var mapp=window.mapp||{};mapp.InfoBox=function(){var u,f,n,i,t,r=this;this.setContent=function(n){u=n},this.onAdd=function(){n=jQuery("<div class='mapp-ib'><div class='mapp-ib-close'>X<\/div><\/div>"),t=jQuery("<div class='mapp-ib-tip'><\/div>"),typeof u=="string"?jQuery(n).append(u):jQuery(n).append(jQuery(u)),jQuery("body").append(n),jQuery("body").append(t),jQuery(".mapp-ib-close",n).click(function(){r.close()}),jQuery(window).resize(function(){r.close()}),this.draw(),google.maps.event.trigger(this,"domready")},this.draw=function(){var u=r.getProjection().fromLatLngToContainerPixel(i),e,o,s;if(u.x=parseInt(u.x),u.y=parseInt(u.y),e=jQuery(this.getMap().getDiv()),u.x>e.width()||u.x<0||u.y>e.height()||u.y<0){jQuery(n).hide(),jQuery(t).hide();return}jQuery(n).show(),jQuery(t).show(),o=e.offset().left+u.x,s=e.offset().top+u.y-32,jQuery(t).offset({top:s-t.outerHeight()-2,left:o-parseInt(t.outerWidth()/2)});var f=o-parseInt(n.outerWidth()/2),c=s-n.outerHeight()-t.outerHeight(),h=jQuery(document).width();f+n.outerWidth()>h&&(f=Math.max(h-n.outerWidth(),o-n.outerWidth()+parseInt(t.outerWidth()/2))),f<0&&(f=0),jQuery(n).offset({top:c,left:f})},this.onRemove=function(){jQuery(n).remove(),jQuery(t).remove()},this.setPosition=function(n){i=n},this.open=function(n,t){f=n,t&&(i=typeof t.getPosition=="function"?t.getPosition():t.getBounds().getCenter()),this.setMap(f),this.disableAutoPan&&n.getBounds().contains(i)||f.panTo(i),google.maps.event.addListenerOnce(n,"drag",function(){r.close()}),google.maps.event.addListenerOnce(n,"click",function(){r.close()})},this.close=function(){google.maps.event.trigger(this,"closeclick"),this.setMap(null)}}
js/mappress_editor.min.js CHANGED
@@ -1 +1 @@
1
- var mapp=window.mapp||{};mapp.Media=function(){function f(i){n=i,jQuery("#mapp_m_editor").empty(),jQuery("#mapp_m_editor").append(e.clone());var r=n.getMapid();r?jQuery("#mapp_m_mapid").text(r):jQuery("#mapp_m_mapid").text(""),jQuery("#mapp_m_title").val(n.getTitle()),jQuery("#mapp_m_width").val(n.getWidth()),jQuery("#mapp_m_height").val(n.getHeight()),jQuery("#mapp_m_edit_panel").show(),jQuery("#mapp_m_list_panel").hide(),t=new mapp.Editor(n)}function u(){t.close(),n=null,t=null,jQuery("#mapp_m_edit_panel").hide(),jQuery("#mapp_m_list_panel").show()}function c(){mapp.Map.ajaxCreate("mapp_edit",i,function(n){f(n)})}function h(n){mapp.Map.ajaxGet(n,"mapp_edit",i,function(n){f(n)})}function o(n){var t='[mappress mapid="'+n+'"]';send_to_editor(t)}function r(){if(n){var t=jQuery.trim(jQuery("#mapp_m_title").val());t=t!=""?t:mappl10n.untitled,n.setTitle(t),n.ajaxSave(function(n){n.list&&jQuery("#mapp_m_maplist").html(n.list),u()})}}function s(n){confirm(mappl10n.delete_map_prompt)&&(jQuery("#mapp_m_maplist tr[data-mapid='"+n+"']").remove(),mapp.Map.ajaxDelete(n))}var t,n,e,l=this,i;e=jQuery("#mapp_m_editor").contents().detach(),i={bicycling:!1,directions:"none",editable:!0,initialOpenInfo:!1,iwDisableAutoPan:!1,iwType:"ib",mapTypeControl:!0,mapTypeControlStyle:2,mapTypeIds:null,navigationControlOptions:{style:0},overviewMapControl:!1,overviewMapControlOptions:{opened:!1},streetViewControl:!1,traffic:!1,transit:!1},jQuery("#mapp_m_list_panel").show(),jQuery("#mapp_m_add_map").click(function(){return c(),!1});jQuery("#mapp_m_maplist").on("click","tr",function(n){var t=jQuery(this).attr("data-mapid");return jQuery(n.target).hasClass("mapp-maplist-edit")?(h(t),!1):jQuery(n.target).hasClass("mapp-maplist-delete")?(s(t),!1):jQuery(n.target).hasClass("mapp-maplist-insert")?(o(t),!1):void 0});jQuery(".mapp-m-size").click(function(){var i=jQuery(this).data("width"),n=jQuery(this).data("height");return jQuery("#mapp_m_width").val(i),jQuery("#mapp_m_height").val(n),t.resize(i,n),!1}),jQuery("#mapp_m_width, #mapp_m_height").change(function(){return jQuery(this).val()<200&&jQuery(this).val(200),t.resize(jQuery("#mapp_m_width").val(),jQuery("#mapp_m_height").val()),!1}),jQuery("#publish, #post-preview").click(function(){r()}),jQuery("#mapp_m_save").click(function(){return r(),!1}),jQuery("#mapp_m_title").keypress(function(n){if(n.which==13)return n.preventDefault(),jQuery("#mapp_m_save").click(),!1}),jQuery("#mapp_m_cancel").click(function(){return u(),!1}),jQuery("#mapp_m_insert").click(function(){var i=n.getMapid(),t='[mappress mapid="'+n.getMapid()+'"]';return i?send_to_editor(t):alert(mappl10n.save_first),!1})},mapp.Editor=function(n){function y(){s=jQuery("#mapp_e_infobox").detach(),t=n,t.display(),this.resize(t.getWidth(),t.getHeight()),i(),typeof mappl10n.id!="undefined"&&(u=new google.maps.drawing.DrawingManager({circleOptions:r,drawingControlOptions:{drawingModes:[google.maps.drawing.OverlayType.MARKER,google.maps.drawing.OverlayType.POLYGON,google.maps.drawing.OverlayType.POLYLINE,google.maps.drawing.OverlayType.RECTANGLE,google.maps.drawing.OverlayType.CIRCLE]},polygonOptions:r,polylineOptions:r,rectangleOptions:r}),u.setMap(t.getMap()),google.maps.event.addListener(u,"overlaycomplete",function(n){c(n)})),t.getGeocoder().autocompleteField("#mapp_e_saddr","#mapp_e_saddr_err","#mapp_e_search","#mapp_e_myloc",b),google.maps.event.addListener(t,"poicontent",v),google.maps.event.addListener(t,"poidomready",p),jQuery("#mapp_e_recenter").click(function(){return t.closeInfoWindow(),t.autoCenter(!0),!1}),google.maps.event.addListener(t.getMap(),"click",function(n){jQuery("#mapp_e_latlng").text(n.latLng.toUrlValue())})}function i(){for(var r=t.getPois(),u="<table>",n=0;n<r.length;n++){var o=r[n].title.replace(/\'/g,"&rsquo;"),e=r[n].getImage("mapp-e-icon"),f=r[n].address;u+="<tr id='"+n+"'><td>"+e+"<\/td><td style='width:100%'><a href='#' title='"+f+"'><b>"+o+"<\/b><\/a><div class='mapp-e-actions'><a href='#' class='mapp-e-poi-list-zoom' data-idx='"+n+"'>"+mappl10n.zoom+"<\/a> | <a href='#' class='mapp-e-poi-list-delete' data-idx='"+n+"'>"+mappl10n.del+"<\/a><\/div><\/td><\/tr>"}u+="<\/table>",jQuery("#mapp_e_poi_list").html(u),jQuery("#mapp_e_poi_list tbody").sortable({axis:"y",placeholder:"mapp-e-sortable-placeholder",forcePlaceholderSize:!0,delay:200,update:function(){var n=jQuery("#mapp_e_poi_list tbody").sortable("toArray");t.sortPois(n),i()}}),jQuery("#mapp_e_poi_list tr").click(function(n){var r=jQuery(this).attr("id"),i;return jQuery(n.target).hasClass("mapp-e-poi-list-zoom")?(i=t.getPoi(r),i&&i.zoomIn(),!1):jQuery(n.target).hasClass("mapp-e-poi-list-delete")?(i=t.getPoi(r),i&&l(i),!1):(t.getPoi(r).click(),!1)})}function v(n,t){var i=jQuery(s).clone(),r;jQuery("#mapp_e_poi_title",i).val(n.title),jQuery("#mapp_e_poi_body",i).val(n.body),jQuery("#mapp_e_poi_iconid",i).val(n.iconid),n.isPoly()&&(n.type=="polyline"?jQuery("#mapp_e_poi_polyline_fields",i).show():jQuery("#mapp_e_poi_polyline_fields, #mapp_e_poi_polygon_fields",i).show(),r=n.getColors(),jQuery("#mapp_stroke_color",i).val(r.strokeColor),jQuery("#mapp_stroke_weight",i).val(r.strokeWeight),jQuery("#mapp_stroke_opacity",i).val(parseInt(r.strokeOpacity*100)),jQuery("#mapp_fill_color",i).val(r.fillColor),jQuery("#mapp_fill_opacity",i).val(parseInt(r.fillOpacity*100))),n.type=="kml"&&(jQuery("#mapp_e_poi_kml_fields",i).show(),jQuery("#mapp_e_poi_kml_url",i).val(n.overlay.getUrl())),t.content=i}function p(n){var u={title:n.title,body:n.body,iconid:n.iconid,colors:n.getColors()};a(),jQuery("#mapp_e_poi_title").focus(),n.isPoly()?(jQuery("#mapp_stroke_color, #mapp_fill_color, #mapp_stroke_weight, #mapp_stroke_opacity, #mapp_fill_opacity").change(function(){var t={strokeColor:jQuery("#mapp_stroke_color").val(),strokeWeight:parseInt(jQuery("#mapp_stroke_weight").val()),strokeOpacity:jQuery("#mapp_stroke_opacity").val()/100};n.type!="polyline"&&(t.fillColor=jQuery("#mapp_fill_color").val(),t.fillOpacity=jQuery("#mapp_fill_opacity").val()/100),n.setColors(t),r=t}),jQuery("#mapp_stroke_color, #mapp_fill_color").mappColorpicker({})):jQuery("#mapp_e_poi_iconid").mappIconPicker({dialog:jQuery("#mapp_e_poi_icon_picker"),open:function(){jQuery("#mapp_e_poi_fields").hide()},close:function(t){jQuery("#mapp_e_poi_fields").show(),typeof t!="undefined"&&(e=t,n.iconid=t,n.setIcon(t),i())}}),google.maps.event.addListenerOnce(t.getInfoWindow(),"closeclick",function(){jQuery("#mapp_colorpicker").hide(),n.title=jQuery("#mapp_e_poi_title").val(),n.body=jQuery("#mapp_e_poi_body").val(),i()}),jQuery("#mapp_e_save_poi").click(function(){return t.closeInfoWindow(),!1}),jQuery("#mapp_e_cancel_poi").click(function(){return t.closeInfoWindow(),n.title=u.title,n.body=u.body,n.iconid=u.iconid,n.setIcon(u.iconid),n.setColors(u.colors),i(),!1})}function b(n){if(n){if(n.geometry){var t=mapp.Geocoder.parseAddress(n.formatted_address),u=n.name?n.name:t.firstLine,r=n.name?t.firstLine+", "+t.secondLine:t.secondLine,i=new mapp.Poi({address:n.formatted_address,body:r,iconid:e,overlay:new google.maps.Marker({position:n.geometry.location}),title:u,type:null,viewport:n.geometry.viewport?n.geometry.viewport:null});f(i,!0);return}if(n instanceof google.maps.LatLng)return h(n);if(typeof n=="string"&&n.substring(0,4)=="http")return w(n);alert("Internal error, unable to add location")}}function w(n){var t=new mapp.Poi({iconid:e,overlay:new google.maps.KmlLayer(n,{suppressInfoWindows:!0}),title:"KML",type:"kml"});google.maps.event.addListener(t.overlay,"status_changed",function(){var r=t.overlay.getStatus(),n;r=="OK"?(n=t.overlay.getMetadata(),t.title=n.name,t.body=n.description,t.viewport=t.overlay.getDefaultViewport(),i()):alert(mappl10n.kml_error+":"+r)}),f(t,!0)}function h(n){poi=new mapp.Poi({body:"",iconid:e,overlay:new google.maps.Marker({position:n}),title:n.toUrlValue(4)}),f(poi,!0)}function c(n){var t;u.setDrawingMode(null);switch(n.type){case"polygon":case"polyline":case"circle":case"rectangle":t=new mapp.Poi({body:"",colors:r,iconid:"poly",overlay:n.overlay,title:mappl10n.shape,type:n.type});break;case"marker":default:t=new mapp.Poi({body:"",iconid:null,overlay:n.overlay,title:n.overlay.getPosition().toUrlValue(4),type:null})}f(t,!1)}function f(n,r){t.closeInfoWindow(),u&&u.setDrawingMode(null),t.insertPoi(n),r&&n.center(!0),i()}function a(){var i,n;typeof tinyMCE!="undefined"&&typeof tinyMCE.init!="undefined"&&(i="en",typeof window.tinyMCEPreInit!="undefined"&&typeof window.tinyMCEPreInit.mceInit!="undefined"&&typeof window.tinyMCEPreInit.mceInit.content!="undefined"&&(n=window.tinyMCEPreInit.mceInit.content,i=typeof n.language!="undefined"?n.language:"en"),tinyMCE.init({mode:"none",height:"175px",convert_urls:!1,language:i,relative_urls:!1,remove_script_host:!1,theme:"advanced",theme_advanced_toolbar_location:"top",theme_advanced_buttons1:"formatselect, forecolor,|,bold,italic,|,justifyleft,justifycenter,justifyright,|,link,unlink,|,image,separator,undo,redo",theme_advanced_buttons2:"",theme_advanced_buttons3:"",setup:function(n){n.onInit.add(function(n){n.getBody().style.fontSize="12px"})}}),o&&setTimeout(function(){tinyMCE.execCommand("mceAddControl",!1,"mapp_e_poi_body")},2),jQuery("#mapp_e_visual").click(function(){tinyMCE.execCommand("mceAddControl",!1,"mapp_e_poi_body"),o=!0}),jQuery("#mapp_e_html").click(function(){tinyMCE.execCommand("mceRemoveControl",!1,"mapp_e_poi_body"),o=!1}),google.maps.event.addListenerOnce(t.getInfoWindow(),"closeclick",function(){tinyMCE.getInstanceById("mapp_e_poi_body")&&(tinyMCE.getInstanceById("mapp_e_poi_body").save(),tinyMCE.execCommand("mceRemoveControl",!1,"mapp_e_poi_body"))}))}function l(n){return t.closeInfoWindow(),confirm(mappl10n.delete_prompt)?(t.removePoi(n),i(),!0):!1}var u,s,e=null,r={fillColor:"#9FC6E7",fillOpacity:.5,strokeColor:"#0000FF",strokeOpacity:1,strokeWeight:2},o=!0,t=n;this.close=function(){t.closeInfoWindow()},this.resize=function(n,i){t.resize(n,i),t.closeInfoWindow();var u=jQuery("#mapp_e_top_toolbar").outerHeight(),r=jQuery("#mapp_edit").outerHeight();jQuery("#mapp_e_poi_list").height(u+r)},y.apply(this)}
1
+ var mapp=window.mapp||{};mapp.Media=function(){function f(i){n=i,jQuery("#mapp_m_editor").empty(),jQuery("#mapp_m_editor").append(e.clone());var r=n.getMapid();r?jQuery("#mapp_m_mapid").text(r):jQuery("#mapp_m_mapid").text(""),jQuery("#mapp_m_title").val(n.getTitle()),jQuery("#mapp_m_width").val(n.getWidth()),jQuery("#mapp_m_height").val(n.getHeight()),jQuery("#mapp_m_edit_panel").show(),jQuery("#mapp_m_list_panel").hide(),t=new mapp.Editor(n)}function u(){t.close(),n=null,t=null,jQuery("#mapp_m_edit_panel").hide(),jQuery("#mapp_m_list_panel").show()}function c(){mapp.Map.ajaxCreate("mapp_edit",i,function(n){f(n)})}function h(n){mapp.Map.ajaxGet(n,"mapp_edit",i,function(n){f(n)})}function o(n){var t='[mappress mapid="'+n+'"]';send_to_editor(t)}function r(){if(n){var t=jQuery.trim(jQuery("#mapp_m_title").val());t=t!=""?t:mappl10n.untitled,n.setTitle(t),n.ajaxSave(function(n){n.list&&jQuery("#mapp_m_maplist").html(n.list),u()})}}function s(n){confirm(mappl10n.delete_map_prompt)&&(jQuery("#mapp_m_maplist tr[data-mapid='"+n+"']").remove(),mapp.Map.ajaxDelete(n))}var t,n,e,l=this,i;e=jQuery("#mapp_m_editor").contents().detach(),i={bicycling:!1,directions:"none",editable:!0,initialOpenInfo:!1,iwDisableAutoPan:!1,iwType:"ib",mapTypeControl:!0,mapTypeControlStyle:2,mapTypeIds:null,navigationControlOptions:{style:0},overviewMapControl:!1,overviewMapControlOptions:{opened:!1},streetViewControl:!1,traffic:!1,transit:!1},jQuery("#mapp_m_list_panel").show(),jQuery("#mapp_m_add_map").click(function(){return c(),!1});jQuery("#mapp_m_maplist").on("click","tr",function(n){var t=jQuery(this).attr("data-mapid");return jQuery(n.target).hasClass("mapp-maplist-edit")?(h(t),!1):jQuery(n.target).hasClass("mapp-maplist-delete")?(s(t),!1):jQuery(n.target).hasClass("mapp-maplist-insert")?(o(t),!1):void 0});jQuery(".mapp-m-size").click(function(){var i=jQuery(this).data("width"),n=jQuery(this).data("height");return jQuery("#mapp_m_width").val(i),jQuery("#mapp_m_height").val(n),t.resize(i,n),!1}),jQuery("#mapp_m_width, #mapp_m_height").change(function(){var i=jQuery("#mapp_m_width").val(),n=jQuery("#mapp_m_height").val();return t.resize(i,n),!1}),jQuery("#publish, #post-preview").click(function(){r()}),jQuery("#mapp_m_save").click(function(){return r(),!1}),jQuery("#mapp_m_title").keypress(function(n){if(n.which==13)return n.preventDefault(),jQuery("#mapp_m_save").click(),!1}),jQuery("#mapp_m_cancel").click(function(){return u(),!1}),jQuery("#mapp_m_insert").click(function(){var i=n.getMapid(),t='[mappress mapid="'+n.getMapid()+'"]';return i?send_to_editor(t):alert(mappl10n.save_first),!1})},mapp.Editor=function(n){function y(){s=jQuery("#mapp_e_infobox").detach(),t=n,t.display(),this.resize(t.getWidth(),t.getHeight()),i(),typeof mappl10n.id!="undefined"&&(u=new google.maps.drawing.DrawingManager({circleOptions:r,drawingControlOptions:{drawingModes:[google.maps.drawing.OverlayType.MARKER,google.maps.drawing.OverlayType.POLYGON,google.maps.drawing.OverlayType.POLYLINE,google.maps.drawing.OverlayType.RECTANGLE,google.maps.drawing.OverlayType.CIRCLE]},polygonOptions:r,polylineOptions:r,rectangleOptions:r}),u.setMap(t.getMap()),google.maps.event.addListener(u,"overlaycomplete",function(n){c(n)})),t.getGeocoder().autocompleteField("#mapp_e_saddr","#mapp_e_saddr_err","#mapp_e_search","#mapp_e_myloc",b),google.maps.event.addListener(t,"poicontent",v),google.maps.event.addListener(t,"poidomready",p),jQuery("#mapp_e_recenter").click(function(){return t.closeInfoWindow(),t.autoCenter(!0),!1}),google.maps.event.addListener(t.getMap(),"click",function(n){jQuery("#mapp_e_latlng").text(n.latLng.toUrlValue())})}function i(){for(var r=t.getPois(),u="<table>",n=0;n<r.length;n++){var o=r[n].title.replace(/\'/g,"&rsquo;"),e=r[n].getImage("mapp-e-icon"),f=r[n].address;u+="<tr id='"+n+"'><td>"+e+"<\/td><td style='width:100%'><a href='#' title='"+f+"'><b>"+o+"<\/b><\/a><div class='mapp-e-actions'><a href='#' class='mapp-e-poi-list-zoom' data-idx='"+n+"'>"+mappl10n.zoom+"<\/a> | <a href='#' class='mapp-e-poi-list-delete' data-idx='"+n+"'>"+mappl10n.del+"<\/a><\/div><\/td><\/tr>"}u+="<\/table>",jQuery("#mapp_e_poi_list").html(u),jQuery("#mapp_e_poi_list tbody").sortable({axis:"y",placeholder:"mapp-e-sortable-placeholder",forcePlaceholderSize:!0,delay:200,update:function(){var n=jQuery("#mapp_e_poi_list tbody").sortable("toArray");t.sortPois(n),i()}}),jQuery("#mapp_e_poi_list tr").click(function(n){var r=jQuery(this).attr("id"),i;return jQuery(n.target).hasClass("mapp-e-poi-list-zoom")?(i=t.getPoi(r),i&&i.zoomIn(),!1):jQuery(n.target).hasClass("mapp-e-poi-list-delete")?(i=t.getPoi(r),i&&l(i),!1):(t.getPoi(r).click(),!1)})}function v(n,t){var i=jQuery(s).clone(),r;jQuery("#mapp_e_poi_title",i).val(n.title),jQuery("#mapp_e_poi_body",i).val(n.body),jQuery("#mapp_e_poi_iconid",i).val(n.iconid),n.isPoly()&&(n.type=="polyline"?jQuery("#mapp_e_poi_polyline_fields",i).show():jQuery("#mapp_e_poi_polyline_fields, #mapp_e_poi_polygon_fields",i).show(),r=n.getColors(),jQuery("#mapp_stroke_color",i).val(r.strokeColor),jQuery("#mapp_stroke_weight",i).val(r.strokeWeight),jQuery("#mapp_stroke_opacity",i).val(parseInt(r.strokeOpacity*100)),jQuery("#mapp_fill_color",i).val(r.fillColor),jQuery("#mapp_fill_opacity",i).val(parseInt(r.fillOpacity*100))),n.type=="kml"&&(jQuery("#mapp_e_poi_kml_fields",i).show(),jQuery("#mapp_e_poi_kml_url",i).val(n.overlay.getUrl())),t.content=i}function p(n){var u={title:n.title,body:n.body,iconid:n.iconid,colors:n.getColors()};a(),jQuery("#mapp_e_poi_title").focus(),n.isPoly()?(jQuery("#mapp_stroke_color, #mapp_fill_color, #mapp_stroke_weight, #mapp_stroke_opacity, #mapp_fill_opacity").change(function(){var t={strokeColor:jQuery("#mapp_stroke_color").val(),strokeWeight:parseInt(jQuery("#mapp_stroke_weight").val()),strokeOpacity:jQuery("#mapp_stroke_opacity").val()/100};n.type!="polyline"&&(t.fillColor=jQuery("#mapp_fill_color").val(),t.fillOpacity=jQuery("#mapp_fill_opacity").val()/100),n.setColors(t),r=t}),jQuery("#mapp_stroke_color, #mapp_fill_color").mappColorpicker({})):jQuery("#mapp_e_poi_iconid").mappIconPicker({dialog:jQuery("#mapp_e_poi_icon_picker"),open:function(){jQuery("#mapp_e_poi_fields").hide()},close:function(t){jQuery("#mapp_e_poi_fields").show(),typeof t!="undefined"&&(e=t,n.iconid=t,n.setIcon(t),i())}}),google.maps.event.addListenerOnce(t.getInfoWindow(),"closeclick",function(){jQuery("#mapp_colorpicker").hide(),n.title=jQuery("#mapp_e_poi_title").val(),n.body=jQuery("#mapp_e_poi_body").val(),i()}),jQuery("#mapp_e_save_poi").click(function(){return t.closeInfoWindow(),!1}),jQuery("#mapp_e_cancel_poi").click(function(){return t.closeInfoWindow(),n.title=u.title,n.body=u.body,n.iconid=u.iconid,n.setIcon(u.iconid),n.setColors(u.colors),i(),!1})}function b(n){if(n){if(n.geometry){var t=mapp.Geocoder.parseAddress(n.formatted_address),u=n.name?n.name:t.firstLine,r=n.name?t.firstLine+", "+t.secondLine:t.secondLine,i=new mapp.Poi({address:n.formatted_address,body:r,iconid:e,overlay:new google.maps.Marker({position:n.geometry.location}),title:u,type:null,viewport:n.geometry.viewport?n.geometry.viewport:null});f(i,!0);return}if(n instanceof google.maps.LatLng)return h(n);if(typeof n=="string"&&n.substring(0,4)=="http")return w(n);alert("Internal error, unable to add location")}}function w(n){var t=new mapp.Poi({iconid:e,overlay:new google.maps.KmlLayer(n,{suppressInfoWindows:!0}),title:"KML",type:"kml"});google.maps.event.addListener(t.overlay,"status_changed",function(){var r=t.overlay.getStatus(),n;r=="OK"?(n=t.overlay.getMetadata(),t.title=n.name,t.body=n.description,t.viewport=t.overlay.getDefaultViewport(),i()):alert(mappl10n.kml_error+":"+r)}),f(t,!0)}function h(n){poi=new mapp.Poi({body:"",iconid:e,overlay:new google.maps.Marker({position:n}),title:n.toUrlValue(4)}),f(poi,!0)}function c(n){var t;u.setDrawingMode(null);switch(n.type){case"polygon":case"polyline":case"circle":case"rectangle":t=new mapp.Poi({body:"",colors:r,iconid:"poly",overlay:n.overlay,title:mappl10n.shape,type:n.type});break;case"marker":default:t=new mapp.Poi({body:"",iconid:null,overlay:n.overlay,title:n.overlay.getPosition().toUrlValue(4),type:null})}f(t,!1)}function f(n,r){t.closeInfoWindow(),u&&u.setDrawingMode(null),t.insertPoi(n),r&&n.center(!0),i()}function a(){var i,n;typeof tinyMCE!="undefined"&&typeof tinyMCE.init!="undefined"&&(i="en",typeof window.tinyMCEPreInit!="undefined"&&typeof window.tinyMCEPreInit.mceInit!="undefined"&&typeof window.tinyMCEPreInit.mceInit.content!="undefined"&&(n=window.tinyMCEPreInit.mceInit.content,i=typeof n.language!="undefined"?n.language:"en"),tinyMCE.init({mode:"none",height:"175px",convert_urls:!1,language:i,plugins:"paste",relative_urls:!1,remove_script_host:!1,theme:"advanced",theme_advanced_toolbar_location:"top",theme_advanced_buttons1:"formatselect, forecolor,|,bold,italic,|,justifyleft,justifycenter,justifyright,|,link,unlink,|,image,separator,undo,redo",theme_advanced_buttons2:"",theme_advanced_buttons3:"",setup:function(n){n.onInit.add(function(n){n.getBody().style.fontSize="12px"})}}),o&&setTimeout(function(){tinyMCE.execCommand("mceAddControl",!1,"mapp_e_poi_body")},2),jQuery("#mapp_e_visual").click(function(){tinyMCE.execCommand("mceAddControl",!1,"mapp_e_poi_body"),o=!0}),jQuery("#mapp_e_html").click(function(){tinyMCE.execCommand("mceRemoveControl",!1,"mapp_e_poi_body"),o=!1}),google.maps.event.addListenerOnce(t.getInfoWindow(),"closeclick",function(){tinyMCE.getInstanceById("mapp_e_poi_body")&&(tinyMCE.getInstanceById("mapp_e_poi_body").save(),tinyMCE.execCommand("mceRemoveControl",!1,"mapp_e_poi_body"))}))}function l(n){return t.closeInfoWindow(),confirm(mappl10n.delete_prompt)?(t.removePoi(n),i(),!0):!1}var u,s,e=null,r={fillColor:"#9FC6E7",fillOpacity:.5,strokeColor:"#0000FF",strokeOpacity:1,strokeWeight:2},o=!0,t=n;this.close=function(){t.closeInfoWindow()},this.resize=function(n,i){t.resize(n,i),t.closeInfoWindow();var u=jQuery("#mapp_e_top_toolbar").outerHeight(),r=jQuery("#mapp_edit").outerHeight();jQuery("#mapp_e_poi_list").height(u+r)},y.apply(this)}
languages/mappress-fi.mo ADDED
Binary file
languages/mappress-fi.po ADDED
@@ -0,0 +1,1477 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # This file is put in the public domain.
3
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Mappress\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2013-02-15 09:08-0800\n"
10
+ "PO-Revision-Date: 2013-03-16 00:25+0200\n"
11
+ "Last-Translator: Jaakko Kangosjärvi <jaakko@mediamonttu.fi>\n"
12
+ "Language-Team: Monttu <info@mediamonttu,fi>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Poedit-Language: Finnish\n"
17
+ "X-Poedit-Country: FINLAND\n"
18
+ "X-Poedit-KeywordsList: __;_e\n"
19
+ "X-Poedit-Basepath: .\n"
20
+ "X-Poedit-SearchPath-0: C:\\D\\Blogit\\plugins\\mappress-google-maps-for-wordpress\n"
21
+
22
+ #: ../mappress.php:122
23
+ msgid "Version"
24
+ msgstr "Versio"
25
+
26
+ #: ../mappress.php:130
27
+ msgid "Documentation"
28
+ msgstr "Tiedot"
29
+
30
+ #: ../mappress.php:131
31
+ msgid "Support"
32
+ msgstr "Support"
33
+
34
+ #: ../mappress.php:132
35
+ msgid "Contact"
36
+ msgstr "Yhteystiedot"
37
+
38
+ #: ../mappress.php:135
39
+ msgid "Upgrade to MapPress Pro"
40
+ msgstr "Päivitä versioon MapPress Pro"
41
+
42
+ #: ../mappress.php:330
43
+ msgid "MapPress database tables are missing. Please deactivate the plugin and activate it again to fix this."
44
+ msgstr "MapPressin tietokantataulut puuttuvat. Korjaa ongelma poistamalla lisäosa käytöstä ja ottamalla se uudelleen käyttöön."
45
+
46
+ #: ../mappress.php:335
47
+ msgid "WARNING: MapPress now requires WordPress 3.2 or higher. Please upgrade before using MapPress."
48
+ msgstr "VAROITUS: MapPress vaatii vähintään WordPress 3.2 -version. Päivitä ennen kuin käytät MapPressiä."
49
+
50
+ #: ../mappress.php:340
51
+ msgid "WARNING: MapPress is not compfatible with the WP-Geo plugin. Please deactivate or uninstall WP-Geo before using MapPress."
52
+ msgstr "VAROITUS: MapPress ei töimi WP-Geo-lisäosan kanssa. Ota WP-Geo pois käytöstä tai poista se ennen kuin käytät MapPressiä. "
53
+
54
+ #: ../mappress.php:533
55
+ #: ../templates/map_directions.php:6
56
+ msgid "Bicycling"
57
+ msgstr "Pyöräillen"
58
+
59
+ #: ../mappress.php:534
60
+ msgid "Bike"
61
+ msgstr "Polkupyörä"
62
+
63
+ #: ../mappress.php:535
64
+ msgid "One of the addresses could not be found."
65
+ msgstr "Yhtä osoitteista ei löydy."
66
+
67
+ #: ../mappress.php:536
68
+ msgid "Google cannot return directions between those addresses. There is no route between them or the routing information is not available."
69
+ msgstr "Google ei pysty luomaan reittiä osoitteidesi välille. Tieyhteyttä ei ole tai ajo-ohjeita ei ole saatavilla."
70
+
71
+ #: ../mappress.php:537
72
+ msgid "Unknown error, unable to return directions. Status code = "
73
+ msgstr "Tuntematon virhe, ajo-ohjeita ei voi ladata. Tilatunnus ="
74
+
75
+ #: ../mappress.php:538
76
+ #: ../mappress_poi.php:282
77
+ #: ../mappress_settings.php:129
78
+ #: ../pro/mappress_widget.php:108
79
+ msgid "Directions"
80
+ msgstr "Ajo-ohjeet"
81
+
82
+ #: ../mappress.php:539
83
+ msgid "Error reading KML file"
84
+ msgstr "Virhe luettaessa KML-tiedostoa"
85
+
86
+ #: ../mappress.php:540
87
+ msgid "Loading..."
88
+ msgstr "Ladataan..."
89
+
90
+ #: ../mappress.php:541
91
+ msgid "No matching address"
92
+ msgstr "Osoitetta ei löydy"
93
+
94
+ #: ../mappress.php:542
95
+ msgid "Unable to get your location"
96
+ msgstr "Sijaintiasi ei löydy"
97
+
98
+ #: ../mappress.php:543
99
+ #: ../mappress_settings.php:321
100
+ msgid "Traffic"
101
+ msgstr "Liikennetiedot"
102
+
103
+ #: ../mappress.php:544
104
+ msgid "Transit"
105
+ msgstr "Siirto"
106
+
107
+ #: ../mappress.php:545
108
+ #: ../mappress_poi.php:331
109
+ #: ../mappress_settings.php:316
110
+ #: ../mappress_settings.php:455
111
+ #: ../pro/mappress_widget.php:124
112
+ msgid "Zoom"
113
+ msgstr "Lähennä"
114
+
115
+ #: ../mappress.php:550
116
+ msgid "Add"
117
+ msgstr "Lisää"
118
+
119
+ #: ../mappress.php:551
120
+ msgid "Click & drag to move"
121
+ msgstr "Klikkaa ja raahaa siirtääksesi merkitsintä "
122
+
123
+ #: ../mappress.php:552
124
+ msgid "Click to change"
125
+ msgstr "Muuta klikkaamalla"
126
+
127
+ #: ../mappress.php:553
128
+ #: ../mappress_map.php:428
129
+ msgid "Delete"
130
+ msgstr "Poista"
131
+
132
+ #: ../mappress.php:554
133
+ msgid "Delete this POI?"
134
+ msgstr "Poistetaanko tämä paikka?"
135
+
136
+ #: ../mappress.php:555
137
+ msgid "Delete this map?"
138
+ msgstr "Poistetaanko tämä kartta?"
139
+
140
+ #: ../mappress.php:556
141
+ msgid "Please save the map first"
142
+ msgstr "Tallenna kartta ensin"
143
+
144
+ #: ../mappress.php:557
145
+ msgid "Shape"
146
+ msgstr "Muoto"
147
+
148
+ #: ../mappress.php:558
149
+ msgid "Untitled"
150
+ msgstr "Ei otsikkoa"
151
+
152
+ #: ../mappress_map.php:106
153
+ msgid "Map not found"
154
+ msgstr "Karttaa ei löydy"
155
+
156
+ #: ../mappress_map.php:426
157
+ msgid "Edit"
158
+ msgstr "Muokkaa"
159
+
160
+ #: ../mappress_map.php:427
161
+ #: ../forms/map_media.php:48
162
+ msgid "Insert into post"
163
+ msgstr "Liitä merkintään"
164
+
165
+ #: ../mappress_map.php:467
166
+ msgid "Show map"
167
+ msgstr "Näytä kartta"
168
+
169
+ #: ../mappress_map.php:479
170
+ #: ../mappress_settings.php:447
171
+ #: ../forms/map_editor.php:17
172
+ msgid "Center map"
173
+ msgstr "Keskitä "
174
+
175
+ #: ../mappress_map.php:488
176
+ #: ../mappress_settings.php:448
177
+ msgid "Reset map"
178
+ msgstr "Tyhjennä"
179
+
180
+ #: ../mappress_map.php:497
181
+ #: ../mappress_settings.php:446
182
+ msgid "Bigger map"
183
+ msgstr "Suurempi kartta"
184
+
185
+ #: ../mappress_map.php:498
186
+ msgid "Smaller map"
187
+ msgstr "Pienempi kartta"
188
+
189
+ #: ../mappress_poi.php:247
190
+ #: ../mappress_settings.php:456
191
+ msgid "Directions to"
192
+ msgstr "Ajo-ohjeet kohteeseen"
193
+
194
+ #: ../mappress_poi.php:249
195
+ #: ../mappress_settings.php:457
196
+ msgid "Directions from"
197
+ msgstr "Ajo-ohjeet kohteesta"
198
+
199
+ #: ../mappress_settings.php:126
200
+ msgid "Basic Settings"
201
+ msgstr "Asetukset"
202
+
203
+ #: ../mappress_settings.php:127
204
+ msgid "Post types"
205
+ msgstr "Sisältötyypit"
206
+
207
+ #: ../mappress_settings.php:128
208
+ msgid "Automatic map display"
209
+ msgstr "Oletussijoittelu"
210
+
211
+ #: ../mappress_settings.php:131
212
+ msgid "Map Controls"
213
+ msgstr "Valitsimet"
214
+
215
+ #: ../mappress_settings.php:132
216
+ msgid "Draggable"
217
+ msgstr "Raahaus"
218
+
219
+ #: ../mappress_settings.php:133
220
+ msgid "Keyboard shortcuts"
221
+ msgstr "Näppäinoikotiet"
222
+
223
+ #: ../mappress_settings.php:134
224
+ msgid "Scroll wheel zoom"
225
+ msgstr "Rullazoom"
226
+
227
+ #: ../mappress_settings.php:135
228
+ msgid "Map Types"
229
+ msgstr "Karttatyypit "
230
+
231
+ #: ../mappress_settings.php:136
232
+ msgid "Map controls"
233
+ msgstr "Valitsimet"
234
+
235
+ #: ../mappress_settings.php:138
236
+ msgid "Map Settings"
237
+ msgstr "Asetukset "
238
+
239
+ #: ../mappress_settings.php:139
240
+ msgid "Map links"
241
+ msgstr "Linkit"
242
+
243
+ #: ../mappress_settings.php:140
244
+ msgid "Map alignment"
245
+ msgstr "Sijoittelu"
246
+
247
+ #: ../mappress_settings.php:141
248
+ msgid "Map border"
249
+ msgstr "Reunus"
250
+
251
+ #: ../mappress_settings.php:142
252
+ msgid "Map border color"
253
+ msgstr "Reunuksen väri"
254
+
255
+ #: ../mappress_settings.php:143
256
+ msgid "Open first POI"
257
+ msgstr "Avaa ensimmäinen paikka"
258
+
259
+ #: ../mappress_settings.php:145
260
+ msgid "POI Settings"
261
+ msgstr "Paikkojen asetukset"
262
+
263
+ #: ../mappress_settings.php:146
264
+ msgid "POI links"
265
+ msgstr "Paikkalinkit"
266
+
267
+ #: ../mappress_settings.php:147
268
+ msgid "Tooltips"
269
+ msgstr "Vihjeet"
270
+
271
+ #: ../mappress_settings.php:148
272
+ msgid "Default zoom"
273
+ msgstr "Oletus"
274
+
275
+ #: ../mappress_settings.php:151
276
+ msgid "Mashups"
277
+ msgstr "Koosteet"
278
+
279
+ #: ../mappress_settings.php:152
280
+ msgid "Icons"
281
+ msgstr "Kuvakkeet"
282
+
283
+ #: ../mappress_settings.php:153
284
+ msgid "Styled Maps"
285
+ msgstr "Muotoillut kartat"
286
+
287
+ #: ../mappress_settings.php:154
288
+ msgid "Geocoding"
289
+ msgstr "Geokoodaus"
290
+
291
+ #: ../mappress_settings.php:157
292
+ msgid "Localization"
293
+ msgstr "Paikallistaminen"
294
+
295
+ #: ../mappress_settings.php:158
296
+ msgid "Language"
297
+ msgstr "Kieli"
298
+
299
+ #: ../mappress_settings.php:159
300
+ msgid "Country"
301
+ msgstr "Maa"
302
+
303
+ #: ../mappress_settings.php:160
304
+ msgid "Directions server"
305
+ msgstr "Palvelin"
306
+
307
+ #: ../mappress_settings.php:161
308
+ msgid "Directions units"
309
+ msgstr "Yksiköt"
310
+
311
+ #: ../mappress_settings.php:163
312
+ msgid "Miscellaneous"
313
+ msgstr "Muu "
314
+
315
+ #: ../mappress_settings.php:164
316
+ msgid "Adaptive display"
317
+ msgstr "Automaattinen näyttö "
318
+
319
+ #: ../mappress_settings.php:165
320
+ msgid "Turn off CSS"
321
+ msgstr "Ota tyylitiedosto pois käytöstä"
322
+
323
+ #: ../mappress_settings.php:166
324
+ msgid "Load maps last"
325
+ msgstr "Lataa kartaa lopuksi"
326
+
327
+ #: ../mappress_settings.php:221
328
+ msgid "Use the settings below to automatically create maps from custom fields."
329
+ msgstr "Käytä alla olevia asetuksia ja luo kartta automaattisesti valinnaisen kentän tiedoista."
330
+
331
+ #: ../mappress_settings.php:227
332
+ msgid "Posts"
333
+ msgstr "Artikkelit"
334
+
335
+ #: ../mappress_settings.php:228
336
+ msgid "Pages"
337
+ msgstr "Sivut"
338
+
339
+ #: ../mappress_settings.php:240
340
+ msgid "country code"
341
+ msgstr "maatunnus"
342
+
343
+ #: ../mappress_settings.php:242
344
+ #, php-format
345
+ msgid "Enter a %s to use when searching (leave blank for USA)"
346
+ msgstr "Anna %s, jolla haetaan (jätä tyhjäksi, jos haetaan USA:ssa)"
347
+
348
+ #: ../mappress_settings.php:249
349
+ msgid "Enter a google server URL for directions/printing"
350
+ msgstr "Anna reittiohjeisiin ja tulostukseen käytettävä Google-palvelin (oletus maps.google.com) "
351
+
352
+ #: ../mappress_settings.php:254
353
+ msgid "(Default)"
354
+ msgstr "(Oletus)"
355
+
356
+ #: ../mappress_settings.php:254
357
+ msgid "Metric (kilometers)"
358
+ msgstr "Kilometri"
359
+
360
+ #: ../mappress_settings.php:254
361
+ msgid "Imperial (miles)"
362
+ msgstr "Maili"
363
+
364
+ #: ../mappress_settings.php:259
365
+ msgid "Enable map dragging with the mouse"
366
+ msgstr "Ota käyttöön raahaus hiiren avulla."
367
+
368
+ #: ../mappress_settings.php:263
369
+ msgid "Enable zoom with the mouse scroll wheel"
370
+ msgstr "Ota käyttöön loitonnus ja lähennys hiiren rullan avulla."
371
+
372
+ #: ../mappress_settings.php:267
373
+ msgid "Enable keyboard panning and zooming"
374
+ msgstr "Ota käyttöön panorointi ja zoomaus näppäimillä"
375
+
376
+ #: ../mappress_settings.php:273
377
+ msgid "language"
378
+ msgstr "kieli"
379
+
380
+ #: ../mappress_settings.php:275
381
+ #, php-format
382
+ msgid "Use a specific %s for map controls and geocoding"
383
+ msgstr "Valitse %s kartan valitsimiin ja geokoodaukseen"
384
+
385
+ #: ../mappress_settings.php:283
386
+ #: ../mappress_settings.php:289
387
+ #: ../mappress_settings.php:384
388
+ msgid "Default"
389
+ msgstr "Oletus"
390
+
391
+ #: ../mappress_settings.php:284
392
+ msgid "Horizontal"
393
+ msgstr "Horisontaalinen"
394
+
395
+ #: ../mappress_settings.php:285
396
+ msgid "Dropdown"
397
+ msgstr "Valintalista"
398
+
399
+ #: ../mappress_settings.php:290
400
+ msgid "Small"
401
+ msgstr "Pieni"
402
+
403
+ #: ../mappress_settings.php:291
404
+ msgid "Large"
405
+ msgstr "Suuri"
406
+
407
+ #: ../mappress_settings.php:292
408
+ msgid "Android"
409
+ msgstr "Android"
410
+
411
+ #: ../mappress_settings.php:303
412
+ msgid "Open initially"
413
+ msgstr "Avaa oletuksena"
414
+
415
+ #: ../mappress_settings.php:305
416
+ #: ../mappress_settings.php:307
417
+ #: ../mappress_settings.php:309
418
+ msgid "Checked initially"
419
+ msgstr "Valittu oletuksena"
420
+
421
+ #: ../mappress_settings.php:311
422
+ msgid "Control"
423
+ msgstr "Valitsin"
424
+
425
+ #: ../mappress_settings.php:311
426
+ msgid "Enable"
427
+ msgstr "Ota käyttöön"
428
+
429
+ #: ../mappress_settings.php:311
430
+ #: ../mappress_settings.php:409
431
+ msgid "Style"
432
+ msgstr "Tyylit"
433
+
434
+ #: ../mappress_settings.php:314
435
+ msgid "Map types"
436
+ msgstr "Karttatyypit"
437
+
438
+ #: ../mappress_settings.php:315
439
+ msgid "Pan"
440
+ msgstr "Panorointi"
441
+
442
+ #: ../mappress_settings.php:317
443
+ msgid "Street view"
444
+ msgstr "Katunäkymä"
445
+
446
+ #: ../mappress_settings.php:318
447
+ msgid "Scale"
448
+ msgstr "Asteikko"
449
+
450
+ #: ../mappress_settings.php:319
451
+ msgid "Overview map"
452
+ msgstr "Yleiskuvakartta"
453
+
454
+ #: ../mappress_settings.php:320
455
+ msgid "Public transit"
456
+ msgstr "Julkinen liikenne"
457
+
458
+ #: ../mappress_settings.php:322
459
+ msgid "Bike routes"
460
+ msgstr "Pyöräreitit"
461
+
462
+ #: ../mappress_settings.php:329
463
+ msgid "Road map"
464
+ msgstr "Tiekartta"
465
+
466
+ #: ../mappress_settings.php:330
467
+ #: ../pro/mappress_widget.php:142
468
+ msgid "Satellite"
469
+ msgstr "Satelliitti"
470
+
471
+ #: ../mappress_settings.php:331
472
+ #: ../pro/mappress_widget.php:143
473
+ msgid "Terrain"
474
+ msgstr "Maastokartta"
475
+
476
+ #: ../mappress_settings.php:332
477
+ #: ../pro/mappress_widget.php:141
478
+ msgid "Hybrid"
479
+ msgstr "Yhdistelmä"
480
+
481
+ #: ../mappress_settings.php:345
482
+ msgid "Inline (in your blog)"
483
+ msgstr "Sivulla (omassa blogissa)"
484
+
485
+ #: ../mappress_settings.php:346
486
+ #: ../pro/mappress_pro_settings.php:165
487
+ #: ../pro/mappress_widget.php:110
488
+ msgid "Google"
489
+ msgstr "Google"
490
+
491
+ #: ../mappress_settings.php:347
492
+ #: ../pro/mappress_widget.php:111
493
+ msgid "None"
494
+ msgstr "Ei"
495
+
496
+ #: ../mappress_settings.php:354
497
+ msgid "Automatically open the first POI when a map is displayed"
498
+ msgstr "Avaa ensimmäinen paikka karttaa avattaessa."
499
+
500
+ #: ../mappress_settings.php:359
501
+ #: ../mappress_settings.php:368
502
+ msgid "Show control"
503
+ msgstr "Näytä valitsin"
504
+
505
+ #: ../mappress_settings.php:363
506
+ #: ../mappress_settings.php:372
507
+ msgid "Enabled by default"
508
+ msgstr "Käytössä oletuksena"
509
+
510
+ #: ../mappress_settings.php:377
511
+ msgid "Show POI titles as a \"tooltip\" on mouse-over"
512
+ msgstr "Näytä paikkojen otsikot \"vihjeinä\", kun niitä osoitetaan hiirellä."
513
+
514
+ #: ../mappress_settings.php:385
515
+ #: ../pro/mappress_widget.php:116
516
+ msgid "Center"
517
+ msgstr "Keskitä"
518
+
519
+ #: ../mappress_settings.php:386
520
+ msgid "Left"
521
+ msgstr "Vasen"
522
+
523
+ #: ../mappress_settings.php:387
524
+ msgid "Right"
525
+ msgstr "Oikea"
526
+
527
+ #: ../mappress_settings.php:399
528
+ msgid "solid"
529
+ msgstr "solid"
530
+
531
+ #: ../mappress_settings.php:400
532
+ msgid "dashed"
533
+ msgstr "dashed"
534
+
535
+ #: ../mappress_settings.php:401
536
+ msgid "dotted"
537
+ msgstr "dotted"
538
+
539
+ #: ../mappress_settings.php:402
540
+ msgid "double"
541
+ msgstr "double"
542
+
543
+ #: ../mappress_settings.php:403
544
+ msgid "groove"
545
+ msgstr "groove"
546
+
547
+ #: ../mappress_settings.php:404
548
+ msgid "inset"
549
+ msgstr "inset"
550
+
551
+ #: ../mappress_settings.php:405
552
+ msgid "outset"
553
+ msgstr "outset"
554
+
555
+ #: ../mappress_settings.php:417
556
+ msgid "Width"
557
+ msgstr "Leveys "
558
+
559
+ #: ../mappress_settings.php:423
560
+ msgid "Corner radius"
561
+ msgstr "Kulman pyöreys"
562
+
563
+ #: ../mappress_settings.php:431
564
+ msgid "Color"
565
+ msgstr "Väri"
566
+
567
+ #: ../mappress_settings.php:441
568
+ msgid "Display shadow"
569
+ msgstr "Näytä varjo"
570
+
571
+ #: ../mappress_settings.php:465
572
+ msgid "Default zoom for POIs entered by lat/lng"
573
+ msgstr "Oletuszoomaus koordinaatein annetulle paikalle"
574
+
575
+ #: ../mappress_settings.php:471
576
+ msgid "Top of post"
577
+ msgstr "Artikkelin alussa"
578
+
579
+ #: ../mappress_settings.php:472
580
+ msgid "Bottom of post"
581
+ msgstr "Artikkelin lopussa"
582
+
583
+ #: ../mappress_settings.php:473
584
+ msgid "No automatic display"
585
+ msgstr "Ei automaattista sijoittelua"
586
+
587
+ #: ../mappress_settings.php:480
588
+ msgid "Recenter maps when window is resized"
589
+ msgstr "Keskitä uudelleen, kun ikkunan koko muuttuu"
590
+
591
+ #: ../mappress_settings.php:484
592
+ #, php-format
593
+ msgid "Don't load the %s stylesheet"
594
+ msgstr "Älä lataa tyylitiedostoa %s "
595
+
596
+ #: ../mappress_settings.php:488
597
+ msgid "Load maps in window 'load' event"
598
+ msgstr "Lataa kartat muodossa window 'load' event"
599
+
600
+ #: ../mappress_settings.php:496
601
+ msgid "Rate it 5 Stars"
602
+ msgstr "Anna 5 tähteä"
603
+
604
+ #: ../mappress_settings.php:498
605
+ #, php-format
606
+ msgid "%s on WordPress.org"
607
+ msgstr "%s sivustolla WordPress.org"
608
+
609
+ #: ../mappress_settings.php:499
610
+ msgid "Thanks for your support!"
611
+ msgstr "Kiitos tuestasi!"
612
+
613
+ #: ../mappress_settings.php:526
614
+ msgid "MapPress"
615
+ msgstr "MapPress"
616
+
617
+ #: ../mappress_settings.php:527
618
+ msgid "Easy Google Maps"
619
+ msgstr "Easy Google Maps"
620
+
621
+ #: ../mappress_settings.php:576
622
+ msgid "Like this plugin?"
623
+ msgstr "Pidätkö lisäosasta?"
624
+
625
+ #: ../mappress_settings.php:578
626
+ msgid "Sample Map"
627
+ msgstr "Esimerkki"
628
+
629
+ #: ../mappress_settings.php:597
630
+ msgid "Save Changes"
631
+ msgstr "Tallenna muutokset"
632
+
633
+ #: ../mappress_settings.php:598
634
+ msgid "Reset Defaults"
635
+ msgstr "Oletus"
636
+
637
+ #: ../mappress_updater.php:19
638
+ msgid "Settings"
639
+ msgstr "Asetukset "
640
+
641
+ #: ../mappress_updater.php:41
642
+ msgid "download it now"
643
+ msgstr "lataa se nyt"
644
+
645
+ #: ../mappress_updater.php:46
646
+ #, php-format
647
+ msgid "A PRO Version update is available for manual installation: %s"
648
+ msgstr "Päivitys PRO-versioon on asennettava paikallisesti: %s"
649
+
650
+ #: ../forms/map_editor.php:2
651
+ msgid "Add POI"
652
+ msgstr "Lisää paikka"
653
+
654
+ #: ../forms/map_editor.php:5
655
+ #: ../templates/map_directions.php:11
656
+ msgid "My location"
657
+ msgstr "Oma sijaintini"
658
+
659
+ #: ../forms/map_editor.php:18
660
+ msgid "Click map for lat/lng: "
661
+ msgstr "Klikkaa karttaa antaaksesi koordinaatit:"
662
+
663
+ #: ../forms/map_editor_infobox.php:22
664
+ msgid "Line: "
665
+ msgstr "Rivi:"
666
+
667
+ #: ../forms/map_editor_infobox.php:24
668
+ msgid "Weight"
669
+ msgstr "Paksuus"
670
+
671
+ #: ../forms/map_editor_infobox.php:25
672
+ #: ../forms/map_editor_infobox.php:31
673
+ msgid "Opacity"
674
+ msgstr "Läpinäkyvyys"
675
+
676
+ #: ../forms/map_editor_infobox.php:29
677
+ msgid "Fill: "
678
+ msgstr "Täyttö:"
679
+
680
+ #: ../forms/map_editor_infobox.php:40
681
+ msgid "Visual"
682
+ msgstr "Näkyvä"
683
+
684
+ #: ../forms/map_editor_infobox.php:40
685
+ msgid "HTML"
686
+ msgstr "HTML"
687
+
688
+ #: ../forms/map_editor_infobox.php:45
689
+ #: ../forms/map_media.php:46
690
+ msgid "Save"
691
+ msgstr "Tallenna"
692
+
693
+ #: ../forms/map_editor_infobox.php:46
694
+ #: ../forms/map_media.php:47
695
+ #: ../pro/mappress_icons.php:64
696
+ msgid "Cancel"
697
+ msgstr "Peru"
698
+
699
+ #: ../forms/map_media.php:11
700
+ msgid "Maps for This Post"
701
+ msgstr "Artikkelin kartat"
702
+
703
+ #: ../forms/map_media.php:12
704
+ msgid "New Map"
705
+ msgstr "Uusi kartta"
706
+
707
+ #: ../forms/map_media.php:22
708
+ msgid "Map ID"
709
+ msgstr "Kartan ID"
710
+
711
+ #: ../forms/map_media.php:27
712
+ msgid "Map Title"
713
+ msgstr "Kartan otsikko "
714
+
715
+ #: ../forms/map_media.php:32
716
+ msgid "Size"
717
+ msgstr "Koko"
718
+
719
+ #: ../pro/mappress_geocoders.php:53
720
+ msgid "No results, check that a geocoder is configured"
721
+ msgstr "Ei tuloksia, tarkista geokooderin asetukset"
722
+
723
+ #: ../pro/mappress_geocoders.php:76
724
+ #, php-format
725
+ msgid "Invalid status: %s, address: %s"
726
+ msgstr "Virheellinen asema: %s, osoite: %s"
727
+
728
+ #: ../pro/mappress_geocoders.php:85
729
+ #: ../pro/mappress_geocoders.php:149
730
+ #, php-format
731
+ msgid "No results for address: %s"
732
+ msgstr "Ei tulosta osoitteelle: %s"
733
+
734
+ #: ../pro/mappress_geocoders.php:145
735
+ #, php-format
736
+ msgid "Error: %s %s"
737
+ msgstr "Virhe: %s %s"
738
+
739
+ #: ../pro/mappress_icons.php:65
740
+ msgid "Use default icon"
741
+ msgstr "Käytä oletuskuvaketta"
742
+
743
+ #: ../pro/mappress_pro.php:151
744
+ msgid "Automatic"
745
+ msgstr "Automaattinen"
746
+
747
+ #: ../pro/mappress_pro_settings.php:10
748
+ msgid "POI list"
749
+ msgstr "Paikkaluettelo"
750
+
751
+ #: ../pro/mappress_pro_settings.php:11
752
+ msgid "Use DataTables"
753
+ msgstr "Käytä DataTable-ominaisuuksia"
754
+
755
+ #: ../pro/mappress_pro_settings.php:13
756
+ msgid "InfoWindow type"
757
+ msgstr "Tietoruudun tyyppi"
758
+
759
+ #: ../pro/mappress_pro_settings.php:14
760
+ msgid "InfoWindow panning"
761
+ msgstr "Tietoruudun panorointi"
762
+
763
+ #: ../pro/mappress_pro_settings.php:16
764
+ msgid "Default icon"
765
+ msgstr "Oletuskuvake"
766
+
767
+ #: ../pro/mappress_pro_settings.php:17
768
+ msgid "Custom icons directory"
769
+ msgstr "Valinnainen kuvakekansio"
770
+
771
+ #: ../pro/mappress_pro_settings.php:19
772
+ msgid "Mashup POI title"
773
+ msgstr "Koosteen paikan otsikko"
774
+
775
+ #: ../pro/mappress_pro_settings.php:20
776
+ msgid "Mashup POI body"
777
+ msgstr "Koosteen paikan teksti"
778
+
779
+ #: ../pro/mappress_pro_settings.php:21
780
+ msgid "Mashup POI click"
781
+ msgstr "Koosteen paikan klikkaus"
782
+
783
+ #: ../pro/mappress_pro_settings.php:22
784
+ msgid "Link title"
785
+ msgstr "Linkitä otsikko"
786
+
787
+ #: ../pro/mappress_pro_settings.php:23
788
+ msgid "Mashup Thumbnails"
789
+ msgstr "Koosteen pikkukuvat"
790
+
791
+ #: ../pro/mappress_pro_settings.php:24
792
+ msgid "Thumbnail Size"
793
+ msgstr "Pikkukuvan koko"
794
+
795
+ #: ../pro/mappress_pro_settings.php:26
796
+ msgid "Styled maps"
797
+ msgstr "Karttatyylit"
798
+
799
+ #: ../pro/mappress_pro_settings.php:27
800
+ msgid "Default style"
801
+ msgstr "Oletus"
802
+
803
+ #: ../pro/mappress_pro_settings.php:29
804
+ msgid "Geocoder(s)"
805
+ msgstr "Geokooderi(t)"
806
+
807
+ #: ../pro/mappress_pro_settings.php:30
808
+ msgid "Geocoding fields"
809
+ msgstr "Geokoodauskentät"
810
+
811
+ #: ../pro/mappress_pro_settings.php:32
812
+ msgid "API key (optional)"
813
+ msgstr "API-avain (valinnainen)"
814
+
815
+ #: ../pro/mappress_pro_settings.php:33
816
+ msgid "Map sizes"
817
+ msgstr "Karttakoot"
818
+
819
+ #: ../pro/mappress_pro_settings.php:34
820
+ msgid "Force resize"
821
+ msgstr "Koon massamuutos"
822
+
823
+ #: ../pro/mappress_pro_settings.php:63
824
+ msgid "Show a list of POIs under each map"
825
+ msgstr "Näytä paikkauettelo jokaisen kartan alapuolella"
826
+
827
+ #: ../pro/mappress_pro_settings.php:68
828
+ #, php-format
829
+ msgid "Show the POI list as a sortable %s"
830
+ msgstr "Näytä paikkaluettelo kuten lajiteltava %s"
831
+
832
+ #: ../pro/mappress_pro_settings.php:72
833
+ msgid "POI title"
834
+ msgstr "Paikan otsikko"
835
+
836
+ #: ../pro/mappress_pro_settings.php:72
837
+ msgid "Post title"
838
+ msgstr "Artikkelin otsikko"
839
+
840
+ #: ../pro/mappress_pro_settings.php:77
841
+ msgid "POI body"
842
+ msgstr "Paikan teksti"
843
+
844
+ #: ../pro/mappress_pro_settings.php:77
845
+ msgid "Address"
846
+ msgstr "Osoite"
847
+
848
+ #: ../pro/mappress_pro_settings.php:77
849
+ msgid "Post excerpt"
850
+ msgstr "Artikkelin ote"
851
+
852
+ #: ../pro/mappress_pro_settings.php:82
853
+ msgid "Link POI titles to the underlying post"
854
+ msgstr "Linkitä paikkojen otsikot artikkeleihin"
855
+
856
+ #: ../pro/mappress_pro_settings.php:86
857
+ msgid "Open the POI"
858
+ msgstr "Avaa paikka"
859
+
860
+ #: ../pro/mappress_pro_settings.php:86
861
+ msgid "Go directly to the post"
862
+ msgstr "Siirry suoraan artikkeliin"
863
+
864
+ #: ../pro/mappress_pro_settings.php:92
865
+ msgid "Google InfoWindow"
866
+ msgstr "Googlen tietoruutu"
867
+
868
+ #: ../pro/mappress_pro_settings.php:93
869
+ msgid "InfoBox (can be styled and extend outside the map)"
870
+ msgstr "Tietoruutu (ulkoasu muokattavissa ja sijoitettavissa myös kartan ulkopuolelle)"
871
+
872
+ #: ../pro/mappress_pro_settings.php:99
873
+ msgid "Disable map panning when infoWindow / infoBox is opened"
874
+ msgstr "Poista panorointi käytöstä, kun tietoruutu on avattu"
875
+
876
+ #: ../pro/mappress_pro_settings.php:103
877
+ msgid "Show featured image thumbnails in mashup POIs"
878
+ msgstr "Näytä suositellut pikkukuvat koosteen paikoissa"
879
+
880
+ #: ../pro/mappress_pro_settings.php:111
881
+ msgid "Use existing size: "
882
+ msgstr "Käytä kokoa: "
883
+
884
+ #: ../pro/mappress_pro_settings.php:114
885
+ msgid "or resize to (px): "
886
+ msgstr "tai muuta kokoon (px):"
887
+
888
+ #: ../pro/mappress_pro_settings.php:129
889
+ msgid "styled maps"
890
+ msgstr "ulkoasu"
891
+
892
+ #: ../pro/mappress_pro_settings.php:130
893
+ msgid "styled maps wizard"
894
+ msgstr "ulkoasuvelho"
895
+
896
+ #: ../pro/mappress_pro_settings.php:132
897
+ #, php-format
898
+ msgid "Enter JSON for %s from Google's %s"
899
+ msgstr "Anna JSON kohteelle %s Googlen palvelusta %s"
900
+
901
+ #: ../pro/mappress_pro_settings.php:141
902
+ msgid "Style name"
903
+ msgstr "Ulkoasun nimi"
904
+
905
+ #: ../pro/mappress_pro_settings.php:155
906
+ msgid "No styles have been defined yet"
907
+ msgstr "Yhtään "
908
+
909
+ #: ../pro/mappress_pro_settings.php:166
910
+ msgid "Nominatim"
911
+ msgstr "Nimitys"
912
+
913
+ #: ../pro/mappress_pro_settings.php:178
914
+ msgid "Address Line 1"
915
+ msgstr "Osoiterivi 1"
916
+
917
+ #: ../pro/mappress_pro_settings.php:179
918
+ msgid "Address Line 2"
919
+ msgstr "Osoiterivi 2"
920
+
921
+ #: ../pro/mappress_pro_settings.php:180
922
+ msgid "Address Line 3"
923
+ msgstr "Osoiterivi 3"
924
+
925
+ #: ../pro/mappress_pro_settings.php:181
926
+ msgid "Address Line 4"
927
+ msgstr "Osoiterivi 4"
928
+
929
+ #: ../pro/mappress_pro_settings.php:182
930
+ msgid "Latitude"
931
+ msgstr "Leveysaste"
932
+
933
+ #: ../pro/mappress_pro_settings.php:183
934
+ msgid "Longitude"
935
+ msgstr "Pituusaste"
936
+
937
+ #: ../pro/mappress_pro_settings.php:184
938
+ msgid "Icon"
939
+ msgstr "Kuvake"
940
+
941
+ #: ../pro/mappress_pro_settings.php:185
942
+ msgid "Title"
943
+ msgstr "Otsikko"
944
+
945
+ #: ../pro/mappress_pro_settings.php:186
946
+ msgid "Body"
947
+ msgstr "Teksti"
948
+
949
+ #: ../pro/mappress_pro_settings.php:187
950
+ msgid "Map Zoom"
951
+ msgstr "Zoomaus"
952
+
953
+ #: ../pro/mappress_pro_settings.php:190
954
+ #: ../pro/mappress_widget.php:140
955
+ msgid "Map"
956
+ msgstr "Kartta"
957
+
958
+ #: ../pro/mappress_pro_settings.php:190
959
+ msgid "Custom Field"
960
+ msgstr "Valinnainen kenttä "
961
+
962
+ #: ../pro/mappress_pro_settings.php:199
963
+ msgid "Overwrite existing maps when upating"
964
+ msgstr "Kirjoita nykyisten karttojen päälle päivitettäessä"
965
+
966
+ #: ../pro/mappress_pro_settings.php:204
967
+ msgid "usage tracking"
968
+ msgstr "käytön seuranta"
969
+
970
+ #: ../pro/mappress_pro_settings.php:205
971
+ #, php-format
972
+ msgid "API keys is needed only for premium services or %s"
973
+ msgstr "API-avaimia tarvitaan vain erityispalveluihin tai %s"
974
+
975
+ #: ../pro/mappress_pro_settings.php:209
976
+ msgid "Enter default map sizes"
977
+ msgstr "Anna kartan oletuskoot"
978
+
979
+ #: ../pro/mappress_pro_settings.php:213
980
+ msgid "Width(px)"
981
+ msgstr "Leveys (px)"
982
+
983
+ #: ../pro/mappress_pro_settings.php:213
984
+ msgid "Height(px)"
985
+ msgstr "Korkeus (px)"
986
+
987
+ #: ../pro/mappress_pro_settings.php:228
988
+ msgid "Permanently resize existing maps"
989
+ msgstr "Muuta pysyvästi kaikkien karttojen koko"
990
+
991
+ #: ../pro/mappress_pro_settings.php:230
992
+ #, php-format
993
+ msgid "from %s to %s"
994
+ msgstr "kohteesta %s kohteeseen %s"
995
+
996
+ #: ../pro/mappress_pro_settings.php:231
997
+ msgid "Force Resize"
998
+ msgstr "Koon pakkomuutos"
999
+
1000
+ #: ../pro/mappress_widget.php:78
1001
+ msgid "Widget title"
1002
+ msgstr "Vimpaimen otsikko"
1003
+
1004
+ #: ../pro/mappress_widget.php:83
1005
+ msgid "Map size"
1006
+ msgstr "Kartan koko"
1007
+
1008
+ #: ../pro/mappress_widget.php:89
1009
+ msgid "Show"
1010
+ msgstr "Näytä"
1011
+
1012
+ #: ../pro/mappress_widget.php:90
1013
+ msgid "Current posts"
1014
+ msgstr "Artikkelit"
1015
+
1016
+ #: ../pro/mappress_widget.php:91
1017
+ msgid "Hide if empty"
1018
+ msgstr "Piilota jos tyhjä"
1019
+
1020
+ #: ../pro/mappress_widget.php:93
1021
+ msgid "All posts"
1022
+ msgstr "Kaikki artikkelit"
1023
+
1024
+ #: ../pro/mappress_widget.php:94
1025
+ msgid "Custom query"
1026
+ msgstr "Kyselyt"
1027
+
1028
+ #: ../pro/mappress_widget.php:97
1029
+ msgid "Learn about queries"
1030
+ msgstr "Lue lisää kyselyistä"
1031
+
1032
+ #: ../pro/mappress_widget.php:102
1033
+ msgid "Show POI list"
1034
+ msgstr "Näytä paikkaluettelo"
1035
+
1036
+ #: ../pro/mappress_widget.php:104
1037
+ msgid "Link POIs to posts"
1038
+ msgstr "Linkitä paikat artikkeleihin"
1039
+
1040
+ #: ../pro/mappress_widget.php:109
1041
+ msgid "Inline"
1042
+ msgstr "Avoin"
1043
+
1044
+ #: ../pro/mappress_widget.php:137
1045
+ msgid "Map type"
1046
+ msgstr "Karttatyyppi"
1047
+
1048
+ #: ../pro/mappress_widget.php:151
1049
+ msgid "Other Settings"
1050
+ msgstr "Lisäasetukset "
1051
+
1052
+ #: ../pro/mappress_widget.php:154
1053
+ msgid "Example: traffic=\"false\" maplinks=\"\""
1054
+ msgstr "Esimerkki: liikenne=\"false\" karttalinkit=\"\""
1055
+
1056
+ #: ../templates/map_directions.php:3
1057
+ msgid "By car"
1058
+ msgstr "Autolla"
1059
+
1060
+ #: ../templates/map_directions.php:4
1061
+ msgid "Public Transit"
1062
+ msgstr "Julkinen liikenne"
1063
+
1064
+ #: ../templates/map_directions.php:5
1065
+ msgid "Walking"
1066
+ msgstr "Kävellen"
1067
+
1068
+ #: ../templates/map_directions.php:16
1069
+ msgid "Swap start and end"
1070
+ msgstr "Vaihda lähtöpaikka ja määränpää"
1071
+
1072
+ #: ../templates/map_directions.php:29
1073
+ msgid "Get Directions"
1074
+ msgstr "Hae ajo-ohjeet "
1075
+
1076
+ #: ../templates/map_directions.php:30
1077
+ msgid "Print"
1078
+ msgstr "Tulosta"
1079
+
1080
+ #: ../templates/map_directions.php:31
1081
+ msgid "Close"
1082
+ msgstr "Sulje"
1083
+
1084
+ #: ../templates/map_poi_list.php:5
1085
+ msgid "Location"
1086
+ msgstr "Paikka"
1087
+
1088
+ #~ msgid "Internal error, map was missing. Your data has not been saved!"
1089
+ #~ msgstr "Sisäinen virhe, kartta katosi. Tietojasi ei tallennettu!"
1090
+
1091
+ #~ msgid "Internal error - unable to save map. Your data has not been saved!"
1092
+ #~ msgstr ""
1093
+ #~ "Sisäinen virhe - karttaa ei voi tallentaa. Tietojasi ei tallennettu!"
1094
+
1095
+ #~ msgid "Marker list"
1096
+ #~ msgstr "Merkitsinluettelo"
1097
+
1098
+ #~ msgid "Show traffic button"
1099
+ #~ msgstr "Näytä liikennepainike"
1100
+
1101
+ #~ msgid "Templates"
1102
+ #~ msgstr "Sivumallit"
1103
+
1104
+ #~ msgid "Marker list template"
1105
+ #~ msgstr "Merkitsinluettelon sivumalli"
1106
+
1107
+ #~ msgid "Custom fields"
1108
+ #~ msgstr "Valinnainen kenttä"
1109
+
1110
+ #~ msgid "Custom CSS"
1111
+ #~ msgstr "Valinnainen tyylitiedosto"
1112
+
1113
+ #~ msgid ""
1114
+ #~ "Allow your readers to change the map type (street, satellite, or hybrid)"
1115
+ #~ msgstr ""
1116
+ #~ "Salli käyttäjien vaihtaa kartan tyyppiä (katu, satelliitti tai hybridi)"
1117
+
1118
+ #~ msgid "Display the street view control \"peg man\""
1119
+ #~ msgstr "Näytä katunäkymän valintapainike \"jalankulkija\""
1120
+
1121
+ #~ msgid ""
1122
+ #~ "Select 'Google' if directions aren't displaying properly in your theme"
1123
+ #~ msgstr ""
1124
+ #~ "Valitse 'Google', jos ajo-ohjeet eivät näy toivomallasi tavalla "
1125
+ #~ "sivustollasi"
1126
+
1127
+ #~ msgid "This setting requires %s."
1128
+ #~ msgstr "Tämä asetus vaatii version %s."
1129
+
1130
+ #~ msgid "Show a list of markers under each map."
1131
+ #~ msgstr "Näytä paikkalistaus jokaisen kartan alapuolella"
1132
+
1133
+ #~ msgid "Show a button for real-time traffic conditions"
1134
+ #~ msgstr "Näytä painike ajantasaisia liikennetietoja varten"
1135
+
1136
+ #~ msgid "post types"
1137
+ #~ msgstr "sisältötyypit"
1138
+
1139
+ #~ msgid "Mark the %s where you want to use MapPress"
1140
+ #~ msgstr "Valitse %s, joissa haluat käyttää MapPressiä"
1141
+
1142
+ #~ msgid "Enter the URL for your CSS file"
1143
+ #~ msgstr "Anna tyylitiedostosi URL"
1144
+
1145
+ #~ msgid "Set a template for the marker list."
1146
+ #~ msgstr "Aseta sivumalli merkitsinluettelolle."
1147
+
1148
+ #~ msgid "Toggle the 'powered by' message."
1149
+ #~ msgstr "Poistaa 'powered by'-viestin."
1150
+
1151
+ #~ msgid "No new items"
1152
+ #~ msgstr "Ei uusia kohteita"
1153
+
1154
+ #~ msgid "Subscribe with RSS"
1155
+ #~ msgstr "Tilaa RSS-syöte"
1156
+
1157
+ #~ msgid "Take a moment to rate it %s on WordPress.org - or make a donation"
1158
+ #~ msgstr "Käy antamassa %s sivustolla WordPress.org – tai tee lahjoitus"
1159
+
1160
+ #~ msgid "Report a bug"
1161
+ #~ msgstr "Ilmoita virheestä"
1162
+
1163
+ #~ msgid "MapPress News"
1164
+ #~ msgstr "MapPress Uutisia"
1165
+
1166
+ #~ msgid "No geocoding response from Google: %s"
1167
+ #~ msgstr "Ei geokoodausvastausta Googlelta: %s"
1168
+
1169
+ #~ msgid "Google cannot geocode address: %s, status: %s"
1170
+ #~ msgstr "Google ei pysty geokoodaamaan osoitetta %s, tila %s"
1171
+
1172
+ #~ msgid "Start"
1173
+ #~ msgstr "Lähtöpaikka"
1174
+
1175
+ #~ msgid "End"
1176
+ #~ msgstr "Määränpää"
1177
+
1178
+ #~ msgid "Print Directions"
1179
+ #~ msgstr "Tulosta ajo-ohjeet "
1180
+
1181
+ #~ msgid "FAQ"
1182
+ #~ msgstr "UKK"
1183
+
1184
+ #~ msgid "Toggle lat/lng entry"
1185
+ #~ msgstr "Vaihda lat/lng-arvot"
1186
+
1187
+ #~ msgid "Lat/Lng"
1188
+ #~ msgstr "Lat/Lng"
1189
+
1190
+ #~ msgid "Current Maps"
1191
+ #~ msgstr "Kartat"
1192
+
1193
+ #~ msgid "Medium"
1194
+ #~ msgstr "Keskikoko"
1195
+
1196
+ #~ msgid "There are no maps yet for this post"
1197
+ #~ msgstr "Tässä merkinnässä ei ole karttoja"
1198
+
1199
+ #~ msgid "Create a new map"
1200
+ #~ msgstr "Luo uusi kartta"
1201
+
1202
+ #~ msgid "Enter address"
1203
+ #~ msgstr "Anna osoite"
1204
+
1205
+ #~ msgid "Did you mean: "
1206
+ #~ msgstr "Tarkoititko:"
1207
+
1208
+ #~ msgid "View"
1209
+ #~ msgstr "Näytä"
1210
+
1211
+ #~ msgid "Back"
1212
+ #~ msgstr "Takaisin"
1213
+
1214
+ #~ msgid "Delete this map marker?"
1215
+ #~ msgstr "Poistetaanko merkitsin?"
1216
+
1217
+ #~ msgid "Map saved"
1218
+ #~ msgstr "Kartta tallennettu"
1219
+
1220
+ #~ msgid "Map deleted"
1221
+ #~ msgstr "Kartta poistettu"
1222
+
1223
+ #~ msgid "Error: AJAX failed! "
1224
+ #~ msgstr "Virhe: Ajax epäonnistui!"
1225
+
1226
+ #~ msgid "Standard icons"
1227
+ #~ msgstr "Vakiokuvakkeet"
1228
+
1229
+ #~ msgid "Unable to parse input: %s"
1230
+ #~ msgstr "Syötteen %s kokoaminen ei onnistu"
1231
+
1232
+ #~ msgid "Field for addresses"
1233
+ #~ msgstr "Kenttä osoitteille"
1234
+
1235
+ #~ msgid "Field for errors"
1236
+ #~ msgstr "Kenttä virheille"
1237
+
1238
+ #~ msgid "Update map when address is changed by a program"
1239
+ #~ msgstr "Päivitä kartta, kun ohjelma muuttaa osoitetta"
1240
+
1241
+ #~ msgid "Display powered by link"
1242
+ #~ msgstr "Ota käyttöön \"powered by\" -linkki."
1243
+
1244
+ #~ msgid "Mappress Pro Site"
1245
+ #~ msgstr "MapPress Pro -sivusto"
1246
+
1247
+ #~ msgid "Show query"
1248
+ #~ msgstr "Näytä kysely"
1249
+
1250
+ #~ msgid "Marker title"
1251
+ #~ msgstr "Merkitsimen otsikko"
1252
+
1253
+ #~ msgid "Marker body"
1254
+ #~ msgstr "Merkitsimen teksti"
1255
+
1256
+ #~ msgid "Show list of markers"
1257
+ #~ msgstr "Näytä merkitsinluettelo"
1258
+
1259
+ #~ msgid "Location list"
1260
+ #~ msgstr "Paikkalista"
1261
+
1262
+ #~ msgid "This setting requires %s. Show a list of locations under each map."
1263
+ #~ msgstr ""
1264
+ #~ "Tämä asetus vaatii version %s. Näytätä paikkalistan jokaisen kartan "
1265
+ #~ "alapuolella."
1266
+
1267
+ #~ msgid "Please make a donation today!"
1268
+ #~ msgstr "Ole hyvä ja lahjoita heti!"
1269
+
1270
+ #~ msgid " Include link"
1271
+ #~ msgstr " Lisää linkki"
1272
+
1273
+ #~ msgid "Marker title:"
1274
+ #~ msgstr "Merkitsimen otsikko:"
1275
+
1276
+ #~ msgid "Marker body:"
1277
+ #~ msgstr "Merkitsimen teksti:"
1278
+
1279
+ #~ msgid "Google error: BAD REQUEST"
1280
+ #~ msgstr "Googlen virhe: paha pyyntö!"
1281
+
1282
+ #~ msgid "Google internal error. Try again later."
1283
+ #~ msgstr "Googlen sisäinen virhe. Yritä myöhemmin uudelleen."
1284
+
1285
+ #~ msgid "The starting or ending address was missing."
1286
+ #~ msgstr "Lähtöpaikan tai määränpään osoite puuttuu."
1287
+
1288
+ #~ msgid ""
1289
+ #~ "Google cannot return those directions for legal or contractual reasons"
1290
+ #~ msgstr "Google ei voi antaa ajo-ohjeita laki- tai sopimusteknisistä syistä."
1291
+
1292
+ #~ msgid "Invalid map API key"
1293
+ #~ msgstr "API-avain ei kelpaa"
1294
+
1295
+ #~ msgid "Your key has issued too many queries in one day."
1296
+ #~ msgstr "Avaimellasi on tehty liikaa päivittäisiä hakuja."
1297
+
1298
+ #~ msgid ""
1299
+ #~ "Error: your browser does not seem to support the street view Flash player"
1300
+ #~ msgstr ""
1301
+ #~ "Virhe: selaimesi ei näytä tukevan katunäkymään tarvittavaa Flash-soitinta"
1302
+
1303
+ #~ msgid "Sorry, no street view data is available for this location"
1304
+ #~ msgstr "Sorry, katunäkymää ei ole saatavana tähän osoitteeseen"
1305
+
1306
+ #~ msgid "Sorry, Google was unable to display the street view in your browser"
1307
+ #~ msgstr "Sorry, Google ei voi näyttää katunäkymää selaimessasi"
1308
+
1309
+ #~ msgid "Get directions"
1310
+ #~ msgstr "Hae ajo-ohjeet"
1311
+
1312
+ #~ msgid "to here"
1313
+ #~ msgstr "tänne"
1314
+
1315
+ #~ msgid "from here"
1316
+ #~ msgstr "täältä"
1317
+
1318
+ #~ msgid "Go"
1319
+ #~ msgstr "Hae"
1320
+
1321
+ #~ msgid "Please enter your API key. Need an API key? Get one "
1322
+ #~ msgstr ""
1323
+ #~ "Ole hyvä ja anna API-avaimesi. Jos sinulla ei ole sellaista, saat omasi"
1324
+
1325
+ #~ msgid ""
1326
+ #~ "MapPress could not load google maps. Either your browser is incompatible "
1327
+ #~ "or your API key is invalid. Need an API key? Get one "
1328
+ #~ msgstr ""
1329
+ #~ "MapPress ei voinut ladata karttaa. Selaimesi on kelvoton tai API-avaimesi "
1330
+ #~ "ei kelpaa. Saat API-avaimen "
1331
+
1332
+ #~ msgid "here"
1333
+ #~ msgstr "täältä"
1334
+
1335
+ #~ msgid "That address is already on the map : "
1336
+ #~ msgstr "Osoite on jo kartalla:"
1337
+
1338
+ #~ msgid "Press escape or click here to cancel: "
1339
+ #~ msgstr "Paina esc tai sulje klikkaamalla: "
1340
+
1341
+ #~ msgid ""
1342
+ #~ "MapPress isn't ready yet. Please enter your Google Maps API Key on the "
1343
+ #~ msgstr ""
1344
+ #~ "MapPress ei ole vielä valmis. Ole hyvä ja anna Google Maps API-avaimesi: "
1345
+
1346
+ #~ msgid "MapPress options screen."
1347
+ #~ msgstr "MapPress Asetusnäkymä"
1348
+
1349
+ #~ msgid "Insert map shortcode in post &raquo;"
1350
+ #~ msgstr "Liitä kartta merkintään &raquo;"
1351
+
1352
+ #~ msgid "Street Address, city, state, country, or place"
1353
+ #~ msgstr "Katuosoite, kaupunki, maakunta, maa tai paikka"
1354
+
1355
+ #~ msgid "Preview"
1356
+ #~ msgstr "Esikatselu"
1357
+
1358
+ #~ msgid ""
1359
+ #~ "Automatically center/zoom map when saved (uncheck to display map exactly "
1360
+ #~ "as shown below)"
1361
+ #~ msgstr ""
1362
+ #~ "Keskitä ja lähennä kartta automaattisesti tallennettaessa (ilman valintaa "
1363
+ #~ "kartta näytetään juuri kuten alla)"
1364
+
1365
+ #~ msgid "Center/zoom now"
1366
+ #~ msgstr "Keskitä/lähennä nyt"
1367
+
1368
+ #~ msgid "Click on a marker or use the links below to edit or delete markers."
1369
+ #~ msgstr ""
1370
+ #~ "Klikkaa merkitsintä tai käytä alla olevia linkkejä, jos haluat muokata "
1371
+ #~ "tai poistaa merkitsimiä."
1372
+
1373
+ #~ msgid "ACCESS DENIED: You don't have permission to do this."
1374
+ #~ msgstr "PÄÄSY ESTETTY: Sinulla ei ole oikeuksia tähän."
1375
+
1376
+ #~ msgid "supported languages"
1377
+ #~ msgstr "tuetut kielet"
1378
+
1379
+ #~ msgid "MapPress Options"
1380
+ #~ msgstr "MapPress Asetukset"
1381
+
1382
+ #~ msgid "Address format"
1383
+ #~ msgstr "Osoitteen muoto"
1384
+
1385
+ #~ msgid "Exactly as entered"
1386
+ #~ msgstr "Täsmällinen"
1387
+
1388
+ #~ msgid "Corrected address"
1389
+ #~ msgstr "Korjattu"
1390
+
1391
+ #~ msgid "Country code for searches"
1392
+ #~ msgstr "Hakujen maatunnus"
1393
+
1394
+ #~ msgid ""
1395
+ #~ "Enter a country code to use as a default when searching for an address."
1396
+ #~ msgstr "Anna maatunnus, jota käytetään oletusarvona osoitteita haettaessa."
1397
+
1398
+ #~ msgid "Force Google to use a specific language for map controls."
1399
+ #~ msgstr "Pakota Google käyttämään tiettyä kieltä kartan säätimissä."
1400
+
1401
+ #~ msgid "Check to enable directions to/from map markers"
1402
+ #~ msgstr "Valitse, jos haluat ottaa käyttöön ajo-ohjeiden haun merkitsimeen"
1403
+
1404
+ #~ msgid ""
1405
+ #~ "Check to show large map controls; uncheck for a small zoom control instead"
1406
+ #~ msgstr ""
1407
+ #~ "Valitse tämä, jos haluat näyttää kaikki kartan valitsimet (tyhjä = vain "
1408
+ #~ "pieni zoomaustyökalu)"
1409
+
1410
+ #~ msgid "Check to enable the \"map types\" button on the map"
1411
+ #~ msgstr "Valitse tämä, jos haluat kartalle Karttatyypit-painikkeen."
1412
+
1413
+ #~ msgid "Initial map type"
1414
+ #~ msgstr "Oletuskarttatyyppi"
1415
+
1416
+ #~ msgid "Choose the map type to use when the map is first displayed"
1417
+ #~ msgstr "Valitse karttatyyppi, jota käytetään karttaa avattaessa."
1418
+
1419
+ #~ msgid ""
1420
+ #~ "Check to show the \"GoogleBar\" search box for local business listings."
1421
+ #~ msgstr "Valitse tämä, jos haluat näyttää kartalla GoogleBar-hakupalkin."
1422
+
1423
+ #~ msgid "(click the icon to choose)"
1424
+ #~ msgstr "(valitse klikkaamalla kuvaketta)"
1425
+
1426
+ #~ msgid ""
1427
+ #~ "The starting or ending address could not be found. Please check that the "
1428
+ #~ "address is correct and completely entered."
1429
+ #~ msgstr ""
1430
+ #~ "Lähtöpaikan tai määränpään osoitetta ei löydy. Ole hyvä ja tarkista, että "
1431
+ #~ "osoite on oikea ja kirjoitettu oikein."
1432
+
1433
+ #~ msgid "(leave blank for default)"
1434
+ #~ msgstr "(tyhjä = oletusarvo)"
1435
+
1436
+ #~ msgid "1 - zoomed out"
1437
+ #~ msgstr "1 - kaukonäkymä"
1438
+
1439
+ #~ msgid "20 - zoomed in"
1440
+ #~ msgstr "20 - lähinäkymä"
1441
+
1442
+ #~ msgid "Map width"
1443
+ #~ msgstr "Kartan leveys"
1444
+
1445
+ #~ msgid "Enter a value in pixels (default is 400)"
1446
+ #~ msgstr "Anna arvo pikseleinä (oletus 400)"
1447
+
1448
+ #~ msgid "Enter a value in pixels (default is 300)"
1449
+ #~ msgstr "Anna arvo pikseleinä (oletus 300)"
1450
+
1451
+ #~ msgid "Advanced Settings"
1452
+ #~ msgstr "Lisäasetukset"
1453
+
1454
+ #~ msgid ""
1455
+ #~ "MapPress has changed with this version. You must re-enter your maps. "
1456
+ #~ "Please see the note on the %1$sMapPress options screen%2$s"
1457
+ #~ msgstr ""
1458
+ #~ "MapPress on muuttunut. Sinun täytyy luoda karttasi uudelleen. Ole hyvä ja "
1459
+ #~ "katso huomautus %1$sMapPress Asetusnäkymästä%2$s"
1460
+
1461
+ #~ msgid "Zoom (1-20) "
1462
+ #~ msgstr "Zoom (1-20) "
1463
+
1464
+ #~ msgid "Caption"
1465
+ #~ msgstr "Otsikko"
1466
+
1467
+ #~ msgid "Clear form"
1468
+ #~ msgstr "Tyhjennä lomake"
1469
+
1470
+ #~ msgid "shortcodes"
1471
+ #~ msgstr "lyhytkoodit"
1472
+
1473
+ #~ msgid "Map zoom (1-20)"
1474
+ #~ msgstr "Kartan zoomaus (1-20)"
1475
+
1476
+ #~ msgid "1=fully zoomed out, 20=fully zoomed in (default is 15)"
1477
+ #~ msgstr "1=laajin näkymä, 20=lähin näkymä (oletus on 15)"
languages/mappress-fi_FI.mo DELETED
Binary file
languages/mappress-fi_FI.po DELETED
@@ -1,907 +0,0 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # This file is put in the public domain.
3
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
- #
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: Mappress\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2011-04-07 17:44-0800\n"
10
- "PO-Revision-Date: 2011-04-07 18:07-0800\n"
11
- "Last-Translator: Plugin Author <donotreply@gmail.com>\n"
12
- "Language-Team: Monttu <jaska@kangosjarvi.net>\n"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Poedit-Language: Finnish\n"
17
- "X-Poedit-Country: FINLAND\n"
18
- "X-Poedit-KeywordsList: __;_e\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-SearchPath-0: C:\\D\\Blogit\\plugins\\mappress-google-maps-for-wordpress\n"
21
-
22
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:127
23
- msgid "Version"
24
- msgstr "Versio"
25
-
26
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:138
27
- msgid "Internal error, map was missing. Your data has not been saved!"
28
- msgstr "Sisäinen virhe, kartta katosi. Tietojasi ei tallennettu!"
29
-
30
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:143
31
- msgid "Internal error - unable to save map. Your data has not been saved!"
32
- msgstr "Sisäinen virhe - karttaa ei voi tallentaa. Tietojasi ei tallennettu!"
33
-
34
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:161
35
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:726
36
- msgid "Untitled"
37
- msgstr "Ei otsikkoa"
38
-
39
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:434
40
- msgid "Basic Settings"
41
- msgstr "Asetukset"
42
-
43
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:435
44
- msgid "Automatic map display"
45
- msgstr "Automaattinen näyttö"
46
-
47
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:436
48
- msgid "Post types"
49
- msgstr "Sisältötyypit"
50
-
51
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:437
52
- msgid "Map alignment"
53
- msgstr "Kartan sijoittelu"
54
-
55
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:438
56
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:733
57
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:569
58
- msgid "Directions"
59
- msgstr "Ajo-ohjeet"
60
-
61
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:439
62
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:576
63
- msgid "Marker list"
64
- msgstr ""
65
-
66
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:440
67
- msgid "Map types"
68
- msgstr "Karttatyypit"
69
-
70
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:441
71
- msgid "Street View"
72
- msgstr "Katunäkymä "
73
-
74
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:442
75
- msgid "Scroll wheel zoom"
76
- msgstr "Rullazoom"
77
-
78
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:443
79
- msgid "Keyboard shortcuts"
80
- msgstr "Näppäinoikotiet"
81
-
82
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:444
83
- msgid "Open first marker"
84
- msgstr "Avaa ensimmäinen merkitsin"
85
-
86
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:445
87
- msgid "Show traffic button"
88
- msgstr "Näytä liikennepainike"
89
-
90
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:446
91
- msgid "Tooltips"
92
- msgstr "Vihjeet"
93
-
94
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:448
95
- msgid "Localization"
96
- msgstr ""
97
-
98
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:449
99
- msgid "Language"
100
- msgstr "Kieli"
101
-
102
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:450
103
- msgid "Country"
104
- msgstr "Maa"
105
-
106
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:451
107
- msgid "Directions server"
108
- msgstr ""
109
-
110
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:453
111
- msgid "Templates"
112
- msgstr ""
113
-
114
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:454
115
- msgid "Marker list template"
116
- msgstr ""
117
-
118
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:456
119
- msgid "Custom Fields"
120
- msgstr "Valinnainen kenttä"
121
-
122
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:457
123
- msgid "Custom fields"
124
- msgstr "Valinnainen kenttä"
125
-
126
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:459
127
- msgid "Micsellaneous"
128
- msgstr ""
129
-
130
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:460
131
- msgid "Custom CSS"
132
- msgstr "Valinnainen tyylitiedosto"
133
-
134
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:461
135
- msgid "Force resize"
136
- msgstr "Koon massamuutos"
137
-
138
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:462
139
- msgid "MapPress link"
140
- msgstr "MapPress-linkki"
141
-
142
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:509
143
- msgid "country code"
144
- msgstr "maatunnus"
145
-
146
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:511
147
- #, php-format
148
- msgid "Enter a %s to use when searching (leave blank for USA)"
149
- msgstr "Anna %s, jolla haetaan (jätä tyhjäksi, jos haetaan USA:ssa)"
150
-
151
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:519
152
- msgid "Enter the google server to use for directions & printing (default is maps.google.com)"
153
- msgstr ""
154
-
155
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:529
156
- msgid "Enable zoom with the mouse scroll wheel"
157
- msgstr "Ota käyttöön loitonnus ja lähennys hiiren rullan avulla."
158
-
159
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:537
160
- msgid "Enable keyboard panning and zooming"
161
- msgstr "Ota käyttöön panorointi ja zoomaus näppäimillä"
162
-
163
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:543
164
- msgid "language"
165
- msgstr "kieli"
166
-
167
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:545
168
- #, php-format
169
- msgid "Use a specific %s for map controls (default is the browser language setting)"
170
- msgstr "Valitse %s kartan hallintaan (oletus: selaimen kieliasetus)"
171
-
172
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:556
173
- msgid "Allow your readers to change the map type (street, satellite, or hybrid)"
174
- msgstr "Salli käyttäjien vaihtaa kartan tyyppiä (katu, satelliitti tai hybridi)"
175
-
176
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:564
177
- msgid "Display the street view control \"peg man\""
178
- msgstr "Näytä katunäkymän valintapainike \"jalankulkija\""
179
-
180
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:572
181
- msgid "Inline (in your blog)"
182
- msgstr "Sivulla (omassa blogissa)"
183
-
184
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:576
185
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:571
186
- msgid "Google"
187
- msgstr "Google"
188
-
189
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:580
190
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:565
191
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:570
192
- msgid "None"
193
- msgstr "Ei"
194
-
195
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:582
196
- msgid "Select 'Google' if directions aren't displaying properly in your theme"
197
- msgstr "Valitse 'Google', jos ajo-ohjeet eivät näy toivomallasi tavalla sivustollasi"
198
-
199
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:589
200
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:703
201
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:711
202
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:719
203
- #, php-format
204
- msgid "This setting requires %s."
205
- msgstr "Tämä asetus vaatii version %s."
206
-
207
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:590
208
- msgid "Show a list of markers under each map."
209
- msgstr "Näytä paikkalistaus jokaisen kartan alapuolella"
210
-
211
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:599
212
- msgid "Automatically open the first marker when a map is displayed"
213
- msgstr "Valitse tämä, jos haluat avata ensimmäisen merkitsimen karttaa avattaessa."
214
-
215
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:608
216
- msgid "Show a button for real-time traffic conditions"
217
- msgstr "Näytä painike ajantasaisia liikennetietoja varten"
218
-
219
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:617
220
- msgid "Show marker titles as a \"tooltip\" on mouse-over."
221
- msgstr "Näytä merktsinotsikot \"vihjeinä\", kun niitä osoitetaan hiirellä. Poista tämä käytöstä, jos käytät HTML-koodia merkitsimien otsikoissa."
222
-
223
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:625
224
- msgid "Default"
225
- msgstr " Oletus"
226
-
227
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:629
228
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:630
229
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:666
230
- msgid "Center"
231
- msgstr "Keskitä"
232
-
233
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:634
234
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:635
235
- msgid "Left"
236
- msgstr "Vasen"
237
-
238
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:639
239
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:640
240
- msgid "Right"
241
- msgstr "Oikea"
242
-
243
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:648
244
- msgid "Top of post"
245
- msgstr "Merkinnän alussa"
246
-
247
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:652
248
- msgid "Bottom of post"
249
- msgstr "Merkinnän lopussa"
250
-
251
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:656
252
- msgid "No automatic display"
253
- msgstr "Ei automaattista sijoittelua"
254
-
255
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:666
256
- msgid "post types"
257
- msgstr "sisältötyypit"
258
-
259
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:668
260
- #, php-format
261
- msgid "Mark the %s where you want to use MapPress"
262
- msgstr "Valitse %s, joissa haluat käyttää MapPressiä"
263
-
264
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:675
265
- msgid "post"
266
- msgstr "merkintä"
267
-
268
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:677
269
- msgid "page"
270
- msgstr "sivu"
271
-
272
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:684
273
- msgid "Click to permanently resize ALL existing maps"
274
- msgstr "Klikkaa, jos haluat pysyvästi muuttaa KAIKKIEN karttojen kooksi"
275
-
276
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:686
277
- msgid "Force Resize"
278
- msgstr "Koon pakkomuutos"
279
-
280
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:697
281
- msgid "Enter the URL for your CSS file"
282
- msgstr "Anna tyylitiedostosi URL"
283
-
284
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:704
285
- msgid "Set a template for the marker list."
286
- msgstr ""
287
-
288
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:712
289
- msgid "Toggle the 'powered by' message."
290
- msgstr "Poistaa 'powered by'-viestin."
291
-
292
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:720
293
- msgid "Automatically create maps from custom field data."
294
- msgstr "Luo automaattisesti kartan valinnaisen kentän tiedoista."
295
-
296
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:732
297
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:741
298
- msgid "No new items"
299
- msgstr ""
300
-
301
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:750
302
- msgid "Subscribe with RSS"
303
- msgstr ""
304
-
305
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:758
306
- msgid "5 Stars"
307
- msgstr ""
308
-
309
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:760
310
- #, php-format
311
- msgid "Take a moment to rate it %s on WordPress.org - or make a donation"
312
- msgstr ""
313
-
314
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:771
315
- msgid "Thanks for your support!"
316
- msgstr ""
317
-
318
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:831
319
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:604
320
- msgid "Documentation"
321
- msgstr "Tiedot"
322
-
323
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:832
324
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:606
325
- msgid "Report a bug"
326
- msgstr "Ilmoita virheestä"
327
-
328
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:841
329
- msgid "Like this plugin?"
330
- msgstr ""
331
-
332
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:842
333
- msgid "MapPress News"
334
- msgstr ""
335
-
336
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:861
337
- msgid "Save Changes"
338
- msgstr "Tallenna muutokset"
339
-
340
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:862
341
- msgid "Reset Defaults"
342
- msgstr "Oletus"
343
-
344
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:886
345
- msgid "MapPress database tables are missing. Please deactivate the plugin and activate it again to fix this."
346
- msgstr "MapPressin tietokantataulut puuttuvat. Korjaa ongelma poistamalla lisäosa käytöstä ja ottamalla se uudelleen käyttöön."
347
-
348
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:891
349
- msgid "WARNING: MapPress requires WordPress 3.0 or higher. Please upgrade before using MapPress."
350
- msgstr "VAROITUS: MapPress vaatii vähintään WordPress 3.0 -version. Päivitä ennen kuin käytät MapPressiä."
351
-
352
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress.php:896
353
- msgid "WARNING: MapPress is not compatible with the WP-Geo plugin. Please deactivate or uninstall WP-Geo before using MapPress."
354
- msgstr "VAROITUS: MapPress ei töimi WP-Geo-lisäosan kanssa. Ota WP-Geo pois käytöstä tai poista se ennen kuin käytät MapPressiä."
355
-
356
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:138
357
- #, php-format
358
- msgid "No geocoding response from Google: %s"
359
- msgstr "Ei geokoodausvastausta Googlelta: %s"
360
-
361
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:151
362
- #, php-format
363
- msgid "Google cannot geocode address: %s, status: %s"
364
- msgstr "Google ei pysty geokoodaamaan osoitetta %s, tila %s"
365
-
366
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:154
367
- #, php-format
368
- msgid "No geocoding result for address: %s"
369
- msgstr "Ei geokoodaustulosta osoitteelle: %s"
370
-
371
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:530
372
- msgid "Close"
373
- msgstr "Sulje"
374
-
375
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:531
376
- msgid "By car"
377
- msgstr "Autolla"
378
-
379
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:532
380
- msgid "Walking"
381
- msgstr "Kävellen"
382
-
383
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:533
384
- msgid "Bicycling"
385
- msgstr "Pyöräillen"
386
-
387
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:538
388
- msgid "Start"
389
- msgstr "Lähtöpaikka"
390
-
391
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:545
392
- msgid "Swap start and end"
393
- msgstr "Vaihda lähtöpaikka ja määränpää"
394
-
395
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:551
396
- msgid "End"
397
- msgstr "Määränpää"
398
-
399
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:560
400
- msgid "Get Directions"
401
- msgstr "Hae ajo-ohjeet "
402
-
403
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:561
404
- msgid "Print Directions"
405
- msgstr "Tulosta ajo-ohjeet "
406
-
407
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:605
408
- msgid "FAQ"
409
- msgstr "UKK"
410
-
411
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:617
412
- msgid "Add"
413
- msgstr "Lisää"
414
-
415
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:620
416
- msgid "Toggle lat/lng entry"
417
- msgstr "Vaihda lat/lng-arvot"
418
-
419
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:623
420
- msgid "Location"
421
- msgstr "Paikka"
422
-
423
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:628
424
- msgid "Lat/Lng"
425
- msgstr "Lat/Lng"
426
-
427
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:643
428
- msgid "Current Maps"
429
- msgstr "Kartat"
430
-
431
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:644
432
- msgid "New Map"
433
- msgstr "Uusi kartta"
434
-
435
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:653
436
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:725
437
- msgid "Map ID"
438
- msgstr "Kartan ID"
439
-
440
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:656
441
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:742
442
- msgid "Title"
443
- msgstr "Otsikko"
444
-
445
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:659
446
- msgid "Small"
447
- msgstr "Pieni"
448
-
449
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:660
450
- msgid "Medium"
451
- msgstr "Keskikoko"
452
-
453
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:661
454
- msgid "Large"
455
- msgstr "Suuri"
456
-
457
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:665
458
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:735
459
- msgid "Save"
460
- msgstr "Tallenna"
461
-
462
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:722
463
- msgid "Maps in this post"
464
- msgstr "Merkinnän kartat"
465
-
466
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:723
467
- msgid "There are no maps yet for this post"
468
- msgstr "Tässä merkinnässä ei ole karttoja"
469
-
470
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:724
471
- msgid "Create a new map"
472
- msgstr "Luo uusi kartta"
473
-
474
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:727
475
- msgid "The starting or ending address could not be found."
476
- msgstr "Lähtöpaikan tai määränpään osoitetta ei voida löytää."
477
-
478
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:728
479
- msgid "Google cannot return directions between those addresses. There is no route between them or the routing information is not available."
480
- msgstr "Google ei pysty luomaan reittiä osoitteidesi välille. Tieyhteyttä ei ole tai ajo-ohjeita ei ole saatavilla."
481
-
482
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:729
483
- msgid "Unknown error, unable to return directions. Status code = "
484
- msgstr "Tuntematon virhe, ajo-ohjeita ei voi ladata. Tilatunnus ="
485
-
486
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:730
487
- msgid "Enter address"
488
- msgstr "Anna osoite"
489
-
490
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:731
491
- msgid "No matching address"
492
- msgstr "Osoitetta ei löydy"
493
-
494
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:732
495
- msgid "Did you mean: "
496
- msgstr "Tarkoititko:"
497
-
498
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:734
499
- msgid "Edit"
500
- msgstr "Muokkaa"
501
-
502
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:736
503
- msgid "Cancel"
504
- msgstr "Peru"
505
-
506
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:737
507
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:745
508
- msgid "Delete"
509
- msgstr "Poista"
510
-
511
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:738
512
- msgid "View"
513
- msgstr "Näytä"
514
-
515
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:739
516
- msgid "Back"
517
- msgstr "Takaisin"
518
-
519
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:740
520
- msgid "Insert into post"
521
- msgstr "Liitä merkintään"
522
-
523
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:741
524
- msgid "Select a map"
525
- msgstr "Valitse kartta"
526
-
527
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:743
528
- msgid "Delete this map marker?"
529
- msgstr "Poistetaanko merkitsin?"
530
-
531
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:744
532
- msgid "Delete this map?"
533
- msgstr "Poistetaanko tämä kartta?"
534
-
535
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:746
536
- msgid "Map saved"
537
- msgstr "Kartta tallennettu"
538
-
539
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:747
540
- msgid "Map deleted"
541
- msgstr "Kartta poistettu"
542
-
543
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:748
544
- msgid "Error: AJAX failed! "
545
- msgstr "Virhe: Ajax epäonnistui!"
546
-
547
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:749
548
- msgid "Click & drag to move this marker"
549
- msgstr "Klikkaa ja raahaa siirtääksesi merkitsintä"
550
-
551
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:750
552
- msgid "Zoom"
553
- msgstr "Zoomaa"
554
-
555
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:751
556
- msgid "Traffic"
557
- msgstr "Liikenne"
558
-
559
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:752
560
- msgid "Standard icons"
561
- msgstr "Vakiokuvakkeet"
562
-
563
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/mappress_api.php:753
564
- msgid "My icons"
565
- msgstr "Omat kuvakkeet"
566
-
567
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:99
568
- #, php-format
569
- msgid "Unable to parse input: %s"
570
- msgstr "Syötteen %s kokoaminen ei onnistu"
571
-
572
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:412
573
- msgid "Field for addresses"
574
- msgstr "Kenttä osoitteille"
575
-
576
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:419
577
- msgid "Field for errors"
578
- msgstr "Kenttä virheille"
579
-
580
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:426
581
- msgid "Update map when post is saved"
582
- msgstr "Päivitä kartta, kun merkintä tallennetaan"
583
-
584
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:429
585
- msgid "Update map when address is changed by a program"
586
- msgstr "Päivitä kartta, kun ohjelma muuttaa osoitetta"
587
-
588
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:436
589
- msgid "Show a list of markers under each map"
590
- msgstr "Näytä paikkalistaus jokaisen kartan alapuolella"
591
-
592
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:457
593
- msgid "Display powered by link"
594
- msgstr "Ota käyttöön \"powered by\" -linkki."
595
-
596
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:475
597
- msgid "Mappress Pro Site"
598
- msgstr "MapPress Pro -sivusto"
599
-
600
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:530
601
- msgid "Widget title"
602
- msgstr "Vimpaimen otsikko"
603
-
604
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:535
605
- msgid "Map size"
606
- msgstr "Kartan koko"
607
-
608
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:541
609
- msgid "Show query"
610
- msgstr "Näytä kysely"
611
-
612
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:542
613
- msgid "Current posts"
614
- msgstr "Merkinnät"
615
-
616
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:543
617
- msgid "All posts"
618
- msgstr "Kaikki merkinnät"
619
-
620
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:544
621
- msgid "Custom query"
622
- msgstr "Kyselyt"
623
-
624
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:547
625
- msgid "Learn about queries"
626
- msgstr "Lue lisää kyselyistä"
627
-
628
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:551
629
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:552
630
- msgid "Marker title"
631
- msgstr "Merkitsimen otsikko"
632
-
633
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:553
634
- msgid "Post title"
635
- msgstr "Merkinnän otsikko"
636
-
637
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:557
638
- msgid "Link"
639
- msgstr "Linkitä"
640
-
641
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:558
642
- msgid "Link marker title to post"
643
- msgstr "Linkitä merkitsimet merkintöihin"
644
-
645
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:562
646
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:563
647
- msgid "Marker body"
648
- msgstr "Merkitsimen teksti"
649
-
650
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:564
651
- msgid "Post excerpt"
652
- msgstr "Merkinnän ote"
653
-
654
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:572
655
- msgid "Inline"
656
- msgstr ""
657
-
658
- #: C:\wamp\www\wordpress\wp-content\plugins\mappress-google-maps-for-wordpress/pro/mappress_pro.php:577
659
- msgid "Show list of markers"
660
- msgstr ""
661
-
662
- #~ msgid "Location list"
663
- #~ msgstr "Paikkalista"
664
-
665
- #~ msgid "This setting requires %s. Show a list of locations under each map."
666
- #~ msgstr ""
667
- #~ "Tämä asetus vaatii version %s. Näytätä paikkalistan jokaisen kartan "
668
- #~ "alapuolella."
669
-
670
- #~ msgid "Donate"
671
- #~ msgstr "Lahjoita"
672
-
673
- #~ msgid "Please make a donation today!"
674
- #~ msgstr "Ole hyvä ja lahjoita heti!"
675
-
676
- #~ msgid " Include link"
677
- #~ msgstr " Lisää linkki"
678
-
679
- #~ msgid "Marker title:"
680
- #~ msgstr "Merkitsimen otsikko:"
681
-
682
- #~ msgid "Marker body:"
683
- #~ msgstr "Merkitsimen teksti:"
684
-
685
- #~ msgid "Google error: BAD REQUEST"
686
- #~ msgstr "Googlen virhe: paha pyyntö!"
687
-
688
- #~ msgid "Google internal error. Try again later."
689
- #~ msgstr "Googlen sisäinen virhe. Yritä myöhemmin uudelleen."
690
-
691
- #~ msgid "The starting or ending address was missing."
692
- #~ msgstr "Lähtöpaikan tai määränpään osoite puuttuu."
693
-
694
- #~ msgid ""
695
- #~ "Google cannot return those directions for legal or contractual reasons"
696
- #~ msgstr "Google ei voi antaa ajo-ohjeita laki- tai sopimusteknisistä syistä."
697
-
698
- #~ msgid "Invalid map API key"
699
- #~ msgstr "API-avain ei kelpaa"
700
-
701
- #~ msgid "Your key has issued too many queries in one day."
702
- #~ msgstr "Avaimellasi on tehty liikaa päivittäisiä hakuja."
703
-
704
- #~ msgid ""
705
- #~ "Error: your browser does not seem to support the street view Flash player"
706
- #~ msgstr ""
707
- #~ "Virhe: selaimesi ei näytä tukevan katunäkymään tarvittavaa Flash-soitinta"
708
-
709
- #~ msgid "Sorry, no street view data is available for this location"
710
- #~ msgstr "Sorry, katunäkymää ei ole saatavana tähän osoitteeseen"
711
-
712
- #~ msgid "Sorry, Google was unable to display the street view in your browser"
713
- #~ msgstr "Sorry, Google ei voi näyttää katunäkymää selaimessasi"
714
-
715
- #~ msgid "Get directions"
716
- #~ msgstr "Hae ajo-ohjeet"
717
-
718
- #~ msgid "to here"
719
- #~ msgstr "tänne"
720
-
721
- #~ msgid "from here"
722
- #~ msgstr "täältä"
723
-
724
- #~ msgid "Go"
725
- #~ msgstr "Hae"
726
-
727
- #~ msgid "Please enter your API key. Need an API key? Get one "
728
- #~ msgstr ""
729
- #~ "Ole hyvä ja anna API-avaimesi. Jos sinulla ei ole sellaista, saat omasi"
730
-
731
- #~ msgid ""
732
- #~ "MapPress could not load google maps. Either your browser is incompatible "
733
- #~ "or your API key is invalid. Need an API key? Get one "
734
- #~ msgstr ""
735
- #~ "MapPress ei voinut ladata karttaa. Selaimesi on kelvoton tai API-avaimesi "
736
- #~ "ei kelpaa. Saat API-avaimen "
737
-
738
- #~ msgid "here"
739
- #~ msgstr "täältä"
740
-
741
- #~ msgid "That address is already on the map : "
742
- #~ msgstr "Osoite on jo kartalla:"
743
-
744
- #~ msgid "Press escape or click here to cancel: "
745
- #~ msgstr "Paina esc tai sulje klikkaamalla: "
746
-
747
- #~ msgid ""
748
- #~ "MapPress isn't ready yet. Please enter your Google Maps API Key on the "
749
- #~ msgstr ""
750
- #~ "MapPress ei ole vielä valmis. Ole hyvä ja anna Google Maps API-avaimesi: "
751
-
752
- #~ msgid "MapPress options screen."
753
- #~ msgstr "MapPress Asetusnäkymä"
754
-
755
- #~ msgid "Insert map shortcode in post &raquo;"
756
- #~ msgstr "Liitä kartta merkintään &raquo;"
757
-
758
- #~ msgid "Street Address, city, state, country, or place"
759
- #~ msgstr "Katuosoite, kaupunki, maakunta, maa tai paikka"
760
-
761
- #~ msgid "Latitude/Longitude "
762
- #~ msgstr "Leveysaste/Pituusaste"
763
-
764
- #~ msgid "Preview"
765
- #~ msgstr "Esikatselu"
766
-
767
- #~ msgid ""
768
- #~ "Automatically center/zoom map when saved (uncheck to display map exactly "
769
- #~ "as shown below)"
770
- #~ msgstr ""
771
- #~ "Keskitä ja lähennä kartta automaattisesti tallennettaessa (ilman valintaa "
772
- #~ "kartta näytetään juuri kuten alla)"
773
-
774
- #~ msgid "Center/zoom now"
775
- #~ msgstr "Keskitä/lähennä nyt"
776
-
777
- #~ msgid "Click on a marker or use the links below to edit or delete markers."
778
- #~ msgstr ""
779
- #~ "Klikkaa merkitsintä tai käytä alla olevia linkkejä, jos haluat muokata "
780
- #~ "tai poistaa merkitsimiä."
781
-
782
- #~ msgid "ACCESS DENIED: You don't have permission to do this."
783
- #~ msgstr "PÄÄSY ESTETTY: Sinulla ei ole oikeuksia tähän."
784
-
785
- #~ msgid "supported languages"
786
- #~ msgstr "tuetut kielet"
787
-
788
- #~ msgid "MapPress Options"
789
- #~ msgstr "MapPress Asetukset"
790
-
791
- #~ msgid "Google Maps API Key"
792
- #~ msgstr "Google Maps API-avain"
793
-
794
- #~ msgid "Optional Settings"
795
- #~ msgstr "Lisäasetukset"
796
-
797
- #~ msgid "Address format"
798
- #~ msgstr "Osoitteen muoto"
799
-
800
- #~ msgid "Exactly as entered"
801
- #~ msgstr "Täsmällinen"
802
-
803
- #~ msgid "Corrected address"
804
- #~ msgstr "Korjattu"
805
-
806
- #~ msgid "Country code for searches"
807
- #~ msgstr "Hakujen maatunnus"
808
-
809
- #~ msgid ""
810
- #~ "Enter a country code to use as a default when searching for an address."
811
- #~ msgstr "Anna maatunnus, jota käytetään oletusarvona osoitteita haettaessa."
812
-
813
- #~ msgid "Force Google to use a specific language for map controls."
814
- #~ msgstr "Pakota Google käyttämään tiettyä kieltä kartan säätimissä."
815
-
816
- #~ msgid "Check to enable directions to/from map markers"
817
- #~ msgstr "Valitse, jos haluat ottaa käyttöön ajo-ohjeiden haun merkitsimeen"
818
-
819
- #~ msgid "Big map controls"
820
- #~ msgstr "Kaikki valitsimet"
821
-
822
- #~ msgid ""
823
- #~ "Check to show large map controls; uncheck for a small zoom control instead"
824
- #~ msgstr ""
825
- #~ "Valitse tämä, jos haluat näyttää kaikki kartan valitsimet (tyhjä = vain "
826
- #~ "pieni zoomaustyökalu)"
827
-
828
- #~ msgid "Check to enable the \"map types\" button on the map"
829
- #~ msgstr "Valitse tämä, jos haluat kartalle Karttatyypit-painikkeen."
830
-
831
- #~ msgid "Initial map type"
832
- #~ msgstr "Oletuskarttatyyppi"
833
-
834
- #~ msgid "Choose the map type to use when the map is first displayed"
835
- #~ msgstr "Valitse karttatyyppi, jota käytetään karttaa avattaessa."
836
-
837
- #~ msgid ""
838
- #~ "Check to show the \"GoogleBar\" search box for local business listings."
839
- #~ msgstr "Valitse tämä, jos haluat näyttää kartalla GoogleBar-hakupalkin."
840
-
841
- #~ msgid "Default map icon: "
842
- #~ msgstr "Kartan oletuskuvake: "
843
-
844
- #~ msgid "(click the icon to choose)"
845
- #~ msgstr "(valitse klikkaamalla kuvaketta)"
846
-
847
- #~ msgid ""
848
- #~ "The starting or ending address could not be found. Please check that the "
849
- #~ "address is correct and completely entered."
850
- #~ msgstr ""
851
- #~ "Lähtöpaikan tai määränpään osoitetta ei löydy. Ole hyvä ja tarkista, että "
852
- #~ "osoite on oikea ja kirjoitettu oikein."
853
-
854
- #~ msgid "Map options "
855
- #~ msgstr "Kartan asetukset"
856
-
857
- #~ msgid "(leave blank for default)"
858
- #~ msgstr "(tyhjä = oletusarvo)"
859
-
860
- #~ msgid "Width "
861
- #~ msgstr "Leveys"
862
-
863
- #~ msgid "Add address"
864
- #~ msgstr "Lisää osoite"
865
-
866
- #~ msgid "1 - zoomed out"
867
- #~ msgstr "1 - kaukonäkymä"
868
-
869
- #~ msgid "20 - zoomed in"
870
- #~ msgstr "20 - lähinäkymä"
871
-
872
- #~ msgid "Map width"
873
- #~ msgstr "Kartan leveys"
874
-
875
- #~ msgid "Enter a value in pixels (default is 400)"
876
- #~ msgstr "Anna arvo pikseleinä (oletus 400)"
877
-
878
- #~ msgid "Enter a value in pixels (default is 300)"
879
- #~ msgstr "Anna arvo pikseleinä (oletus 300)"
880
-
881
- #~ msgid "Advanced Settings"
882
- #~ msgstr "Lisäasetukset"
883
-
884
- #~ msgid ""
885
- #~ "MapPress has changed with this version. You must re-enter your maps. "
886
- #~ "Please see the note on the %1$sMapPress options screen%2$s"
887
- #~ msgstr ""
888
- #~ "MapPress on muuttunut. Sinun täytyy luoda karttasi uudelleen. Ole hyvä ja "
889
- #~ "katso huomautus %1$sMapPress Asetusnäkymästä%2$s"
890
-
891
- #~ msgid "Zoom (1-20) "
892
- #~ msgstr "Zoom (1-20) "
893
-
894
- #~ msgid "Caption"
895
- #~ msgstr "Otsikko"
896
-
897
- #~ msgid "Clear form"
898
- #~ msgstr "Tyhjennä lomake"
899
-
900
- #~ msgid "shortcodes"
901
- #~ msgstr "lyhytkoodit"
902
-
903
- #~ msgid "Map zoom (1-20)"
904
- #~ msgstr "Kartan zoomaus (1-20)"
905
-
906
- #~ msgid "1=fully zoomed out, 20=fully zoomed in (default is 15)"
907
- #~ msgstr "1=laajin näkymä, 20=lähin näkymä (oletus on 15)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/mappress-ja.mo ADDED
Binary file
languages/mappress-ja.po ADDED
@@ -0,0 +1,1068 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-02-15 09:08-0800\n"
6
+ "PO-Revision-Date: 2013-06-05 17:44+0900\n"
7
+ "Last-Translator: Osamu Satoh <osamus@connectworks.jp>\n"
8
+ "Language-Team: \n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_attr_e;esc_attr__;"
13
+ "esc_html_e;esc_html__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Generator: Poedit 1.5.5\n"
16
+ "X-Poedit-SearchPath-0: ..\n"
17
+
18
+ #: ../mappress.php:122
19
+ msgid "Version"
20
+ msgstr "バージョン"
21
+
22
+ #: ../mappress.php:130
23
+ msgid "Documentation"
24
+ msgstr "書類"
25
+
26
+ #: ../mappress.php:131
27
+ msgid "Support"
28
+ msgstr "サポート"
29
+
30
+ #: ../mappress.php:132
31
+ msgid "Contact"
32
+ msgstr "コンタクト"
33
+
34
+ #: ../mappress.php:135
35
+ msgid "Upgrade to MapPress Pro"
36
+ msgstr "MapPress Proへアップグレード"
37
+
38
+ #: ../mappress.php:330
39
+ msgid ""
40
+ "MapPress database tables are missing. Please deactivate the plugin and "
41
+ "activate it again to fix this."
42
+ msgstr ""
43
+ "MapPressのデータベーステーブルがありません。この問題を解決するには、プラグイ"
44
+ "ンを無効にした後、再度有効にして下さい。"
45
+
46
+ #: ../mappress.php:335
47
+ msgid ""
48
+ "WARNING: MapPress now requires WordPress 3.2 or higher. Please upgrade "
49
+ "before using MapPress."
50
+ msgstr ""
51
+ "注意:MapPressにはWordPress 3.2以上が必要です。MapPressを使用する前に更新して"
52
+ "下さい。"
53
+
54
+ #: ../mappress.php:340
55
+ msgid ""
56
+ "WARNING: MapPress is not compfatible with the WP-Geo plugin. Please "
57
+ "deactivate or uninstall WP-Geo before using MapPress."
58
+ msgstr ""
59
+ "注意:MapPressはWP-Geo pluginとの互換性がありません。MapPressを使用する前に"
60
+ "WP-Geoを無効にするか、アンインストールして下さい。"
61
+
62
+ #: ../mappress.php:533 ../templates/map_directions.php:6
63
+ msgid "Bicycling"
64
+ msgstr "自転車で行く"
65
+
66
+ #: ../mappress.php:534
67
+ msgid "Bike"
68
+ msgstr "自転車"
69
+
70
+ #: ../mappress.php:535
71
+ msgid "One of the addresses could not be found."
72
+ msgstr "住所の一つが見つかりませんでした。"
73
+
74
+ #: ../mappress.php:536
75
+ msgid ""
76
+ "Google cannot return directions between those addresses. There is no route "
77
+ "between them or the routing information is not available."
78
+ msgstr ""
79
+ "Googleはこれらの住所間のルート・乗換案内を見つけられませんでした。ルートがな"
80
+ "いか、ルート情報が利用できません。"
81
+
82
+ #: ../mappress.php:537
83
+ msgid "Unknown error, unable to return directions. Status code = "
84
+ msgstr ""
85
+ "不明なエラーです。ルート・乗換案内を表示できません。ステータスコード = "
86
+
87
+ #: ../mappress.php:538 ../mappress_poi.php:282 ../mappress_settings.php:129
88
+ #: ../pro/mappress_widget.php:108
89
+ msgid "Directions"
90
+ msgstr "ルート・乗換案内"
91
+
92
+ #: ../mappress.php:539
93
+ msgid "Error reading KML file"
94
+ msgstr "KMLファイル読み込みエラー"
95
+
96
+ #: ../mappress.php:540
97
+ msgid "Loading..."
98
+ msgstr "読み込み中..."
99
+
100
+ #: ../mappress.php:541
101
+ msgid "No matching address"
102
+ msgstr "合致する住所がありません。"
103
+
104
+ #: ../mappress.php:542
105
+ msgid "Unable to get your location"
106
+ msgstr "あなたの位置が確認できません。"
107
+
108
+ #: ../mappress.php:543 ../mappress_settings.php:321
109
+ msgid "Traffic"
110
+ msgstr "交通状況"
111
+
112
+ #: ../mappress.php:544
113
+ msgid "Transit"
114
+ msgstr "乗換"
115
+
116
+ #: ../mappress.php:545 ../mappress_poi.php:331 ../mappress_settings.php:316
117
+ #: ../mappress_settings.php:455 ../pro/mappress_widget.php:124
118
+ msgid "Zoom"
119
+ msgstr "ズーム"
120
+
121
+ #: ../mappress.php:550
122
+ msgid "Add"
123
+ msgstr "追加"
124
+
125
+ #: ../mappress.php:551
126
+ msgid "Click & drag to move"
127
+ msgstr "クリック&ドラッグで移動"
128
+
129
+ #: ../mappress.php:552
130
+ msgid "Click to change"
131
+ msgstr "クリックで変更"
132
+
133
+ #: ../mappress.php:553 ../mappress_map.php:428
134
+ msgid "Delete"
135
+ msgstr "削除"
136
+
137
+ #: ../mappress.php:554
138
+ msgid "Delete this POI?"
139
+ msgstr "このPOIを削除しますか?"
140
+
141
+ #: ../mappress.php:555
142
+ msgid "Delete this map?"
143
+ msgstr "この地図を削除しますか?"
144
+
145
+ #: ../mappress.php:556
146
+ msgid "Please save the map first"
147
+ msgstr "まず最初にマップを保存して下さい。"
148
+
149
+ #: ../mappress.php:557
150
+ msgid "Shape"
151
+ msgstr ""
152
+
153
+ #: ../mappress.php:558
154
+ msgid "Untitled"
155
+ msgstr "名称未設定"
156
+
157
+ #: ../mappress_map.php:106
158
+ msgid "Map not found"
159
+ msgstr "マップが見つかりません"
160
+
161
+ #: ../mappress_map.php:426
162
+ msgid "Edit"
163
+ msgstr "編集"
164
+
165
+ #: ../mappress_map.php:427 ../forms/map_media.php:48
166
+ msgid "Insert into post"
167
+ msgstr "記事へ挿入"
168
+
169
+ #: ../mappress_map.php:467
170
+ msgid "Show map"
171
+ msgstr "マップを表示"
172
+
173
+ #: ../mappress_map.php:479 ../mappress_settings.php:447
174
+ #: ../forms/map_editor.php:17
175
+ msgid "Center map"
176
+ msgstr "地図の中心へ"
177
+
178
+ #: ../mappress_map.php:488 ../mappress_settings.php:448
179
+ msgid "Reset map"
180
+ msgstr "地図のリセット"
181
+
182
+ #: ../mappress_map.php:497 ../mappress_settings.php:446
183
+ msgid "Bigger map"
184
+ msgstr "大きな地図"
185
+
186
+ #: ../mappress_map.php:498
187
+ msgid "Smaller map"
188
+ msgstr "小さな地図"
189
+
190
+ #: ../mappress_poi.php:247 ../mappress_settings.php:456
191
+ msgid "Directions to"
192
+ msgstr "行き先に設定"
193
+
194
+ #: ../mappress_poi.php:249 ../mappress_settings.php:457
195
+ msgid "Directions from"
196
+ msgstr "出発地に設定"
197
+
198
+ #: ../mappress_settings.php:126
199
+ msgid "Basic Settings"
200
+ msgstr "基本設定"
201
+
202
+ #: ../mappress_settings.php:127
203
+ msgid "Post types"
204
+ msgstr "投稿タイプ"
205
+
206
+ #: ../mappress_settings.php:128
207
+ msgid "Automatic map display"
208
+ msgstr "自動地図表示"
209
+
210
+ #: ../mappress_settings.php:131
211
+ msgid "Map Controls"
212
+ msgstr "マップコントロール"
213
+
214
+ #: ../mappress_settings.php:132
215
+ msgid "Draggable"
216
+ msgstr "ドラッグ"
217
+
218
+ #: ../mappress_settings.php:133
219
+ msgid "Keyboard shortcuts"
220
+ msgstr "ショートカット"
221
+
222
+ #: ../mappress_settings.php:134
223
+ msgid "Scroll wheel zoom"
224
+ msgstr "ホイールズーム"
225
+
226
+ #: ../mappress_settings.php:135
227
+ msgid "Map Types"
228
+ msgstr "マップタイプ"
229
+
230
+ #: ../mappress_settings.php:136
231
+ msgid "Map controls"
232
+ msgstr "マップコントロール"
233
+
234
+ #: ../mappress_settings.php:138
235
+ msgid "Map Settings"
236
+ msgstr "マップ設定"
237
+
238
+ #: ../mappress_settings.php:139
239
+ msgid "Map links"
240
+ msgstr "マップリンク"
241
+
242
+ #: ../mappress_settings.php:140
243
+ msgid "Map alignment"
244
+ msgstr "マップの位置揃え"
245
+
246
+ #: ../mappress_settings.php:141
247
+ msgid "Map border"
248
+ msgstr "マップのふち取り"
249
+
250
+ #: ../mappress_settings.php:142
251
+ msgid "Map border color"
252
+ msgstr "ふち取りのカラー"
253
+
254
+ #: ../mappress_settings.php:143
255
+ msgid "Open first POI"
256
+ msgstr "最初のPOIを開く"
257
+
258
+ #: ../mappress_settings.php:145
259
+ msgid "POI Settings"
260
+ msgstr "POI設定"
261
+
262
+ #: ../mappress_settings.php:146
263
+ msgid "POI links"
264
+ msgstr "POIリンク"
265
+
266
+ #: ../mappress_settings.php:147
267
+ msgid "Tooltips"
268
+ msgstr "ツールチップ"
269
+
270
+ #: ../mappress_settings.php:148
271
+ msgid "Default zoom"
272
+ msgstr "初期ズーム値"
273
+
274
+ #: ../mappress_settings.php:151
275
+ msgid "Mashups"
276
+ msgstr "マッシュアップ"
277
+
278
+ #: ../mappress_settings.php:152
279
+ msgid "Icons"
280
+ msgstr "アイコン"
281
+
282
+ #: ../mappress_settings.php:153
283
+ msgid "Styled Maps"
284
+ msgstr "スタイル付き地図"
285
+
286
+ #: ../mappress_settings.php:154
287
+ msgid "Geocoding"
288
+ msgstr "Geocoding"
289
+
290
+ #: ../mappress_settings.php:157
291
+ msgid "Localization"
292
+ msgstr "ローカライズ"
293
+
294
+ #: ../mappress_settings.php:158
295
+ msgid "Language"
296
+ msgstr "言語"
297
+
298
+ #: ../mappress_settings.php:159
299
+ msgid "Country"
300
+ msgstr "国"
301
+
302
+ #: ../mappress_settings.php:160
303
+ msgid "Directions server"
304
+ msgstr "ルート・乗換案内サーバー"
305
+
306
+ #: ../mappress_settings.php:161
307
+ msgid "Directions units"
308
+ msgstr "ルート・乗換案内の単位"
309
+
310
+ #: ../mappress_settings.php:163
311
+ msgid "Miscellaneous"
312
+ msgstr "その他"
313
+
314
+ #: ../mappress_settings.php:164
315
+ msgid "Adaptive display"
316
+ msgstr "適応表示"
317
+
318
+ #: ../mappress_settings.php:165
319
+ msgid "Turn off CSS"
320
+ msgstr "CSSの解除"
321
+
322
+ #: ../mappress_settings.php:166
323
+ msgid "Load maps last"
324
+ msgstr "地図を最後に読み込む"
325
+
326
+ #: ../mappress_settings.php:221
327
+ msgid "Use the settings below to automatically create maps from custom fields."
328
+ msgstr "下記の設定でマップをカスタムフィールドから自動的に作成する"
329
+
330
+ #: ../mappress_settings.php:227
331
+ msgid "Posts"
332
+ msgstr "投稿"
333
+
334
+ #: ../mappress_settings.php:228
335
+ msgid "Pages"
336
+ msgstr "ページ"
337
+
338
+ #: ../mappress_settings.php:240
339
+ msgid "country code"
340
+ msgstr "国コード"
341
+
342
+ #: ../mappress_settings.php:242
343
+ #, php-format
344
+ msgid "Enter a %s to use when searching (leave blank for USA)"
345
+ msgstr "検索に使用する%sを入力(空白はUSA)"
346
+
347
+ #: ../mappress_settings.php:249
348
+ msgid "Enter a google server URL for directions/printing"
349
+ msgstr "ルート・乗換案内/プリント用にGoogleサーバーのURLを入力"
350
+
351
+ #: ../mappress_settings.php:254
352
+ msgid "(Default)"
353
+ msgstr "(初期設定)"
354
+
355
+ #: ../mappress_settings.php:254
356
+ msgid "Metric (kilometers)"
357
+ msgstr "メートル法(キロメートル)"
358
+
359
+ #: ../mappress_settings.php:254
360
+ msgid "Imperial (miles)"
361
+ msgstr "ヤード・ポンド法(マイル)"
362
+
363
+ #: ../mappress_settings.php:259
364
+ msgid "Enable map dragging with the mouse"
365
+ msgstr "マウスによるマップのドラッグを可能にする"
366
+
367
+ #: ../mappress_settings.php:263
368
+ msgid "Enable zoom with the mouse scroll wheel"
369
+ msgstr "マウスホイールのスクロールによるズームを可能にする"
370
+
371
+ #: ../mappress_settings.php:267
372
+ msgid "Enable keyboard panning and zooming"
373
+ msgstr "キーボードによるパンやズームを可能にする"
374
+
375
+ #: ../mappress_settings.php:273
376
+ msgid "language"
377
+ msgstr "言語"
378
+
379
+ #: ../mappress_settings.php:275
380
+ #, php-format
381
+ msgid "Use a specific %s for map controls and geocoding"
382
+ msgstr "マップコントロールとGeocodingに特定の%sを使用する"
383
+
384
+ #: ../mappress_settings.php:283 ../mappress_settings.php:289
385
+ #: ../mappress_settings.php:384
386
+ msgid "Default"
387
+ msgstr "初期設定"
388
+
389
+ #: ../mappress_settings.php:284
390
+ msgid "Horizontal"
391
+ msgstr "横"
392
+
393
+ #: ../mappress_settings.php:285
394
+ msgid "Dropdown"
395
+ msgstr "ドロップダウン"
396
+
397
+ #: ../mappress_settings.php:290
398
+ msgid "Small"
399
+ msgstr "小"
400
+
401
+ #: ../mappress_settings.php:291
402
+ msgid "Large"
403
+ msgstr "大"
404
+
405
+ #: ../mappress_settings.php:292
406
+ msgid "Android"
407
+ msgstr ""
408
+
409
+ #: ../mappress_settings.php:303
410
+ msgid "Open initially"
411
+ msgstr "最初から開く"
412
+
413
+ #: ../mappress_settings.php:305 ../mappress_settings.php:307
414
+ #: ../mappress_settings.php:309
415
+ msgid "Checked initially"
416
+ msgstr "最初からチェック"
417
+
418
+ #: ../mappress_settings.php:311
419
+ msgid "Control"
420
+ msgstr "コントロール"
421
+
422
+ #: ../mappress_settings.php:311
423
+ msgid "Enable"
424
+ msgstr ""
425
+
426
+ #: ../mappress_settings.php:311 ../mappress_settings.php:409
427
+ msgid "Style"
428
+ msgstr "スタイル"
429
+
430
+ #: ../mappress_settings.php:314
431
+ msgid "Map types"
432
+ msgstr "マップタイプ"
433
+
434
+ #: ../mappress_settings.php:315
435
+ msgid "Pan"
436
+ msgstr "パン"
437
+
438
+ #: ../mappress_settings.php:317
439
+ msgid "Street view"
440
+ msgstr "ストリートビュー"
441
+
442
+ #: ../mappress_settings.php:318
443
+ msgid "Scale"
444
+ msgstr "スケール"
445
+
446
+ #: ../mappress_settings.php:319
447
+ msgid "Overview map"
448
+ msgstr "外観マップ"
449
+
450
+ #: ../mappress_settings.php:320
451
+ msgid "Public transit"
452
+ msgstr "公共交通機関"
453
+
454
+ #: ../mappress_settings.php:322
455
+ msgid "Bike routes"
456
+ msgstr "自転車のルート"
457
+
458
+ #: ../mappress_settings.php:329
459
+ msgid "Road map"
460
+ msgstr "地図"
461
+
462
+ #: ../mappress_settings.php:330 ../pro/mappress_widget.php:142
463
+ msgid "Satellite"
464
+ msgstr "衛星写真"
465
+
466
+ #: ../mappress_settings.php:331 ../pro/mappress_widget.php:143
467
+ msgid "Terrain"
468
+ msgstr "地形"
469
+
470
+ #: ../mappress_settings.php:332 ../pro/mappress_widget.php:141
471
+ msgid "Hybrid"
472
+ msgstr "ハイブリッド"
473
+
474
+ #: ../mappress_settings.php:345
475
+ msgid "Inline (in your blog)"
476
+ msgstr "インライン(ブログ上)"
477
+
478
+ #: ../mappress_settings.php:346 ../pro/mappress_pro_settings.php:165
479
+ #: ../pro/mappress_widget.php:110
480
+ msgid "Google"
481
+ msgstr ""
482
+
483
+ #: ../mappress_settings.php:347 ../pro/mappress_widget.php:111
484
+ msgid "None"
485
+ msgstr "なし"
486
+
487
+ #: ../mappress_settings.php:354
488
+ msgid "Automatically open the first POI when a map is displayed"
489
+ msgstr "地図の表示時に最初のPOIを自動で開く"
490
+
491
+ #: ../mappress_settings.php:359 ../mappress_settings.php:368
492
+ msgid "Show control"
493
+ msgstr ""
494
+
495
+ #: ../mappress_settings.php:363 ../mappress_settings.php:372
496
+ msgid "Enabled by default"
497
+ msgstr ""
498
+
499
+ #: ../mappress_settings.php:377
500
+ msgid "Show POI titles as a \"tooltip\" on mouse-over"
501
+ msgstr "\"ツールチップ\"のマウスオーバーでPOIのタイトルを表示する"
502
+
503
+ #: ../mappress_settings.php:385 ../pro/mappress_widget.php:116
504
+ msgid "Center"
505
+ msgstr "中央"
506
+
507
+ #: ../mappress_settings.php:386
508
+ msgid "Left"
509
+ msgstr "左寄せ"
510
+
511
+ #: ../mappress_settings.php:387
512
+ msgid "Right"
513
+ msgstr "右寄せ"
514
+
515
+ #: ../mappress_settings.php:399
516
+ msgid "solid"
517
+ msgstr "実線"
518
+
519
+ #: ../mappress_settings.php:400
520
+ msgid "dashed"
521
+ msgstr "四角い点線"
522
+
523
+ #: ../mappress_settings.php:401
524
+ msgid "dotted"
525
+ msgstr "丸い点線"
526
+
527
+ #: ../mappress_settings.php:402
528
+ msgid "double"
529
+ msgstr "二重線"
530
+
531
+ #: ../mappress_settings.php:403
532
+ msgid "groove"
533
+ msgstr "立体枠のくぼみ"
534
+
535
+ #: ../mappress_settings.php:404
536
+ msgid "inset"
537
+ msgstr "インセット"
538
+
539
+ #: ../mappress_settings.php:405
540
+ msgid "outset"
541
+ msgstr "アウトセット"
542
+
543
+ #: ../mappress_settings.php:417
544
+ msgid "Width"
545
+ msgstr "太さ"
546
+
547
+ #: ../mappress_settings.php:423
548
+ msgid "Corner radius"
549
+ msgstr "角丸"
550
+
551
+ #: ../mappress_settings.php:431
552
+ msgid "Color"
553
+ msgstr "カラー"
554
+
555
+ #: ../mappress_settings.php:441
556
+ msgid "Display shadow"
557
+ msgstr "影を表示"
558
+
559
+ #: ../mappress_settings.php:465
560
+ msgid "Default zoom for POIs entered by lat/lng"
561
+ msgstr "緯度/経度を入力した時のPOIの初期ズーム値"
562
+
563
+ #: ../mappress_settings.php:471
564
+ msgid "Top of post"
565
+ msgstr "投稿の最初"
566
+
567
+ #: ../mappress_settings.php:472
568
+ msgid "Bottom of post"
569
+ msgstr "投稿の最後"
570
+
571
+ #: ../mappress_settings.php:473
572
+ msgid "No automatic display"
573
+ msgstr "自動表示しない"
574
+
575
+ #: ../mappress_settings.php:480
576
+ msgid "Recenter maps when window is resized"
577
+ msgstr "ウィンドウの再読み込み時にマップを中央にする"
578
+
579
+ #: ../mappress_settings.php:484
580
+ #, php-format
581
+ msgid "Don't load the %s stylesheet"
582
+ msgstr "%s スタイルシートを読み込まない"
583
+
584
+ #: ../mappress_settings.php:488
585
+ msgid "Load maps in window 'load' event"
586
+ msgstr "ウィンドウの「load」イベントでマップを読み込む"
587
+
588
+ #: ../mappress_settings.php:496
589
+ msgid "Rate it 5 Stars"
590
+ msgstr "5つ星"
591
+
592
+ #: ../mappress_settings.php:498
593
+ #, php-format
594
+ msgid "%s on WordPress.org"
595
+ msgstr "%s をWordPress.orgでつけて下さい"
596
+
597
+ #: ../mappress_settings.php:499
598
+ msgid "Thanks for your support!"
599
+ msgstr "ご支持ありがとうございます!"
600
+
601
+ #: ../mappress_settings.php:526
602
+ msgid "MapPress"
603
+ msgstr ""
604
+
605
+ #: ../mappress_settings.php:527
606
+ msgid "Easy Google Maps"
607
+ msgstr ""
608
+
609
+ #: ../mappress_settings.php:576
610
+ msgid "Like this plugin?"
611
+ msgstr "気に入って頂けましたか?"
612
+
613
+ #: ../mappress_settings.php:578
614
+ msgid "Sample Map"
615
+ msgstr "サンプルマップ"
616
+
617
+ #: ../mappress_settings.php:597
618
+ msgid "Save Changes"
619
+ msgstr "変更を保存"
620
+
621
+ #: ../mappress_settings.php:598
622
+ msgid "Reset Defaults"
623
+ msgstr "初期設定に戻す"
624
+
625
+ #: ../mappress_updater.php:19
626
+ msgid "Settings"
627
+ msgstr "設定"
628
+
629
+ #: ../mappress_updater.php:41
630
+ msgid "download it now"
631
+ msgstr "ダウンロードする"
632
+
633
+ #: ../mappress_updater.php:46
634
+ #, php-format
635
+ msgid "A PRO Version update is available for manual installation: %s"
636
+ msgstr "手動インストールでPROバージョンへ更新出来ます: %s"
637
+
638
+ #: ../forms/map_editor.php:2
639
+ msgid "Add POI"
640
+ msgstr "POIを追加"
641
+
642
+ #: ../forms/map_editor.php:5 ../templates/map_directions.php:11
643
+ msgid "My location"
644
+ msgstr "現在地"
645
+
646
+ #: ../forms/map_editor.php:18
647
+ msgid "Click map for lat/lng: "
648
+ msgstr "クリックして緯度/経度を表示:"
649
+
650
+ #: ../forms/map_editor_infobox.php:22
651
+ msgid "Line: "
652
+ msgstr ""
653
+
654
+ #: ../forms/map_editor_infobox.php:24
655
+ msgid "Weight"
656
+ msgstr ""
657
+
658
+ #: ../forms/map_editor_infobox.php:25 ../forms/map_editor_infobox.php:31
659
+ msgid "Opacity"
660
+ msgstr ""
661
+
662
+ #: ../forms/map_editor_infobox.php:29
663
+ msgid "Fill: "
664
+ msgstr ""
665
+
666
+ #: ../forms/map_editor_infobox.php:40
667
+ msgid "Visual"
668
+ msgstr "リッチテキスト"
669
+
670
+ #: ../forms/map_editor_infobox.php:40
671
+ msgid "HTML"
672
+ msgstr "HTMLの編集"
673
+
674
+ #: ../forms/map_editor_infobox.php:45 ../forms/map_media.php:46
675
+ msgid "Save"
676
+ msgstr "保存"
677
+
678
+ #: ../forms/map_editor_infobox.php:46 ../forms/map_media.php:47
679
+ #: ../pro/mappress_icons.php:64
680
+ msgid "Cancel"
681
+ msgstr "キャンセル"
682
+
683
+ #: ../forms/map_media.php:11
684
+ msgid "Maps for This Post"
685
+ msgstr "この投稿の地図"
686
+
687
+ #: ../forms/map_media.php:12
688
+ msgid "New Map"
689
+ msgstr "新規マップ"
690
+
691
+ #: ../forms/map_media.php:22
692
+ msgid "Map ID"
693
+ msgstr "マップID"
694
+
695
+ #: ../forms/map_media.php:27
696
+ msgid "Map Title"
697
+ msgstr "マップタイトル"
698
+
699
+ #: ../forms/map_media.php:32
700
+ msgid "Size"
701
+ msgstr "サイズ"
702
+
703
+ #: ../pro/mappress_geocoders.php:53
704
+ msgid "No results, check that a geocoder is configured"
705
+ msgstr ""
706
+
707
+ #: ../pro/mappress_geocoders.php:76
708
+ #, php-format
709
+ msgid "Invalid status: %s, address: %s"
710
+ msgstr ""
711
+
712
+ #: ../pro/mappress_geocoders.php:85 ../pro/mappress_geocoders.php:149
713
+ #, php-format
714
+ msgid "No results for address: %s"
715
+ msgstr ""
716
+
717
+ #: ../pro/mappress_geocoders.php:145
718
+ #, php-format
719
+ msgid "Error: %s %s"
720
+ msgstr ""
721
+
722
+ #: ../pro/mappress_icons.php:65
723
+ msgid "Use default icon"
724
+ msgstr "初期設定アイコンを使用"
725
+
726
+ #: ../pro/mappress_pro.php:151
727
+ msgid "Automatic"
728
+ msgstr ""
729
+
730
+ #: ../pro/mappress_pro_settings.php:10
731
+ msgid "POI list"
732
+ msgstr "POIリスト"
733
+
734
+ #: ../pro/mappress_pro_settings.php:11
735
+ msgid "Use DataTables"
736
+ msgstr "DataTablesを使用する"
737
+
738
+ #: ../pro/mappress_pro_settings.php:13
739
+ msgid "InfoWindow type"
740
+ msgstr "情報ウィンドウタイプ"
741
+
742
+ #: ../pro/mappress_pro_settings.php:14
743
+ msgid "InfoWindow panning"
744
+ msgstr "情報ウィンドウのパン"
745
+
746
+ #: ../pro/mappress_pro_settings.php:16
747
+ msgid "Default icon"
748
+ msgstr "初期設定アイコン"
749
+
750
+ #: ../pro/mappress_pro_settings.php:17
751
+ msgid "Custom icons directory"
752
+ msgstr "カスタムアイコンのディレクトリー"
753
+
754
+ #: ../pro/mappress_pro_settings.php:19
755
+ msgid "Mashup POI title"
756
+ msgstr "POIタイトルのマッシュアップ"
757
+
758
+ #: ../pro/mappress_pro_settings.php:20
759
+ msgid "Mashup POI body"
760
+ msgstr "POIボディのマッシュアップ"
761
+
762
+ #: ../pro/mappress_pro_settings.php:21
763
+ msgid "Mashup POI click"
764
+ msgstr "POIクリックのマッシュアップ"
765
+
766
+ #: ../pro/mappress_pro_settings.php:22
767
+ msgid "Link title"
768
+ msgstr "リンクタイトル"
769
+
770
+ #: ../pro/mappress_pro_settings.php:23
771
+ msgid "Mashup Thumbnails"
772
+ msgstr "サムネールのマッシュアップ"
773
+
774
+ #: ../pro/mappress_pro_settings.php:24
775
+ msgid "Thumbnail Size"
776
+ msgstr "サムネールサイズ"
777
+
778
+ #: ../pro/mappress_pro_settings.php:26
779
+ msgid "Styled maps"
780
+ msgstr "スタイル付き地図"
781
+
782
+ #: ../pro/mappress_pro_settings.php:27
783
+ msgid "Default style"
784
+ msgstr "初期設定スタイル"
785
+
786
+ #: ../pro/mappress_pro_settings.php:29
787
+ msgid "Geocoder(s)"
788
+ msgstr ""
789
+
790
+ #: ../pro/mappress_pro_settings.php:30
791
+ msgid "Geocoding fields"
792
+ msgstr "Geocodingフィールド"
793
+
794
+ #: ../pro/mappress_pro_settings.php:32
795
+ msgid "API key (optional)"
796
+ msgstr "APIキー(オプション)"
797
+
798
+ #: ../pro/mappress_pro_settings.php:33
799
+ msgid "Map sizes"
800
+ msgstr "マップサイズ"
801
+
802
+ #: ../pro/mappress_pro_settings.php:34
803
+ msgid "Force resize"
804
+ msgstr "強制リサイズ"
805
+
806
+ #: ../pro/mappress_pro_settings.php:63
807
+ msgid "Show a list of POIs under each map"
808
+ msgstr "各マップの下にPOIのリストを表示する"
809
+
810
+ #: ../pro/mappress_pro_settings.php:68
811
+ #, php-format
812
+ msgid "Show the POI list as a sortable %s"
813
+ msgstr "ソート可能な%sとしてPOIのリストを表示する"
814
+
815
+ #: ../pro/mappress_pro_settings.php:72
816
+ msgid "POI title"
817
+ msgstr "POIタイトル"
818
+
819
+ #: ../pro/mappress_pro_settings.php:72
820
+ msgid "Post title"
821
+ msgstr "投稿タイトル"
822
+
823
+ #: ../pro/mappress_pro_settings.php:77
824
+ msgid "POI body"
825
+ msgstr "POIボディ"
826
+
827
+ #: ../pro/mappress_pro_settings.php:77
828
+ msgid "Address"
829
+ msgstr "住所"
830
+
831
+ #: ../pro/mappress_pro_settings.php:77
832
+ msgid "Post excerpt"
833
+ msgstr "投稿の抜粋"
834
+
835
+ #: ../pro/mappress_pro_settings.php:82
836
+ msgid "Link POI titles to the underlying post"
837
+ msgstr "POIのタイトルを下の投稿にリンクする"
838
+
839
+ #: ../pro/mappress_pro_settings.php:86
840
+ msgid "Open the POI"
841
+ msgstr "POIを開く"
842
+
843
+ #: ../pro/mappress_pro_settings.php:86
844
+ msgid "Go directly to the post"
845
+ msgstr "投稿に直接ジャンプ"
846
+
847
+ #: ../pro/mappress_pro_settings.php:92
848
+ msgid "Google InfoWindow"
849
+ msgstr "Google情報ウィンドウ"
850
+
851
+ #: ../pro/mappress_pro_settings.php:93
852
+ msgid "InfoBox (can be styled and extend outside the map)"
853
+ msgstr "InfoBox (マップの外側に広げて表示されます)"
854
+
855
+ #: ../pro/mappress_pro_settings.php:99
856
+ msgid "Disable map panning when infoWindow / infoBox is opened"
857
+ msgstr "情報ウィンドウやInfoBoxが表示されているときはマップのパンを無効にする"
858
+
859
+ #: ../pro/mappress_pro_settings.php:103
860
+ msgid "Show featured image thumbnails in mashup POIs"
861
+ msgstr "マッシュアップされたPOIにアイキャッチ画像を表示する"
862
+
863
+ #: ../pro/mappress_pro_settings.php:111
864
+ msgid "Use existing size: "
865
+ msgstr "次のサイズを使用:"
866
+
867
+ #: ../pro/mappress_pro_settings.php:114
868
+ msgid "or resize to (px): "
869
+ msgstr "もしくはリサイズ:"
870
+
871
+ #: ../pro/mappress_pro_settings.php:129
872
+ msgid "styled maps"
873
+ msgstr "styled maps"
874
+
875
+ #: ../pro/mappress_pro_settings.php:130
876
+ msgid "styled maps wizard"
877
+ msgstr "styled maps wizard"
878
+
879
+ #: ../pro/mappress_pro_settings.php:132
880
+ #, php-format
881
+ msgid "Enter JSON for %s from Google's %s"
882
+ msgstr " %sのJSONをGoogleの%sから入力して下さい"
883
+
884
+ #: ../pro/mappress_pro_settings.php:141
885
+ msgid "Style name"
886
+ msgstr "スタイル名"
887
+
888
+ #: ../pro/mappress_pro_settings.php:155
889
+ msgid "No styles have been defined yet"
890
+ msgstr "スタイルが定義されていません"
891
+
892
+ #: ../pro/mappress_pro_settings.php:166
893
+ msgid "Nominatim"
894
+ msgstr ""
895
+
896
+ #: ../pro/mappress_pro_settings.php:178
897
+ msgid "Address Line 1"
898
+ msgstr "アドレス 1行目"
899
+
900
+ #: ../pro/mappress_pro_settings.php:179
901
+ msgid "Address Line 2"
902
+ msgstr "アドレス 2行目"
903
+
904
+ #: ../pro/mappress_pro_settings.php:180
905
+ msgid "Address Line 3"
906
+ msgstr "アドレス 3行目"
907
+
908
+ #: ../pro/mappress_pro_settings.php:181
909
+ msgid "Address Line 4"
910
+ msgstr "アドレス 4行目"
911
+
912
+ #: ../pro/mappress_pro_settings.php:182
913
+ msgid "Latitude"
914
+ msgstr "緯度"
915
+
916
+ #: ../pro/mappress_pro_settings.php:183
917
+ msgid "Longitude"
918
+ msgstr "経度"
919
+
920
+ #: ../pro/mappress_pro_settings.php:184
921
+ msgid "Icon"
922
+ msgstr "アイコン"
923
+
924
+ #: ../pro/mappress_pro_settings.php:185
925
+ msgid "Title"
926
+ msgstr "タイトル"
927
+
928
+ #: ../pro/mappress_pro_settings.php:186
929
+ msgid "Body"
930
+ msgstr "ボディ"
931
+
932
+ #: ../pro/mappress_pro_settings.php:187
933
+ msgid "Map Zoom"
934
+ msgstr "マップズーム"
935
+
936
+ #: ../pro/mappress_pro_settings.php:190 ../pro/mappress_widget.php:140
937
+ msgid "Map"
938
+ msgstr "マップ"
939
+
940
+ #: ../pro/mappress_pro_settings.php:190
941
+ msgid "Custom Field"
942
+ msgstr "カスタムフィールド"
943
+
944
+ #: ../pro/mappress_pro_settings.php:199
945
+ msgid "Overwrite existing maps when upating"
946
+ msgstr "既存のマップ更新時に上書きする"
947
+
948
+ #: ../pro/mappress_pro_settings.php:204
949
+ msgid "usage tracking"
950
+ msgstr ""
951
+
952
+ #: ../pro/mappress_pro_settings.php:205
953
+ #, php-format
954
+ msgid "API keys is needed only for premium services or %s"
955
+ msgstr "プレミアムサービスか%sの使用時に限りAPIキーが必要となります"
956
+
957
+ #: ../pro/mappress_pro_settings.php:209
958
+ msgid "Enter default map sizes"
959
+ msgstr "初期設定マップサイズを入力"
960
+
961
+ #: ../pro/mappress_pro_settings.php:213
962
+ msgid "Width(px)"
963
+ msgstr "幅(px)"
964
+
965
+ #: ../pro/mappress_pro_settings.php:213
966
+ msgid "Height(px)"
967
+ msgstr "高さ(px)"
968
+
969
+ #: ../pro/mappress_pro_settings.php:228
970
+ msgid "Permanently resize existing maps"
971
+ msgstr "既存のマップを永久にリサイズ"
972
+
973
+ #: ../pro/mappress_pro_settings.php:230
974
+ #, php-format
975
+ msgid "from %s to %s"
976
+ msgstr ""
977
+
978
+ #: ../pro/mappress_pro_settings.php:231
979
+ msgid "Force Resize"
980
+ msgstr ""
981
+
982
+ #: ../pro/mappress_widget.php:78
983
+ msgid "Widget title"
984
+ msgstr ""
985
+
986
+ #: ../pro/mappress_widget.php:83
987
+ msgid "Map size"
988
+ msgstr ""
989
+
990
+ #: ../pro/mappress_widget.php:89
991
+ msgid "Show"
992
+ msgstr ""
993
+
994
+ #: ../pro/mappress_widget.php:90
995
+ msgid "Current posts"
996
+ msgstr ""
997
+
998
+ #: ../pro/mappress_widget.php:91
999
+ msgid "Hide if empty"
1000
+ msgstr ""
1001
+
1002
+ #: ../pro/mappress_widget.php:93
1003
+ msgid "All posts"
1004
+ msgstr ""
1005
+
1006
+ #: ../pro/mappress_widget.php:94
1007
+ msgid "Custom query"
1008
+ msgstr ""
1009
+
1010
+ #: ../pro/mappress_widget.php:97
1011
+ msgid "Learn about queries"
1012
+ msgstr ""
1013
+
1014
+ #: ../pro/mappress_widget.php:102
1015
+ msgid "Show POI list"
1016
+ msgstr ""
1017
+
1018
+ #: ../pro/mappress_widget.php:104
1019
+ msgid "Link POIs to posts"
1020
+ msgstr ""
1021
+
1022
+ #: ../pro/mappress_widget.php:109
1023
+ msgid "Inline"
1024
+ msgstr ""
1025
+
1026
+ #: ../pro/mappress_widget.php:137
1027
+ msgid "Map type"
1028
+ msgstr ""
1029
+
1030
+ #: ../pro/mappress_widget.php:151
1031
+ msgid "Other Settings"
1032
+ msgstr ""
1033
+
1034
+ #: ../pro/mappress_widget.php:154
1035
+ msgid "Example: traffic=\"false\" maplinks=\"\""
1036
+ msgstr ""
1037
+
1038
+ #: ../templates/map_directions.php:3
1039
+ msgid "By car"
1040
+ msgstr "車で行く"
1041
+
1042
+ #: ../templates/map_directions.php:4
1043
+ msgid "Public Transit"
1044
+ msgstr "電車・バスを使う"
1045
+
1046
+ #: ../templates/map_directions.php:5
1047
+ msgid "Walking"
1048
+ msgstr "徒歩で行く"
1049
+
1050
+ #: ../templates/map_directions.php:16
1051
+ msgid "Swap start and end"
1052
+ msgstr ""
1053
+
1054
+ #: ../templates/map_directions.php:29
1055
+ msgid "Get Directions"
1056
+ msgstr "ルートを検索"
1057
+
1058
+ #: ../templates/map_directions.php:30
1059
+ msgid "Print"
1060
+ msgstr "印刷"
1061
+
1062
+ #: ../templates/map_directions.php:31
1063
+ msgid "Close"
1064
+ msgstr "閉じる"
1065
+
1066
+ #: ../templates/map_poi_list.php:5
1067
+ msgid "Location"
1068
+ msgstr "所在地"
languages/mappress-pl_PL.mo ADDED
Binary file
languages/mappress-pl_PL.po ADDED
@@ -0,0 +1,988 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: polish-1.0\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-05-08 13:34+0100\n"
6
+ "PO-Revision-Date: 2013-05-08 13:35+0100\n"
7
+ "Last-Translator: Michał Mleczko <mleczakm91@gmail.com>\n"
8
+ "Language-Team: Michał Mleczko <mleczakm91@gmail.com>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;esc_attr_e;esc_attr__;esc_html_e;esc_html__;__();_n()\n"
13
+ "X-Poedit-Basepath: .\n"
14
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
15
+ "Language: Polish\n"
16
+ "X-Generator: Poedit 1.5.5\n"
17
+ "X-Poedit-SearchPath-0: ..\n"
18
+ "X-Poedit-SearchPath-1: ..\n"
19
+ "X-Poedit-SearchPath-2: .\n"
20
+ "X-Poedit-SearchPath-3: ../forms\n"
21
+ "X-Poedit-SearchPath-4: ../templates\n"
22
+
23
+ #: ../mappress.php:122
24
+ msgid "Version"
25
+ msgstr "Wersja"
26
+
27
+ #: ../mappress.php:130
28
+ msgid "Documentation"
29
+ msgstr "Dokumentacja"
30
+
31
+ #: ../mappress.php:131
32
+ msgid "Support"
33
+ msgstr "Wsparcie"
34
+
35
+ #: ../mappress.php:132
36
+ msgid "Contact"
37
+ msgstr "Kontakt"
38
+
39
+ #: ../mappress.php:135
40
+ msgid "Upgrade to MapPress Pro"
41
+ msgstr "Uaktualnij do MapPress Pro"
42
+
43
+ #: ../mappress.php:330
44
+ msgid "MapPress database tables are missing. Please deactivate the plugin and activate it again to fix this."
45
+ msgstr "Brak baz danych MapPressa. Wyłącz wtyczkę i włącz ją ponownie aby to naprawić."
46
+
47
+ #: ../mappress.php:335
48
+ msgid "WARNING: MapPress now requires WordPress 3.2 or higher. Please upgrade before using MapPress."
49
+ msgstr "UWAGA: MapPress wymaga wersji 3.2 Wordpressa albo wyższe. Uaktualnij aby używaćMapPressa."
50
+
51
+ #: ../mappress.php:340
52
+ msgid "WARNING: MapPress is not compfatible with the WP-Geo plugin. Please deactivate or uninstall WP-Geo before using MapPress."
53
+ msgstr "UWAGA: MapPress nie jest kompatybilny z wtyczką WP-Geo. Wyłącz ją lub usuń aby używać MapPressa."
54
+
55
+ #: ../mappress.php:534
56
+ #: ../templates/map_directions.php:6
57
+ msgid "Bicycling"
58
+ msgstr "Jazda rowerem"
59
+
60
+ #: ../mappress.php:535
61
+ msgid "Bike"
62
+ msgstr "Motocyklem"
63
+
64
+ #: ../mappress.php:536
65
+ msgid "One of the addresses could not be found."
66
+ msgstr "Jeden z adresów nie został znaleziony."
67
+
68
+ #: ../mappress.php:537
69
+ msgid "Google cannot return directions between those addresses. There is no route between them or the routing information is not available."
70
+ msgstr "Google nie mogło znaleźć trasy pomiędzy tymi dwoma adresami. Nie ma pomiędzy nimi drogi lub informacje są niedostępne."
71
+
72
+ #: ../mappress.php:538
73
+ msgid "Unknown error, unable to return directions. Status code = "
74
+ msgstr "Nieznany błąd, nie udało się uzyskać trasy. Status = "
75
+
76
+ #: ../mappress.php:539
77
+ #: ../mappress_poi.php:281
78
+ #: ../mappress_settings.php:130
79
+ msgid "Directions"
80
+ msgstr "Przekierowania po kliknięciu w mapę"
81
+
82
+ #: ../mappress.php:540
83
+ msgid "Error reading KML file"
84
+ msgstr "Błąd w trakcie odczytu pliku KML"
85
+
86
+ #: ../mappress.php:541
87
+ msgid "Loading..."
88
+ msgstr "Ładowanie..."
89
+
90
+ # Bra
91
+ #: ../mappress.php:542
92
+ msgid "No matching address"
93
+ msgstr "Brak pasujących adresów"
94
+
95
+ #: ../mappress.php:543
96
+ msgid "Unable to get your location"
97
+ msgstr "Nie można uzyskać informacje o położeniu"
98
+
99
+ #: ../mappress.php:544
100
+ #: ../mappress_settings.php:330
101
+ msgid "Traffic"
102
+ msgstr "Ruch"
103
+
104
+ #: ../mappress.php:545
105
+ msgid "Transit"
106
+ msgstr "Tranzyt"
107
+
108
+ #: ../mappress.php:546
109
+ #: ../mappress_poi.php:330
110
+ #: ../mappress_settings.php:325
111
+ #: ../mappress_settings.php:465
112
+ msgid "Zoom"
113
+ msgstr "Zbliżenie"
114
+
115
+ #: ../mappress.php:551
116
+ msgid "Add"
117
+ msgstr "Dodaj"
118
+
119
+ #: ../mappress.php:552
120
+ msgid "Click & drag to move"
121
+ msgstr "Kliknij & przenieś aby przesunąć"
122
+
123
+ #: ../mappress.php:553
124
+ msgid "Click to change"
125
+ msgstr "Kliknij aby zmienić"
126
+
127
+ #: ../mappress.php:554
128
+ #: ../mappress_map.php:436
129
+ msgid "Delete"
130
+ msgstr "Usuń"
131
+
132
+ #: ../mappress.php:555
133
+ msgid "Delete this POI?"
134
+ msgstr "Usunąć to POI?"
135
+
136
+ #: ../mappress.php:556
137
+ msgid "Delete this map?"
138
+ msgstr "Usunąć tę mapę?"
139
+
140
+ #: ../mappress.php:557
141
+ msgid "Please save the map first"
142
+ msgstr "Najpierw zapisz mapę"
143
+
144
+ #: ../mappress.php:558
145
+ msgid "Shape"
146
+ msgstr "Kształt"
147
+
148
+ #: ../mappress.php:559
149
+ #: ../mappress_map.php:53
150
+ msgid "Untitled"
151
+ msgstr "Brak nazwy"
152
+
153
+ #: ../mappress_map.php:114
154
+ msgid "Map not found"
155
+ msgstr "Mapa nie znaleziona"
156
+
157
+ #: ../mappress_map.php:434
158
+ msgid "Edit"
159
+ msgstr "Edytuj"
160
+
161
+ #: ../mappress_map.php:435
162
+ #: ../forms/map_media.php:48
163
+ msgid "Insert into post"
164
+ msgstr "Wstaw do wpisu"
165
+
166
+ #: ../mappress_map.php:475
167
+ msgid "Show map"
168
+ msgstr "Pokaż mapę"
169
+
170
+ #: ../mappress_map.php:487
171
+ #: ../mappress_settings.php:457
172
+ #: ../forms/map_editor.php:17
173
+ msgid "Center map"
174
+ msgstr "Wyśrodkuj mapę"
175
+
176
+ #: ../mappress_map.php:496
177
+ #: ../mappress_settings.php:458
178
+ msgid "Reset map"
179
+ msgstr "Resetuj mapę"
180
+
181
+ #: ../mappress_map.php:505
182
+ #: ../mappress_settings.php:456
183
+ msgid "Bigger map"
184
+ msgstr "Większa mapa"
185
+
186
+ #: ../mappress_map.php:506
187
+ msgid "Smaller map"
188
+ msgstr "Mniejsza mapa"
189
+
190
+ #: ../mappress_poi.php:246
191
+ #: ../mappress_settings.php:466
192
+ msgid "Directions to"
193
+ msgstr "Kieruj do "
194
+
195
+ #: ../mappress_poi.php:248
196
+ #: ../mappress_settings.php:467
197
+ msgid "Directions from"
198
+ msgstr "Kieruj z "
199
+
200
+ #: ../mappress_settings.php:127
201
+ msgid "Basic Settings"
202
+ msgstr "Podstawowe ustawienia"
203
+
204
+ #: ../mappress_settings.php:128
205
+ msgid "Post types"
206
+ msgstr "Typy wiadomości"
207
+
208
+ #: ../mappress_settings.php:129
209
+ msgid "Automatic map display"
210
+ msgstr "Automatyczne wyświetlanie mapy"
211
+
212
+ #: ../mappress_settings.php:132
213
+ msgid "Map Controls"
214
+ msgstr "Kontrolowanie mapy"
215
+
216
+ #: ../mappress_settings.php:133
217
+ msgid "Draggable"
218
+ msgstr "Przesuwanie"
219
+
220
+ #: ../mappress_settings.php:134
221
+ msgid "Keyboard shortcuts"
222
+ msgstr "Skróty klawiaturowe"
223
+
224
+ #: ../mappress_settings.php:135
225
+ msgid "Scroll wheel zoom"
226
+ msgstr "Zbliżanie kółkiem myszy"
227
+
228
+ #: ../mappress_settings.php:136
229
+ msgid "Map Types"
230
+ msgstr "Typy map"
231
+
232
+ #: ../mappress_settings.php:137
233
+ msgid "Map controls"
234
+ msgstr "Kontrolki na mapie"
235
+
236
+ #: ../mappress_settings.php:139
237
+ msgid "Map Settings"
238
+ msgstr "Ustawienia mapy"
239
+
240
+ #: ../mappress_settings.php:140
241
+ msgid "Map links"
242
+ msgstr "Odnośniki"
243
+
244
+ #: ../mappress_settings.php:141
245
+ msgid "Map alignment"
246
+ msgstr "Wyrównanie"
247
+
248
+ #: ../mappress_settings.php:142
249
+ msgid "Map border"
250
+ msgstr "Krawędzie mapy"
251
+
252
+ #: ../mappress_settings.php:143
253
+ msgid "Map border color"
254
+ msgstr "Kolory krawędzi"
255
+
256
+ #: ../mappress_settings.php:144
257
+ msgid "Open first POI"
258
+ msgstr "Otwórz pierwsze POI"
259
+
260
+ #: ../mappress_settings.php:146
261
+ msgid "POI Settings"
262
+ msgstr "Ustawienia POI"
263
+
264
+ #: ../mappress_settings.php:147
265
+ msgid "POI links"
266
+ msgstr "Odnośniki POI"
267
+
268
+ #: ../mappress_settings.php:148
269
+ msgid "Tooltips"
270
+ msgstr "Podpowiedzi"
271
+
272
+ #: ../mappress_settings.php:149
273
+ msgid "Default zoom"
274
+ msgstr "Domyślne zbliżenie"
275
+
276
+ #: ../mappress_settings.php:152
277
+ msgid "Mashups"
278
+ msgstr "Mashupy"
279
+
280
+ #: ../mappress_settings.php:153
281
+ msgid "Icons"
282
+ msgstr "Ikony"
283
+
284
+ #: ../mappress_settings.php:154
285
+ msgid "Styled Maps"
286
+ msgstr "Stylizowane mapy"
287
+
288
+ #: ../mappress_settings.php:155
289
+ msgid "Geocoding"
290
+ msgstr "Geokodowanie"
291
+
292
+ #: ../mappress_settings.php:158
293
+ msgid "Localization"
294
+ msgstr "Lokalizacja"
295
+
296
+ #: ../mappress_settings.php:159
297
+ msgid "Language"
298
+ msgstr "Język"
299
+
300
+ #: ../mappress_settings.php:160
301
+ msgid "Country"
302
+ msgstr "Kraj"
303
+
304
+ #: ../mappress_settings.php:161
305
+ msgid "Directions server"
306
+ msgstr "Serwer map"
307
+
308
+ #: ../mappress_settings.php:162
309
+ msgid "Directions units"
310
+ msgstr "Jednostki"
311
+
312
+ #: ../mappress_settings.php:164
313
+ msgid "Miscellaneous"
314
+ msgstr "Rożne"
315
+
316
+ #: ../mappress_settings.php:165
317
+ msgid "Adaptive display"
318
+ msgstr "Skalowanie rozmiaru mapy"
319
+
320
+ #: ../mappress_settings.php:166
321
+ msgid "Turn off CSS"
322
+ msgstr "Wyłącz wbudowany CSS"
323
+
324
+ #: ../mappress_settings.php:167
325
+ msgid "Load maps last"
326
+ msgstr "Ładuj mapy na końcu"
327
+
328
+ #: ../mappress_settings.php:230
329
+ msgid "Use the settings below to automatically create maps from custom fields."
330
+ msgstr "Użyj opcji poniżej aby automatycznie tworzyć mapy z własnego typu pól."
331
+
332
+ #: ../mappress_settings.php:236
333
+ msgid "Posts"
334
+ msgstr "Wpisy"
335
+
336
+ #: ../mappress_settings.php:237
337
+ msgid "Pages"
338
+ msgstr "Strony"
339
+
340
+ #: ../mappress_settings.php:249
341
+ msgid "country code"
342
+ msgstr "kod kraju"
343
+
344
+ #: ../mappress_settings.php:251
345
+ #, php-format
346
+ msgid "Enter a %s to use when searching (leave blank for USA)"
347
+ msgstr "Podaj %s do używania w wyszukiwarkach (pozostaw puste dla USA) "
348
+
349
+ #: ../mappress_settings.php:258
350
+ msgid "Enter a google server URL for directions/printing"
351
+ msgstr "Podaj adres URL serwera google dla obliczania tras/drukowania"
352
+
353
+ #: ../mappress_settings.php:263
354
+ msgid "(Default)"
355
+ msgstr "(Domyślny)"
356
+
357
+ #: ../mappress_settings.php:263
358
+ msgid "Metric (kilometers)"
359
+ msgstr "Metryczny (kilometry)"
360
+
361
+ #: ../mappress_settings.php:263
362
+ msgid "Imperial (miles)"
363
+ msgstr "Brytyjski (mile)"
364
+
365
+ #: ../mappress_settings.php:268
366
+ msgid "Enable map dragging with the mouse"
367
+ msgstr "Włącz przesuwanie mapy za pomocą myszy"
368
+
369
+ #: ../mappress_settings.php:272
370
+ msgid "Enable zoom with the mouse scroll wheel"
371
+ msgstr "Włącz zbliżanie mapy kółkiem myszy"
372
+
373
+ #: ../mappress_settings.php:276
374
+ msgid "Enable keyboard panning and zooming"
375
+ msgstr "Włącz przesuwanie i zbliżanie mapy za pomocą klawiatury"
376
+
377
+ #: ../mappress_settings.php:282
378
+ msgid "language"
379
+ msgstr "języka"
380
+
381
+ #: ../mappress_settings.php:284
382
+ #, php-format
383
+ msgid "Use a specific %s for map controls and geocoding"
384
+ msgstr "Użyj specyficznego %s dla kontrolek mapy i geokodowania"
385
+
386
+ #: ../mappress_settings.php:292
387
+ #: ../mappress_settings.php:298
388
+ #: ../mappress_settings.php:393
389
+ msgid "Default"
390
+ msgstr "Domyślny"
391
+
392
+ #: ../mappress_settings.php:293
393
+ msgid "Horizontal"
394
+ msgstr "Horyzontalny"
395
+
396
+ #: ../mappress_settings.php:294
397
+ msgid "Dropdown"
398
+ msgstr "Menu rozwijane"
399
+
400
+ #: ../mappress_settings.php:299
401
+ msgid "Small"
402
+ msgstr "Małe"
403
+
404
+ #: ../mappress_settings.php:300
405
+ msgid "Large"
406
+ msgstr "Duże"
407
+
408
+ #: ../mappress_settings.php:301
409
+ msgid "Android"
410
+ msgstr "Android"
411
+
412
+ #: ../mappress_settings.php:312
413
+ msgid "Open initially"
414
+ msgstr "Początkowo otwarty"
415
+
416
+ #: ../mappress_settings.php:314
417
+ #: ../mappress_settings.php:316
418
+ #: ../mappress_settings.php:318
419
+ msgid "Checked initially"
420
+ msgstr "Początkowo zaznaczone"
421
+
422
+ #: ../mappress_settings.php:320
423
+ msgid "Control"
424
+ msgstr "Kontrolka na mapie"
425
+
426
+ #: ../mappress_settings.php:320
427
+ msgid "Enable"
428
+ msgstr "Włącz"
429
+
430
+ #: ../mappress_settings.php:320
431
+ #: ../mappress_settings.php:418
432
+ msgid "Style"
433
+ msgstr "Styl"
434
+
435
+ #: ../mappress_settings.php:323
436
+ msgid "Map types"
437
+ msgstr "Typy map"
438
+
439
+ #: ../mappress_settings.php:324
440
+ msgid "Pan"
441
+ msgstr "Przesuwanie"
442
+
443
+ #: ../mappress_settings.php:326
444
+ msgid "Street view"
445
+ msgstr "Street view"
446
+
447
+ #: ../mappress_settings.php:327
448
+ msgid "Scale"
449
+ msgstr "Skala"
450
+
451
+ #: ../mappress_settings.php:328
452
+ msgid "Overview map"
453
+ msgstr "Podgląd mapy"
454
+
455
+ #: ../mappress_settings.php:329
456
+ msgid "Public transit"
457
+ msgstr "Transport publiczny"
458
+
459
+ #: ../mappress_settings.php:331
460
+ msgid "Bike routes"
461
+ msgstr "Ścieżki rowerowe"
462
+
463
+ #: ../mappress_settings.php:338
464
+ msgid "Road map"
465
+ msgstr "Mapa samochodowa"
466
+
467
+ #: ../mappress_settings.php:339
468
+ msgid "Satellite"
469
+ msgstr "Satelita"
470
+
471
+ #: ../mappress_settings.php:340
472
+ msgid "Terrain"
473
+ msgstr "Teren"
474
+
475
+ #: ../mappress_settings.php:341
476
+ msgid "Hybrid"
477
+ msgstr "Hybrydowa"
478
+
479
+ #: ../mappress_settings.php:354
480
+ msgid "Inline (in your blog)"
481
+ msgstr "Na tej samej stronie"
482
+
483
+ #: ../mappress_settings.php:355
484
+ msgid "Google"
485
+ msgstr "Nowe okno z Google Maps"
486
+
487
+ #: ../mappress_settings.php:356
488
+ msgid "None"
489
+ msgstr "Brak przekierowań"
490
+
491
+ #: ../mappress_settings.php:363
492
+ msgid "Automatically open the first POI when a map is displayed"
493
+ msgstr "Automatycznie otwórz pierwsze POI gdy mapa jest wyświetlana"
494
+
495
+ #: ../mappress_settings.php:368
496
+ #: ../mappress_settings.php:377
497
+ msgid "Show control"
498
+ msgstr "Pokaż kontrolki"
499
+
500
+ #: ../mappress_settings.php:372
501
+ #: ../mappress_settings.php:381
502
+ msgid "Enabled by default"
503
+ msgstr "Domyślnie włączone"
504
+
505
+ #: ../mappress_settings.php:386
506
+ msgid "Show POI titles as a \"tooltip\" on mouse-over"
507
+ msgstr "Pokaż nazwy POI jako \"dymki\" po najechaniu myszką"
508
+
509
+ #: ../mappress_settings.php:394
510
+ msgid "Center"
511
+ msgstr "Wyśrodkowana"
512
+
513
+ #: ../mappress_settings.php:395
514
+ msgid "Left"
515
+ msgstr "Po lewej"
516
+
517
+ #: ../mappress_settings.php:396
518
+ msgid "Right"
519
+ msgstr "Po prawej"
520
+
521
+ #: ../mappress_settings.php:408
522
+ msgid "solid"
523
+ msgstr "ciągła"
524
+
525
+ #: ../mappress_settings.php:409
526
+ msgid "dashed"
527
+ msgstr "przerywana"
528
+
529
+ #: ../mappress_settings.php:410
530
+ msgid "dotted"
531
+ msgstr "kropkowana"
532
+
533
+ #: ../mappress_settings.php:411
534
+ msgid "double"
535
+ msgstr "podwójna"
536
+
537
+ #: ../mappress_settings.php:412
538
+ msgid "groove"
539
+ msgstr "wklęsła przestrzenna"
540
+
541
+ #: ../mappress_settings.php:413
542
+ msgid "inset"
543
+ msgstr "wklęsła"
544
+
545
+ #: ../mappress_settings.php:414
546
+ msgid "outset"
547
+ msgstr "wypukła"
548
+
549
+ #: ../mappress_settings.php:426
550
+ msgid "Width"
551
+ msgstr "Szerokość"
552
+
553
+ #: ../mappress_settings.php:432
554
+ msgid "Corner radius"
555
+ msgstr "Zaokrąglenie brzegów"
556
+
557
+ #: ../mappress_settings.php:441
558
+ msgid "Color"
559
+ msgstr "Kolor"
560
+
561
+ #: ../mappress_settings.php:451
562
+ msgid "Display shadow"
563
+ msgstr "Pokaż cień"
564
+
565
+ #: ../mappress_settings.php:475
566
+ msgid "Default zoom for POIs entered by lat/lng"
567
+ msgstr "Domyślne zbliżenie dla punktów POI podanych przez współrzędne"
568
+
569
+ #: ../mappress_settings.php:481
570
+ msgid "Top of post"
571
+ msgstr "Nad treścią"
572
+
573
+ #: ../mappress_settings.php:482
574
+ msgid "Bottom of post"
575
+ msgstr "Pod treścią"
576
+
577
+ #: ../mappress_settings.php:483
578
+ msgid "No automatic display"
579
+ msgstr "Nie wyświetlaj automatycznie"
580
+
581
+ #: ../mappress_settings.php:490
582
+ msgid "Recenter maps when window is resized"
583
+ msgstr "Wycentruj mapę po skalowaniu"
584
+
585
+ #: ../mappress_settings.php:494
586
+ #, php-format
587
+ msgid "Don't load the %s stylesheet"
588
+ msgstr "Nie dodawaj pliku %s do strony"
589
+
590
+ #: ../mappress_settings.php:498
591
+ msgid "Load maps in window 'load' event"
592
+ msgstr "Załaduj mapę poprzez okienko ładowania"
593
+
594
+ #: ../mappress_settings.php:506
595
+ msgid "Rate it 5 Stars"
596
+ msgstr "Oceń na 5 gwiazdek"
597
+
598
+ #: ../mappress_settings.php:508
599
+ #, php-format
600
+ msgid "%s on WordPress.org"
601
+ msgstr "%s na Wordpress.org"
602
+
603
+ #: ../mappress_settings.php:509
604
+ msgid "Thanks for your support!"
605
+ msgstr "Dziękujemy za wsparcie!"
606
+
607
+ #: ../mappress_settings.php:536
608
+ msgid "MapPress"
609
+ msgstr "MapPress"
610
+
611
+ #: ../mappress_settings.php:537
612
+ msgid "Easy Google Maps"
613
+ msgstr "Easy Google Maps"
614
+
615
+ #: ../mappress_settings.php:586
616
+ msgid "Like this plugin?"
617
+ msgstr "Lubisz tę wtyczkę?"
618
+
619
+ #: ../mappress_settings.php:588
620
+ msgid "Sample Map"
621
+ msgstr "Przykładowa mapa"
622
+
623
+ #: ../mappress_settings.php:607
624
+ msgid "Save Changes"
625
+ msgstr "Zapisz zmiany"
626
+
627
+ #: ../mappress_settings.php:608
628
+ msgid "Reset Defaults"
629
+ msgstr "Przywróć domyślne"
630
+
631
+ #: ../mappress_updater.php:19
632
+ msgid "Settings"
633
+ msgstr "Ustawienia"
634
+
635
+ #: ../mappress_updater.php:41
636
+ msgid "download it now"
637
+ msgstr "pobierz teraz"
638
+
639
+ #: ../mappress_updater.php:46
640
+ #, php-format
641
+ msgid "A PRO Version update is available for manual installation: %s"
642
+ msgstr "Wersja PRO jest dostępna do ręcznego pobrania: %s"
643
+
644
+ #: ../forms/map_editor.php:2
645
+ msgid "Add POI"
646
+ msgstr "Dodaj punkt POI"
647
+
648
+ #: ../forms/map_editor.php:5
649
+ #: ../templates/map_directions.php:11
650
+ msgid "My location"
651
+ msgstr "Moja lokalizacja"
652
+
653
+ #: ../forms/map_editor.php:18
654
+ msgid "Click map for lat/lng: "
655
+ msgstr "Kliknij na mapie, aby pobrać dlugość/szerokość geograficzną:"
656
+
657
+ #: ../forms/map_editor_infobox.php:22
658
+ msgid "Line: "
659
+ msgstr "Linia:"
660
+
661
+ #: ../forms/map_editor_infobox.php:24
662
+ msgid "Weight"
663
+ msgstr "Waga czcionki"
664
+
665
+ #: ../forms/map_editor_infobox.php:25
666
+ #: ../forms/map_editor_infobox.php:31
667
+ msgid "Opacity"
668
+ msgstr "Przezroczystość"
669
+
670
+ #: ../forms/map_editor_infobox.php:29
671
+ msgid "Fill: "
672
+ msgstr "Wypełnienie:"
673
+
674
+ #: ../forms/map_editor_infobox.php:40
675
+ msgid "Visual"
676
+ msgstr "Wizualny"
677
+
678
+ #: ../forms/map_editor_infobox.php:40
679
+ msgid "HTML"
680
+ msgstr "Tekstowy"
681
+
682
+ #: ../forms/map_editor_infobox.php:45
683
+ #: ../forms/map_media.php:46
684
+ msgid "Save"
685
+ msgstr "Zapisz"
686
+
687
+ #: ../forms/map_editor_infobox.php:46
688
+ #: ../forms/map_media.php:47
689
+ msgid "Cancel"
690
+ msgstr "Anuluj"
691
+
692
+ #: ../forms/map_media.php:11
693
+ msgid "Maps for This Post"
694
+ msgstr "Dołączone mapy: "
695
+
696
+ #: ../forms/map_media.php:12
697
+ msgid "New Map"
698
+ msgstr "Nowa mapa"
699
+
700
+ #: ../forms/map_media.php:22
701
+ msgid "Map ID"
702
+ msgstr "ID mapy"
703
+
704
+ #: ../forms/map_media.php:27
705
+ msgid "Map Title"
706
+ msgstr "Tytuł mapy"
707
+
708
+ #: ../forms/map_media.php:32
709
+ msgid "Size"
710
+ msgstr "Rozmiar"
711
+
712
+ #: ../templates/map_directions.php:3
713
+ msgid "By car"
714
+ msgstr "Autem"
715
+
716
+ #: ../templates/map_directions.php:4
717
+ msgid "Public Transit"
718
+ msgstr "Transport publiczny"
719
+
720
+ #: ../templates/map_directions.php:5
721
+ msgid "Walking"
722
+ msgstr "Pieszo"
723
+
724
+ #: ../templates/map_directions.php:16
725
+ msgid "Swap start and end"
726
+ msgstr "Droga powrotna"
727
+
728
+ #: ../templates/map_directions.php:29
729
+ msgid "Get Directions"
730
+ msgstr "Znajdź drogę"
731
+
732
+ #: ../templates/map_directions.php:30
733
+ msgid "Print"
734
+ msgstr "Drukuj"
735
+
736
+ #: ../templates/map_directions.php:31
737
+ msgid "Close"
738
+ msgstr "Zamknij"
739
+
740
+ #: ../templates/map_poi_list.php:5
741
+ msgid "Location"
742
+ msgstr "Lokalizacja"
743
+
744
+ #~ msgid "No results, check that a geocoder is configured"
745
+ #~ msgstr "Brak rezultatu, sprawdź czy geokoder jest skonfigurowany"
746
+
747
+ #~ msgid "Invalid status: %s, address: %s"
748
+ #~ msgstr "Nieprawidłowy status: %s, adres: %s"
749
+
750
+ #~ msgid "No results for address: %s"
751
+ #~ msgstr "Brak wyników dla adresu: %s"
752
+
753
+ #~ msgid "Error: %s %s"
754
+ #~ msgstr "Błąd: %s %s"
755
+
756
+ #~ msgid "Use default icon"
757
+ #~ msgstr "Użyj domyślnej ikony"
758
+
759
+ #~ msgid "Automatic"
760
+ #~ msgstr "Automatycznie"
761
+
762
+ #~ msgid "POI list"
763
+ #~ msgstr "Lista punktów POI"
764
+
765
+ #~ msgid "Use DataTables"
766
+ #~ msgstr "Użyj bazy danych"
767
+
768
+ #~ msgid "InfoWindow type"
769
+ #~ msgstr "Typ InfoWindow"
770
+
771
+ #~ msgid "InfoWindow panning"
772
+ #~ msgstr "Przesunięcie InfoWindow"
773
+
774
+ #~ msgid "Default icon"
775
+ #~ msgstr "Domyślna ikona"
776
+
777
+ #~ msgid "Custom icons directory"
778
+ #~ msgstr "Folder dodatkowych ikon"
779
+
780
+ #~ msgid "Mashup POI title"
781
+ #~ msgstr "Mashup POI tytuł"
782
+
783
+ #~ msgid "Mashup POI body"
784
+ #~ msgstr "Mashup POI treść"
785
+
786
+ #~ msgid "Mashup POI click"
787
+ #~ msgstr "Mashup POI odnośnik"
788
+
789
+ #~ msgid "Link title"
790
+ #~ msgstr "Tytuł odnośnika"
791
+
792
+ #~ msgid "Mashup Thumbnails"
793
+ #~ msgstr "Miniaturki Mashup"
794
+
795
+ #~ msgid "Thumbnail Size"
796
+ #~ msgstr "Rozmiar miniaturki"
797
+
798
+ #~ msgid "Styled maps"
799
+ #~ msgstr "Ostylowane mapy"
800
+
801
+ #~ msgid "Default style"
802
+ #~ msgstr "Domyślny styl"
803
+
804
+ #~ msgid "Geocoder(s)"
805
+ #~ msgstr "Geokoder(zy)"
806
+
807
+ #~ msgid "Geocoding fields"
808
+ #~ msgstr "Pola geokodowania"
809
+
810
+ #~ msgid "API key (optional)"
811
+ #~ msgstr "Klucz API (opcjonalny)"
812
+
813
+ #~ msgid "Map sizes"
814
+ #~ msgstr "Rozmiary map"
815
+
816
+ #~ msgid "Force resize"
817
+ #~ msgstr "Wymuś zmianę rozmiaru"
818
+
819
+ #~ msgid "Show a list of POIs under each map"
820
+ #~ msgstr "Pokaż listę punktów POI pod każdą mapą"
821
+
822
+ #~ msgid "Show the POI list as a sortable %s"
823
+ #~ msgstr "Pokaż listę POI jako sortowalną %s"
824
+
825
+ #~ msgid "POI title"
826
+ #~ msgstr "Tytuł punktu POI"
827
+
828
+ #~ msgid "Post title"
829
+ #~ msgstr "Tytuł wpisu"
830
+
831
+ #~ msgid "POI body"
832
+ #~ msgstr "Opis punktu POI"
833
+
834
+ #~ msgid "Address"
835
+ #~ msgstr "Adres"
836
+
837
+ #~ msgid "Post excerpt"
838
+ #~ msgstr "Wycinek wpisu"
839
+
840
+ #~ msgid "Link POI titles to the underlying post"
841
+ #~ msgstr "Punkt POI"
842
+
843
+ #~ msgid "Open the POI"
844
+ #~ msgstr "Otwórz punkt POI"
845
+
846
+ #~ msgid "Go directly to the post"
847
+ #~ msgstr "Idź prosto do nowego wpisu"
848
+
849
+ #~ msgid "Google InfoWindow"
850
+ #~ msgstr "Google InfoWindow"
851
+
852
+ #~ msgid "InfoBox (can be styled and extend outside the map)"
853
+ #~ msgstr "InfoBox (może być ostylowany i wychodzić poza mapę)"
854
+
855
+ #~ msgid "Disable map panning when infoWindow / infoBox is opened"
856
+ #~ msgstr "Zablokuj przesuwanie mapy kiedy infoWindow lub infoBox są otwarte"
857
+
858
+ #~ msgid "Show featured image thumbnails in mashup POIs"
859
+ #~ msgstr "Pokaż wybrane miniatury obrazów w mashup POI"
860
+
861
+ #~ msgid "Use existing size: "
862
+ #~ msgstr "Użyj aktualnego rozmiaru:"
863
+
864
+ #~ msgid "or resize to (px): "
865
+ #~ msgstr "albo zmień go (px):"
866
+
867
+ #~ msgid "styled maps"
868
+ #~ msgstr "ostylowane mapy"
869
+
870
+ #~ msgid "styled maps wizard"
871
+ #~ msgstr "wprowadzenie - stylowanie map"
872
+
873
+ #~ msgid "Enter JSON for %s from Google's %s"
874
+ #~ msgstr "Podaj JSON dla %s od Googla %s"
875
+
876
+ #~ msgid "Style name"
877
+ #~ msgstr "Nazwa arkusza stylów"
878
+
879
+ #~ msgid "No styles have been defined yet"
880
+ #~ msgstr "Nie zdefiniowano jeszcze żadnych styli"
881
+
882
+ #~ msgid "Nominatim"
883
+ #~ msgstr "Nominatim"
884
+
885
+ #~ msgid "Address Line 1"
886
+ #~ msgstr "1 linia adresu"
887
+
888
+ #~ msgid "Address Line 2"
889
+ #~ msgstr "2 linia adresu"
890
+
891
+ #~ msgid "Address Line 3"
892
+ #~ msgstr "3 linia adresu"
893
+
894
+ #~ msgid "Address Line 4"
895
+ #~ msgstr "4 linia adresu"
896
+
897
+ #~ msgid "Latitude"
898
+ #~ msgstr "Szerokosć"
899
+
900
+ #~ msgid "Longitude"
901
+ #~ msgstr "Długość"
902
+
903
+ #~ msgid "Icon"
904
+ #~ msgstr "Ikona"
905
+
906
+ #~ msgid "Title"
907
+ #~ msgstr "Tytuł"
908
+
909
+ #~ msgid "Body"
910
+ #~ msgstr "Treść"
911
+
912
+ #~ msgid "Map Zoom"
913
+ #~ msgstr "Zbliżenie"
914
+
915
+ #~ msgid "Map"
916
+ #~ msgstr "Mapa"
917
+
918
+ #~ msgid "Custom Field"
919
+ #~ msgstr "Własne typy pól"
920
+
921
+ #~ msgid "Overwrite existing maps when upating"
922
+ #~ msgstr "Nadpisz istniejące mapy przy aktualizacji"
923
+
924
+ #~ msgid "usage tracking"
925
+ #~ msgstr "śledzenie wykorzystania"
926
+
927
+ #~ msgid "API keys is needed only for premium services or %s"
928
+ #~ msgstr "Klucz API jest potrzebny jedynie w przypadku usług premium lub %s"
929
+
930
+ #~ msgid "Enter default map sizes"
931
+ #~ msgstr "Podaj domyślny rozmiar map"
932
+
933
+ #~ msgid "Width(px)"
934
+ #~ msgstr "Szerokość (px)"
935
+
936
+ #~ msgid "Height(px)"
937
+ #~ msgstr "Wysokość (px)"
938
+
939
+ #~ msgid "Permanently resize existing maps"
940
+ #~ msgstr "Trwale zmień rozmiar istniejących map"
941
+
942
+ #~ msgid "from %s to %s"
943
+ #~ msgstr "z %s do %s"
944
+
945
+ #~ msgid "Force Resize"
946
+ #~ msgstr "Wymuś zmianę rozmiaru"
947
+
948
+ #~ msgid "Widget title"
949
+ #~ msgstr "Tytuł widgetu"
950
+
951
+ #~ msgid "Map size"
952
+ #~ msgstr "Rozmiar mapy"
953
+
954
+ #~ msgid "Show"
955
+ #~ msgstr "Pokaż"
956
+
957
+ #~ msgid "Current posts"
958
+ #~ msgstr "Aktualny wpis"
959
+
960
+ #~ msgid "Hide if empty"
961
+ #~ msgstr "Usuń, jeśli puste"
962
+
963
+ #~ msgid "All posts"
964
+ #~ msgstr "Wszystkie wpisy"
965
+
966
+ #~ msgid "Custom query"
967
+ #~ msgstr "Własne zapytanie"
968
+
969
+ #~ msgid "Learn about queries"
970
+ #~ msgstr "Dowiedz się więcej o zapytaniach"
971
+
972
+ #~ msgid "Show POI list"
973
+ #~ msgstr "Pokaż listę punktów POI"
974
+
975
+ #~ msgid "Link POIs to posts"
976
+ #~ msgstr "Odnośnik do listy punktów POI"
977
+
978
+ #~ msgid "Inline"
979
+ #~ msgstr "W linii"
980
+
981
+ #~ msgid "Map type"
982
+ #~ msgstr "Typ mapy"
983
+
984
+ #~ msgid "Other Settings"
985
+ #~ msgstr "Inne ustawienia"
986
+
987
+ #~ msgid "Example: traffic=\"false\" maplinks=\"\""
988
+ #~ msgstr "Przykład: traffic=\"false\" maplinks=\"\""
languages/mappress.mo CHANGED
Binary file
languages/mappress.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-02-15 09:08-0800\n"
6
- "PO-Revision-Date: 2013-02-15 09:08-0800\n"
7
  "Last-Translator: Plugin Author <donotreply@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -27,604 +27,607 @@ msgstr "Support"
27
 
28
  #: ../mappress.php:132
29
  msgid "Contact"
30
- msgstr ""
31
 
32
  #: ../mappress.php:135
33
  msgid "Upgrade to MapPress Pro"
34
  msgstr ""
35
 
36
- #: ../mappress.php:330
37
  msgid "MapPress database tables are missing. Please deactivate the plugin and activate it again to fix this."
38
  msgstr ""
39
 
40
- #: ../mappress.php:335
41
  msgid "WARNING: MapPress now requires WordPress 3.2 or higher. Please upgrade before using MapPress."
42
  msgstr ""
43
 
44
- #: ../mappress.php:340
45
  msgid "WARNING: MapPress is not compfatible with the WP-Geo plugin. Please deactivate or uninstall WP-Geo before using MapPress."
46
  msgstr ""
47
 
48
- #: ../mappress.php:533
49
  #: ../templates/map_directions.php:6
50
  msgid "Bicycling"
51
  msgstr ""
52
 
53
- #: ../mappress.php:534
54
  msgid "Bike"
55
  msgstr ""
56
 
57
- #: ../mappress.php:535
58
  msgid "One of the addresses could not be found."
59
  msgstr ""
60
 
61
- #: ../mappress.php:536
62
  msgid "Google cannot return directions between those addresses. There is no route between them or the routing information is not available."
63
  msgstr ""
64
 
65
- #: ../mappress.php:537
66
  msgid "Unknown error, unable to return directions. Status code = "
67
  msgstr ""
68
 
69
- #: ../mappress.php:538
70
- #: ../mappress_poi.php:282
71
- #: ../mappress_settings.php:129
72
  #: ../pro/mappress_widget.php:108
73
  msgid "Directions"
74
  msgstr ""
75
 
76
- #: ../mappress.php:539
77
  msgid "Error reading KML file"
78
  msgstr ""
79
 
80
- #: ../mappress.php:540
81
  msgid "Loading..."
82
  msgstr ""
83
 
84
- #: ../mappress.php:541
85
  msgid "No matching address"
86
  msgstr ""
87
 
88
- #: ../mappress.php:542
89
  msgid "Unable to get your location"
90
  msgstr ""
91
 
92
- #: ../mappress.php:543
93
- #: ../mappress_settings.php:321
94
  msgid "Traffic"
95
  msgstr ""
96
 
97
- #: ../mappress.php:544
98
  msgid "Transit"
99
  msgstr ""
100
 
101
- #: ../mappress.php:545
102
- #: ../mappress_poi.php:331
103
- #: ../mappress_settings.php:316
104
- #: ../mappress_settings.php:455
105
  #: ../pro/mappress_widget.php:124
106
  msgid "Zoom"
107
  msgstr ""
108
 
109
- #: ../mappress.php:550
110
  msgid "Add"
111
  msgstr ""
112
 
113
- #: ../mappress.php:551
114
  msgid "Click & drag to move"
115
  msgstr ""
116
 
117
- #: ../mappress.php:552
118
  msgid "Click to change"
119
  msgstr ""
120
 
121
- #: ../mappress.php:553
122
- #: ../mappress_map.php:428
123
  msgid "Delete"
124
  msgstr ""
125
 
126
- #: ../mappress.php:554
127
  msgid "Delete this POI?"
128
  msgstr ""
129
 
130
- #: ../mappress.php:555
131
  msgid "Delete this map?"
132
  msgstr ""
133
 
134
- #: ../mappress.php:556
135
  msgid "Please save the map first"
136
  msgstr ""
137
 
138
- #: ../mappress.php:557
139
  msgid "Shape"
140
  msgstr ""
141
 
142
- #: ../mappress.php:558
 
143
  msgid "Untitled"
144
  msgstr ""
145
 
146
- #: ../mappress_map.php:106
147
  msgid "Map not found"
148
  msgstr ""
149
 
150
- #: ../mappress_map.php:426
151
  msgid "Edit"
152
  msgstr ""
153
 
154
- #: ../mappress_map.php:427
155
  #: ../forms/map_media.php:48
156
  msgid "Insert into post"
157
  msgstr ""
158
 
159
- #: ../mappress_map.php:467
160
  msgid "Show map"
161
  msgstr ""
162
 
163
- #: ../mappress_map.php:479
164
- #: ../mappress_settings.php:447
165
  #: ../forms/map_editor.php:17
166
  msgid "Center map"
167
  msgstr ""
168
 
169
- #: ../mappress_map.php:488
170
- #: ../mappress_settings.php:448
171
  msgid "Reset map"
172
  msgstr ""
173
 
174
- #: ../mappress_map.php:497
175
- #: ../mappress_settings.php:446
176
  msgid "Bigger map"
177
  msgstr ""
178
 
179
- #: ../mappress_map.php:498
180
  msgid "Smaller map"
181
  msgstr ""
182
 
183
- #: ../mappress_poi.php:247
184
- #: ../mappress_settings.php:456
185
  msgid "Directions to"
186
  msgstr ""
187
 
188
- #: ../mappress_poi.php:249
189
- #: ../mappress_settings.php:457
190
  msgid "Directions from"
191
  msgstr ""
192
 
193
- #: ../mappress_settings.php:126
194
  msgid "Basic Settings"
195
  msgstr ""
196
 
197
- #: ../mappress_settings.php:127
198
  msgid "Post types"
199
  msgstr ""
200
 
201
- #: ../mappress_settings.php:128
202
  msgid "Automatic map display"
203
  msgstr ""
204
 
205
- #: ../mappress_settings.php:131
206
  msgid "Map Controls"
207
  msgstr ""
208
 
209
- #: ../mappress_settings.php:132
210
  msgid "Draggable"
211
  msgstr ""
212
 
213
- #: ../mappress_settings.php:133
214
  msgid "Keyboard shortcuts"
215
  msgstr ""
216
 
217
- #: ../mappress_settings.php:134
218
  msgid "Scroll wheel zoom"
219
  msgstr ""
220
 
221
- #: ../mappress_settings.php:135
222
  msgid "Map Types"
223
  msgstr ""
224
 
225
- #: ../mappress_settings.php:136
226
  msgid "Map controls"
227
  msgstr ""
228
 
229
- #: ../mappress_settings.php:138
230
  msgid "Map Settings"
231
  msgstr ""
232
 
233
- #: ../mappress_settings.php:139
234
  msgid "Map links"
235
  msgstr ""
236
 
237
- #: ../mappress_settings.php:140
238
  msgid "Map alignment"
239
  msgstr ""
240
 
241
- #: ../mappress_settings.php:141
242
  msgid "Map border"
243
  msgstr ""
244
 
245
- #: ../mappress_settings.php:142
246
  msgid "Map border color"
247
  msgstr ""
248
 
249
- #: ../mappress_settings.php:143
250
  msgid "Open first POI"
251
  msgstr ""
252
 
253
- #: ../mappress_settings.php:145
254
  msgid "POI Settings"
255
  msgstr ""
256
 
257
- #: ../mappress_settings.php:146
258
  msgid "POI links"
259
  msgstr ""
260
 
261
- #: ../mappress_settings.php:147
262
  msgid "Tooltips"
263
  msgstr ""
264
 
265
- #: ../mappress_settings.php:148
266
  msgid "Default zoom"
267
  msgstr ""
268
 
269
- #: ../mappress_settings.php:151
270
  msgid "Mashups"
271
  msgstr ""
272
 
273
- #: ../mappress_settings.php:152
274
  msgid "Icons"
275
  msgstr ""
276
 
277
- #: ../mappress_settings.php:153
278
  msgid "Styled Maps"
279
  msgstr ""
280
 
281
- #: ../mappress_settings.php:154
282
  msgid "Geocoding"
283
  msgstr ""
284
 
285
- #: ../mappress_settings.php:157
286
  msgid "Localization"
287
  msgstr ""
288
 
289
- #: ../mappress_settings.php:158
290
  msgid "Language"
291
  msgstr ""
292
 
293
- #: ../mappress_settings.php:159
294
  msgid "Country"
295
  msgstr ""
296
 
297
- #: ../mappress_settings.php:160
298
  msgid "Directions server"
299
  msgstr ""
300
 
301
- #: ../mappress_settings.php:161
302
  msgid "Directions units"
303
  msgstr ""
304
 
305
- #: ../mappress_settings.php:163
306
  msgid "Miscellaneous"
307
  msgstr ""
308
 
309
- #: ../mappress_settings.php:164
310
  msgid "Adaptive display"
311
  msgstr ""
312
 
313
- #: ../mappress_settings.php:165
314
  msgid "Turn off CSS"
315
  msgstr ""
316
 
317
- #: ../mappress_settings.php:166
318
  msgid "Load maps last"
319
  msgstr ""
320
 
321
- #: ../mappress_settings.php:221
322
  msgid "Use the settings below to automatically create maps from custom fields."
323
  msgstr ""
324
 
325
- #: ../mappress_settings.php:227
326
  msgid "Posts"
327
  msgstr ""
328
 
329
- #: ../mappress_settings.php:228
330
  msgid "Pages"
331
  msgstr ""
332
 
333
- #: ../mappress_settings.php:240
334
  msgid "country code"
335
  msgstr ""
336
 
337
- #: ../mappress_settings.php:242
338
  #, php-format
339
  msgid "Enter a %s to use when searching (leave blank for USA)"
340
  msgstr ""
341
 
342
- #: ../mappress_settings.php:249
343
  msgid "Enter a google server URL for directions/printing"
344
  msgstr ""
345
 
346
- #: ../mappress_settings.php:254
347
  msgid "(Default)"
348
  msgstr ""
349
 
350
- #: ../mappress_settings.php:254
351
  msgid "Metric (kilometers)"
352
  msgstr ""
353
 
354
- #: ../mappress_settings.php:254
355
  msgid "Imperial (miles)"
356
  msgstr ""
357
 
358
- #: ../mappress_settings.php:259
359
  msgid "Enable map dragging with the mouse"
360
  msgstr ""
361
 
362
- #: ../mappress_settings.php:263
363
  msgid "Enable zoom with the mouse scroll wheel"
364
  msgstr ""
365
 
366
- #: ../mappress_settings.php:267
367
  msgid "Enable keyboard panning and zooming"
368
  msgstr ""
369
 
370
- #: ../mappress_settings.php:273
371
  msgid "language"
372
  msgstr ""
373
 
374
- #: ../mappress_settings.php:275
375
  #, php-format
376
  msgid "Use a specific %s for map controls and geocoding"
377
  msgstr ""
378
 
379
- #: ../mappress_settings.php:283
380
- #: ../mappress_settings.php:289
381
- #: ../mappress_settings.php:384
 
382
  msgid "Default"
383
  msgstr ""
384
 
385
- #: ../mappress_settings.php:284
386
  msgid "Horizontal"
387
  msgstr ""
388
 
389
- #: ../mappress_settings.php:285
390
  msgid "Dropdown"
391
  msgstr ""
392
 
393
- #: ../mappress_settings.php:290
394
  msgid "Small"
395
  msgstr ""
396
 
397
- #: ../mappress_settings.php:291
398
  msgid "Large"
399
  msgstr ""
400
 
401
- #: ../mappress_settings.php:292
402
  msgid "Android"
403
  msgstr ""
404
 
405
- #: ../mappress_settings.php:303
406
  msgid "Open initially"
407
  msgstr ""
408
 
409
- #: ../mappress_settings.php:305
410
- #: ../mappress_settings.php:307
411
- #: ../mappress_settings.php:309
412
  msgid "Checked initially"
413
  msgstr ""
414
 
415
- #: ../mappress_settings.php:311
416
  msgid "Control"
417
  msgstr ""
418
 
419
- #: ../mappress_settings.php:311
420
  msgid "Enable"
421
  msgstr ""
422
 
423
- #: ../mappress_settings.php:311
424
- #: ../mappress_settings.php:409
425
  msgid "Style"
426
  msgstr ""
427
 
428
- #: ../mappress_settings.php:314
429
  msgid "Map types"
430
  msgstr ""
431
 
432
- #: ../mappress_settings.php:315
433
  msgid "Pan"
434
  msgstr ""
435
 
436
- #: ../mappress_settings.php:317
437
  msgid "Street view"
438
  msgstr ""
439
 
440
- #: ../mappress_settings.php:318
441
  msgid "Scale"
442
  msgstr ""
443
 
444
- #: ../mappress_settings.php:319
445
  msgid "Overview map"
446
  msgstr ""
447
 
448
- #: ../mappress_settings.php:320
449
  msgid "Public transit"
450
  msgstr ""
451
 
452
- #: ../mappress_settings.php:322
453
  msgid "Bike routes"
454
  msgstr ""
455
 
456
- #: ../mappress_settings.php:329
457
  msgid "Road map"
458
  msgstr ""
459
 
460
- #: ../mappress_settings.php:330
461
  #: ../pro/mappress_widget.php:142
462
  msgid "Satellite"
463
  msgstr ""
464
 
465
- #: ../mappress_settings.php:331
466
  #: ../pro/mappress_widget.php:143
467
  msgid "Terrain"
468
  msgstr ""
469
 
470
- #: ../mappress_settings.php:332
471
  #: ../pro/mappress_widget.php:141
472
  msgid "Hybrid"
473
  msgstr ""
474
 
475
- #: ../mappress_settings.php:345
476
  msgid "Inline (in your blog)"
477
  msgstr ""
478
 
479
- #: ../mappress_settings.php:346
480
  #: ../pro/mappress_pro_settings.php:165
481
  #: ../pro/mappress_widget.php:110
482
  msgid "Google"
483
  msgstr ""
484
 
485
- #: ../mappress_settings.php:347
486
  #: ../pro/mappress_widget.php:111
487
  msgid "None"
488
  msgstr ""
489
 
490
- #: ../mappress_settings.php:354
491
  msgid "Automatically open the first POI when a map is displayed"
492
  msgstr ""
493
 
494
- #: ../mappress_settings.php:359
495
  #: ../mappress_settings.php:368
 
496
  msgid "Show control"
497
  msgstr ""
498
 
499
- #: ../mappress_settings.php:363
500
  #: ../mappress_settings.php:372
 
501
  msgid "Enabled by default"
502
  msgstr ""
503
 
504
- #: ../mappress_settings.php:377
505
  msgid "Show POI titles as a \"tooltip\" on mouse-over"
506
  msgstr ""
507
 
508
- #: ../mappress_settings.php:385
509
  #: ../pro/mappress_widget.php:116
510
  msgid "Center"
511
  msgstr ""
512
 
513
- #: ../mappress_settings.php:386
514
  msgid "Left"
515
  msgstr ""
516
 
517
- #: ../mappress_settings.php:387
518
  msgid "Right"
519
  msgstr ""
520
 
521
- #: ../mappress_settings.php:399
522
  msgid "solid"
523
  msgstr ""
524
 
525
- #: ../mappress_settings.php:400
526
  msgid "dashed"
527
  msgstr ""
528
 
529
- #: ../mappress_settings.php:401
530
  msgid "dotted"
531
  msgstr ""
532
 
533
- #: ../mappress_settings.php:402
534
  msgid "double"
535
  msgstr ""
536
 
537
- #: ../mappress_settings.php:403
538
  msgid "groove"
539
  msgstr ""
540
 
541
- #: ../mappress_settings.php:404
542
  msgid "inset"
543
  msgstr ""
544
 
545
- #: ../mappress_settings.php:405
546
  msgid "outset"
547
  msgstr ""
548
 
549
- #: ../mappress_settings.php:417
 
550
  msgid "Width"
551
  msgstr ""
552
 
553
- #: ../mappress_settings.php:423
554
  msgid "Corner radius"
555
  msgstr ""
556
 
557
- #: ../mappress_settings.php:431
558
  msgid "Color"
559
  msgstr ""
560
 
561
- #: ../mappress_settings.php:441
562
  msgid "Display shadow"
563
  msgstr ""
564
 
565
- #: ../mappress_settings.php:465
566
  msgid "Default zoom for POIs entered by lat/lng"
567
  msgstr ""
568
 
569
- #: ../mappress_settings.php:471
570
  msgid "Top of post"
571
  msgstr ""
572
 
573
- #: ../mappress_settings.php:472
574
  msgid "Bottom of post"
575
  msgstr ""
576
 
577
- #: ../mappress_settings.php:473
578
  msgid "No automatic display"
579
  msgstr ""
580
 
581
- #: ../mappress_settings.php:480
582
  msgid "Recenter maps when window is resized"
583
  msgstr ""
584
 
585
- #: ../mappress_settings.php:484
586
  #, php-format
587
  msgid "Don't load the %s stylesheet"
588
  msgstr ""
589
 
590
- #: ../mappress_settings.php:488
591
  msgid "Load maps in window 'load' event"
592
  msgstr ""
593
 
594
- #: ../mappress_settings.php:496
595
  msgid "Rate it 5 Stars"
596
  msgstr ""
597
 
598
- #: ../mappress_settings.php:498
599
  #, php-format
600
  msgid "%s on WordPress.org"
601
  msgstr ""
602
 
603
- #: ../mappress_settings.php:499
604
  msgid "Thanks for your support!"
605
  msgstr ""
606
 
607
- #: ../mappress_settings.php:526
608
  msgid "MapPress"
609
  msgstr ""
610
 
611
- #: ../mappress_settings.php:527
612
  msgid "Easy Google Maps"
613
  msgstr ""
614
 
615
- #: ../mappress_settings.php:576
616
  msgid "Like this plugin?"
617
  msgstr ""
618
 
619
- #: ../mappress_settings.php:578
620
  msgid "Sample Map"
621
  msgstr ""
622
 
623
- #: ../mappress_settings.php:597
624
  msgid "Save Changes"
625
  msgstr ""
626
 
627
- #: ../mappress_settings.php:598
628
  msgid "Reset Defaults"
629
  msgstr ""
630
 
@@ -686,7 +689,7 @@ msgstr ""
686
 
687
  #: ../forms/map_editor_infobox.php:46
688
  #: ../forms/map_media.php:47
689
- #: ../pro/mappress_icons.php:64
690
  msgid "Cancel"
691
  msgstr ""
692
 
@@ -714,27 +717,27 @@ msgstr ""
714
  msgid "No results, check that a geocoder is configured"
715
  msgstr ""
716
 
717
- #: ../pro/mappress_geocoders.php:76
718
  #, php-format
719
  msgid "Invalid status: %s, address: %s"
720
  msgstr ""
721
 
722
- #: ../pro/mappress_geocoders.php:85
723
- #: ../pro/mappress_geocoders.php:149
724
  #, php-format
725
  msgid "No results for address: %s"
726
  msgstr ""
727
 
728
- #: ../pro/mappress_geocoders.php:145
729
  #, php-format
730
  msgid "Error: %s %s"
731
  msgstr ""
732
 
733
- #: ../pro/mappress_icons.php:65
734
  msgid "Use default icon"
735
  msgstr ""
736
 
737
- #: ../pro/mappress_pro.php:151
738
  msgid "Automatic"
739
  msgstr ""
740
 
@@ -921,73 +924,77 @@ msgid "Address Line 4"
921
  msgstr ""
922
 
923
  #: ../pro/mappress_pro_settings.php:182
924
- msgid "Latitude"
925
  msgstr ""
926
 
927
  #: ../pro/mappress_pro_settings.php:183
928
- msgid "Longitude"
929
  msgstr ""
930
 
931
  #: ../pro/mappress_pro_settings.php:184
932
- msgid "Icon"
933
  msgstr ""
934
 
935
  #: ../pro/mappress_pro_settings.php:185
936
- msgid "Title"
937
  msgstr ""
938
 
939
  #: ../pro/mappress_pro_settings.php:186
940
- msgid "Body"
941
  msgstr ""
942
 
943
  #: ../pro/mappress_pro_settings.php:187
 
 
 
 
 
 
 
 
944
  msgid "Map Zoom"
945
  msgstr ""
946
 
947
- #: ../pro/mappress_pro_settings.php:190
948
  #: ../pro/mappress_widget.php:140
949
  msgid "Map"
950
  msgstr ""
951
 
952
- #: ../pro/mappress_pro_settings.php:190
953
  msgid "Custom Field"
954
  msgstr ""
955
 
956
- #: ../pro/mappress_pro_settings.php:199
957
  msgid "Overwrite existing maps when upating"
958
  msgstr ""
959
 
960
- #: ../pro/mappress_pro_settings.php:204
961
  msgid "usage tracking"
962
  msgstr ""
963
 
964
- #: ../pro/mappress_pro_settings.php:205
965
  #, php-format
966
  msgid "API keys is needed only for premium services or %s"
967
  msgstr ""
968
 
969
- #: ../pro/mappress_pro_settings.php:209
970
- msgid "Enter default map sizes"
971
  msgstr ""
972
 
973
- #: ../pro/mappress_pro_settings.php:213
974
- msgid "Width(px)"
975
  msgstr ""
976
 
977
- #: ../pro/mappress_pro_settings.php:213
978
- msgid "Height(px)"
979
- msgstr ""
980
-
981
- #: ../pro/mappress_pro_settings.php:228
982
  msgid "Permanently resize existing maps"
983
  msgstr ""
984
 
985
- #: ../pro/mappress_pro_settings.php:230
986
  #, php-format
987
  msgid "from %s to %s"
988
  msgstr ""
989
 
990
- #: ../pro/mappress_pro_settings.php:231
991
  msgid "Force Resize"
992
  msgstr ""
993
 
2
  msgstr ""
3
  "Project-Id-Version: \n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-08-12 16:44-0800\n"
6
+ "PO-Revision-Date: 2013-08-12 16:44-0800\n"
7
  "Last-Translator: Plugin Author <donotreply@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
27
 
28
  #: ../mappress.php:132
29
  msgid "Contact"
30
+ msgstr "Contact"
31
 
32
  #: ../mappress.php:135
33
  msgid "Upgrade to MapPress Pro"
34
  msgstr ""
35
 
36
+ #: ../mappress.php:334
37
  msgid "MapPress database tables are missing. Please deactivate the plugin and activate it again to fix this."
38
  msgstr ""
39
 
40
+ #: ../mappress.php:339
41
  msgid "WARNING: MapPress now requires WordPress 3.2 or higher. Please upgrade before using MapPress."
42
  msgstr ""
43
 
44
+ #: ../mappress.php:344
45
  msgid "WARNING: MapPress is not compfatible with the WP-Geo plugin. Please deactivate or uninstall WP-Geo before using MapPress."
46
  msgstr ""
47
 
48
+ #: ../mappress.php:542
49
  #: ../templates/map_directions.php:6
50
  msgid "Bicycling"
51
  msgstr ""
52
 
53
+ #: ../mappress.php:543
54
  msgid "Bike"
55
  msgstr ""
56
 
57
+ #: ../mappress.php:544
58
  msgid "One of the addresses could not be found."
59
  msgstr ""
60
 
61
+ #: ../mappress.php:545
62
  msgid "Google cannot return directions between those addresses. There is no route between them or the routing information is not available."
63
  msgstr ""
64
 
65
+ #: ../mappress.php:546
66
  msgid "Unknown error, unable to return directions. Status code = "
67
  msgstr ""
68
 
69
+ #: ../mappress.php:547
70
+ #: ../mappress_poi.php:281
71
+ #: ../mappress_settings.php:130
72
  #: ../pro/mappress_widget.php:108
73
  msgid "Directions"
74
  msgstr ""
75
 
76
+ #: ../mappress.php:548
77
  msgid "Error reading KML file"
78
  msgstr ""
79
 
80
+ #: ../mappress.php:549
81
  msgid "Loading..."
82
  msgstr ""
83
 
84
+ #: ../mappress.php:550
85
  msgid "No matching address"
86
  msgstr ""
87
 
88
+ #: ../mappress.php:551
89
  msgid "Unable to get your location"
90
  msgstr ""
91
 
92
+ #: ../mappress.php:552
93
+ #: ../mappress_settings.php:330
94
  msgid "Traffic"
95
  msgstr ""
96
 
97
+ #: ../mappress.php:553
98
  msgid "Transit"
99
  msgstr ""
100
 
101
+ #: ../mappress.php:554
102
+ #: ../mappress_poi.php:330
103
+ #: ../mappress_settings.php:325
104
+ #: ../mappress_settings.php:465
105
  #: ../pro/mappress_widget.php:124
106
  msgid "Zoom"
107
  msgstr ""
108
 
109
+ #: ../mappress.php:559
110
  msgid "Add"
111
  msgstr ""
112
 
113
+ #: ../mappress.php:560
114
  msgid "Click & drag to move"
115
  msgstr ""
116
 
117
+ #: ../mappress.php:561
118
  msgid "Click to change"
119
  msgstr ""
120
 
121
+ #: ../mappress.php:562
122
+ #: ../mappress_map.php:436
123
  msgid "Delete"
124
  msgstr ""
125
 
126
+ #: ../mappress.php:563
127
  msgid "Delete this POI?"
128
  msgstr ""
129
 
130
+ #: ../mappress.php:564
131
  msgid "Delete this map?"
132
  msgstr ""
133
 
134
+ #: ../mappress.php:565
135
  msgid "Please save the map first"
136
  msgstr ""
137
 
138
+ #: ../mappress.php:566
139
  msgid "Shape"
140
  msgstr ""
141
 
142
+ #: ../mappress.php:567
143
+ #: ../mappress_map.php:53
144
  msgid "Untitled"
145
  msgstr ""
146
 
147
+ #: ../mappress_map.php:114
148
  msgid "Map not found"
149
  msgstr ""
150
 
151
+ #: ../mappress_map.php:434
152
  msgid "Edit"
153
  msgstr ""
154
 
155
+ #: ../mappress_map.php:435
156
  #: ../forms/map_media.php:48
157
  msgid "Insert into post"
158
  msgstr ""
159
 
160
+ #: ../mappress_map.php:475
161
  msgid "Show map"
162
  msgstr ""
163
 
164
+ #: ../mappress_map.php:487
165
+ #: ../mappress_settings.php:457
166
  #: ../forms/map_editor.php:17
167
  msgid "Center map"
168
  msgstr ""
169
 
170
+ #: ../mappress_map.php:496
171
+ #: ../mappress_settings.php:458
172
  msgid "Reset map"
173
  msgstr ""
174
 
175
+ #: ../mappress_map.php:505
176
+ #: ../mappress_settings.php:456
177
  msgid "Bigger map"
178
  msgstr ""
179
 
180
+ #: ../mappress_map.php:506
181
  msgid "Smaller map"
182
  msgstr ""
183
 
184
+ #: ../mappress_poi.php:246
185
+ #: ../mappress_settings.php:466
186
  msgid "Directions to"
187
  msgstr ""
188
 
189
+ #: ../mappress_poi.php:248
190
+ #: ../mappress_settings.php:467
191
  msgid "Directions from"
192
  msgstr ""
193
 
194
+ #: ../mappress_settings.php:127
195
  msgid "Basic Settings"
196
  msgstr ""
197
 
198
+ #: ../mappress_settings.php:128
199
  msgid "Post types"
200
  msgstr ""
201
 
202
+ #: ../mappress_settings.php:129
203
  msgid "Automatic map display"
204
  msgstr ""
205
 
206
+ #: ../mappress_settings.php:132
207
  msgid "Map Controls"
208
  msgstr ""
209
 
210
+ #: ../mappress_settings.php:133
211
  msgid "Draggable"
212
  msgstr ""
213
 
214
+ #: ../mappress_settings.php:134
215
  msgid "Keyboard shortcuts"
216
  msgstr ""
217
 
218
+ #: ../mappress_settings.php:135
219
  msgid "Scroll wheel zoom"
220
  msgstr ""
221
 
222
+ #: ../mappress_settings.php:136
223
  msgid "Map Types"
224
  msgstr ""
225
 
226
+ #: ../mappress_settings.php:137
227
  msgid "Map controls"
228
  msgstr ""
229
 
230
+ #: ../mappress_settings.php:139
231
  msgid "Map Settings"
232
  msgstr ""
233
 
234
+ #: ../mappress_settings.php:140
235
  msgid "Map links"
236
  msgstr ""
237
 
238
+ #: ../mappress_settings.php:141
239
  msgid "Map alignment"
240
  msgstr ""
241
 
242
+ #: ../mappress_settings.php:142
243
  msgid "Map border"
244
  msgstr ""
245
 
246
+ #: ../mappress_settings.php:143
247
  msgid "Map border color"
248
  msgstr ""
249
 
250
+ #: ../mappress_settings.php:144
251
  msgid "Open first POI"
252
  msgstr ""
253
 
254
+ #: ../mappress_settings.php:146
255
  msgid "POI Settings"
256
  msgstr ""
257
 
258
+ #: ../mappress_settings.php:147
259
  msgid "POI links"
260
  msgstr ""
261
 
262
+ #: ../mappress_settings.php:148
263
  msgid "Tooltips"
264
  msgstr ""
265
 
266
+ #: ../mappress_settings.php:149
267
  msgid "Default zoom"
268
  msgstr ""
269
 
270
+ #: ../mappress_settings.php:152
271
  msgid "Mashups"
272
  msgstr ""
273
 
274
+ #: ../mappress_settings.php:153
275
  msgid "Icons"
276
  msgstr ""
277
 
278
+ #: ../mappress_settings.php:154
279
  msgid "Styled Maps"
280
  msgstr ""
281
 
282
+ #: ../mappress_settings.php:155
283
  msgid "Geocoding"
284
  msgstr ""
285
 
286
+ #: ../mappress_settings.php:158
287
  msgid "Localization"
288
  msgstr ""
289
 
290
+ #: ../mappress_settings.php:159
291
  msgid "Language"
292
  msgstr ""
293
 
294
+ #: ../mappress_settings.php:160
295
  msgid "Country"
296
  msgstr ""
297
 
298
+ #: ../mappress_settings.php:161
299
  msgid "Directions server"
300
  msgstr ""
301
 
302
+ #: ../mappress_settings.php:162
303
  msgid "Directions units"
304
  msgstr ""
305
 
306
+ #: ../mappress_settings.php:164
307
  msgid "Miscellaneous"
308
  msgstr ""
309
 
310
+ #: ../mappress_settings.php:165
311
  msgid "Adaptive display"
312
  msgstr ""
313
 
314
+ #: ../mappress_settings.php:166
315
  msgid "Turn off CSS"
316
  msgstr ""
317
 
318
+ #: ../mappress_settings.php:167
319
  msgid "Load maps last"
320
  msgstr ""
321
 
322
+ #: ../mappress_settings.php:230
323
  msgid "Use the settings below to automatically create maps from custom fields."
324
  msgstr ""
325
 
326
+ #: ../mappress_settings.php:236
327
  msgid "Posts"
328
  msgstr ""
329
 
330
+ #: ../mappress_settings.php:237
331
  msgid "Pages"
332
  msgstr ""
333
 
334
+ #: ../mappress_settings.php:249
335
  msgid "country code"
336
  msgstr ""
337
 
338
+ #: ../mappress_settings.php:251
339
  #, php-format
340
  msgid "Enter a %s to use when searching (leave blank for USA)"
341
  msgstr ""
342
 
343
+ #: ../mappress_settings.php:258
344
  msgid "Enter a google server URL for directions/printing"
345
  msgstr ""
346
 
347
+ #: ../mappress_settings.php:263
348
  msgid "(Default)"
349
  msgstr ""
350
 
351
+ #: ../mappress_settings.php:263
352
  msgid "Metric (kilometers)"
353
  msgstr ""
354
 
355
+ #: ../mappress_settings.php:263
356
  msgid "Imperial (miles)"
357
  msgstr ""
358
 
359
+ #: ../mappress_settings.php:268
360
  msgid "Enable map dragging with the mouse"
361
  msgstr ""
362
 
363
+ #: ../mappress_settings.php:272
364
  msgid "Enable zoom with the mouse scroll wheel"
365
  msgstr ""
366
 
367
+ #: ../mappress_settings.php:276
368
  msgid "Enable keyboard panning and zooming"
369
  msgstr ""
370
 
371
+ #: ../mappress_settings.php:282
372
  msgid "language"
373
  msgstr ""
374
 
375
+ #: ../mappress_settings.php:284
376
  #, php-format
377
  msgid "Use a specific %s for map controls and geocoding"
378
  msgstr ""
379
 
380
+ #: ../mappress_settings.php:292
381
+ #: ../mappress_settings.php:298
382
+ #: ../mappress_settings.php:393
383
+ #: ../pro/mappress_pro_settings.php:211
384
  msgid "Default"
385
  msgstr ""
386
 
387
+ #: ../mappress_settings.php:293
388
  msgid "Horizontal"
389
  msgstr ""
390
 
391
+ #: ../mappress_settings.php:294
392
  msgid "Dropdown"
393
  msgstr ""
394
 
395
+ #: ../mappress_settings.php:299
396
  msgid "Small"
397
  msgstr ""
398
 
399
+ #: ../mappress_settings.php:300
400
  msgid "Large"
401
  msgstr ""
402
 
403
+ #: ../mappress_settings.php:301
404
  msgid "Android"
405
  msgstr ""
406
 
407
+ #: ../mappress_settings.php:312
408
  msgid "Open initially"
409
  msgstr ""
410
 
411
+ #: ../mappress_settings.php:314
412
+ #: ../mappress_settings.php:316
413
+ #: ../mappress_settings.php:318
414
  msgid "Checked initially"
415
  msgstr ""
416
 
417
+ #: ../mappress_settings.php:320
418
  msgid "Control"
419
  msgstr ""
420
 
421
+ #: ../mappress_settings.php:320
422
  msgid "Enable"
423
  msgstr ""
424
 
425
+ #: ../mappress_settings.php:320
426
+ #: ../mappress_settings.php:418
427
  msgid "Style"
428
  msgstr ""
429
 
430
+ #: ../mappress_settings.php:323
431
  msgid "Map types"
432
  msgstr ""
433
 
434
+ #: ../mappress_settings.php:324
435
  msgid "Pan"
436
  msgstr ""
437
 
438
+ #: ../mappress_settings.php:326
439
  msgid "Street view"
440
  msgstr ""
441
 
442
+ #: ../mappress_settings.php:327
443
  msgid "Scale"
444
  msgstr ""
445
 
446
+ #: ../mappress_settings.php:328
447
  msgid "Overview map"
448
  msgstr ""
449
 
450
+ #: ../mappress_settings.php:329
451
  msgid "Public transit"
452
  msgstr ""
453
 
454
+ #: ../mappress_settings.php:331
455
  msgid "Bike routes"
456
  msgstr ""
457
 
458
+ #: ../mappress_settings.php:338
459
  msgid "Road map"
460
  msgstr ""
461
 
462
+ #: ../mappress_settings.php:339
463
  #: ../pro/mappress_widget.php:142
464
  msgid "Satellite"
465
  msgstr ""
466
 
467
+ #: ../mappress_settings.php:340
468
  #: ../pro/mappress_widget.php:143
469
  msgid "Terrain"
470
  msgstr ""
471
 
472
+ #: ../mappress_settings.php:341
473
  #: ../pro/mappress_widget.php:141
474
  msgid "Hybrid"
475
  msgstr ""
476
 
477
+ #: ../mappress_settings.php:354
478
  msgid "Inline (in your blog)"
479
  msgstr ""
480
 
481
+ #: ../mappress_settings.php:355
482
  #: ../pro/mappress_pro_settings.php:165
483
  #: ../pro/mappress_widget.php:110
484
  msgid "Google"
485
  msgstr ""
486
 
487
+ #: ../mappress_settings.php:356
488
  #: ../pro/mappress_widget.php:111
489
  msgid "None"
490
  msgstr ""
491
 
492
+ #: ../mappress_settings.php:363
493
  msgid "Automatically open the first POI when a map is displayed"
494
  msgstr ""
495
 
 
496
  #: ../mappress_settings.php:368
497
+ #: ../mappress_settings.php:377
498
  msgid "Show control"
499
  msgstr ""
500
 
 
501
  #: ../mappress_settings.php:372
502
+ #: ../mappress_settings.php:381
503
  msgid "Enabled by default"
504
  msgstr ""
505
 
506
+ #: ../mappress_settings.php:386
507
  msgid "Show POI titles as a \"tooltip\" on mouse-over"
508
  msgstr ""
509
 
510
+ #: ../mappress_settings.php:394
511
  #: ../pro/mappress_widget.php:116
512
  msgid "Center"
513
  msgstr ""
514
 
515
+ #: ../mappress_settings.php:395
516
  msgid "Left"
517
  msgstr ""
518
 
519
+ #: ../mappress_settings.php:396
520
  msgid "Right"
521
  msgstr ""
522
 
523
+ #: ../mappress_settings.php:408
524
  msgid "solid"
525
  msgstr ""
526
 
527
+ #: ../mappress_settings.php:409
528
  msgid "dashed"
529
  msgstr ""
530
 
531
+ #: ../mappress_settings.php:410
532
  msgid "dotted"
533
  msgstr ""
534
 
535
+ #: ../mappress_settings.php:411
536
  msgid "double"
537
  msgstr ""
538
 
539
+ #: ../mappress_settings.php:412
540
  msgid "groove"
541
  msgstr ""
542
 
543
+ #: ../mappress_settings.php:413
544
  msgid "inset"
545
  msgstr ""
546
 
547
+ #: ../mappress_settings.php:414
548
  msgid "outset"
549
  msgstr ""
550
 
551
+ #: ../mappress_settings.php:426
552
+ #: ../pro/mappress_pro_settings.php:211
553
  msgid "Width"
554
  msgstr ""
555
 
556
+ #: ../mappress_settings.php:432
557
  msgid "Corner radius"
558
  msgstr ""
559
 
560
+ #: ../mappress_settings.php:441
561
  msgid "Color"
562
  msgstr ""
563
 
564
+ #: ../mappress_settings.php:451
565
  msgid "Display shadow"
566
  msgstr ""
567
 
568
+ #: ../mappress_settings.php:475
569
  msgid "Default zoom for POIs entered by lat/lng"
570
  msgstr ""
571
 
572
+ #: ../mappress_settings.php:481
573
  msgid "Top of post"
574
  msgstr ""
575
 
576
+ #: ../mappress_settings.php:482
577
  msgid "Bottom of post"
578
  msgstr ""
579
 
580
+ #: ../mappress_settings.php:483
581
  msgid "No automatic display"
582
  msgstr ""
583
 
584
+ #: ../mappress_settings.php:490
585
  msgid "Recenter maps when window is resized"
586
  msgstr ""
587
 
588
+ #: ../mappress_settings.php:494
589
  #, php-format
590
  msgid "Don't load the %s stylesheet"
591
  msgstr ""
592
 
593
+ #: ../mappress_settings.php:498
594
  msgid "Load maps in window 'load' event"
595
  msgstr ""
596
 
597
+ #: ../mappress_settings.php:506
598
  msgid "Rate it 5 Stars"
599
  msgstr ""
600
 
601
+ #: ../mappress_settings.php:508
602
  #, php-format
603
  msgid "%s on WordPress.org"
604
  msgstr ""
605
 
606
+ #: ../mappress_settings.php:509
607
  msgid "Thanks for your support!"
608
  msgstr ""
609
 
610
+ #: ../mappress_settings.php:536
611
  msgid "MapPress"
612
  msgstr ""
613
 
614
+ #: ../mappress_settings.php:537
615
  msgid "Easy Google Maps"
616
  msgstr ""
617
 
618
+ #: ../mappress_settings.php:586
619
  msgid "Like this plugin?"
620
  msgstr ""
621
 
622
+ #: ../mappress_settings.php:588
623
  msgid "Sample Map"
624
  msgstr ""
625
 
626
+ #: ../mappress_settings.php:607
627
  msgid "Save Changes"
628
  msgstr ""
629
 
630
+ #: ../mappress_settings.php:608
631
  msgid "Reset Defaults"
632
  msgstr ""
633
 
689
 
690
  #: ../forms/map_editor_infobox.php:46
691
  #: ../forms/map_media.php:47
692
+ #: ../pro/mappress_icons.php:71
693
  msgid "Cancel"
694
  msgstr ""
695
 
717
  msgid "No results, check that a geocoder is configured"
718
  msgstr ""
719
 
720
+ #: ../pro/mappress_geocoders.php:85
721
  #, php-format
722
  msgid "Invalid status: %s, address: %s"
723
  msgstr ""
724
 
725
+ #: ../pro/mappress_geocoders.php:94
726
+ #: ../pro/mappress_geocoders.php:158
727
  #, php-format
728
  msgid "No results for address: %s"
729
  msgstr ""
730
 
731
+ #: ../pro/mappress_geocoders.php:154
732
  #, php-format
733
  msgid "Error: %s %s"
734
  msgstr ""
735
 
736
+ #: ../pro/mappress_icons.php:72
737
  msgid "Use default icon"
738
  msgstr ""
739
 
740
+ #: ../pro/mappress_pro.php:160
741
  msgid "Automatic"
742
  msgstr ""
743
 
924
  msgstr ""
925
 
926
  #: ../pro/mappress_pro_settings.php:182
927
+ msgid "Address Line 5"
928
  msgstr ""
929
 
930
  #: ../pro/mappress_pro_settings.php:183
931
+ msgid "Address Line 6"
932
  msgstr ""
933
 
934
  #: ../pro/mappress_pro_settings.php:184
935
+ msgid "Latitude"
936
  msgstr ""
937
 
938
  #: ../pro/mappress_pro_settings.php:185
939
+ msgid "Longitude"
940
  msgstr ""
941
 
942
  #: ../pro/mappress_pro_settings.php:186
943
+ msgid "Icon"
944
  msgstr ""
945
 
946
  #: ../pro/mappress_pro_settings.php:187
947
+ msgid "Title"
948
+ msgstr ""
949
+
950
+ #: ../pro/mappress_pro_settings.php:188
951
+ msgid "Body"
952
+ msgstr ""
953
+
954
+ #: ../pro/mappress_pro_settings.php:189
955
  msgid "Map Zoom"
956
  msgstr ""
957
 
958
+ #: ../pro/mappress_pro_settings.php:192
959
  #: ../pro/mappress_widget.php:140
960
  msgid "Map"
961
  msgstr ""
962
 
963
+ #: ../pro/mappress_pro_settings.php:192
964
  msgid "Custom Field"
965
  msgstr ""
966
 
967
+ #: ../pro/mappress_pro_settings.php:201
968
  msgid "Overwrite existing maps when upating"
969
  msgstr ""
970
 
971
+ #: ../pro/mappress_pro_settings.php:206
972
  msgid "usage tracking"
973
  msgstr ""
974
 
975
+ #: ../pro/mappress_pro_settings.php:207
976
  #, php-format
977
  msgid "API keys is needed only for premium services or %s"
978
  msgstr ""
979
 
980
+ #: ../pro/mappress_pro_settings.php:211
981
+ msgid "Height"
982
  msgstr ""
983
 
984
+ #: ../pro/mappress_pro_settings.php:222
985
+ msgid "Enter sizes in px or %"
986
  msgstr ""
987
 
988
+ #: ../pro/mappress_pro_settings.php:231
 
 
 
 
989
  msgid "Permanently resize existing maps"
990
  msgstr ""
991
 
992
+ #: ../pro/mappress_pro_settings.php:233
993
  #, php-format
994
  msgid "from %s to %s"
995
  msgstr ""
996
 
997
+ #: ../pro/mappress_pro_settings.php:234
998
  msgid "Force Resize"
999
  msgstr ""
1000
 
mappress.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: MapPress Easy Google Maps
4
  Plugin URI: http://www.wphostreviews.com/mappress
5
  Author URI: http://www.wphostreviews.com/mappress
6
  Description: MapPress makes it easy to insert Google Maps in WordPress posts and pages.
7
- Version: 2.40.3
8
  Author: Chris Richardson
9
  Thanks to all the translators and to Matthias Stasiak for his wonderful icons (http://code.google.com/p/google-maps-icons/)
10
  */
@@ -29,7 +29,7 @@ Thanks to all the translators and to Matthias Stasiak for his wonderful icons (h
29
  @include_once dirname( __FILE__ ) . '/pro/mappress_widget.php';
30
 
31
  class Mappress {
32
- const VERSION = '2.40.3';
33
 
34
  static
35
  $baseurl,
@@ -42,11 +42,11 @@ class Mappress {
42
  $pages,
43
  $remote,
44
  $updater;
45
-
46
  var
47
  $queue;
48
 
49
- function __construct() {
50
  self::$options = Mappress_Options::get();
51
  self::$basename = plugin_basename(__FILE__);
52
  self::$baseurl = plugins_url('', __FILE__);
@@ -59,7 +59,7 @@ class Mappress {
59
  elseif (defined('MAPPRESS_DEBUG'))
60
  self::$js = self::$baseurl . '/src';
61
  else self::$js = self::$baseurl . '/js';
62
-
63
  // Initialize Pro classes
64
  if (class_exists('Mappress_Pro')) {
65
  $icons = new Mappress_Icons();
@@ -87,7 +87,7 @@ class Mappress {
87
  add_action( 'wp_print_footer_scripts', array(&$this, 'print_maps'));
88
  add_action( 'admin_print_footer_scripts', array(&$this, 'print_maps'));
89
  }
90
-
91
  // mp_errors -> PHP errors
92
  // mp_info -> phpinfo + dump
93
  // mp_remote -> use remote js
@@ -137,11 +137,11 @@ class Mappress {
137
 
138
  static function ajax_response($status, $data=null) {
139
  $output = trim(ob_get_clean()); // Ignore whitespace, any other output is an error
140
- header( "Content-Type: application/json" );
141
  $response = json_encode(array('status' => $status, 'data' => $data, 'output' => $output));
142
  die ($response);
143
  }
144
-
145
  /**
146
  * When a post is deleted, delete its map assignments
147
  *
@@ -156,7 +156,7 @@ class Mappress {
156
  // Settings
157
  $settings = (class_exists('Mappress_Pro')) ? new Mappress_Pro_Settings() : new Mappress_Settings();
158
  self::$pages[] = add_menu_page('MapPress', 'MapPress', 'manage_options', 'mappress', array(&$settings, 'options_page'), self::$baseurl . '/images/mappress_pin_logo.png');
159
- }
160
 
161
  /**
162
  * Automatic map display.
@@ -178,7 +178,7 @@ class Mappress {
178
  // Check if in the loop, to prevent conflicts with JetPack - see http://wordpress.org/support/topic/easy-adsense-lite-and-jetpack
179
  if (!in_the_loop())
180
  return $content;
181
-
182
  // Don't add the shortcode for feeds or admin screens
183
  if (is_feed() || is_admin())
184
  return $content;
@@ -251,7 +251,7 @@ class Mappress {
251
  // Don't load any CSS at all
252
  if (self::$options->noCSS)
253
  return;
254
-
255
  // Load the default CSS from the plugin directory
256
  wp_enqueue_style('mappress', self::$baseurl . '/css/mappress.css', null, self::VERSION);
257
 
@@ -272,14 +272,18 @@ class Mappress {
272
  $version = Mappress::VERSION;
273
  $min = (defined('MAPPRESS_DEBUG') || self::$remote) ? "" : ".min";
274
 
 
 
 
 
275
  // Settings page
276
  if ($hook == self::$pages[0]) {
277
  wp_enqueue_script('postbox');
278
  wp_enqueue_script( 'farbtastic');
279
- wp_enqueue_script('mappress_settings', self::$js . "/mappress_settings$min.js", null, $version, true);
280
  wp_enqueue_style('farbtastic');
281
- wp_enqueue_style('mappress', self::$baseurl . '/css/mappress.css', null, self::VERSION);
282
- wp_enqueue_style('mappress_admin', self::$baseurl . '/css/mappress_admin.css', null, self::VERSION);
283
  }
284
 
285
  // Post / page edit
@@ -288,7 +292,7 @@ class Mappress {
288
  wp_enqueue_style('mappress_admin', self::$baseurl . '/css/mappress_admin.css', null, self::VERSION);
289
  }
290
 
291
-
292
  /**
293
  * There are several WP bugs that prevent correct activation in multisitie:
294
  * http://core.trac.wordpress.org/ticket/14170
@@ -303,18 +307,18 @@ class Mappress {
303
 
304
  // Register hooks and create database tables
305
  Mappress_Map::register();
306
-
307
  if (class_exists('Mappress_Query'))
308
  Mappress_Query::register();
309
-
310
  // Check if upgrade is needed
311
  $current_version = get_option('mappress_version');
312
 
313
  if ($current_version < '2.38.2') {
314
  self::$options->metaKeys = array(self::$options->metaKey);
315
  self::$options->save();
316
- }
317
-
318
  update_option('mappress_version', self::VERSION);
319
  }
320
 
@@ -354,7 +358,7 @@ class Mappress {
354
  return array();
355
 
356
  $atts = self::string_to_boolean($atts);
357
-
358
  // Shortcode attributes are lowercase so convert everything to lowercase
359
  $atts = array_change_key_case($atts);
360
 
@@ -419,7 +423,7 @@ class Mappress {
419
 
420
  return $data;
421
  }
422
-
423
  /**
424
  * Output javascript
425
  *
@@ -429,14 +433,14 @@ class Mappress {
429
  return "\r\n<script type='text/javascript'>\r\n/* <![CDATA[ */\r\n$script\r\n/* ]]> */\r\n</script>\r\n";
430
  }
431
 
432
- function enqueue_map($map = null, $options = null) {
433
  // Load scripts
434
  $this->load('map');
435
 
436
  // Queue
437
- $this->queue[$map->name] = (object) array('map' => $map, 'options' => $options );
438
  }
439
-
440
  function enqueue_editor() {
441
  $this->load('editor');
442
  $this->queue['editor'] = true;
@@ -449,32 +453,36 @@ class Mappress {
449
 
450
  if (class_exists('Mappress_Pro'))
451
  $this->print_map_styles();
452
-
453
  if (isset($this->queue['editor'])) {
454
  $script = "var mappMedia = new mapp.Media();";
455
  echo Mappress::script($script);
456
  return;
457
  }
458
-
459
- foreach ($this->queue as $name => $item) {
460
- $this->print_map($item->map);
461
-
462
- $script = "var mapdata = " . json_encode($item->map) . ";"
463
- . "var $name = new mapp.Map(mapdata);";
464
-
465
- $script .= (self::$options->onLoad) ? "jQuery(window).load(function() { $name.display(); });" : "$name.display();";
 
 
 
 
466
  echo Mappress::script($script);
467
  }
468
  }
469
 
470
  /**
471
- * Print a single map
472
- *
473
  * @param mixed $map
474
  */
475
  function print_map($map) {
476
  $map->prepare();
477
-
478
  if ($map->options->directions == 'inline') {
479
  echo "<div id='{$map->name}_directions_' style='display:none'>";
480
  require(Mappress::$basedir . '/templates/map_directions.php');
@@ -500,15 +508,16 @@ class Mappress {
500
  wp_enqueue_script('mappress_datatables', self::$baseurl . "/pro/DataTables/media/js/jquery.dataTables$min.js", array('jquery'), $version, true);
501
  wp_enqueue_style('mappress-datatables', self::$baseurl . "/pro/DataTables/media/css/jquery.dataTables.css", null, '1.9.1');
502
  }
503
-
504
  $libs = array();
505
- if ($type == 'editor')
506
  $libs[] = ('drawing');
507
 
508
- $libstring = (empty($libs)) ? '' : "&amp;libraries=" . implode(',', $libs);
509
  $apikey = (!empty(self::$options->apiKey)) ? "&amp;key=" . self::$options->apiKey : '';
510
- $language = (!empty(self::$options->language)) ? "&amp;language=" . self::$options->language : '';
511
- wp_enqueue_script("mappress-gmaps", "https://maps.googleapis.com/maps/api/js?sensor=true{$language}{$libstring}{$apikey}", null, null, true);
 
512
 
513
  if ($min) {
514
  wp_enqueue_script('mappress', self::$js . "/mappress.min.js", array('jquery'), $version, true);
@@ -571,6 +580,21 @@ class Mappress {
571
  return $l10n;
572
  }
573
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
574
  } // End Mappress class
575
 
576
  if (class_exists('Mappress_Pro'))
4
  Plugin URI: http://www.wphostreviews.com/mappress
5
  Author URI: http://www.wphostreviews.com/mappress
6
  Description: MapPress makes it easy to insert Google Maps in WordPress posts and pages.
7
+ Version: 2.40.4
8
  Author: Chris Richardson
9
  Thanks to all the translators and to Matthias Stasiak for his wonderful icons (http://code.google.com/p/google-maps-icons/)
10
  */
29
  @include_once dirname( __FILE__ ) . '/pro/mappress_widget.php';
30
 
31
  class Mappress {
32
+ const VERSION = '2.40.4';
33
 
34
  static
35
  $baseurl,
42
  $pages,
43
  $remote,
44
  $updater;
45
+
46
  var
47
  $queue;
48
 
49
+ function __construct() {
50
  self::$options = Mappress_Options::get();
51
  self::$basename = plugin_basename(__FILE__);
52
  self::$baseurl = plugins_url('', __FILE__);
59
  elseif (defined('MAPPRESS_DEBUG'))
60
  self::$js = self::$baseurl . '/src';
61
  else self::$js = self::$baseurl . '/js';
62
+
63
  // Initialize Pro classes
64
  if (class_exists('Mappress_Pro')) {
65
  $icons = new Mappress_Icons();
87
  add_action( 'wp_print_footer_scripts', array(&$this, 'print_maps'));
88
  add_action( 'admin_print_footer_scripts', array(&$this, 'print_maps'));
89
  }
90
+
91
  // mp_errors -> PHP errors
92
  // mp_info -> phpinfo + dump
93
  // mp_remote -> use remote js
137
 
138
  static function ajax_response($status, $data=null) {
139
  $output = trim(ob_get_clean()); // Ignore whitespace, any other output is an error
140
+ header( "Content-Type: application/json" );
141
  $response = json_encode(array('status' => $status, 'data' => $data, 'output' => $output));
142
  die ($response);
143
  }
144
+
145
  /**
146
  * When a post is deleted, delete its map assignments
147
  *
156
  // Settings
157
  $settings = (class_exists('Mappress_Pro')) ? new Mappress_Pro_Settings() : new Mappress_Settings();
158
  self::$pages[] = add_menu_page('MapPress', 'MapPress', 'manage_options', 'mappress', array(&$settings, 'options_page'), self::$baseurl . '/images/mappress_pin_logo.png');
159
+ }
160
 
161
  /**
162
  * Automatic map display.
178
  // Check if in the loop, to prevent conflicts with JetPack - see http://wordpress.org/support/topic/easy-adsense-lite-and-jetpack
179
  if (!in_the_loop())
180
  return $content;
181
+
182
  // Don't add the shortcode for feeds or admin screens
183
  if (is_feed() || is_admin())
184
  return $content;
251
  // Don't load any CSS at all
252
  if (self::$options->noCSS)
253
  return;
254
+
255
  // Load the default CSS from the plugin directory
256
  wp_enqueue_style('mappress', self::$baseurl . '/css/mappress.css', null, self::VERSION);
257
 
272
  $version = Mappress::VERSION;
273
  $min = (defined('MAPPRESS_DEBUG') || self::$remote) ? "" : ".min";
274
 
275
+ // Some plugins call this without setting $hook
276
+ if (empty($hook))
277
+ return;
278
+
279
  // Settings page
280
  if ($hook == self::$pages[0]) {
281
  wp_enqueue_script('postbox');
282
  wp_enqueue_script( 'farbtastic');
283
+ wp_enqueue_script('mappress_settings', self::$js . "/mappress_settings$min.js", null, $version, true);
284
  wp_enqueue_style('farbtastic');
285
+ wp_enqueue_style('mappress', self::$baseurl . '/css/mappress.css', null, self::VERSION);
286
+ wp_enqueue_style('mappress_admin', self::$baseurl . '/css/mappress_admin.css', null, self::VERSION);
287
  }
288
 
289
  // Post / page edit
292
  wp_enqueue_style('mappress_admin', self::$baseurl . '/css/mappress_admin.css', null, self::VERSION);
293
  }
294
 
295
+
296
  /**
297
  * There are several WP bugs that prevent correct activation in multisitie:
298
  * http://core.trac.wordpress.org/ticket/14170
307
 
308
  // Register hooks and create database tables
309
  Mappress_Map::register();
310
+
311
  if (class_exists('Mappress_Query'))
312
  Mappress_Query::register();
313
+
314
  // Check if upgrade is needed
315
  $current_version = get_option('mappress_version');
316
 
317
  if ($current_version < '2.38.2') {
318
  self::$options->metaKeys = array(self::$options->metaKey);
319
  self::$options->save();
320
+ }
321
+
322
  update_option('mappress_version', self::VERSION);
323
  }
324
 
358
  return array();
359
 
360
  $atts = self::string_to_boolean($atts);
361
+
362
  // Shortcode attributes are lowercase so convert everything to lowercase
363
  $atts = array_change_key_case($atts);
364
 
423
 
424
  return $data;
425
  }
426
+
427
  /**
428
  * Output javascript
429
  *
433
  return "\r\n<script type='text/javascript'>\r\n/* <![CDATA[ */\r\n$script\r\n/* ]]> */\r\n</script>\r\n";
434
  }
435
 
436
+ function enqueue_map($map = null) {
437
  // Load scripts
438
  $this->load('map');
439
 
440
  // Queue
441
+ $this->queue[$map->name] = $map;
442
  }
443
+
444
  function enqueue_editor() {
445
  $this->load('editor');
446
  $this->queue['editor'] = true;
453
 
454
  if (class_exists('Mappress_Pro'))
455
  $this->print_map_styles();
456
+
457
  if (isset($this->queue['editor'])) {
458
  $script = "var mappMedia = new mapp.Media();";
459
  echo Mappress::script($script);
460
  return;
461
  }
462
+
463
+ foreach ($this->queue as $name => $map) {
464
+ $this->print_map($map);
465
+
466
+ $script = "var mapdata = " . json_encode($map) . ";\r\n"
467
+ . "var $name = new mapp.Map(mapdata); \r\n"
468
+ . "$name.display(); ";
469
+
470
+ // Workaround for Nextgen plugin, which reverses sequence of wp_enqueue_scripts and wp_print_footer_scripts output
471
+ if ((self::$options->onLoad) || class_exists('C_Photocrati_Resource_Manager'))
472
+ $script = "jQuery(document).ready(function () { $script; });";
473
+
474
  echo Mappress::script($script);
475
  }
476
  }
477
 
478
  /**
479
+ * Print a single map
480
+ *
481
  * @param mixed $map
482
  */
483
  function print_map($map) {
484
  $map->prepare();
485
+
486
  if ($map->options->directions == 'inline') {
487
  echo "<div id='{$map->name}_directions_' style='display:none'>";
488
  require(Mappress::$basedir . '/templates/map_directions.php');
508
  wp_enqueue_script('mappress_datatables', self::$baseurl . "/pro/DataTables/media/js/jquery.dataTables$min.js", array('jquery'), $version, true);
509
  wp_enqueue_style('mappress-datatables', self::$baseurl . "/pro/DataTables/media/css/jquery.dataTables.css", null, '1.9.1');
510
  }
511
+
512
  $libs = array();
513
+ if ($type == 'editor')
514
  $libs[] = ('drawing');
515
 
516
+ $libstring = (empty($libs)) ? '' : "&amp;libraries=" . implode(',', $libs);
517
  $apikey = (!empty(self::$options->apiKey)) ? "&amp;key=" . self::$options->apiKey : '';
518
+ $language = self::get_language();
519
+ $langstring = ($language) ? "&amp;language=$language" : '';
520
+ wp_enqueue_script("mappress-gmaps", "https://maps.googleapis.com/maps/api/js?sensor=true{$langstring}{$libstring}{$apikey}", null, null, true);
521
 
522
  if ($min) {
523
  wp_enqueue_script('mappress', self::$js . "/mappress.min.js", array('jquery'), $version, true);
580
  return $l10n;
581
  }
582
 
583
+ /**
584
+ * Get language using settings/WPML/qTrans
585
+ *
586
+ */
587
+ static function get_language() {
588
+ // For WPML (wpml.org): set the selected language if it wasn't specified in the options screen
589
+ if (defined('ICL_LANGUAGE_CODE'))
590
+ return ICL_LANGUAGE_CODE;
591
+
592
+ // For qTranslate, pick up current language from that
593
+ if (function_exists('qtrans_getLanguage'))
594
+ return qtrans_getLanguage();
595
+
596
+ return self::$options->language;
597
+ }
598
  } // End Mappress class
599
 
600
  if (class_exists('Mappress_Pro'))
mappress_map.php CHANGED
@@ -1,12 +1,12 @@
1
  <?php
2
  class Mappress_Map extends Mappress_Obj {
3
  var $mapid,
4
- $width = 425,
5
- $height = 350,
6
  $zoom,
7
  $center = array('lat' => 0, 'lng' => 0),
8
  $mapTypeId = 'roadmap',
9
- $title = 'Untitled',
10
  $metaKey,
11
  $query,
12
  $queryResult,
@@ -30,22 +30,30 @@ class Mappress_Map extends Mappress_Obj {
30
  else
31
  $this->options->update($atts);
32
 
33
- // For WPML (wpml.org): set the selected language if it wasn't specified in the options screen
34
- if (defined('ICL_LANGUAGE_CODE') && !$this->options->language)
35
- $this->options->language = ICL_LANGUAGE_CODE;
36
-
37
- // For qTranslate, pick up current language from that
38
- if (function_exists('qtrans_getLanguage') && !$options->language)
39
- $options->language = qtrans_getLanguage();
40
-
41
  // Convert POIs from arrays to objects if needed
42
  foreach((array)$this->pois as $index => $poi) {
43
  if (is_array($poi))
44
  $this->pois[$index] = new Mappress_Poi($poi);
45
  }
 
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
 
48
- function register() {
49
  global $wpdb;
50
 
51
  // Ajax
@@ -87,7 +95,7 @@ class Mappress_Map extends Mappress_Obj {
87
  add_meta_box('mappress', 'MapPress', array(__CLASS__, 'meta_box'), $post_type, 'normal', 'high');
88
  }
89
 
90
- function meta_box($post) {
91
  global $mappress;
92
 
93
  $mappress->enqueue_editor();
@@ -443,7 +451,7 @@ class Mappress_Map extends Mappress_Obj {
443
  if ($border['style']) {
444
  $style .= sprintf("border: %spx %s %s; ", $border['width'], $border['style'], $border['color']);
445
 
446
- if ($border['radius']) {
447
  $radius = $border['radius'] . 'px';
448
  $style .= " border-radius: $radius; -moz-border-radius: $radius; -webkit-border-radius: $radius; -o-border-radius:$radius ";
449
  }
@@ -517,6 +525,6 @@ class Mappress_Map extends Mappress_Obj {
517
  return "";
518
 
519
  return implode('', $a);
520
- }
521
- }
522
  ?>
1
  <?php
2
  class Mappress_Map extends Mappress_Obj {
3
  var $mapid,
4
+ $width,
5
+ $height,
6
  $zoom,
7
  $center = array('lat' => 0, 'lng' => 0),
8
  $mapTypeId = 'roadmap',
9
+ $title,
10
  $metaKey,
11
  $query,
12
  $queryResult,
30
  else
31
  $this->options->update($atts);
32
 
33
+ // Set language
34
+ if (!$this->options->language)
35
+ $this->options->language = Mappress::get_language();
36
+
 
 
 
 
37
  // Convert POIs from arrays to objects if needed
38
  foreach((array)$this->pois as $index => $poi) {
39
  if (is_array($poi))
40
  $this->pois[$index] = new Mappress_Poi($poi);
41
  }
42
+
43
+ // Set default size if no width/height specified
44
+ if (!$this->width && !$this->height) {
45
+ $i = (int) $this->options->size;
46
+ $size = Mappress::$options->sizes[$i];
47
+ $this->width = $size['width'];
48
+ $this->height = $size['height'];
49
+ }
50
+
51
+ // Default title
52
+ if (empty($this->title))
53
+ $this->title = __('Untitled', 'mappress');
54
  }
55
 
56
+ static function register() {
57
  global $wpdb;
58
 
59
  // Ajax
95
  add_meta_box('mappress', 'MapPress', array(__CLASS__, 'meta_box'), $post_type, 'normal', 'high');
96
  }
97
 
98
+ static function meta_box($post) {
99
  global $mappress;
100
 
101
  $mappress->enqueue_editor();
451
  if ($border['style']) {
452
  $style .= sprintf("border: %spx %s %s; ", $border['width'], $border['style'], $border['color']);
453
 
454
+ if (isset($border['radius']) && $border['radius']) {
455
  $radius = $border['radius'] . 'px';
456
  $style .= " border-radius: $radius; -moz-border-radius: $radius; -webkit-border-radius: $radius; -o-border-radius:$radius ";
457
  }
525
  return "";
526
 
527
  return implode('', $a);
528
+ }
529
+ }
530
  ?>
mappress_poi.php CHANGED
@@ -142,8 +142,7 @@ class Mappress_Poi extends Mappress_Obj {
142
  if ($style == 'address')
143
  $this->body = $this->get_address();
144
  }
145
-
146
-
147
  /**
148
  * Get the linked post, if any
149
  */
@@ -246,7 +245,7 @@ class Mappress_Poi extends Mappress_Obj {
246
  if (in_array('directions_to', $links) && $map->options->directions != 'none')
247
  $a[] = $this->get_directions_link(array('to' => $this, 'text' => __('Directions to', 'mappress')));
248
  if (in_array('directions_from', $links) && $map->options->directions != 'none')
249
- $a[] = $this->get_directions_link(array('from' => $this, 'to' => '', 'text' => __('Directions from')));
250
  }
251
 
252
  // Zoom isn't available in poi list by default
@@ -343,19 +342,23 @@ class Mappress_Poi extends Mappress_Obj {
343
  * @param mixed $args - arguments to pass to WP get_the_post_thumbnail() function
344
  */
345
  function get_thumbnail( $args = '' ) {
346
- if (!$this->postid)
 
 
347
  return '';
348
 
349
- $map = $this->map();
350
- if ($map->options->thumbs) {
351
- if (isset($args['size']))
352
- $size = $args['size'];
353
- else
354
- $size = ($map->options->thumbSize) ? $map->options->thumbSize : array($map->options->thumbWidth, $map->options->thumbHeight);
355
- return get_the_post_thumbnail($this->postid, $size, $args);
356
- }
357
-
358
- return "";
 
 
359
  }
360
  }
361
  ?>
142
  if ($style == 'address')
143
  $this->body = $this->get_address();
144
  }
145
+
 
146
  /**
147
  * Get the linked post, if any
148
  */
245
  if (in_array('directions_to', $links) && $map->options->directions != 'none')
246
  $a[] = $this->get_directions_link(array('to' => $this, 'text' => __('Directions to', 'mappress')));
247
  if (in_array('directions_from', $links) && $map->options->directions != 'none')
248
+ $a[] = $this->get_directions_link(array('from' => $this, 'to' => '', 'text' => __('Directions from', 'mappress')));
249
  }
250
 
251
  // Zoom isn't available in poi list by default
342
  * @param mixed $args - arguments to pass to WP get_the_post_thumbnail() function
343
  */
344
  function get_thumbnail( $args = '' ) {
345
+ $map = $this->map();
346
+
347
+ if (!$this->postid || !$map->options->thumbs)
348
  return '';
349
 
350
+ if (isset($args['size']))
351
+ $size = $args['size'];
352
+ else
353
+ $size = ($map->options->thumbSize) ? $map->options->thumbSize : array($map->options->thumbWidth, $map->options->thumbHeight);
354
+
355
+ $html = get_the_post_thumbnail($this->postid, $size, $args);
356
+
357
+ // If linking poi to underlying post, then link the featured image
358
+ if ($map->options->mashupLink)
359
+ $html = "<a href='" . get_permalink($this->postid) . "'>$html</a>";
360
+
361
+ return $html;
362
  }
363
  }
364
  ?>
mappress_settings.php CHANGED
@@ -15,7 +15,7 @@ class Mappress_Options extends Mappress_Obj {
15
  $country,
16
  $dataTables = false, // true | false | settings (defaults are: array('bFilter' => false, 'bPaginate' => false))
17
  $defaultIcon,
18
- $directions = 'inline', // inline | google | none
19
  $directionsServer = 'https://maps.google.com',
20
  $directionsUnits = '',
21
  $draggable = true,
@@ -33,7 +33,6 @@ class Mappress_Options extends Mappress_Obj {
33
  $keyboardShortcuts = true,
34
  $language,
35
  $mapLinks = array(), // Links for the map: center | bigger | reset
36
- $mapSizes = array(array('label' => null, 'width' => 300, 'height' => 300), array('label' => null, 'width' => 425, 'height' => 350), array('label' => null, 'width' => 640, 'height' => 480)),
37
  $mapTypeControl = true,
38
  $mapTypeControlStyle = 0, // 0=default, 1=horizontal, 2=dropdown
39
  $mapTypeId, // Default map type
@@ -68,6 +67,8 @@ class Mappress_Options extends Mappress_Obj {
68
  $rotateControl = true,
69
  $scaleControl = false,
70
  $scrollwheel = false,
 
 
71
  $sort = true, // set false to disable initial sort and use saved order
72
  $streetViewControl = true,
73
  $style, // Default custom style
@@ -175,10 +176,18 @@ class Mappress_Settings {
175
  return get_object_vars($this);
176
  }
177
 
178
- // Minimum default map size is 200
179
- foreach( (array)$input['mapSizes'] as $i => $size ) {
180
- $input['mapSizes'][$i]['width'] = max(200, (int)$input['mapSizes'][$i]['width']);
181
- $input['mapSizes'][$i]['height'] = max(200, (int)$input['mapSizes'][$i]['height']);
 
 
 
 
 
 
 
 
182
  }
183
 
184
  // If resize was clicked then resize ALL maps
@@ -421,7 +430,8 @@ class Mappress_Settings {
421
  for ($i = 1; $i <= 10; $i++)
422
  $radii[$i] = $i . "px";
423
  echo "&nbsp; " . __("Corner radius", 'mappress') . ":";
424
- echo self::dropdown($radii, $border['radius'], 'mappress_options[border][radius]', array('none' => true));
 
425
  }
426
 
427
  function set_border_color() {
@@ -556,7 +566,7 @@ class Mappress_Settings {
556
  }
557
 
558
  /**
559
- * Options page - note that enctype is added to the form to support icon uploads
560
  *
561
  */
562
  function options_page() {
@@ -582,7 +592,7 @@ class Mappress_Settings {
582
 
583
  <div id="post-body">
584
  <div id="post-body-content" class="has-sidebar-content">
585
- <form action="options.php" method="post" enctype="multipart/form-data">
586
  <?php
587
  // Nonces needed to remember metabox open/closed settings
588
  wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
15
  $country,
16
  $dataTables = false, // true | false | settings (defaults are: array('bFilter' => false, 'bPaginate' => false))
17
  $defaultIcon,
18
+ $directions = 'inline', // inline | google | none
19
  $directionsServer = 'https://maps.google.com',
20
  $directionsUnits = '',
21
  $draggable = true,
33
  $keyboardShortcuts = true,
34
  $language,
35
  $mapLinks = array(), // Links for the map: center | bigger | reset
 
36
  $mapTypeControl = true,
37
  $mapTypeControlStyle = 0, // 0=default, 1=horizontal, 2=dropdown
38
  $mapTypeId, // Default map type
67
  $rotateControl = true,
68
  $scaleControl = false,
69
  $scrollwheel = false,
70
+ $size = 1, // Index of default map size
71
+ $sizes = array(array('width' => 300, 'height' => 300), array('width' => 425, 'height' => 350), array('width' => 640, 'height' => 480)),
72
  $sort = true, // set false to disable initial sort and use saved order
73
  $streetViewControl = true,
74
  $style, // Default custom style
176
  return get_object_vars($this);
177
  }
178
 
179
+ // Sizes
180
+ foreach( $input['sizes'] as &$size ) {
181
+ // Strip 'px' from value but allow '%'. also, % min/max = 5%/100%, px min/max = 200/2048
182
+ if (strpos($size['width'], '%'))
183
+ $size['width'] = max(5, min(100, (int) $size['width'])) . '%';
184
+ else
185
+ $size['width'] = max(200, min(2048, (int) $size['width']));
186
+
187
+ if (strpos($size['height'], '%'))
188
+ $size['height'] = max(5, min(100, (int) $size['height'])) . '%';
189
+ else
190
+ $size['height'] = max(200, min(2048, (int) $size['height']));
191
  }
192
 
193
  // If resize was clicked then resize ALL maps
430
  for ($i = 1; $i <= 10; $i++)
431
  $radii[$i] = $i . "px";
432
  echo "&nbsp; " . __("Corner radius", 'mappress') . ":";
433
+ $radius = (isset($border['radius']) ? $border['radius'] : null);
434
+ echo self::dropdown($radii, $radius, 'mappress_options[border][radius]', array('none' => true));
435
  }
436
 
437
  function set_border_color() {
566
  }
567
 
568
  /**
569
+ * Options page
570
  *
571
  */
572
  function options_page() {
592
 
593
  <div id="post-body">
594
  <div id="post-body-content" class="has-sidebar-content">
595
+ <form action="options.php" method="post">
596
  <?php
597
  // Nonces needed to remember metabox open/closed settings
598
  wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: google maps,google,map,maps,easy,poi,mapping,mapper,gps,lat,lon,latitude,longitude,geocoder,geocoding,georss,geo rss,geo,v3,marker,mashup,mash,api,v3,buddypress,mashup,geo,wp-geo,geo mashup,simplemap,simple,wpml
5
  Requires at least: 3.3
6
  Tested up to: 3.5
7
- Stable tag: 2.40.3
8
 
9
  MapPress is the most popular and easiest way to create great-looking Google Maps and driving directions in your blog.
10
 
@@ -95,6 +95,24 @@ See full [installation intructions and Documentation](http://www.wphostreviews.c
95
 
96
  The fulll MapPress change log available here: [Change Log](http://wphostreviews.com/mappress-changelog)
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  2.40.3
99
  =
100
  * Fixed: widget CSS settings
@@ -105,7 +123,7 @@ The fulll MapPress change log available here: [Change Log](http://wphostreviews.
105
  * Fixed: PHP notice in widget
106
  * Fixed: added updated Hungarian translation (thanks to Zsolt A.)
107
 
108
- 2.40.1
109
  =
110
  * Fixed: % width and % height were not working in the editor since 2.40
111
  * Fixed: PHP notice when upgrade available
@@ -114,7 +132,7 @@ The fulll MapPress change log available here: [Change Log](http://wphostreviews.
114
  2.40
115
  =
116
  * Added: an 'insert into post' link is now available in the map list as well as the map editor
117
- * Changed: fields in the map editor have been rearranged for clarity
118
  * Changed: the 'letter' icons have been removed from the icon picker. If you need to continue using them, contact me for support.
119
  * Fixed: the icon picker now loads much faster as a single image
120
 
@@ -133,7 +151,7 @@ The fulll MapPress change log available here: [Change Log](http://wphostreviews.
133
 
134
  2.39.7
135
  =
136
- * Added: a new setting 'load maps last' can be used to load the maps after the window 'load' event
137
  * Changed: the 'hideEmpty' parameter can now be used to hide any mashup that is empty (previously it only applied to mashups with query='current')
138
  * Changed: the parameter 'tilt' for 45-degree imagery now defaults to 0 (off). Set it to "45" in your shortcode if you need 45-degreee imagery.
139
  * Changed: the MapPress RSS feed has been removed from the settings screen
4
  Tags: google maps,google,map,maps,easy,poi,mapping,mapper,gps,lat,lon,latitude,longitude,geocoder,geocoding,georss,geo rss,geo,v3,marker,mashup,mash,api,v3,buddypress,mashup,geo,wp-geo,geo mashup,simplemap,simple,wpml
5
  Requires at least: 3.3
6
  Tested up to: 3.5
7
+ Stable tag: 2.40.4
8
 
9
  MapPress is the most popular and easiest way to create great-looking Google Maps and driving directions in your blog.
10
 
95
 
96
  The fulll MapPress change log available here: [Change Log](http://wphostreviews.com/mappress-changelog)
97
 
98
+ 2.40.4
99
+ =
100
+ * Added: the POI editor now includes the 'paste' tinyMCE plugin to allow pasting from Microsoft Word
101
+ * Changed: if you have set the option to link POIs to posts, featured images will also link to the underlying post
102
+ * Changed: map sizes (on the settings screen) can be set to % sizes as well as pixels. NOTE: existing sizes are reset, so re-enter them on the 'settings' screen if needed.
103
+ * Changed: a default size can now be selected and maps without a specific size will default to that size
104
+ * Changed: 'language' setting is now set dynamically
105
+ * Changed: up to 6 address lines are now supported
106
+ * Fixed: workaround for NextGen plugin bug: reverses order of wp_enqueue_script / wp_print_footer scripts.
107
+ * Fixed: tabs activation using new jQuery version in WordPress 3.6
108
+ * Fixed: workaround for NextGen plugin bug: admin_enqueue_scripts called without a hook name
109
+ * Fixed: some mobile devices did not show the map 'close' buttons correctly (mobile browser could not render 'max-width: auto', 'max-width: 99999px' used instead)
110
+ * Fixed: shadows were not appearing for custom icons
111
+ * Fixed: added missing localization for 'loading' and 'directions from' message strings
112
+ * Fixed: notice message for a static function called non-statically
113
+ * Fixed: map are now generated from metadata only if the post type is enabled for maps on the settings screen
114
+ * Fixed: update of maps from queued metadata was not working when multiple posts were queued at once
115
+
116
  2.40.3
117
  =
118
  * Fixed: widget CSS settings
123
  * Fixed: PHP notice in widget
124
  * Fixed: added updated Hungarian translation (thanks to Zsolt A.)
125
 
126
+ 2.40.1
127
  =
128
  * Fixed: % width and % height were not working in the editor since 2.40
129
  * Fixed: PHP notice when upgrade available
132
  2.40
133
  =
134
  * Added: an 'insert into post' link is now available in the map list as well as the map editor
135
+ * Changed: fields in the map editor have been rearranged for clarity
136
  * Changed: the 'letter' icons have been removed from the icon picker. If you need to continue using them, contact me for support.
137
  * Fixed: the icon picker now loads much faster as a single image
138
 
151
 
152
  2.39.7
153
  =
154
+ * Added: a new setting 'load maps last' can be used to load the maps after the window 'load' event
155
  * Changed: the 'hideEmpty' parameter can now be used to hide any mashup that is empty (previously it only applied to mashups with query='current')
156
  * Changed: the parameter 'tilt' for 45-degree imagery now defaults to 0 (off). Set it to "45" in your shortcode if you need 45-degreee imagery.
157
  * Changed: the MapPress RSS feed has been removed from the settings screen
templates/map_poi_list.php CHANGED
@@ -18,7 +18,7 @@
18
  <div>
19
  <?php echo $poi->get_links('poi_list'); ?>
20
  </div>
21
- </td>
22
  </tr>
23
  <?php endforeach; ?>
24
  </tbody>
18
  <div>
19
  <?php echo $poi->get_links('poi_list'); ?>
20
  </div>
21
+ </td>
22
  </tr>
23
  <?php endforeach; ?>
24
  </tbody>