Version Description
- Modifies the Mouse Wheel behavior, to make it less intrusive.
Download this release
Release Info
Developer | codepeople |
Plugin | Google Maps CP |
Version | 1.0.32 |
Comparing to | |
See all releases |
Code changes from version 1.0.24 to 1.0.32
- codepeople-post-map.php +1 -1
- feedback/feedback.html +2 -2
- include/functions.php +63 -7
- js/cpm.admin.js +9 -1
- js/cpm.js +1 -1
- languages/codepeople-post-map-es_ES.mo +0 -0
- languages/codepeople-post-map-es_ES.po +166 -141
- languages/codepeople-post-map-fr_FR.mo +0 -0
- languages/codepeople-post-map-fr_FR.po +163 -138
- readme.txt +237 -76
- styles/cpm-styles.css +1 -1
codepeople-post-map.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Google Maps CP
|
4 |
Text Domain: codepeople-post-map
|
5 |
-
Version: 1.0.
|
6 |
Author: CodePeople
|
7 |
Author URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
8 |
Plugin URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
2 |
/*
|
3 |
Plugin Name: Google Maps CP
|
4 |
Text Domain: codepeople-post-map
|
5 |
+
Version: 1.0.32
|
6 |
Author: CodePeople
|
7 |
Author URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
8 |
Plugin URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
feedback/feedback.html
CHANGED
@@ -73,8 +73,8 @@
|
|
73 |
{
|
74 |
var $ = jQuery,
|
75 |
plugin_slug = '<?php print esc_js($plugin_slug); ?>',
|
76 |
-
support_link = '<?php print esc_js($support_link); ?>',
|
77 |
-
full_support_link = '<?php print esc_js($full_support_link); ?>';
|
78 |
$('[data-slug="'+plugin_slug+'"] .deactivate a').
|
79 |
on(
|
80 |
'click',
|
73 |
{
|
74 |
var $ = jQuery,
|
75 |
plugin_slug = '<?php print esc_js($plugin_slug); ?>',
|
76 |
+
support_link = '<?php print str_replace("&","&",esc_js($support_link)); ?>',
|
77 |
+
full_support_link = '<?php print str_replace("&","&",esc_js($full_support_link)); ?>';
|
78 |
$('[data-slug="'+plugin_slug+'"] .deactivate a').
|
79 |
on(
|
80 |
'click',
|
include/functions.php
CHANGED
@@ -80,6 +80,7 @@ class CPM {
|
|
80 |
"zh-TW"=>__("CHINESE (TRADITIONAL)","codepeople-post-map")
|
81 |
|
82 |
);
|
|
|
83 |
} // End __construct
|
84 |
|
85 |
function array_map_recursive($callback, $array)
|
@@ -310,7 +311,7 @@ class CPM {
|
|
310 |
<h1><?php _e('Maps Configuration', 'codepeople-post-map'); ?></h1>
|
311 |
<p style="border:1px solid #E6DB55;margin-bottom:10px;padding:5px;background-color: #FFFFE0;">
|
312 |
<?php _e('For any issues with the map, go to our <a href="http://wordpress.dwbooster.com/contact-us" target="_blank">contact page</a> and leave us a message.', 'codepeople-post-map'); ?><br/><br />
|
313 |
-
<?php _e('If you want test the premium version of CP Google Maps go to the following links:<br/> <a href="
|
314 |
</p>
|
315 |
<table class="form-table">
|
316 |
<?php
|
@@ -321,11 +322,18 @@ class CPM {
|
|
321 |
<th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
|
322 |
<td>
|
323 |
<p class="cpm_blink_me" style="color:red;"><span style="font-size:2em;">⬐</span> <?php _e('Enter your API Key', 'codepeople-post-map');?></p>
|
324 |
-
<input type="text" name="cpm_map[api_key]" id="cpm_map_api_key" value="<?php esc_attr_e( ( !empty( $options['api_key'] ) ) ? $options['api_key'] : '' ); ?>" /><br>
|
325 |
<?php
|
326 |
_e( 'Please, visit the following link to get the API Key for your website:', 'codepeople-post-map');
|
327 |
?><br>
|
328 |
<a href="https://developers.google.com/maps/documentation/javascript/get-api-key" target="_blank">https://developers.google.com/maps/documentation/javascript/get-api-key</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
329 |
</td>
|
330 |
</tr>
|
331 |
<?php
|
@@ -651,6 +659,7 @@ class CPM {
|
|
651 |
<li><?php _e('If you want to use specific settings just for this map, tick the checkbox "Use particular settings for this map", and then, modify the map\'s attributes', 'codepeople-post-map'); ?></li>
|
652 |
<li><?php _e( 'Don\'t forget to press the "Update" button for save the post and map data', 'codepeople-post-map');?></li>
|
653 |
</ol>
|
|
|
654 |
<div style="border:1px solid #CCC;margin-bottom:10px;min-height:60px; padding:5px;">
|
655 |
<h3><?php _e('Map points', 'codepeople-post-map'); ?></h3>
|
656 |
<div id="points_container" style="padding:10px;">
|
@@ -1063,6 +1072,29 @@ class CPM {
|
|
1063 |
$this->points[] = $point;
|
1064 |
}
|
1065 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1066 |
} // End populate_points
|
1067 |
|
1068 |
/*
|
@@ -1151,7 +1183,12 @@ class CPM {
|
|
1151 |
$posts = array( $id );
|
1152 |
|
1153 |
$query_arg = array(
|
1154 |
-
|
|
|
|
|
|
|
|
|
|
|
1155 |
'post_status' => 'publish',
|
1156 |
'orderby' => 'post_date',
|
1157 |
'order' => 'DESC',
|
@@ -1159,6 +1196,21 @@ class CPM {
|
|
1159 |
'fields' => 'ids',
|
1160 |
'post__not_in' => array( $id )
|
1161 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1162 |
if( !empty($cpm_obj->limit) ){
|
1163 |
$query_arg[ 'numberposts' ] = $cpm_obj->limit - 1;
|
1164 |
}
|
@@ -1388,8 +1440,9 @@ class CPM {
|
|
1388 |
|
1389 |
$point_title = (!empty($point['name'])) ? $point['name'] : get_the_title($point['post_id']);
|
1390 |
$point_link = (!empty($point['post_id'])) ? get_permalink($point['post_id']) : '';
|
|
|
1391 |
|
1392 |
-
if (isset($point['thumbnail']) && $point['thumbnail']
|
1393 |
$point_img_url = $point['thumbnail'];
|
1394 |
if(preg_match("/attachment_id=(\d+)/i", $point['thumbnail'], $matches)){
|
1395 |
$thumb = wp_get_attachment_image_src($matches[1], 'thumbnail');
|
@@ -1408,11 +1461,14 @@ class CPM {
|
|
1408 |
}
|
1409 |
}
|
1410 |
|
1411 |
-
$
|
1412 |
-
|
|
|
|
|
|
|
1413 |
|
1414 |
if( !empty( $point_img_url ) ) {
|
1415 |
-
$point_img = "<img src='".$point_img_url."' style='margin:8px 0 0 8px !important; width:90px; height:90px' align='right' />";
|
1416 |
$html_width = "310px";
|
1417 |
} else {
|
1418 |
$point_img = "";
|
80 |
"zh-TW"=>__("CHINESE (TRADITIONAL)","codepeople-post-map")
|
81 |
|
82 |
);
|
83 |
+
|
84 |
} // End __construct
|
85 |
|
86 |
function array_map_recursive($callback, $array)
|
311 |
<h1><?php _e('Maps Configuration', 'codepeople-post-map'); ?></h1>
|
312 |
<p style="border:1px solid #E6DB55;margin-bottom:10px;padding:5px;background-color: #FFFFE0;">
|
313 |
<?php _e('For any issues with the map, go to our <a href="http://wordpress.dwbooster.com/contact-us" target="_blank">contact page</a> and leave us a message.', 'codepeople-post-map'); ?><br/><br />
|
314 |
+
<?php _e('If you want test the premium version of CP Google Maps go to the following links:<br/> <a href="https://demos.dwbooster.com/cp-google-maps/wp-login.php" target="_blank">Administration area: Click to access the administration area demo</a><br/> <a href="https://demos.dwbooster.com/cp-google-maps/" target="_blank">Public page: Click to access the CP Google Maps</a>', 'codepeople-post-map' ); ?>
|
315 |
</p>
|
316 |
<table class="form-table">
|
317 |
<?php
|
322 |
<th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
|
323 |
<td>
|
324 |
<p class="cpm_blink_me" style="color:red;"><span style="font-size:2em;">⬐</span> <?php _e('Enter your API Key', 'codepeople-post-map');?></p>
|
325 |
+
<input type="text" name="cpm_map[api_key]" id="cpm_map_api_key" value="<?php esc_attr_e( ( !empty( $options['api_key'] ) ) ? $options['api_key'] : '' ); ?>" style="min-width:450px;" /><br>
|
326 |
<?php
|
327 |
_e( 'Please, visit the following link to get the API Key for your website:', 'codepeople-post-map');
|
328 |
?><br>
|
329 |
<a href="https://developers.google.com/maps/documentation/javascript/get-api-key" target="_blank">https://developers.google.com/maps/documentation/javascript/get-api-key</a>
|
330 |
+
<p style="margin-top:20px; border: 1px dashed #DEDEDE; padding: 10px;">
|
331 |
+
<?php _e('With the Google project, activate at least the following APIs', 'codepeople-post-map'); ?>:<br />
|
332 |
+
<b>- Maps JavaScript API</b><br />
|
333 |
+
<b>- Geocoding API</b><br />
|
334 |
+
<b>- Places API</b> (<?php _e('Required if the <i>"Display a search box for places"</i> option is enabled', 'codepeople-post-map'); ?>)<br />
|
335 |
+
<b>- Directions API</b> (<?php _e('Required if the <i>"Display route"</i> option is enabled', 'codepeople-post-map'); ?>)
|
336 |
+
</p>
|
337 |
</td>
|
338 |
</tr>
|
339 |
<?php
|
659 |
<li><?php _e('If you want to use specific settings just for this map, tick the checkbox "Use particular settings for this map", and then, modify the map\'s attributes', 'codepeople-post-map'); ?></li>
|
660 |
<li><?php _e( 'Don\'t forget to press the "Update" button for save the post and map data', 'codepeople-post-map');?></li>
|
661 |
</ol>
|
662 |
+
<div class="cpm_error_mssg"></div>
|
663 |
<div style="border:1px solid #CCC;margin-bottom:10px;min-height:60px; padding:5px;">
|
664 |
<h3><?php _e('Map points', 'codepeople-post-map'); ?></h3>
|
665 |
<div id="points_container" style="padding:10px;">
|
1072 |
$this->points[] = $point;
|
1073 |
}
|
1074 |
}
|
1075 |
+
else
|
1076 |
+
{
|
1077 |
+
$latitude = apply_filters('cpm-post-latitude', '', $post_id);
|
1078 |
+
$longitude = apply_filters('cpm-post-longitude', '', $post_id);
|
1079 |
+
$address = apply_filters('cpm-post-address', '', $post_id);
|
1080 |
+
if( (!empty( $latitude ) && !empty( $longitude )) || !empty($address))
|
1081 |
+
{
|
1082 |
+
$point = array();
|
1083 |
+
if(!empty( $latitude ) && !empty( $longitude ))
|
1084 |
+
{
|
1085 |
+
$point['latitude'] = $latitude;
|
1086 |
+
$point['longitude'] = $longitude;
|
1087 |
+
}
|
1088 |
+
if(!empty( $address ))
|
1089 |
+
{
|
1090 |
+
$point['address'] = $address;
|
1091 |
+
}
|
1092 |
+
$point['post_id'] = $post_id;
|
1093 |
+
if(!in_array($point, $this->points)){
|
1094 |
+
$this->points[] = $point;
|
1095 |
+
}
|
1096 |
+
}
|
1097 |
+
}
|
1098 |
} // End populate_points
|
1099 |
|
1100 |
/*
|
1183 |
$posts = array( $id );
|
1184 |
|
1185 |
$query_arg = array(
|
1186 |
+
'meta_query' => array(
|
1187 |
+
'relation' => 'OR',
|
1188 |
+
array(
|
1189 |
+
'key' => 'cpm_point'
|
1190 |
+
),
|
1191 |
+
),
|
1192 |
'post_status' => 'publish',
|
1193 |
'orderby' => 'post_date',
|
1194 |
'order' => 'DESC',
|
1196 |
'fields' => 'ids',
|
1197 |
'post__not_in' => array( $id )
|
1198 |
);
|
1199 |
+
|
1200 |
+
/*
|
1201 |
+
* If the latitude and longitude or address is stored into custom fields,
|
1202 |
+
* it is possible to include them in the selector query
|
1203 |
+
* function custom_complete_query_structure($query_components)
|
1204 |
+
* {
|
1205 |
+
* $query_components[] = array(
|
1206 |
+
* 'key' => 'custom_address'
|
1207 |
+
* );
|
1208 |
+
* return $query_components;
|
1209 |
+
* }
|
1210 |
+
* add_filter('cpm-complete-structured-query', 'custom_complete_query_structure');
|
1211 |
+
*/
|
1212 |
+
$query_arg['meta_query'] = apply_filters('cpm-complete-structured-query', $query_arg['meta_query']);
|
1213 |
+
|
1214 |
if( !empty($cpm_obj->limit) ){
|
1215 |
$query_arg[ 'numberposts' ] = $cpm_obj->limit - 1;
|
1216 |
}
|
1440 |
|
1441 |
$point_title = (!empty($point['name'])) ? $point['name'] : get_the_title($point['post_id']);
|
1442 |
$point_link = (!empty($point['post_id'])) ? get_permalink($point['post_id']) : '';
|
1443 |
+
$point_img_url = '';
|
1444 |
|
1445 |
+
if (isset($point['thumbnail']) && !empty($point['thumbnail'])) {
|
1446 |
$point_img_url = $point['thumbnail'];
|
1447 |
if(preg_match("/attachment_id=(\d+)/i", $point['thumbnail'], $matches)){
|
1448 |
$thumb = wp_get_attachment_image_src($matches[1], 'thumbnail');
|
1461 |
}
|
1462 |
}
|
1463 |
|
1464 |
+
$point_img_url = apply_filters('cpm-point-image', $point_img_url, $point['post_id']);
|
1465 |
+
|
1466 |
+
$point_description = apply_filters('cpm-point-description', ( !empty( $point['description'] ) ) ? $point['description'] : $this->_get_excerpt($point['post_id']), $point['post_id']);
|
1467 |
+
|
1468 |
+
$point_address = apply_filters('cpm-point-address', isset( $point['address'] ) ? $point['address'] : '', $point['post_id']);
|
1469 |
|
1470 |
if( !empty( $point_img_url ) ) {
|
1471 |
+
$point_img = "<img src='".$point_img_url."' class='cpm-thumbnail' style='margin:8px 0 0 8px !important; width:90px; height:90px' align='right' />";
|
1472 |
$html_width = "310px";
|
1473 |
} else {
|
1474 |
$point_img = "";
|
js/cpm.admin.js
CHANGED
@@ -14,6 +14,14 @@
|
|
14 |
cpm_global['api_key'] != ''
|
15 |
) _api_key = 'key='+cpm_global['api_key']+'&';
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
window["cpm_thumbnail_selection"] = function(e){
|
18 |
var thumbnail_field = $(e).parent().find('input[type="text"]');
|
19 |
var media = wp.media({
|
@@ -97,7 +105,7 @@
|
|
97 |
cpm_load_map(f.find('.cpm_map_container'),latitude, longitude);
|
98 |
}
|
99 |
}else{
|
100 |
-
alert('The point is not located');
|
101 |
}
|
102 |
};
|
103 |
|
14 |
cpm_global['api_key'] != ''
|
15 |
) _api_key = 'key='+cpm_global['api_key']+'&';
|
16 |
|
17 |
+
if(!('gm_authFailure' in window))
|
18 |
+
{
|
19 |
+
window['gm_authFailure'] = function()
|
20 |
+
{
|
21 |
+
$('.cpm_error_mssg').css({'font-weight': 'bold', 'font-size': '1.2em', 'color':'#FF0000', 'padding': '10px 0'}).html('Google maps failed to load! Be sure has been entered an API Key through the settings page of the plugin, and it can be used on this website.');
|
22 |
+
};
|
23 |
+
}
|
24 |
+
|
25 |
window["cpm_thumbnail_selection"] = function(e){
|
26 |
var thumbnail_field = $(e).parent().find('input[type="text"]');
|
27 |
var media = wp.media({
|
105 |
cpm_load_map(f.find('.cpm_map_container'),latitude, longitude);
|
106 |
}
|
107 |
}else{
|
108 |
+
alert('The point is not located: Be sure the address is valid, has been entered an API Key through the settings page of the plugin, and the Geocoding API is enabled in the Google Project.');
|
109 |
}
|
110 |
};
|
111 |
|
js/cpm.js
CHANGED
@@ -125,6 +125,7 @@ function CodePeoplePostMapPublic()
|
|
125 |
zoom: me.data.zoom,
|
126 |
center: ( typeof me.data.center != 'undefined' && me.data.center != null ) ? me.data.center : m[c].latlng,
|
127 |
mapTypeId: google.maps.MapTypeId[me.data.type],
|
|
|
128 |
draggable: me.data.drag_map,
|
129 |
|
130 |
// Show / Hide controls
|
@@ -132,7 +133,6 @@ function CodePeoplePostMapPublic()
|
|
132 |
zoomControl: me.data.zoompancontrol,
|
133 |
mapTypeControl: me.data.typecontrol,
|
134 |
streetViewControl: me.data.streetviewcontrol,
|
135 |
-
scrollwheel: me.data.mousewheel,
|
136 |
fullscreenControl: me.data.fullscreencontrol
|
137 |
});
|
138 |
|
125 |
zoom: me.data.zoom,
|
126 |
center: ( typeof me.data.center != 'undefined' && me.data.center != null ) ? me.data.center : m[c].latlng,
|
127 |
mapTypeId: google.maps.MapTypeId[me.data.type],
|
128 |
+
gestureHandling: ((me.data.mousewheel) ? 'cooperative' : 'none'),
|
129 |
draggable: me.data.drag_map,
|
130 |
|
131 |
// Show / Hide controls
|
133 |
zoomControl: me.data.zoompancontrol,
|
134 |
mapTypeControl: me.data.typecontrol,
|
135 |
streetViewControl: me.data.streetviewcontrol,
|
|
|
136 |
fullscreenControl: me.data.fullscreencontrol
|
137 |
});
|
138 |
|
languages/codepeople-post-map-es_ES.mo
CHANGED
Binary file
|
languages/codepeople-post-map-es_ES.po
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: \n"
|
7 |
"Language-Team: CodePeople\n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
-
#: ../codepeople-post-map.php:
|
19 |
msgid "Associate an address to the post for Google Maps association"
|
20 |
msgstr "Asociar una dirección al puesto de asociación Google Maps"
|
21 |
|
@@ -235,33 +235,41 @@ msgstr "Chino (simplificado )"
|
|
235 |
msgid "CHINESE (TRADITIONAL)"
|
236 |
msgstr "Chino (tradicional )"
|
237 |
|
238 |
-
#: ../include/functions.php:
|
239 |
msgid "Select the marker by clicking on the images"
|
240 |
msgstr "Seleccione el marcador haciendo clic en las imágenes"
|
241 |
|
242 |
-
#: ../include/functions.php:
|
243 |
msgid "Powered by"
|
244 |
msgstr "Impulsado por"
|
245 |
|
246 |
-
#: ../include/functions.php:
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuración del Mapa"
|
249 |
|
250 |
-
#: ../include/functions.php:
|
251 |
msgid ""
|
252 |
"For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
|
253 |
"com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
|
254 |
msgstr ""
|
255 |
"Para cualquier problema con el mapa, vaya a nuestro <a href=\"http://"
|
256 |
"wordpress.dwbooster.com/contact - us\" contacto target=\"_blank\"> página </"
|
257 |
-
"a> y nos deja un mensaje"
|
258 |
|
259 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid ""
|
261 |
"If you want test the premium version of CP Google Maps go to the following "
|
262 |
-
"links:<br/> <a href=\"
|
263 |
"\" target=\"_blank\">Administration area: Click to access the administration "
|
264 |
-
"area demo</a><br/> <a href=\"
|
265 |
"target=\"_blank\">Public page: Click to access the CP Google Maps</a>"
|
266 |
msgstr ""
|
267 |
"Si quieres probar la versión premium de CP Google Maps Ir a los siguientes "
|
@@ -269,169 +277,186 @@ msgstr ""
|
|
269 |
"login.php\">Área de administración</a><br /><a href=\"http://demos.net-"
|
270 |
"factor.com/cp-google-maps/\">Página pública</a>"
|
271 |
|
272 |
-
#: ../include/functions.php:
|
273 |
msgid "I have an API key:"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
277 |
msgid "Please, visit the following link to get the API Key for your website:"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
msgid "Use particular settings for this map:"
|
282 |
msgstr "Usar ajustes particulares para este mapa :"
|
283 |
|
284 |
-
#: ../include/functions.php:
|
285 |
msgid "Map zoom:"
|
286 |
msgstr "Zoom :"
|
287 |
|
288 |
-
#: ../include/functions.php:
|
289 |
msgid "Dynamic zoom:"
|
290 |
msgstr "Zoom dinámico:"
|
291 |
|
292 |
-
#: ../include/functions.php:
|
293 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
294 |
msgstr ""
|
295 |
"Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
|
296 |
"el mapa"
|
297 |
|
298 |
-
#: ../include/functions.php:
|
299 |
msgid "Map width:"
|
300 |
msgstr "Ancho del mapa:"
|
301 |
|
302 |
-
#: ../include/functions.php:
|
303 |
msgid "Map height:"
|
304 |
msgstr "Altura del mapa :"
|
305 |
|
306 |
-
#: ../include/functions.php:
|
307 |
msgid "Map margin:"
|
308 |
msgstr "Margen del mapa :"
|
309 |
|
310 |
-
#: ../include/functions.php:
|
311 |
msgid "Map align:"
|
312 |
msgstr "Alinear el mapa:"
|
313 |
|
314 |
-
#: ../include/functions.php:
|
315 |
msgid "left"
|
316 |
msgstr "izquierda"
|
317 |
|
318 |
-
#: ../include/functions.php:
|
319 |
msgid "center"
|
320 |
msgstr "centro"
|
321 |
|
322 |
-
#: ../include/functions.php:
|
323 |
msgid "right"
|
324 |
msgstr "derecho"
|
325 |
|
326 |
-
#: ../include/functions.php:
|
327 |
msgid "Map type:"
|
328 |
msgstr "Tipo de mapa :"
|
329 |
|
330 |
-
#: ../include/functions.php:
|
331 |
msgid "ROADMAP - Displays a normal street map"
|
332 |
msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
|
333 |
|
334 |
-
#: ../include/functions.php:
|
335 |
msgid "SATELLITE - Displays satellite images"
|
336 |
msgstr "SATÉLITE - muestra imágenes de satélite"
|
337 |
|
338 |
-
#: ../include/functions.php:
|
339 |
msgid ""
|
340 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
341 |
msgstr ""
|
342 |
"TERRENO - Muestra los mapas con las características físicas, tales como el "
|
343 |
"terreno y la vegetación"
|
344 |
|
345 |
-
#: ../include/functions.php:
|
346 |
msgid ""
|
347 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
348 |
msgstr ""
|
349 |
"HYBRID - Muestra una capa transparente de las principales calles en imágenes "
|
350 |
"de satélite"
|
351 |
|
352 |
-
#: ../include/functions.php:
|
353 |
msgid "Map language:"
|
354 |
msgstr "Idioma del mapa:"
|
355 |
|
356 |
-
#: ../include/functions.php:
|
357 |
msgid "Allow drag the map:"
|
358 |
msgstr "Permitir desplazar los mapas :"
|
359 |
|
360 |
-
#: ../include/functions.php:
|
361 |
msgid "Display map in post/page:"
|
362 |
msgstr "Visualizar mapa en post / página:"
|
363 |
|
364 |
-
#: ../include/functions.php:
|
365 |
msgid "as icon"
|
366 |
msgstr "como icono"
|
367 |
|
368 |
-
#: ../include/functions.php:
|
369 |
msgid "as full map"
|
370 |
msgstr "mapa como completo"
|
371 |
|
372 |
-
#: ../include/functions.php:
|
373 |
msgid "Show info bubbles:"
|
374 |
msgstr "Mostrar información de burbujas :"
|
375 |
|
376 |
-
#: ../include/functions.php:
|
377 |
msgid "Display the bubbles associated to the points"
|
378 |
msgstr "Mostrar las burbujas asociadas a los puntos"
|
379 |
|
380 |
-
#: ../include/functions.php:
|
381 |
msgid "Display a bubble by default:"
|
382 |
msgstr "Mostrar una burbuja por defecto:"
|
383 |
|
384 |
-
#: ../include/functions.php:
|
385 |
msgid "Display a bubble opened by default"
|
386 |
msgstr "Mostrar una burbuja abierta por defecto"
|
387 |
|
388 |
-
#: ../include/functions.php:
|
389 |
#, fuzzy
|
390 |
#| msgid "Display a link to Google Maps:"
|
391 |
msgid "Display as marker tooltip:"
|
392 |
msgstr "Mostrar un enlace a Google Maps :"
|
393 |
|
394 |
-
#: ../include/functions.php:
|
395 |
#, fuzzy
|
396 |
#| msgid "Location name:"
|
397 |
msgid "Point location name"
|
398 |
msgstr "Nombre de la ubicación :"
|
399 |
|
400 |
-
#: ../include/functions.php:
|
401 |
msgid "Point address"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: ../include/functions.php:
|
405 |
msgid "None"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: ../include/functions.php:
|
409 |
#, fuzzy
|
410 |
#| msgid "Display a bubble by default:"
|
411 |
msgid "Display Featured Image by default:"
|
412 |
msgstr "Mostrar una burbuja por defecto:"
|
413 |
|
414 |
-
#: ../include/functions.php:
|
415 |
msgid ""
|
416 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
417 |
"points don't have associated an image"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: ../include/functions.php:
|
421 |
msgid "Display the get directions link:"
|
422 |
msgstr "Mostrar el enlace CÓMO LLEGAR :"
|
423 |
|
424 |
-
#: ../include/functions.php:
|
425 |
msgid "Display a link at bottom of infowindow to get directions"
|
426 |
msgstr ""
|
427 |
"Mostar un enlace al final de la ventana de información para obtener la "
|
428 |
"dirección"
|
429 |
|
430 |
-
#: ../include/functions.php:434 ../include/functions.php:442
|
431 |
-
#: ../include/functions.php:450 ../include/functions.php:458
|
432 |
#: ../include/functions.php:466 ../include/functions.php:474
|
433 |
#: ../include/functions.php:482 ../include/functions.php:490
|
434 |
-
#: ../include/functions.php:
|
|
|
|
|
435 |
#, fuzzy
|
436 |
#| msgid ""
|
437 |
#| "Multiple points in the same Post/Page are available only in the <a href="
|
@@ -446,135 +471,135 @@ msgstr ""
|
|
446 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
447 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
448 |
|
449 |
-
#: ../include/functions.php:
|
450 |
msgid "Display a link to Google Maps:"
|
451 |
msgstr "Mostrar un enlace a Google Maps :"
|
452 |
|
453 |
-
#: ../include/functions.php:
|
454 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
455 |
msgstr ""
|
456 |
"Mostar un enlace al final de la ventana de información para mostrar en "
|
457 |
"Google Maps"
|
458 |
|
459 |
-
#: ../include/functions.php:
|
460 |
msgid "Display a link to street view:"
|
461 |
msgstr "Mostrar un enlace a la vista de la calle:"
|
462 |
|
463 |
-
#: ../include/functions.php:
|
464 |
msgid ""
|
465 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
466 |
msgstr ""
|
467 |
"Mostar un enlace al final de la ventana de información para cargar en el "
|
468 |
"Street View"
|
469 |
|
470 |
-
#: ../include/functions.php:
|
471 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
472 |
msgstr ""
|
473 |
"Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
|
474 |
|
475 |
-
#: ../include/functions.php:
|
476 |
msgid "Displays the number of points in the cluster"
|
477 |
-
msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster
|
478 |
|
479 |
-
#: ../include/functions.php:
|
480 |
msgid "Display the user's location:"
|
481 |
msgstr "Muestra la ubicación del usuario :"
|
482 |
|
483 |
-
#: ../include/functions.php:
|
484 |
msgid "Display an icon with the user's location on map"
|
485 |
msgstr "Muestra un icono con la ubicación del usuario"
|
486 |
|
487 |
-
#: ../include/functions.php:
|
488 |
#, fuzzy
|
489 |
#| msgid "Display the user's location:"
|
490 |
msgid "Refresh the user's location every:"
|
491 |
msgstr "Muestra la ubicación del usuario :"
|
492 |
|
493 |
-
#: ../include/functions.php:
|
494 |
msgid "milliseconds"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: ../include/functions.php:
|
498 |
msgid "Title of user's location:"
|
499 |
msgstr "Título de la ubicación del usuario :"
|
500 |
|
501 |
-
#: ../include/functions.php:
|
502 |
msgid "Title of user's location"
|
503 |
msgstr "Título de la ubicación del usuario"
|
504 |
|
505 |
-
#: ../include/functions.php:
|
506 |
msgid "Display a search box for places:"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: ../include/functions.php:
|
510 |
msgid "Includes an input box on the map for searching places"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: ../include/functions.php:
|
514 |
msgid "Display route:"
|
515 |
msgstr "Dibujar ruta:"
|
516 |
|
517 |
-
#: ../include/functions.php:
|
518 |
msgid "Draws the route between the points in the same post"
|
519 |
msgstr "Dibujar las rutas entre los puntos en un mismo post"
|
520 |
|
521 |
-
#: ../include/functions.php:
|
522 |
msgid ""
|
523 |
"Connect the points with polylines, even if there is not a route between "
|
524 |
"points"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../include/functions.php:
|
528 |
msgid "Travel mode:"
|
529 |
msgstr "Modo de viajar :"
|
530 |
|
531 |
-
#: ../include/functions.php:
|
532 |
msgid "Include traffic layer:"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: ../include/functions.php:
|
536 |
msgid "Displays a layer over the map for traffic"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: ../include/functions.php:
|
540 |
msgid "Options"
|
541 |
msgstr "Opciones"
|
542 |
|
543 |
-
#: ../include/functions.php:
|
544 |
msgid "Display the street view control"
|
545 |
msgstr "Mostrar el control de vista de la calle"
|
546 |
|
547 |
-
#: ../include/functions.php:
|
548 |
msgid "Enable mouse wheel zoom"
|
549 |
msgstr "Habilitar ratón con rueda de zoom"
|
550 |
|
551 |
-
#: ../include/functions.php:
|
552 |
#, fuzzy
|
553 |
#| msgid "Enable zoom/pan controls"
|
554 |
msgid "Enable zoom controls"
|
555 |
msgstr "Activar controles de zoom / pan"
|
556 |
|
557 |
-
#: ../include/functions.php:
|
558 |
#, fuzzy
|
559 |
#| msgid "Enable zoom/pan controls"
|
560 |
msgid "Enable fullscreen control"
|
561 |
msgstr "Activar controles de zoom / pan"
|
562 |
|
563 |
-
#: ../include/functions.php:
|
564 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
565 |
msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
|
566 |
|
567 |
-
#: ../include/functions.php:
|
568 |
#, fuzzy
|
569 |
#| msgid "Enter the number of posts to display on the map"
|
570 |
msgid "Enter the number of posts to display on the post/page map"
|
571 |
msgstr "Entre el número de posts a visualizar en el mapa"
|
572 |
|
573 |
-
#: ../include/functions.php:
|
574 |
msgid "Allow stylize the maps:"
|
575 |
msgstr "Permitir estilizar los mapas :"
|
576 |
|
577 |
-
#: ../include/functions.php:
|
578 |
msgid ""
|
579 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
580 |
"structure with the map's styles"
|
@@ -582,27 +607,27 @@ msgstr ""
|
|
582 |
"Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
|
583 |
"crear una estructura JSON con estilos del mapa"
|
584 |
|
585 |
-
#: ../include/functions.php:
|
586 |
msgid "Display the map's legend:"
|
587 |
msgstr "Mostrar la leyenda del mapa:"
|
588 |
|
589 |
-
#: ../include/functions.php:
|
590 |
msgid "Select the taxonomy to display on legend:"
|
591 |
msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
|
592 |
|
593 |
-
#: ../include/functions.php:
|
594 |
msgid "Select a taxonomy"
|
595 |
msgstr "Seleccionar una taxonomía"
|
596 |
|
597 |
-
#: ../include/functions.php:
|
598 |
msgid "Enter a title for legend:"
|
599 |
msgstr "Introduzca un título para la leyenda :"
|
600 |
|
601 |
-
#: ../include/functions.php:
|
602 |
msgid "Enter a classname to be applied to the legend:"
|
603 |
msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
|
604 |
|
605 |
-
#: ../include/functions.php:
|
606 |
msgid ""
|
607 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
608 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
@@ -612,11 +637,11 @@ msgstr ""
|
|
612 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
613 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
614 |
|
615 |
-
#: ../include/functions.php:
|
616 |
msgid "To insert a map in the post follow the steps below"
|
617 |
msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
|
618 |
|
619 |
-
#: ../include/functions.php:
|
620 |
msgid ""
|
621 |
"Enter the point's information (the latitude and longitude are required, but "
|
622 |
"are obtained pressing the \"verify\" button after type the address"
|
@@ -625,7 +650,7 @@ msgstr ""
|
|
625 |
"son obtenidos pulsando el botón \"Verificar\", después de escribir la "
|
626 |
"dirección)"
|
627 |
|
628 |
-
#: ../include/functions.php:
|
629 |
msgid ""
|
630 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
631 |
"\" button"
|
@@ -633,7 +658,7 @@ msgstr ""
|
|
633 |
"Inserte el shortcode en el contenido del post, presionando el botón "
|
634 |
"\"inserte la etiqueta del mapa\""
|
635 |
|
636 |
-
#: ../include/functions.php:
|
637 |
#, fuzzy
|
638 |
#| msgid ""
|
639 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
@@ -646,18 +671,18 @@ msgstr ""
|
|
646 |
"Si desea especificar una confguración para este mapa en particular, marque "
|
647 |
"la opción \"Usar ajustes particulares para este mapa\""
|
648 |
|
649 |
-
#: ../include/functions.php:
|
650 |
msgid ""
|
651 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
652 |
msgstr ""
|
653 |
"No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
|
654 |
"del mapa"
|
655 |
|
656 |
-
#: ../include/functions.php:
|
657 |
msgid "Map points"
|
658 |
msgstr "Puntos de Ruta"
|
659 |
|
660 |
-
#: ../include/functions.php:
|
661 |
msgid ""
|
662 |
"Multiple points in the same Post/Page are available only in the <a href="
|
663 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -665,43 +690,43 @@ msgid ""
|
|
665 |
msgstr ""
|
666 |
"Para obtener más información, visite la página del plugin <a href=\"http://"
|
667 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
668 |
-
"\"_blank\"> CodePeople Post Ubicación </a
|
669 |
|
670 |
-
#: ../include/functions.php:
|
671 |
msgid "Map point description"
|
672 |
msgstr "Mapa Descripción del punto"
|
673 |
|
674 |
-
#: ../include/functions.php:
|
675 |
msgid "Location name:"
|
676 |
msgstr "Nombre de la ubicación :"
|
677 |
|
678 |
-
#: ../include/functions.php:
|
679 |
msgid "Location description:"
|
680 |
msgstr "Descripción de la ubicación :"
|
681 |
|
682 |
-
#: ../include/functions.php:
|
683 |
#, fuzzy
|
684 |
#| msgid "Select an images to attach to the point: "
|
685 |
msgid "Select an image to attach to the point: "
|
686 |
msgstr "Seleccionar una imágenes para adjuntar al punto:"
|
687 |
|
688 |
-
#: ../include/functions.php:
|
689 |
msgid "Address:"
|
690 |
msgstr "Dirección:"
|
691 |
|
692 |
-
#: ../include/functions.php:
|
693 |
msgid "Latitude:"
|
694 |
msgstr "Latitud:"
|
695 |
|
696 |
-
#: ../include/functions.php:
|
697 |
msgid "Longitude:"
|
698 |
msgstr "Longitud :"
|
699 |
|
700 |
-
#: ../include/functions.php:
|
701 |
msgid "Verify"
|
702 |
msgstr "Verificar"
|
703 |
|
704 |
-
#: ../include/functions.php:
|
705 |
msgid ""
|
706 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
707 |
"point address."
|
@@ -709,12 +734,12 @@ msgstr ""
|
|
709 |
"Verificar esta latitud y longitud usando geocodificación . Esto podría "
|
710 |
"sobrescribir la dirección del punto ."
|
711 |
|
712 |
-
#: ../include/functions.php:
|
713 |
msgid "Required: Press the button \"verify\" after complete the address."
|
714 |
msgstr ""
|
715 |
"Deseados: pulse el botón \" verifique \"después de completar la dirección."
|
716 |
|
717 |
-
#: ../include/functions.php:
|
718 |
msgid ""
|
719 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
720 |
"strong> button and save the post/page modifications."
|
@@ -723,19 +748,19 @@ msgstr ""
|
|
723 |
"insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
|
724 |
"post / página."
|
725 |
|
726 |
-
#: ../include/functions.php:
|
727 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
728 |
msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
|
729 |
|
730 |
-
#: ../include/functions.php:
|
731 |
msgid "If you want to display the map in page / post:"
|
732 |
msgstr "Si usted quiere mostrar el mapa en la página / post:"
|
733 |
|
734 |
-
#: ../include/functions.php:
|
735 |
msgid "Insert the map tag"
|
736 |
msgstr "Inserte la etiqueta del mapa"
|
737 |
|
738 |
-
#: ../include/functions.php:
|
739 |
msgid ""
|
740 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
741 |
"zoom and the other maps attributes:</p>\n"
|
@@ -755,23 +780,23 @@ msgid ""
|
|
755 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: ../include/functions.php:
|
759 |
msgid "[ + less information]"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: ../include/functions.php:
|
763 |
msgid "To display the points that belong to any category"
|
764 |
msgstr "Mostrar los puntos que pertenecen a una categoría"
|
765 |
|
766 |
-
#: ../include/functions.php:
|
767 |
msgid "All points on website"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: ../include/functions.php:
|
771 |
msgid "Settings Updated"
|
772 |
msgstr "Configuración de Actualización"
|
773 |
|
774 |
-
#: ../include/functions.php:
|
775 |
msgid ""
|
776 |
"Generate points dynamically from geolocation information included on images, "
|
777 |
"when images are uploaded to WordPress:"
|
@@ -779,7 +804,7 @@ msgstr ""
|
|
779 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
780 |
"incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
|
781 |
|
782 |
-
#: ../include/functions.php:
|
783 |
msgid ""
|
784 |
"The geolocation information is added to the images from your mobiles or "
|
785 |
"cameras, if they have associated GPS devices"
|
@@ -787,11 +812,11 @@ msgstr ""
|
|
787 |
"La información de geolocalización se añade a las imágenes desde sus "
|
788 |
"teléfonos móviles o cámaras, si han asociado dispositivos GPS"
|
789 |
|
790 |
-
#: ../include/functions.php:
|
791 |
msgid "Process All Previous Images"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../include/functions.php:
|
795 |
msgid ""
|
796 |
"Process all images in the library, and generates new points in the parents "
|
797 |
"pages, with the geocode information in the images metadata. A post/page is "
|
@@ -799,24 +824,24 @@ msgid ""
|
|
799 |
"post/page."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../include/functions.php:
|
803 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
804 |
msgstr ""
|
805 |
|
806 |
-
#: ../include/functions.php:
|
807 |
-
#: ../include/functions.php:
|
808 |
-
#: ../include/functions.php:
|
809 |
msgid "Click Here"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../include/functions.php:
|
813 |
msgid ""
|
814 |
"Generate points dynamically from geolocation information included on posts:"
|
815 |
msgstr ""
|
816 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
817 |
"incluida en los mensajes :"
|
818 |
|
819 |
-
#: ../include/functions.php:
|
820 |
msgid ""
|
821 |
"The geolocation information is added to the post from WordPress app in your "
|
822 |
"mobile"
|
@@ -824,78 +849,78 @@ msgstr ""
|
|
824 |
"La información de geolocalización se añade al post de WordPress aplicación "
|
825 |
"en tu móvil"
|
826 |
|
827 |
-
#: ../include/functions.php:
|
828 |
msgid "Use points information in search results:"
|
829 |
msgstr "Utilizar la información puntos en los resultados de búsqueda :"
|
830 |
|
831 |
-
#: ../include/functions.php:
|
832 |
msgid ""
|
833 |
"The search in the maps data is available only in commercial version of "
|
834 |
"plugin."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../include/functions.php:
|
838 |
msgid "Highlight post when mouse move over related point on map:"
|
839 |
msgstr ""
|
840 |
"Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
|
841 |
|
842 |
-
#: ../include/functions.php:
|
843 |
msgid "The post highlight is available only in commercial version of plugin."
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: ../include/functions.php:
|
847 |
msgid "Highlight class:"
|
848 |
msgstr "Clase Highlight :"
|
849 |
|
850 |
-
#: ../include/functions.php:
|
851 |
msgid "The highlight class is available only in commercial version of plugin."
|
852 |
msgstr ""
|
853 |
|
854 |
-
#: ../include/functions.php:
|
855 |
msgid "Allow to associate a map to the post types:"
|
856 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
857 |
|
858 |
-
#: ../include/functions.php:
|
859 |
msgid "Posts and Pages are selected by default"
|
860 |
msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
|
861 |
|
862 |
-
#: ../include/functions.php:
|
863 |
msgid ""
|
864 |
"Associate the maps to custom post types is available only in commercial "
|
865 |
"version of plugin."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../include/functions.php:
|
869 |
msgid "Draws Routes"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../include/functions.php:
|
873 |
#, fuzzy
|
874 |
#| msgid "Allow to associate a map to the post types:"
|
875 |
msgid "Associate maps to custom post types"
|
876 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
877 |
|
878 |
-
#: ../include/functions.php:
|
879 |
msgid "Display a map for each post in pages with multiple posts"
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: ../include/functions.php:
|
883 |
msgid "Troubleshoot Section"
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: ../include/functions.php:
|
887 |
msgid "Load required resources (javascript files) in footer"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: ../include/functions.php:
|
891 |
msgid "Update Settings"
|
892 |
msgstr "Configuración de la actualización"
|
893 |
|
894 |
-
#: ../include/functions.php:
|
895 |
msgid "Help"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../include/functions.php:
|
899 |
msgid "Request custom changes"
|
900 |
msgstr "Solicitar cambios de encargo"
|
901 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
+
"POT-Creation-Date: 2020-03-02 13:51+0100\n"
|
5 |
+
"PO-Revision-Date: 2020-03-02 13:52+0100\n"
|
6 |
+
"Last-Translator: CodePeople\n"
|
7 |
"Language-Team: CodePeople\n"
|
8 |
"Language: es\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.3\n"
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
+
#: ../codepeople-post-map.php:57
|
19 |
msgid "Associate an address to the post for Google Maps association"
|
20 |
msgstr "Asociar una dirección al puesto de asociación Google Maps"
|
21 |
|
235 |
msgid "CHINESE (TRADITIONAL)"
|
236 |
msgstr "Chino (tradicional )"
|
237 |
|
238 |
+
#: ../include/functions.php:279
|
239 |
msgid "Select the marker by clicking on the images"
|
240 |
msgstr "Seleccione el marcador haciendo clic en las imágenes"
|
241 |
|
242 |
+
#: ../include/functions.php:290
|
243 |
msgid "Powered by"
|
244 |
msgstr "Impulsado por"
|
245 |
|
246 |
+
#: ../include/functions.php:311
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuración del Mapa"
|
249 |
|
250 |
+
#: ../include/functions.php:313 ../include/functions.php:652
|
251 |
msgid ""
|
252 |
"For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
|
253 |
"com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
|
254 |
msgstr ""
|
255 |
"Para cualquier problema con el mapa, vaya a nuestro <a href=\"http://"
|
256 |
"wordpress.dwbooster.com/contact - us\" contacto target=\"_blank\"> página </"
|
257 |
+
"a> y nos deja un mensaje."
|
258 |
|
259 |
+
#: ../include/functions.php:314
|
260 |
+
#, fuzzy
|
261 |
+
#| msgid ""
|
262 |
+
#| "If you want test the premium version of CP Google Maps go to the "
|
263 |
+
#| "following links:<br/> <a href=\"http://demos.net-factor.com/cp-google-"
|
264 |
+
#| "maps/wp-login.php\" target=\"_blank\">Administration area: Click to "
|
265 |
+
#| "access the administration area demo</a><br/> <a href=\"http://demos.net-"
|
266 |
+
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
+
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
"If you want test the premium version of CP Google Maps go to the following "
|
270 |
+
"links:<br/> <a href=\"https://demos.dwbooster.com/cp-google-maps/wp-login.php"
|
271 |
"\" target=\"_blank\">Administration area: Click to access the administration "
|
272 |
+
"area demo</a><br/> <a href=\"https://demos.dwbooster.com/cp-google-maps/\" "
|
273 |
"target=\"_blank\">Public page: Click to access the CP Google Maps</a>"
|
274 |
msgstr ""
|
275 |
"Si quieres probar la versión premium de CP Google Maps Ir a los siguientes "
|
277 |
"login.php\">Área de administración</a><br /><a href=\"http://demos.net-"
|
278 |
"factor.com/cp-google-maps/\">Página pública</a>"
|
279 |
|
280 |
+
#: ../include/functions.php:322
|
281 |
msgid "I have an API key:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../include/functions.php:324
|
285 |
+
msgid "Enter your API Key"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: ../include/functions.php:327
|
289 |
msgid "Please, visit the following link to get the API Key for your website:"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../include/functions.php:331
|
293 |
+
msgid "With the Google project, activate at least the following APIs"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: ../include/functions.php:334
|
297 |
+
msgid ""
|
298 |
+
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: ../include/functions.php:335
|
302 |
+
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: ../include/functions.php:344
|
306 |
msgid "Use particular settings for this map:"
|
307 |
msgstr "Usar ajustes particulares para este mapa :"
|
308 |
|
309 |
+
#: ../include/functions.php:353
|
310 |
msgid "Map zoom:"
|
311 |
msgstr "Zoom :"
|
312 |
|
313 |
+
#: ../include/functions.php:359
|
314 |
msgid "Dynamic zoom:"
|
315 |
msgstr "Zoom dinámico:"
|
316 |
|
317 |
+
#: ../include/functions.php:361
|
318 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
319 |
msgstr ""
|
320 |
"Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
|
321 |
"el mapa"
|
322 |
|
323 |
+
#: ../include/functions.php:365
|
324 |
msgid "Map width:"
|
325 |
msgstr "Ancho del mapa:"
|
326 |
|
327 |
+
#: ../include/functions.php:377
|
328 |
msgid "Map height:"
|
329 |
msgstr "Altura del mapa :"
|
330 |
|
331 |
+
#: ../include/functions.php:383
|
332 |
msgid "Map margin:"
|
333 |
msgstr "Margen del mapa :"
|
334 |
|
335 |
+
#: ../include/functions.php:389
|
336 |
msgid "Map align:"
|
337 |
msgstr "Alinear el mapa:"
|
338 |
|
339 |
+
#: ../include/functions.php:392
|
340 |
msgid "left"
|
341 |
msgstr "izquierda"
|
342 |
|
343 |
+
#: ../include/functions.php:393
|
344 |
msgid "center"
|
345 |
msgstr "centro"
|
346 |
|
347 |
+
#: ../include/functions.php:394
|
348 |
msgid "right"
|
349 |
msgstr "derecho"
|
350 |
|
351 |
+
#: ../include/functions.php:399
|
352 |
msgid "Map type:"
|
353 |
msgstr "Tipo de mapa :"
|
354 |
|
355 |
+
#: ../include/functions.php:402
|
356 |
msgid "ROADMAP - Displays a normal street map"
|
357 |
msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
|
358 |
|
359 |
+
#: ../include/functions.php:403
|
360 |
msgid "SATELLITE - Displays satellite images"
|
361 |
msgstr "SATÉLITE - muestra imágenes de satélite"
|
362 |
|
363 |
+
#: ../include/functions.php:404
|
364 |
msgid ""
|
365 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
366 |
msgstr ""
|
367 |
"TERRENO - Muestra los mapas con las características físicas, tales como el "
|
368 |
"terreno y la vegetación"
|
369 |
|
370 |
+
#: ../include/functions.php:405
|
371 |
msgid ""
|
372 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
373 |
msgstr ""
|
374 |
"HYBRID - Muestra una capa transparente de las principales calles en imágenes "
|
375 |
"de satélite"
|
376 |
|
377 |
+
#: ../include/functions.php:410
|
378 |
msgid "Map language:"
|
379 |
msgstr "Idioma del mapa:"
|
380 |
|
381 |
+
#: ../include/functions.php:414
|
382 |
msgid "Allow drag the map:"
|
383 |
msgstr "Permitir desplazar los mapas :"
|
384 |
|
385 |
+
#: ../include/functions.php:420
|
386 |
msgid "Display map in post/page:"
|
387 |
msgstr "Visualizar mapa en post / página:"
|
388 |
|
389 |
+
#: ../include/functions.php:423
|
390 |
msgid "as icon"
|
391 |
msgstr "como icono"
|
392 |
|
393 |
+
#: ../include/functions.php:424
|
394 |
msgid "as full map"
|
395 |
msgstr "mapa como completo"
|
396 |
|
397 |
+
#: ../include/functions.php:430
|
398 |
msgid "Show info bubbles:"
|
399 |
msgstr "Mostrar información de burbujas :"
|
400 |
|
401 |
+
#: ../include/functions.php:432
|
402 |
msgid "Display the bubbles associated to the points"
|
403 |
msgstr "Mostrar las burbujas asociadas a los puntos"
|
404 |
|
405 |
+
#: ../include/functions.php:437
|
406 |
msgid "Display a bubble by default:"
|
407 |
msgstr "Mostrar una burbuja por defecto:"
|
408 |
|
409 |
+
#: ../include/functions.php:439
|
410 |
msgid "Display a bubble opened by default"
|
411 |
msgstr "Mostrar una burbuja abierta por defecto"
|
412 |
|
413 |
+
#: ../include/functions.php:447
|
414 |
#, fuzzy
|
415 |
#| msgid "Display a link to Google Maps:"
|
416 |
msgid "Display as marker tooltip:"
|
417 |
msgstr "Mostrar un enlace a Google Maps :"
|
418 |
|
419 |
+
#: ../include/functions.php:449
|
420 |
#, fuzzy
|
421 |
#| msgid "Location name:"
|
422 |
msgid "Point location name"
|
423 |
msgstr "Nombre de la ubicación :"
|
424 |
|
425 |
+
#: ../include/functions.php:450
|
426 |
msgid "Point address"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: ../include/functions.php:451
|
430 |
msgid "None"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../include/functions.php:456
|
434 |
#, fuzzy
|
435 |
#| msgid "Display a bubble by default:"
|
436 |
msgid "Display Featured Image by default:"
|
437 |
msgstr "Mostrar una burbuja por defecto:"
|
438 |
|
439 |
+
#: ../include/functions.php:458
|
440 |
msgid ""
|
441 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
442 |
"points don't have associated an image"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: ../include/functions.php:463
|
446 |
msgid "Display the get directions link:"
|
447 |
msgstr "Mostrar el enlace CÓMO LLEGAR :"
|
448 |
|
449 |
+
#: ../include/functions.php:465
|
450 |
msgid "Display a link at bottom of infowindow to get directions"
|
451 |
msgstr ""
|
452 |
"Mostar un enlace al final de la ventana de información para obtener la "
|
453 |
"dirección"
|
454 |
|
|
|
|
|
455 |
#: ../include/functions.php:466 ../include/functions.php:474
|
456 |
#: ../include/functions.php:482 ../include/functions.php:490
|
457 |
+
#: ../include/functions.php:498 ../include/functions.php:506
|
458 |
+
#: ../include/functions.php:514 ../include/functions.php:524
|
459 |
+
#: ../include/functions.php:755 ../include/functions.php:790
|
460 |
#, fuzzy
|
461 |
#| msgid ""
|
462 |
#| "Multiple points in the same Post/Page are available only in the <a href="
|
471 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
472 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
473 |
|
474 |
+
#: ../include/functions.php:471
|
475 |
msgid "Display a link to Google Maps:"
|
476 |
msgstr "Mostrar un enlace a Google Maps :"
|
477 |
|
478 |
+
#: ../include/functions.php:473
|
479 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
480 |
msgstr ""
|
481 |
"Mostar un enlace al final de la ventana de información para mostrar en "
|
482 |
"Google Maps"
|
483 |
|
484 |
+
#: ../include/functions.php:479
|
485 |
msgid "Display a link to street view:"
|
486 |
msgstr "Mostrar un enlace a la vista de la calle:"
|
487 |
|
488 |
+
#: ../include/functions.php:481
|
489 |
msgid ""
|
490 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
491 |
msgstr ""
|
492 |
"Mostar un enlace al final de la ventana de información para cargar en el "
|
493 |
"Street View"
|
494 |
|
495 |
+
#: ../include/functions.php:487
|
496 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
497 |
msgstr ""
|
498 |
"Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
|
499 |
|
500 |
+
#: ../include/functions.php:489
|
501 |
msgid "Displays the number of points in the cluster"
|
502 |
+
msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster"
|
503 |
|
504 |
+
#: ../include/functions.php:495
|
505 |
msgid "Display the user's location:"
|
506 |
msgstr "Muestra la ubicación del usuario :"
|
507 |
|
508 |
+
#: ../include/functions.php:497
|
509 |
msgid "Display an icon with the user's location on map"
|
510 |
msgstr "Muestra un icono con la ubicación del usuario"
|
511 |
|
512 |
+
#: ../include/functions.php:503
|
513 |
#, fuzzy
|
514 |
#| msgid "Display the user's location:"
|
515 |
msgid "Refresh the user's location every:"
|
516 |
msgstr "Muestra la ubicación del usuario :"
|
517 |
|
518 |
+
#: ../include/functions.php:505
|
519 |
msgid "milliseconds"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ../include/functions.php:511
|
523 |
msgid "Title of user's location:"
|
524 |
msgstr "Título de la ubicación del usuario :"
|
525 |
|
526 |
+
#: ../include/functions.php:513
|
527 |
msgid "Title of user's location"
|
528 |
msgstr "Título de la ubicación del usuario"
|
529 |
|
530 |
+
#: ../include/functions.php:521
|
531 |
msgid "Display a search box for places:"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: ../include/functions.php:523
|
535 |
msgid "Includes an input box on the map for searching places"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../include/functions.php:529
|
539 |
msgid "Display route:"
|
540 |
msgstr "Dibujar ruta:"
|
541 |
|
542 |
+
#: ../include/functions.php:531
|
543 |
msgid "Draws the route between the points in the same post"
|
544 |
msgstr "Dibujar las rutas entre los puntos en un mismo post"
|
545 |
|
546 |
+
#: ../include/functions.php:532
|
547 |
msgid ""
|
548 |
"Connect the points with polylines, even if there is not a route between "
|
549 |
"points"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../include/functions.php:538
|
553 |
msgid "Travel mode:"
|
554 |
msgstr "Modo de viajar :"
|
555 |
|
556 |
+
#: ../include/functions.php:547
|
557 |
msgid "Include traffic layer:"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../include/functions.php:549
|
561 |
msgid "Displays a layer over the map for traffic"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../include/functions.php:554
|
565 |
msgid "Options"
|
566 |
msgstr "Opciones"
|
567 |
|
568 |
+
#: ../include/functions.php:557
|
569 |
msgid "Display the street view control"
|
570 |
msgstr "Mostrar el control de vista de la calle"
|
571 |
|
572 |
+
#: ../include/functions.php:559
|
573 |
msgid "Enable mouse wheel zoom"
|
574 |
msgstr "Habilitar ratón con rueda de zoom"
|
575 |
|
576 |
+
#: ../include/functions.php:561
|
577 |
#, fuzzy
|
578 |
#| msgid "Enable zoom/pan controls"
|
579 |
msgid "Enable zoom controls"
|
580 |
msgstr "Activar controles de zoom / pan"
|
581 |
|
582 |
+
#: ../include/functions.php:563
|
583 |
#, fuzzy
|
584 |
#| msgid "Enable zoom/pan controls"
|
585 |
msgid "Enable fullscreen control"
|
586 |
msgstr "Activar controles de zoom / pan"
|
587 |
|
588 |
+
#: ../include/functions.php:565
|
589 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
590 |
msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
|
591 |
|
592 |
+
#: ../include/functions.php:569
|
593 |
#, fuzzy
|
594 |
#| msgid "Enter the number of posts to display on the map"
|
595 |
msgid "Enter the number of posts to display on the post/page map"
|
596 |
msgstr "Entre el número de posts a visualizar en el mapa"
|
597 |
|
598 |
+
#: ../include/functions.php:573
|
599 |
msgid "Allow stylize the maps:"
|
600 |
msgstr "Permitir estilizar los mapas :"
|
601 |
|
602 |
+
#: ../include/functions.php:583
|
603 |
msgid ""
|
604 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
605 |
"structure with the map's styles"
|
607 |
"Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
|
608 |
"crear una estructura JSON con estilos del mapa"
|
609 |
|
610 |
+
#: ../include/functions.php:591
|
611 |
msgid "Display the map's legend:"
|
612 |
msgstr "Mostrar la leyenda del mapa:"
|
613 |
|
614 |
+
#: ../include/functions.php:597
|
615 |
msgid "Select the taxonomy to display on legend:"
|
616 |
msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
|
617 |
|
618 |
+
#: ../include/functions.php:600
|
619 |
msgid "Select a taxonomy"
|
620 |
msgstr "Seleccionar una taxonomía"
|
621 |
|
622 |
+
#: ../include/functions.php:605
|
623 |
msgid "Enter a title for legend:"
|
624 |
msgstr "Introduzca un título para la leyenda :"
|
625 |
|
626 |
+
#: ../include/functions.php:611
|
627 |
msgid "Enter a classname to be applied to the legend:"
|
628 |
msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
|
629 |
|
630 |
+
#: ../include/functions.php:651 ../include/functions.php:1039
|
631 |
msgid ""
|
632 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
633 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
637 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
638 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
639 |
|
640 |
+
#: ../include/functions.php:654
|
641 |
msgid "To insert a map in the post follow the steps below"
|
642 |
msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
|
643 |
|
644 |
+
#: ../include/functions.php:657
|
645 |
msgid ""
|
646 |
"Enter the point's information (the latitude and longitude are required, but "
|
647 |
"are obtained pressing the \"verify\" button after type the address"
|
650 |
"son obtenidos pulsando el botón \"Verificar\", después de escribir la "
|
651 |
"dirección)"
|
652 |
|
653 |
+
#: ../include/functions.php:658
|
654 |
msgid ""
|
655 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
656 |
"\" button"
|
658 |
"Inserte el shortcode en el contenido del post, presionando el botón "
|
659 |
"\"inserte la etiqueta del mapa\""
|
660 |
|
661 |
+
#: ../include/functions.php:659
|
662 |
#, fuzzy
|
663 |
#| msgid ""
|
664 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
671 |
"Si desea especificar una confguración para este mapa en particular, marque "
|
672 |
"la opción \"Usar ajustes particulares para este mapa\""
|
673 |
|
674 |
+
#: ../include/functions.php:660
|
675 |
msgid ""
|
676 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
677 |
msgstr ""
|
678 |
"No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
|
679 |
"del mapa"
|
680 |
|
681 |
+
#: ../include/functions.php:664
|
682 |
msgid "Map points"
|
683 |
msgstr "Puntos de Ruta"
|
684 |
|
685 |
+
#: ../include/functions.php:666
|
686 |
msgid ""
|
687 |
"Multiple points in the same Post/Page are available only in the <a href="
|
688 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
690 |
msgstr ""
|
691 |
"Para obtener más información, visite la página del plugin <a href=\"http://"
|
692 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
693 |
+
"\"_blank\"> CodePeople Post Ubicación </a>."
|
694 |
|
695 |
+
#: ../include/functions.php:670
|
696 |
msgid "Map point description"
|
697 |
msgstr "Mapa Descripción del punto"
|
698 |
|
699 |
+
#: ../include/functions.php:673
|
700 |
msgid "Location name:"
|
701 |
msgstr "Nombre de la ubicación :"
|
702 |
|
703 |
+
#: ../include/functions.php:679
|
704 |
msgid "Location description:"
|
705 |
msgstr "Descripción de la ubicación :"
|
706 |
|
707 |
+
#: ../include/functions.php:688
|
708 |
#, fuzzy
|
709 |
#| msgid "Select an images to attach to the point: "
|
710 |
msgid "Select an image to attach to the point: "
|
711 |
msgstr "Seleccionar una imágenes para adjuntar al punto:"
|
712 |
|
713 |
+
#: ../include/functions.php:703
|
714 |
msgid "Address:"
|
715 |
msgstr "Dirección:"
|
716 |
|
717 |
+
#: ../include/functions.php:709
|
718 |
msgid "Latitude:"
|
719 |
msgstr "Latitud:"
|
720 |
|
721 |
+
#: ../include/functions.php:715
|
722 |
msgid "Longitude:"
|
723 |
msgstr "Longitud :"
|
724 |
|
725 |
+
#: ../include/functions.php:721
|
726 |
msgid "Verify"
|
727 |
msgstr "Verificar"
|
728 |
|
729 |
+
#: ../include/functions.php:723
|
730 |
msgid ""
|
731 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
732 |
"point address."
|
734 |
"Verificar esta latitud y longitud usando geocodificación . Esto podría "
|
735 |
"sobrescribir la dirección del punto ."
|
736 |
|
737 |
+
#: ../include/functions.php:723
|
738 |
msgid "Required: Press the button \"verify\" after complete the address."
|
739 |
msgstr ""
|
740 |
"Deseados: pulse el botón \" verifique \"después de completar la dirección."
|
741 |
|
742 |
+
#: ../include/functions.php:746
|
743 |
msgid ""
|
744 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
745 |
"strong> button and save the post/page modifications."
|
748 |
"insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
|
749 |
"post / página."
|
750 |
|
751 |
+
#: ../include/functions.php:753
|
752 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
753 |
msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
|
754 |
|
755 |
+
#: ../include/functions.php:761
|
756 |
msgid "If you want to display the map in page / post:"
|
757 |
msgstr "Si usted quiere mostrar el mapa en la página / post:"
|
758 |
|
759 |
+
#: ../include/functions.php:762
|
760 |
msgid "Insert the map tag"
|
761 |
msgstr "Inserte la etiqueta del mapa"
|
762 |
|
763 |
+
#: ../include/functions.php:765
|
764 |
msgid ""
|
765 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
766 |
"zoom and the other maps attributes:</p>\n"
|
780 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: ../include/functions.php:774
|
784 |
msgid "[ + less information]"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../include/functions.php:778
|
788 |
msgid "To display the points that belong to any category"
|
789 |
msgstr "Mostrar los puntos que pertenecen a una categoría"
|
790 |
|
791 |
+
#: ../include/functions.php:780
|
792 |
msgid "All points on website"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: ../include/functions.php:927
|
796 |
msgid "Settings Updated"
|
797 |
msgstr "Configuración de Actualización"
|
798 |
|
799 |
+
#: ../include/functions.php:940
|
800 |
msgid ""
|
801 |
"Generate points dynamically from geolocation information included on images, "
|
802 |
"when images are uploaded to WordPress:"
|
804 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
805 |
"incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
|
806 |
|
807 |
+
#: ../include/functions.php:943
|
808 |
msgid ""
|
809 |
"The geolocation information is added to the images from your mobiles or "
|
810 |
"cameras, if they have associated GPS devices"
|
812 |
"La información de geolocalización se añade a las imágenes desde sus "
|
813 |
"teléfonos móviles o cámaras, si han asociado dispositivos GPS"
|
814 |
|
815 |
+
#: ../include/functions.php:945
|
816 |
msgid "Process All Previous Images"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../include/functions.php:946
|
820 |
msgid ""
|
821 |
"Process all images in the library, and generates new points in the parents "
|
822 |
"pages, with the geocode information in the images metadata. A post/page is "
|
824 |
"post/page."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../include/functions.php:947 ../include/functions.php:957
|
828 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../include/functions.php:947 ../include/functions.php:957
|
832 |
+
#: ../include/functions.php:964 ../include/functions.php:970
|
833 |
+
#: ../include/functions.php:976 ../include/functions.php:996
|
834 |
msgid "Click Here"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../include/functions.php:952
|
838 |
msgid ""
|
839 |
"Generate points dynamically from geolocation information included on posts:"
|
840 |
msgstr ""
|
841 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
842 |
"incluida en los mensajes :"
|
843 |
|
844 |
+
#: ../include/functions.php:955
|
845 |
msgid ""
|
846 |
"The geolocation information is added to the post from WordPress app in your "
|
847 |
"mobile"
|
849 |
"La información de geolocalización se añade al post de WordPress aplicación "
|
850 |
"en tu móvil"
|
851 |
|
852 |
+
#: ../include/functions.php:962
|
853 |
msgid "Use points information in search results:"
|
854 |
msgstr "Utilizar la información puntos en los resultados de búsqueda :"
|
855 |
|
856 |
+
#: ../include/functions.php:964
|
857 |
msgid ""
|
858 |
"The search in the maps data is available only in commercial version of "
|
859 |
"plugin."
|
860 |
msgstr ""
|
861 |
|
862 |
+
#: ../include/functions.php:968
|
863 |
msgid "Highlight post when mouse move over related point on map:"
|
864 |
msgstr ""
|
865 |
"Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
|
866 |
|
867 |
+
#: ../include/functions.php:970
|
868 |
msgid "The post highlight is available only in commercial version of plugin."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: ../include/functions.php:974
|
872 |
msgid "Highlight class:"
|
873 |
msgstr "Clase Highlight :"
|
874 |
|
875 |
+
#: ../include/functions.php:976
|
876 |
msgid "The highlight class is available only in commercial version of plugin."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: ../include/functions.php:980
|
880 |
msgid "Allow to associate a map to the post types:"
|
881 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
882 |
|
883 |
+
#: ../include/functions.php:993
|
884 |
msgid "Posts and Pages are selected by default"
|
885 |
msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
|
886 |
|
887 |
+
#: ../include/functions.php:996
|
888 |
msgid ""
|
889 |
"Associate the maps to custom post types is available only in commercial "
|
890 |
"version of plugin."
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: ../include/functions.php:1006
|
894 |
msgid "Draws Routes"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../include/functions.php:1012
|
898 |
#, fuzzy
|
899 |
#| msgid "Allow to associate a map to the post types:"
|
900 |
msgid "Associate maps to custom post types"
|
901 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
902 |
|
903 |
+
#: ../include/functions.php:1018
|
904 |
msgid "Display a map for each post in pages with multiple posts"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../include/functions.php:1023
|
908 |
msgid "Troubleshoot Section"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../include/functions.php:1028
|
912 |
msgid "Load required resources (javascript files) in footer"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../include/functions.php:1040
|
916 |
msgid "Update Settings"
|
917 |
msgstr "Configuración de la actualización"
|
918 |
|
919 |
+
#: ../include/functions.php:1504
|
920 |
msgid "Help"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: ../include/functions.php:1506
|
924 |
msgid "Request custom changes"
|
925 |
msgstr "Solicitar cambios de encargo"
|
926 |
|
languages/codepeople-post-map-fr_FR.mo
CHANGED
Binary file
|
languages/codepeople-post-map-fr_FR.po
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
6 |
-
"Last-Translator: \n"
|
7 |
"Language-Team: CodePeople\n"
|
8 |
"Language: fr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit 2.
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
-
#: ../codepeople-post-map.php:
|
19 |
msgid "Associate an address to the post for Google Maps association"
|
20 |
msgstr "Associer une adresse à l'article pour l'afficher sur Google Maps"
|
21 |
|
@@ -235,19 +235,19 @@ msgstr "CHINOIS (SIMPLIFIÉ)"
|
|
235 |
msgid "CHINESE (TRADITIONAL)"
|
236 |
msgstr "CHINOIS (TRADITIONNEL)"
|
237 |
|
238 |
-
#: ../include/functions.php:
|
239 |
msgid "Select the marker by clicking on the images"
|
240 |
msgstr "Sélectionnez le marqueur en cliquant sur une image"
|
241 |
|
242 |
-
#: ../include/functions.php:
|
243 |
msgid "Powered by"
|
244 |
msgstr "Alimenté par"
|
245 |
|
246 |
-
#: ../include/functions.php:
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuration des cartes"
|
249 |
|
250 |
-
#: ../include/functions.php:
|
251 |
msgid ""
|
252 |
"For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
|
253 |
"com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
|
@@ -256,12 +256,20 @@ msgstr ""
|
|
256 |
"wordpress.dwbooster.com/contact-us\" target=\"_blank\">page-contact</a> et "
|
257 |
"laissez nous un message"
|
258 |
|
259 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
msgid ""
|
261 |
"If you want test the premium version of CP Google Maps go to the following "
|
262 |
-
"links:<br/> <a href=\"
|
263 |
"\" target=\"_blank\">Administration area: Click to access the administration "
|
264 |
-
"area demo</a><br/> <a href=\"
|
265 |
"target=\"_blank\">Public page: Click to access the CP Google Maps</a>"
|
266 |
msgstr ""
|
267 |
"Si vous voulez tester la version premium de CP Google Maps, utilisez les "
|
@@ -271,166 +279,183 @@ msgstr ""
|
|
271 |
"com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
|
272 |
"au CP Google Maps</a>"
|
273 |
|
274 |
-
#: ../include/functions.php:
|
275 |
msgid "I have an API key:"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
279 |
msgid "Please, visit the following link to get the API Key for your website:"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: ../include/functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
msgid "Use particular settings for this map:"
|
284 |
msgstr "Utiliser des paramètres particuliers pour cette carte:"
|
285 |
|
286 |
-
#: ../include/functions.php:
|
287 |
msgid "Map zoom:"
|
288 |
msgstr "Zoom"
|
289 |
|
290 |
-
#: ../include/functions.php:
|
291 |
msgid "Dynamic zoom:"
|
292 |
msgstr "Zoom dynamique:"
|
293 |
|
294 |
-
#: ../include/functions.php:
|
295 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
296 |
msgstr ""
|
297 |
"Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
|
298 |
|
299 |
-
#: ../include/functions.php:
|
300 |
msgid "Map width:"
|
301 |
msgstr "Largeur de la carte:"
|
302 |
|
303 |
-
#: ../include/functions.php:
|
304 |
msgid "Map height:"
|
305 |
msgstr "Hauteur de la carte:"
|
306 |
|
307 |
-
#: ../include/functions.php:
|
308 |
msgid "Map margin:"
|
309 |
msgstr "Marge de la carte:"
|
310 |
|
311 |
-
#: ../include/functions.php:
|
312 |
msgid "Map align:"
|
313 |
msgstr "Alignement de la Carte:"
|
314 |
|
315 |
-
#: ../include/functions.php:
|
316 |
msgid "left"
|
317 |
msgstr "gauche"
|
318 |
|
319 |
-
#: ../include/functions.php:
|
320 |
msgid "center"
|
321 |
msgstr "centre"
|
322 |
|
323 |
-
#: ../include/functions.php:
|
324 |
msgid "right"
|
325 |
msgstr "droit"
|
326 |
|
327 |
-
#: ../include/functions.php:
|
328 |
msgid "Map type:"
|
329 |
msgstr "Type de Carte:"
|
330 |
|
331 |
-
#: ../include/functions.php:
|
332 |
msgid "ROADMAP - Displays a normal street map"
|
333 |
msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
|
334 |
|
335 |
-
#: ../include/functions.php:
|
336 |
msgid "SATELLITE - Displays satellite images"
|
337 |
msgstr "SATELLITE - affiche des images satellite"
|
338 |
|
339 |
-
#: ../include/functions.php:
|
340 |
msgid ""
|
341 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
342 |
msgstr ""
|
343 |
"TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
|
344 |
"terrain et la végétation"
|
345 |
|
346 |
-
#: ../include/functions.php:
|
347 |
msgid ""
|
348 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
349 |
msgstr ""
|
350 |
"HYBRIDE - Affiche une couche transparente de rues principales sur les images "
|
351 |
"satellites"
|
352 |
|
353 |
-
#: ../include/functions.php:
|
354 |
msgid "Map language:"
|
355 |
msgstr "Langue de la carte:"
|
356 |
|
357 |
-
#: ../include/functions.php:
|
358 |
msgid "Allow drag the map:"
|
359 |
msgstr "Autoriser traînée la carte"
|
360 |
|
361 |
-
#: ../include/functions.php:
|
362 |
msgid "Display map in post/page:"
|
363 |
msgstr "Afficher la carte sur l'article/la page:"
|
364 |
|
365 |
-
#: ../include/functions.php:
|
366 |
msgid "as icon"
|
367 |
msgstr "en icône"
|
368 |
|
369 |
-
#: ../include/functions.php:
|
370 |
msgid "as full map"
|
371 |
msgstr "en carte"
|
372 |
|
373 |
-
#: ../include/functions.php:
|
374 |
msgid "Show info bubbles:"
|
375 |
msgstr "Afficher les infos bulles:"
|
376 |
|
377 |
-
#: ../include/functions.php:
|
378 |
msgid "Display the bubbles associated to the points"
|
379 |
msgstr "Afficher les bulles associées aux points"
|
380 |
|
381 |
-
#: ../include/functions.php:
|
382 |
msgid "Display a bubble by default:"
|
383 |
msgstr "Afficher une bulle par défaut:"
|
384 |
|
385 |
-
#: ../include/functions.php:
|
386 |
msgid "Display a bubble opened by default"
|
387 |
msgstr "Afficher une bulle ouverte par défaut"
|
388 |
|
389 |
-
#: ../include/functions.php:
|
390 |
#, fuzzy
|
391 |
#| msgid "Display a link to Google Maps:"
|
392 |
msgid "Display as marker tooltip:"
|
393 |
msgstr "Afficher un lien vers Google Maps:"
|
394 |
|
395 |
-
#: ../include/functions.php:
|
396 |
#, fuzzy
|
397 |
#| msgid "Location name:"
|
398 |
msgid "Point location name"
|
399 |
msgstr "Nom du lieu:"
|
400 |
|
401 |
-
#: ../include/functions.php:
|
402 |
msgid "Point address"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: ../include/functions.php:
|
406 |
msgid "None"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: ../include/functions.php:
|
410 |
#, fuzzy
|
411 |
#| msgid "Display a bubble by default:"
|
412 |
msgid "Display Featured Image by default:"
|
413 |
msgstr "Afficher une bulle par défaut:"
|
414 |
|
415 |
-
#: ../include/functions.php:
|
416 |
msgid ""
|
417 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
418 |
"points don't have associated an image"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: ../include/functions.php:
|
422 |
msgid "Display the get directions link:"
|
423 |
msgstr "Afficher le lien de directions:"
|
424 |
|
425 |
-
#: ../include/functions.php:
|
426 |
msgid "Display a link at bottom of infowindow to get directions"
|
427 |
msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
|
428 |
|
429 |
-
#: ../include/functions.php:434 ../include/functions.php:442
|
430 |
-
#: ../include/functions.php:450 ../include/functions.php:458
|
431 |
#: ../include/functions.php:466 ../include/functions.php:474
|
432 |
#: ../include/functions.php:482 ../include/functions.php:490
|
433 |
-
#: ../include/functions.php:
|
|
|
|
|
434 |
msgid ""
|
435 |
"The feature is available only for the commercial version of plugin. <a href="
|
436 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -440,133 +465,133 @@ msgstr ""
|
|
440 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
441 |
"\" target = \"_blank\">Cliquez ici</a>."
|
442 |
|
443 |
-
#: ../include/functions.php:
|
444 |
msgid "Display a link to Google Maps:"
|
445 |
msgstr "Afficher un lien vers Google Maps:"
|
446 |
|
447 |
-
#: ../include/functions.php:
|
448 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
449 |
msgstr ""
|
450 |
"Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
|
451 |
|
452 |
-
#: ../include/functions.php:
|
453 |
msgid "Display a link to street view:"
|
454 |
msgstr "Afficher un lien vers Vue de la rue (Street View):"
|
455 |
|
456 |
-
#: ../include/functions.php:
|
457 |
msgid ""
|
458 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
459 |
msgstr ""
|
460 |
"Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
|
461 |
"correspondante"
|
462 |
|
463 |
-
#: ../include/functions.php:
|
464 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
465 |
msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
|
466 |
|
467 |
-
#: ../include/functions.php:
|
468 |
msgid "Displays the number of points in the cluster"
|
469 |
msgstr "Affiche le nombre de points dans le regroupement"
|
470 |
|
471 |
-
#: ../include/functions.php:
|
472 |
msgid "Display the user's location:"
|
473 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
474 |
|
475 |
-
#: ../include/functions.php:
|
476 |
msgid "Display an icon with the user's location on map"
|
477 |
msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
|
478 |
|
479 |
-
#: ../include/functions.php:
|
480 |
#, fuzzy
|
481 |
#| msgid "Display the user's location:"
|
482 |
msgid "Refresh the user's location every:"
|
483 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
484 |
|
485 |
-
#: ../include/functions.php:
|
486 |
msgid "milliseconds"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: ../include/functions.php:
|
490 |
msgid "Title of user's location:"
|
491 |
msgstr "Titre de l'emplacement de l'utilisateur:"
|
492 |
|
493 |
-
#: ../include/functions.php:
|
494 |
msgid "Title of user's location"
|
495 |
msgstr "Titre de l'emplacement de l'utilisateur"
|
496 |
|
497 |
-
#: ../include/functions.php:
|
498 |
msgid "Display a search box for places:"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: ../include/functions.php:
|
502 |
msgid "Includes an input box on the map for searching places"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: ../include/functions.php:
|
506 |
msgid "Display route:"
|
507 |
msgstr "Afficher l'itinéraire:"
|
508 |
|
509 |
-
#: ../include/functions.php:
|
510 |
msgid "Draws the route between the points in the same post"
|
511 |
msgstr "Dessine le trajet entre les points dans le même article"
|
512 |
|
513 |
-
#: ../include/functions.php:
|
514 |
msgid ""
|
515 |
"Connect the points with polylines, even if there is not a route between "
|
516 |
"points"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: ../include/functions.php:
|
520 |
msgid "Travel mode:"
|
521 |
msgstr "Mode de transport:"
|
522 |
|
523 |
-
#: ../include/functions.php:
|
524 |
msgid "Include traffic layer:"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ../include/functions.php:
|
528 |
msgid "Displays a layer over the map for traffic"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ../include/functions.php:
|
532 |
msgid "Options"
|
533 |
msgstr "Options"
|
534 |
|
535 |
-
#: ../include/functions.php:
|
536 |
msgid "Display the street view control"
|
537 |
msgstr "Afficher le moyen de contrôle de la vue de la rue"
|
538 |
|
539 |
-
#: ../include/functions.php:
|
540 |
msgid "Enable mouse wheel zoom"
|
541 |
msgstr "Activer zoom molette de la souris"
|
542 |
|
543 |
-
#: ../include/functions.php:
|
544 |
#, fuzzy
|
545 |
#| msgid "Enable zoom/pan controls"
|
546 |
msgid "Enable zoom controls"
|
547 |
msgstr "Activer le contrôle zoom/panoramique"
|
548 |
|
549 |
-
#: ../include/functions.php:
|
550 |
#, fuzzy
|
551 |
#| msgid "Enable zoom/pan controls"
|
552 |
msgid "Enable fullscreen control"
|
553 |
msgstr "Activer le contrôle zoom/panoramique"
|
554 |
|
555 |
-
#: ../include/functions.php:
|
556 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
557 |
msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
|
558 |
|
559 |
-
#: ../include/functions.php:
|
560 |
#, fuzzy
|
561 |
#| msgid "Enter the number of posts to display on the map"
|
562 |
msgid "Enter the number of posts to display on the post/page map"
|
563 |
msgstr "Entrez le nombre d'articles à afficher sur la carte"
|
564 |
|
565 |
-
#: ../include/functions.php:
|
566 |
msgid "Allow stylize the maps:"
|
567 |
msgstr "Autoriser de modifier le style des cartes:"
|
568 |
|
569 |
-
#: ../include/functions.php:
|
570 |
msgid ""
|
571 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
572 |
"structure with the map's styles"
|
@@ -574,27 +599,27 @@ msgstr ""
|
|
574 |
"Si vous voulez changer les styles des cartes , assurez-vous de savoir "
|
575 |
"comment créer une structure JSON avec les styles de la carte"
|
576 |
|
577 |
-
#: ../include/functions.php:
|
578 |
msgid "Display the map's legend:"
|
579 |
msgstr "Afficher la légende de la carte:"
|
580 |
|
581 |
-
#: ../include/functions.php:
|
582 |
msgid "Select the taxonomy to display on legend:"
|
583 |
msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
|
584 |
|
585 |
-
#: ../include/functions.php:
|
586 |
msgid "Select a taxonomy"
|
587 |
msgstr "Sélectionnez une taxonomie"
|
588 |
|
589 |
-
#: ../include/functions.php:
|
590 |
msgid "Enter a title for legend:"
|
591 |
msgstr "Entrez un titre pour la légende:"
|
592 |
|
593 |
-
#: ../include/functions.php:
|
594 |
msgid "Enter a classname to be applied to the legend:"
|
595 |
msgstr "Entrez un nom de classe à appliquer à la légende:"
|
596 |
|
597 |
-
#: ../include/functions.php:
|
598 |
msgid ""
|
599 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
600 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
@@ -604,11 +629,11 @@ msgstr ""
|
|
604 |
"dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
|
605 |
"CodePeople Post Map"
|
606 |
|
607 |
-
#: ../include/functions.php:
|
608 |
msgid "To insert a map in the post follow the steps below"
|
609 |
msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
|
610 |
|
611 |
-
#: ../include/functions.php:
|
612 |
msgid ""
|
613 |
"Enter the point's information (the latitude and longitude are required, but "
|
614 |
"are obtained pressing the \"verify\" button after type the address"
|
@@ -617,7 +642,7 @@ msgstr ""
|
|
617 |
"obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
|
618 |
"après avoir entré l'adresse)"
|
619 |
|
620 |
-
#: ../include/functions.php:
|
621 |
msgid ""
|
622 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
623 |
"\" button"
|
@@ -625,7 +650,7 @@ msgstr ""
|
|
625 |
"Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
|
626 |
"Shortcode de la carte\""
|
627 |
|
628 |
-
#: ../include/functions.php:
|
629 |
#, fuzzy
|
630 |
#| msgid ""
|
631 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
@@ -639,18 +664,18 @@ msgstr ""
|
|
639 |
"cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
|
640 |
"et modifiez les paramètres de cette carte"
|
641 |
|
642 |
-
#: ../include/functions.php:
|
643 |
msgid ""
|
644 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
645 |
msgstr ""
|
646 |
"N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
|
647 |
"données de l'article et la carte."
|
648 |
|
649 |
-
#: ../include/functions.php:
|
650 |
msgid "Map points"
|
651 |
msgstr "Points de la carte"
|
652 |
|
653 |
-
#: ../include/functions.php:
|
654 |
msgid ""
|
655 |
"Multiple points in the same Post/Page are available only in the <a href="
|
656 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -660,41 +685,41 @@ msgstr ""
|
|
660 |
"la <a href = \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
|
661 |
"map#download\" target = \"_blank\">version commerciale</a>."
|
662 |
|
663 |
-
#: ../include/functions.php:
|
664 |
msgid "Map point description"
|
665 |
msgstr "Description d'un point sur la carte"
|
666 |
|
667 |
-
#: ../include/functions.php:
|
668 |
msgid "Location name:"
|
669 |
msgstr "Nom du lieu:"
|
670 |
|
671 |
-
#: ../include/functions.php:
|
672 |
msgid "Location description:"
|
673 |
msgstr "Description du lieu:"
|
674 |
|
675 |
-
#: ../include/functions.php:
|
676 |
#, fuzzy
|
677 |
#| msgid "Select an images to attach to the point: "
|
678 |
msgid "Select an image to attach to the point: "
|
679 |
msgstr "Sélectionnez une image à associer au point:"
|
680 |
|
681 |
-
#: ../include/functions.php:
|
682 |
msgid "Address:"
|
683 |
msgstr "Adresse (inclure le pays):"
|
684 |
|
685 |
-
#: ../include/functions.php:
|
686 |
msgid "Latitude:"
|
687 |
msgstr "Latitude:"
|
688 |
|
689 |
-
#: ../include/functions.php:
|
690 |
msgid "Longitude:"
|
691 |
msgstr "Longitude:"
|
692 |
|
693 |
-
#: ../include/functions.php:
|
694 |
msgid "Verify"
|
695 |
msgstr "Vérifier"
|
696 |
|
697 |
-
#: ../include/functions.php:
|
698 |
msgid ""
|
699 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
700 |
"point address."
|
@@ -702,12 +727,12 @@ msgstr ""
|
|
702 |
"Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
|
703 |
"pourrait écraser l'adresse de point."
|
704 |
|
705 |
-
#: ../include/functions.php:
|
706 |
msgid "Required: Press the button \"verify\" after complete the address."
|
707 |
msgstr ""
|
708 |
"Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
|
709 |
|
710 |
-
#: ../include/functions.php:
|
711 |
msgid ""
|
712 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
713 |
"strong> button and save the post/page modifications."
|
@@ -716,19 +741,19 @@ msgstr ""
|
|
716 |
">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
|
717 |
"publication/page modifications."
|
718 |
|
719 |
-
#: ../include/functions.php:
|
720 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
721 |
msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
|
722 |
|
723 |
-
#: ../include/functions.php:
|
724 |
msgid "If you want to display the map in page / post:"
|
725 |
msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
|
726 |
|
727 |
-
#: ../include/functions.php:
|
728 |
msgid "Insert the map tag"
|
729 |
msgstr "Insérer le Shortcode de la carte"
|
730 |
|
731 |
-
#: ../include/functions.php:
|
732 |
msgid ""
|
733 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
734 |
"zoom and the other maps attributes:</p>\n"
|
@@ -748,25 +773,25 @@ msgid ""
|
|
748 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: ../include/functions.php:
|
752 |
#, fuzzy
|
753 |
#| msgid "[ + more information]"
|
754 |
msgid "[ + less information]"
|
755 |
msgstr "[en savoir plus]"
|
756 |
|
757 |
-
#: ../include/functions.php:
|
758 |
msgid "To display the points that belong to any category"
|
759 |
msgstr "Pour afficher les points qui appartiennent à une catégorie"
|
760 |
|
761 |
-
#: ../include/functions.php:
|
762 |
msgid "All points on website"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: ../include/functions.php:
|
766 |
msgid "Settings Updated"
|
767 |
msgstr "Paramètres Mise à jour"
|
768 |
|
769 |
-
#: ../include/functions.php:
|
770 |
msgid ""
|
771 |
"Generate points dynamically from geolocation information included on images, "
|
772 |
"when images are uploaded to WordPress:"
|
@@ -775,7 +800,7 @@ msgstr ""
|
|
775 |
"géolocalisation inclus sur les images , lorsque les images sont téléchargées "
|
776 |
"sur WordPress:"
|
777 |
|
778 |
-
#: ../include/functions.php:
|
779 |
msgid ""
|
780 |
"The geolocation information is added to the images from your mobiles or "
|
781 |
"cameras, if they have associated GPS devices"
|
@@ -783,11 +808,11 @@ msgstr ""
|
|
783 |
"Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
|
784 |
"de caméras , se ils ont associé les appareils GPS"
|
785 |
|
786 |
-
#: ../include/functions.php:
|
787 |
msgid "Process All Previous Images"
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: ../include/functions.php:
|
791 |
msgid ""
|
792 |
"Process all images in the library, and generates new points in the parents "
|
793 |
"pages, with the geocode information in the images metadata. A post/page is "
|
@@ -795,24 +820,24 @@ msgid ""
|
|
795 |
"post/page."
|
796 |
msgstr ""
|
797 |
|
798 |
-
#: ../include/functions.php:
|
799 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
800 |
msgstr ""
|
801 |
|
802 |
-
#: ../include/functions.php:
|
803 |
-
#: ../include/functions.php:
|
804 |
-
#: ../include/functions.php:
|
805 |
msgid "Click Here"
|
806 |
msgstr ""
|
807 |
|
808 |
-
#: ../include/functions.php:
|
809 |
msgid ""
|
810 |
"Generate points dynamically from geolocation information included on posts:"
|
811 |
msgstr ""
|
812 |
"Générer des points dynamiquement à partir des informations de "
|
813 |
"géolocalisation inclus dans les messages:"
|
814 |
|
815 |
-
#: ../include/functions.php:
|
816 |
msgid ""
|
817 |
"The geolocation information is added to the post from WordPress app in your "
|
818 |
"mobile"
|
@@ -820,79 +845,79 @@ msgstr ""
|
|
820 |
"Les informations de géolocalisation est ajouté au article de WordPress dans "
|
821 |
"votre application mobile"
|
822 |
|
823 |
-
#: ../include/functions.php:
|
824 |
msgid "Use points information in search results:"
|
825 |
msgstr "Utilisez des points d'information dans les résultats de recherche:"
|
826 |
|
827 |
-
#: ../include/functions.php:
|
828 |
msgid ""
|
829 |
"The search in the maps data is available only in commercial version of "
|
830 |
"plugin."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: ../include/functions.php:
|
834 |
msgid "Highlight post when mouse move over related point on map:"
|
835 |
msgstr ""
|
836 |
"Mettre en évidence l'article lorsque la souris survole le point concerné sur "
|
837 |
"la carte:"
|
838 |
|
839 |
-
#: ../include/functions.php:
|
840 |
msgid "The post highlight is available only in commercial version of plugin."
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: ../include/functions.php:
|
844 |
msgid "Highlight class:"
|
845 |
msgstr "Classe pour surligner et mettre en évidence"
|
846 |
|
847 |
-
#: ../include/functions.php:
|
848 |
msgid "The highlight class is available only in commercial version of plugin."
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: ../include/functions.php:
|
852 |
msgid "Allow to associate a map to the post types:"
|
853 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
854 |
|
855 |
-
#: ../include/functions.php:
|
856 |
msgid "Posts and Pages are selected by default"
|
857 |
msgstr "Articles et Pages sont sélectionnés par défaut"
|
858 |
|
859 |
-
#: ../include/functions.php:
|
860 |
msgid ""
|
861 |
"Associate the maps to custom post types is available only in commercial "
|
862 |
"version of plugin."
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: ../include/functions.php:
|
866 |
msgid "Draws Routes"
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: ../include/functions.php:
|
870 |
#, fuzzy
|
871 |
#| msgid "Allow to associate a map to the post types:"
|
872 |
msgid "Associate maps to custom post types"
|
873 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
874 |
|
875 |
-
#: ../include/functions.php:
|
876 |
msgid "Display a map for each post in pages with multiple posts"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: ../include/functions.php:
|
880 |
msgid "Troubleshoot Section"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../include/functions.php:
|
884 |
msgid "Load required resources (javascript files) in footer"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: ../include/functions.php:
|
888 |
msgid "Update Settings"
|
889 |
msgstr "Mise à Jour"
|
890 |
|
891 |
-
#: ../include/functions.php:
|
892 |
msgid "Help"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../include/functions.php:
|
896 |
msgid "Request custom changes"
|
897 |
msgstr "Demande de Modifications personnalisées"
|
898 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
+
"POT-Creation-Date: 2020-03-02 13:52+0100\n"
|
5 |
+
"PO-Revision-Date: 2020-03-02 13:52+0100\n"
|
6 |
+
"Last-Translator: CodePeople\n"
|
7 |
"Language-Team: CodePeople\n"
|
8 |
"Language: fr\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.3\n"
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Poedit-SearchPath-0: ..\n"
|
17 |
|
18 |
+
#: ../codepeople-post-map.php:57
|
19 |
msgid "Associate an address to the post for Google Maps association"
|
20 |
msgstr "Associer une adresse à l'article pour l'afficher sur Google Maps"
|
21 |
|
235 |
msgid "CHINESE (TRADITIONAL)"
|
236 |
msgstr "CHINOIS (TRADITIONNEL)"
|
237 |
|
238 |
+
#: ../include/functions.php:279
|
239 |
msgid "Select the marker by clicking on the images"
|
240 |
msgstr "Sélectionnez le marqueur en cliquant sur une image"
|
241 |
|
242 |
+
#: ../include/functions.php:290
|
243 |
msgid "Powered by"
|
244 |
msgstr "Alimenté par"
|
245 |
|
246 |
+
#: ../include/functions.php:311
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuration des cartes"
|
249 |
|
250 |
+
#: ../include/functions.php:313 ../include/functions.php:652
|
251 |
msgid ""
|
252 |
"For any issues with the map, go to our <a href=\"http://wordpress.dwbooster."
|
253 |
"com/contact-us\" target=\"_blank\">contact page</a> and leave us a message."
|
256 |
"wordpress.dwbooster.com/contact-us\" target=\"_blank\">page-contact</a> et "
|
257 |
"laissez nous un message"
|
258 |
|
259 |
+
#: ../include/functions.php:314
|
260 |
+
#, fuzzy
|
261 |
+
#| msgid ""
|
262 |
+
#| "If you want test the premium version of CP Google Maps go to the "
|
263 |
+
#| "following links:<br/> <a href=\"http://demos.net-factor.com/cp-google-"
|
264 |
+
#| "maps/wp-login.php\" target=\"_blank\">Administration area: Click to "
|
265 |
+
#| "access the administration area demo</a><br/> <a href=\"http://demos.net-"
|
266 |
+
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
+
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
"If you want test the premium version of CP Google Maps go to the following "
|
270 |
+
"links:<br/> <a href=\"https://demos.dwbooster.com/cp-google-maps/wp-login.php"
|
271 |
"\" target=\"_blank\">Administration area: Click to access the administration "
|
272 |
+
"area demo</a><br/> <a href=\"https://demos.dwbooster.com/cp-google-maps/\" "
|
273 |
"target=\"_blank\">Public page: Click to access the CP Google Maps</a>"
|
274 |
msgstr ""
|
275 |
"Si vous voulez tester la version premium de CP Google Maps, utilisez les "
|
279 |
"com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
|
280 |
"au CP Google Maps</a>"
|
281 |
|
282 |
+
#: ../include/functions.php:322
|
283 |
msgid "I have an API key:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../include/functions.php:324
|
287 |
+
msgid "Enter your API Key"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: ../include/functions.php:327
|
291 |
msgid "Please, visit the following link to get the API Key for your website:"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../include/functions.php:331
|
295 |
+
msgid "With the Google project, activate at least the following APIs"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: ../include/functions.php:334
|
299 |
+
msgid ""
|
300 |
+
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: ../include/functions.php:335
|
304 |
+
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: ../include/functions.php:344
|
308 |
msgid "Use particular settings for this map:"
|
309 |
msgstr "Utiliser des paramètres particuliers pour cette carte:"
|
310 |
|
311 |
+
#: ../include/functions.php:353
|
312 |
msgid "Map zoom:"
|
313 |
msgstr "Zoom"
|
314 |
|
315 |
+
#: ../include/functions.php:359
|
316 |
msgid "Dynamic zoom:"
|
317 |
msgstr "Zoom dynamique:"
|
318 |
|
319 |
+
#: ../include/functions.php:361
|
320 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
321 |
msgstr ""
|
322 |
"Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
|
323 |
|
324 |
+
#: ../include/functions.php:365
|
325 |
msgid "Map width:"
|
326 |
msgstr "Largeur de la carte:"
|
327 |
|
328 |
+
#: ../include/functions.php:377
|
329 |
msgid "Map height:"
|
330 |
msgstr "Hauteur de la carte:"
|
331 |
|
332 |
+
#: ../include/functions.php:383
|
333 |
msgid "Map margin:"
|
334 |
msgstr "Marge de la carte:"
|
335 |
|
336 |
+
#: ../include/functions.php:389
|
337 |
msgid "Map align:"
|
338 |
msgstr "Alignement de la Carte:"
|
339 |
|
340 |
+
#: ../include/functions.php:392
|
341 |
msgid "left"
|
342 |
msgstr "gauche"
|
343 |
|
344 |
+
#: ../include/functions.php:393
|
345 |
msgid "center"
|
346 |
msgstr "centre"
|
347 |
|
348 |
+
#: ../include/functions.php:394
|
349 |
msgid "right"
|
350 |
msgstr "droit"
|
351 |
|
352 |
+
#: ../include/functions.php:399
|
353 |
msgid "Map type:"
|
354 |
msgstr "Type de Carte:"
|
355 |
|
356 |
+
#: ../include/functions.php:402
|
357 |
msgid "ROADMAP - Displays a normal street map"
|
358 |
msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
|
359 |
|
360 |
+
#: ../include/functions.php:403
|
361 |
msgid "SATELLITE - Displays satellite images"
|
362 |
msgstr "SATELLITE - affiche des images satellite"
|
363 |
|
364 |
+
#: ../include/functions.php:404
|
365 |
msgid ""
|
366 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
367 |
msgstr ""
|
368 |
"TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
|
369 |
"terrain et la végétation"
|
370 |
|
371 |
+
#: ../include/functions.php:405
|
372 |
msgid ""
|
373 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
374 |
msgstr ""
|
375 |
"HYBRIDE - Affiche une couche transparente de rues principales sur les images "
|
376 |
"satellites"
|
377 |
|
378 |
+
#: ../include/functions.php:410
|
379 |
msgid "Map language:"
|
380 |
msgstr "Langue de la carte:"
|
381 |
|
382 |
+
#: ../include/functions.php:414
|
383 |
msgid "Allow drag the map:"
|
384 |
msgstr "Autoriser traînée la carte"
|
385 |
|
386 |
+
#: ../include/functions.php:420
|
387 |
msgid "Display map in post/page:"
|
388 |
msgstr "Afficher la carte sur l'article/la page:"
|
389 |
|
390 |
+
#: ../include/functions.php:423
|
391 |
msgid "as icon"
|
392 |
msgstr "en icône"
|
393 |
|
394 |
+
#: ../include/functions.php:424
|
395 |
msgid "as full map"
|
396 |
msgstr "en carte"
|
397 |
|
398 |
+
#: ../include/functions.php:430
|
399 |
msgid "Show info bubbles:"
|
400 |
msgstr "Afficher les infos bulles:"
|
401 |
|
402 |
+
#: ../include/functions.php:432
|
403 |
msgid "Display the bubbles associated to the points"
|
404 |
msgstr "Afficher les bulles associées aux points"
|
405 |
|
406 |
+
#: ../include/functions.php:437
|
407 |
msgid "Display a bubble by default:"
|
408 |
msgstr "Afficher une bulle par défaut:"
|
409 |
|
410 |
+
#: ../include/functions.php:439
|
411 |
msgid "Display a bubble opened by default"
|
412 |
msgstr "Afficher une bulle ouverte par défaut"
|
413 |
|
414 |
+
#: ../include/functions.php:447
|
415 |
#, fuzzy
|
416 |
#| msgid "Display a link to Google Maps:"
|
417 |
msgid "Display as marker tooltip:"
|
418 |
msgstr "Afficher un lien vers Google Maps:"
|
419 |
|
420 |
+
#: ../include/functions.php:449
|
421 |
#, fuzzy
|
422 |
#| msgid "Location name:"
|
423 |
msgid "Point location name"
|
424 |
msgstr "Nom du lieu:"
|
425 |
|
426 |
+
#: ../include/functions.php:450
|
427 |
msgid "Point address"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: ../include/functions.php:451
|
431 |
msgid "None"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../include/functions.php:456
|
435 |
#, fuzzy
|
436 |
#| msgid "Display a bubble by default:"
|
437 |
msgid "Display Featured Image by default:"
|
438 |
msgstr "Afficher une bulle par défaut:"
|
439 |
|
440 |
+
#: ../include/functions.php:458
|
441 |
msgid ""
|
442 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
443 |
"points don't have associated an image"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: ../include/functions.php:463
|
447 |
msgid "Display the get directions link:"
|
448 |
msgstr "Afficher le lien de directions:"
|
449 |
|
450 |
+
#: ../include/functions.php:465
|
451 |
msgid "Display a link at bottom of infowindow to get directions"
|
452 |
msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
|
453 |
|
|
|
|
|
454 |
#: ../include/functions.php:466 ../include/functions.php:474
|
455 |
#: ../include/functions.php:482 ../include/functions.php:490
|
456 |
+
#: ../include/functions.php:498 ../include/functions.php:506
|
457 |
+
#: ../include/functions.php:514 ../include/functions.php:524
|
458 |
+
#: ../include/functions.php:755 ../include/functions.php:790
|
459 |
msgid ""
|
460 |
"The feature is available only for the commercial version of plugin. <a href="
|
461 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
465 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
466 |
"\" target = \"_blank\">Cliquez ici</a>."
|
467 |
|
468 |
+
#: ../include/functions.php:471
|
469 |
msgid "Display a link to Google Maps:"
|
470 |
msgstr "Afficher un lien vers Google Maps:"
|
471 |
|
472 |
+
#: ../include/functions.php:473
|
473 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
474 |
msgstr ""
|
475 |
"Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
|
476 |
|
477 |
+
#: ../include/functions.php:479
|
478 |
msgid "Display a link to street view:"
|
479 |
msgstr "Afficher un lien vers Vue de la rue (Street View):"
|
480 |
|
481 |
+
#: ../include/functions.php:481
|
482 |
msgid ""
|
483 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
484 |
msgstr ""
|
485 |
"Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
|
486 |
"correspondante"
|
487 |
|
488 |
+
#: ../include/functions.php:487
|
489 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
490 |
msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
|
491 |
|
492 |
+
#: ../include/functions.php:489
|
493 |
msgid "Displays the number of points in the cluster"
|
494 |
msgstr "Affiche le nombre de points dans le regroupement"
|
495 |
|
496 |
+
#: ../include/functions.php:495
|
497 |
msgid "Display the user's location:"
|
498 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
499 |
|
500 |
+
#: ../include/functions.php:497
|
501 |
msgid "Display an icon with the user's location on map"
|
502 |
msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
|
503 |
|
504 |
+
#: ../include/functions.php:503
|
505 |
#, fuzzy
|
506 |
#| msgid "Display the user's location:"
|
507 |
msgid "Refresh the user's location every:"
|
508 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
509 |
|
510 |
+
#: ../include/functions.php:505
|
511 |
msgid "milliseconds"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: ../include/functions.php:511
|
515 |
msgid "Title of user's location:"
|
516 |
msgstr "Titre de l'emplacement de l'utilisateur:"
|
517 |
|
518 |
+
#: ../include/functions.php:513
|
519 |
msgid "Title of user's location"
|
520 |
msgstr "Titre de l'emplacement de l'utilisateur"
|
521 |
|
522 |
+
#: ../include/functions.php:521
|
523 |
msgid "Display a search box for places:"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: ../include/functions.php:523
|
527 |
msgid "Includes an input box on the map for searching places"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: ../include/functions.php:529
|
531 |
msgid "Display route:"
|
532 |
msgstr "Afficher l'itinéraire:"
|
533 |
|
534 |
+
#: ../include/functions.php:531
|
535 |
msgid "Draws the route between the points in the same post"
|
536 |
msgstr "Dessine le trajet entre les points dans le même article"
|
537 |
|
538 |
+
#: ../include/functions.php:532
|
539 |
msgid ""
|
540 |
"Connect the points with polylines, even if there is not a route between "
|
541 |
"points"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: ../include/functions.php:538
|
545 |
msgid "Travel mode:"
|
546 |
msgstr "Mode de transport:"
|
547 |
|
548 |
+
#: ../include/functions.php:547
|
549 |
msgid "Include traffic layer:"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: ../include/functions.php:549
|
553 |
msgid "Displays a layer over the map for traffic"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../include/functions.php:554
|
557 |
msgid "Options"
|
558 |
msgstr "Options"
|
559 |
|
560 |
+
#: ../include/functions.php:557
|
561 |
msgid "Display the street view control"
|
562 |
msgstr "Afficher le moyen de contrôle de la vue de la rue"
|
563 |
|
564 |
+
#: ../include/functions.php:559
|
565 |
msgid "Enable mouse wheel zoom"
|
566 |
msgstr "Activer zoom molette de la souris"
|
567 |
|
568 |
+
#: ../include/functions.php:561
|
569 |
#, fuzzy
|
570 |
#| msgid "Enable zoom/pan controls"
|
571 |
msgid "Enable zoom controls"
|
572 |
msgstr "Activer le contrôle zoom/panoramique"
|
573 |
|
574 |
+
#: ../include/functions.php:563
|
575 |
#, fuzzy
|
576 |
#| msgid "Enable zoom/pan controls"
|
577 |
msgid "Enable fullscreen control"
|
578 |
msgstr "Activer le contrôle zoom/panoramique"
|
579 |
|
580 |
+
#: ../include/functions.php:565
|
581 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
582 |
msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
|
583 |
|
584 |
+
#: ../include/functions.php:569
|
585 |
#, fuzzy
|
586 |
#| msgid "Enter the number of posts to display on the map"
|
587 |
msgid "Enter the number of posts to display on the post/page map"
|
588 |
msgstr "Entrez le nombre d'articles à afficher sur la carte"
|
589 |
|
590 |
+
#: ../include/functions.php:573
|
591 |
msgid "Allow stylize the maps:"
|
592 |
msgstr "Autoriser de modifier le style des cartes:"
|
593 |
|
594 |
+
#: ../include/functions.php:583
|
595 |
msgid ""
|
596 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
597 |
"structure with the map's styles"
|
599 |
"Si vous voulez changer les styles des cartes , assurez-vous de savoir "
|
600 |
"comment créer une structure JSON avec les styles de la carte"
|
601 |
|
602 |
+
#: ../include/functions.php:591
|
603 |
msgid "Display the map's legend:"
|
604 |
msgstr "Afficher la légende de la carte:"
|
605 |
|
606 |
+
#: ../include/functions.php:597
|
607 |
msgid "Select the taxonomy to display on legend:"
|
608 |
msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
|
609 |
|
610 |
+
#: ../include/functions.php:600
|
611 |
msgid "Select a taxonomy"
|
612 |
msgstr "Sélectionnez une taxonomie"
|
613 |
|
614 |
+
#: ../include/functions.php:605
|
615 |
msgid "Enter a title for legend:"
|
616 |
msgstr "Entrez un titre pour la légende:"
|
617 |
|
618 |
+
#: ../include/functions.php:611
|
619 |
msgid "Enter a classname to be applied to the legend:"
|
620 |
msgstr "Entrez un nom de classe à appliquer à la légende:"
|
621 |
|
622 |
+
#: ../include/functions.php:651 ../include/functions.php:1039
|
623 |
msgid ""
|
624 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
625 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
629 |
"dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
|
630 |
"CodePeople Post Map"
|
631 |
|
632 |
+
#: ../include/functions.php:654
|
633 |
msgid "To insert a map in the post follow the steps below"
|
634 |
msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
|
635 |
|
636 |
+
#: ../include/functions.php:657
|
637 |
msgid ""
|
638 |
"Enter the point's information (the latitude and longitude are required, but "
|
639 |
"are obtained pressing the \"verify\" button after type the address"
|
642 |
"obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
|
643 |
"après avoir entré l'adresse)"
|
644 |
|
645 |
+
#: ../include/functions.php:658
|
646 |
msgid ""
|
647 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
648 |
"\" button"
|
650 |
"Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
|
651 |
"Shortcode de la carte\""
|
652 |
|
653 |
+
#: ../include/functions.php:659
|
654 |
#, fuzzy
|
655 |
#| msgid ""
|
656 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
664 |
"cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
|
665 |
"et modifiez les paramètres de cette carte"
|
666 |
|
667 |
+
#: ../include/functions.php:660
|
668 |
msgid ""
|
669 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
670 |
msgstr ""
|
671 |
"N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
|
672 |
"données de l'article et la carte."
|
673 |
|
674 |
+
#: ../include/functions.php:664
|
675 |
msgid "Map points"
|
676 |
msgstr "Points de la carte"
|
677 |
|
678 |
+
#: ../include/functions.php:666
|
679 |
msgid ""
|
680 |
"Multiple points in the same Post/Page are available only in the <a href="
|
681 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
685 |
"la <a href = \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
|
686 |
"map#download\" target = \"_blank\">version commerciale</a>."
|
687 |
|
688 |
+
#: ../include/functions.php:670
|
689 |
msgid "Map point description"
|
690 |
msgstr "Description d'un point sur la carte"
|
691 |
|
692 |
+
#: ../include/functions.php:673
|
693 |
msgid "Location name:"
|
694 |
msgstr "Nom du lieu:"
|
695 |
|
696 |
+
#: ../include/functions.php:679
|
697 |
msgid "Location description:"
|
698 |
msgstr "Description du lieu:"
|
699 |
|
700 |
+
#: ../include/functions.php:688
|
701 |
#, fuzzy
|
702 |
#| msgid "Select an images to attach to the point: "
|
703 |
msgid "Select an image to attach to the point: "
|
704 |
msgstr "Sélectionnez une image à associer au point:"
|
705 |
|
706 |
+
#: ../include/functions.php:703
|
707 |
msgid "Address:"
|
708 |
msgstr "Adresse (inclure le pays):"
|
709 |
|
710 |
+
#: ../include/functions.php:709
|
711 |
msgid "Latitude:"
|
712 |
msgstr "Latitude:"
|
713 |
|
714 |
+
#: ../include/functions.php:715
|
715 |
msgid "Longitude:"
|
716 |
msgstr "Longitude:"
|
717 |
|
718 |
+
#: ../include/functions.php:721
|
719 |
msgid "Verify"
|
720 |
msgstr "Vérifier"
|
721 |
|
722 |
+
#: ../include/functions.php:723
|
723 |
msgid ""
|
724 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
725 |
"point address."
|
727 |
"Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
|
728 |
"pourrait écraser l'adresse de point."
|
729 |
|
730 |
+
#: ../include/functions.php:723
|
731 |
msgid "Required: Press the button \"verify\" after complete the address."
|
732 |
msgstr ""
|
733 |
"Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
|
734 |
|
735 |
+
#: ../include/functions.php:746
|
736 |
msgid ""
|
737 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
738 |
"strong> button and save the post/page modifications."
|
741 |
">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
|
742 |
"publication/page modifications."
|
743 |
|
744 |
+
#: ../include/functions.php:753
|
745 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
746 |
msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
|
747 |
|
748 |
+
#: ../include/functions.php:761
|
749 |
msgid "If you want to display the map in page / post:"
|
750 |
msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
|
751 |
|
752 |
+
#: ../include/functions.php:762
|
753 |
msgid "Insert the map tag"
|
754 |
msgstr "Insérer le Shortcode de la carte"
|
755 |
|
756 |
+
#: ../include/functions.php:765
|
757 |
msgid ""
|
758 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
759 |
"zoom and the other maps attributes:</p>\n"
|
773 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
774 |
msgstr ""
|
775 |
|
776 |
+
#: ../include/functions.php:774
|
777 |
#, fuzzy
|
778 |
#| msgid "[ + more information]"
|
779 |
msgid "[ + less information]"
|
780 |
msgstr "[en savoir plus]"
|
781 |
|
782 |
+
#: ../include/functions.php:778
|
783 |
msgid "To display the points that belong to any category"
|
784 |
msgstr "Pour afficher les points qui appartiennent à une catégorie"
|
785 |
|
786 |
+
#: ../include/functions.php:780
|
787 |
msgid "All points on website"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: ../include/functions.php:927
|
791 |
msgid "Settings Updated"
|
792 |
msgstr "Paramètres Mise à jour"
|
793 |
|
794 |
+
#: ../include/functions.php:940
|
795 |
msgid ""
|
796 |
"Generate points dynamically from geolocation information included on images, "
|
797 |
"when images are uploaded to WordPress:"
|
800 |
"géolocalisation inclus sur les images , lorsque les images sont téléchargées "
|
801 |
"sur WordPress:"
|
802 |
|
803 |
+
#: ../include/functions.php:943
|
804 |
msgid ""
|
805 |
"The geolocation information is added to the images from your mobiles or "
|
806 |
"cameras, if they have associated GPS devices"
|
808 |
"Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
|
809 |
"de caméras , se ils ont associé les appareils GPS"
|
810 |
|
811 |
+
#: ../include/functions.php:945
|
812 |
msgid "Process All Previous Images"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: ../include/functions.php:946
|
816 |
msgid ""
|
817 |
"Process all images in the library, and generates new points in the parents "
|
818 |
"pages, with the geocode information in the images metadata. A post/page is "
|
820 |
"post/page."
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../include/functions.php:947 ../include/functions.php:957
|
824 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: ../include/functions.php:947 ../include/functions.php:957
|
828 |
+
#: ../include/functions.php:964 ../include/functions.php:970
|
829 |
+
#: ../include/functions.php:976 ../include/functions.php:996
|
830 |
msgid "Click Here"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: ../include/functions.php:952
|
834 |
msgid ""
|
835 |
"Generate points dynamically from geolocation information included on posts:"
|
836 |
msgstr ""
|
837 |
"Générer des points dynamiquement à partir des informations de "
|
838 |
"géolocalisation inclus dans les messages:"
|
839 |
|
840 |
+
#: ../include/functions.php:955
|
841 |
msgid ""
|
842 |
"The geolocation information is added to the post from WordPress app in your "
|
843 |
"mobile"
|
845 |
"Les informations de géolocalisation est ajouté au article de WordPress dans "
|
846 |
"votre application mobile"
|
847 |
|
848 |
+
#: ../include/functions.php:962
|
849 |
msgid "Use points information in search results:"
|
850 |
msgstr "Utilisez des points d'information dans les résultats de recherche:"
|
851 |
|
852 |
+
#: ../include/functions.php:964
|
853 |
msgid ""
|
854 |
"The search in the maps data is available only in commercial version of "
|
855 |
"plugin."
|
856 |
msgstr ""
|
857 |
|
858 |
+
#: ../include/functions.php:968
|
859 |
msgid "Highlight post when mouse move over related point on map:"
|
860 |
msgstr ""
|
861 |
"Mettre en évidence l'article lorsque la souris survole le point concerné sur "
|
862 |
"la carte:"
|
863 |
|
864 |
+
#: ../include/functions.php:970
|
865 |
msgid "The post highlight is available only in commercial version of plugin."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../include/functions.php:974
|
869 |
msgid "Highlight class:"
|
870 |
msgstr "Classe pour surligner et mettre en évidence"
|
871 |
|
872 |
+
#: ../include/functions.php:976
|
873 |
msgid "The highlight class is available only in commercial version of plugin."
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../include/functions.php:980
|
877 |
msgid "Allow to associate a map to the post types:"
|
878 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
879 |
|
880 |
+
#: ../include/functions.php:993
|
881 |
msgid "Posts and Pages are selected by default"
|
882 |
msgstr "Articles et Pages sont sélectionnés par défaut"
|
883 |
|
884 |
+
#: ../include/functions.php:996
|
885 |
msgid ""
|
886 |
"Associate the maps to custom post types is available only in commercial "
|
887 |
"version of plugin."
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: ../include/functions.php:1006
|
891 |
msgid "Draws Routes"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../include/functions.php:1012
|
895 |
#, fuzzy
|
896 |
#| msgid "Allow to associate a map to the post types:"
|
897 |
msgid "Associate maps to custom post types"
|
898 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
899 |
|
900 |
+
#: ../include/functions.php:1018
|
901 |
msgid "Display a map for each post in pages with multiple posts"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: ../include/functions.php:1023
|
905 |
msgid "Troubleshoot Section"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: ../include/functions.php:1028
|
909 |
msgid "Load required resources (javascript files) in footer"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: ../include/functions.php:1040
|
913 |
msgid "Update Settings"
|
914 |
msgstr "Mise à Jour"
|
915 |
|
916 |
+
#: ../include/functions.php:1504
|
917 |
msgid "Help"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: ../include/functions.php:1506
|
921 |
msgid "Request custom changes"
|
922 |
msgstr "Demande de Modifications personnalisées"
|
923 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: codepeople
|
|
3 |
Donate link: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
4 |
Tags:google maps,maps,marker,gmap,places,shortcode,map,categories,post map,point,location,address,images,geocoder,google,shape,list,grouping,cluster,infowindow,route,pin,streetview,post,posts,pages,widget,image,exif tag,plugin,sidebar,stylize,admin
|
5 |
Requires at least: 3.0.5
|
6 |
-
Tested up to: 5.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -14,13 +14,13 @@ Google Maps CP allows to associate geolocation information to your posts and to
|
|
14 |
|
15 |
Google Map features:
|
16 |
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
|
25 |
**Google Maps CP** allows to insert a Google Maps in a post or in any of the WordPress templates that display multiple posts.
|
26 |
|
@@ -84,92 +84,158 @@ The third, and most extended version of the plugin is the "Developer Version". T
|
|
84 |
|
85 |
**Demo of the Developer Version of Google Maps CP Plugin**
|
86 |
|
87 |
-
[
|
88 |
|
89 |
-
[
|
90 |
|
91 |
|
92 |
-
Note 1: To display all points that belong to a specific category in the same Google Map, it is required to insert the following shortcode [codepeople-post-map cat="3"]
|
93 |
|
94 |
-
|
95 |
|
96 |
-
Note 2: To display all points that belong to more than one category in a same Google Map, separate the categories IDs with the comma symbol [codepeople-post-map cat="3,5"]
|
97 |
|
98 |
-
|
99 |
|
100 |
-
Note 3: To display all points defined in the website in a same Google Map, use -1 as the category's ID:
|
101 |
|
102 |
-
|
103 |
|
104 |
-
|
105 |
|
106 |
-
|
107 |
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
The "id" attribute has preference over the rest of the filtering attributes.
|
111 |
|
112 |
If you prefer configure your map directly from the shortcode, then you must enter an attribute for each map feature to specify. For example:
|
113 |
|
114 |
-
|
115 |
|
116 |
The complete list of allowed attributes are:
|
117 |
|
118 |
Very Important. Some of attributes are available only in the premium and developer versions of the plugin.
|
119 |
|
120 |
-
width: Values allowed, number or percentage. Defines the map's width
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
-
|
123 |
|
124 |
-
|
125 |
|
126 |
-
|
127 |
|
128 |
-
|
129 |
|
130 |
-
|
131 |
|
132 |
-
|
133 |
|
134 |
-
|
135 |
|
136 |
-
|
137 |
|
138 |
-
|
139 |
|
140 |
-
|
141 |
|
142 |
-
|
143 |
|
144 |
-
|
145 |
|
146 |
-
|
147 |
|
148 |
-
|
149 |
|
150 |
-
streetviewcontrol: Values allowed, 0 or 1. Displays or hide the street-view control in the Google Map
|
151 |
|
152 |
-
|
153 |
|
154 |
-
|
155 |
|
156 |
-
|
157 |
|
158 |
-
|
159 |
|
160 |
-
|
161 |
|
162 |
-
|
163 |
|
164 |
-
|
165 |
|
166 |
-
|
167 |
|
168 |
-
|
169 |
|
170 |
-
|
171 |
|
172 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
|
174 |
Note 5: The geolocation information is stored in image's metadata from mobiles or cameras with GPS devices.
|
175 |
|
@@ -177,13 +243,25 @@ Note 6: Some plugins interfere with the shortcodes replacements, and provokes th
|
|
177 |
|
178 |
Passing the parameter print=1, displays the map at beginning of page/post content.
|
179 |
|
180 |
-
Note 7: To display in the Google Map all points in posts with a specific taxonomy assigned, or multiple taxonomies, should be used the "taxonomy" attribute in the shortcode, with the list of all taxonomies separated by the comma symbol, for example: taxonomy="taxonomy1,taxonomy2", and a new attribute for each taxonomy with the values corresponding. For example if you want select the points that belong to the posts with the values: "value1" for "taxonomy1", the shortcode would be:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
-
|
183 |
|
184 |
-
|
185 |
|
186 |
-
|
187 |
|
188 |
If you want more information about this plugin or another one don't doubt to visit my website:
|
189 |
|
@@ -282,7 +360,8 @@ Note: The languages packages are generated dynamically. If detects any errors in
|
|
282 |
= Q: Why the Google Map shortcode is not inserted on page content? =
|
283 |
|
284 |
A: There are some content editors, available as WordPress plugins, that provoke some compatibility issues with WordPress, in this case you should type the shortcode manually:
|
285 |
-
|
|
|
286 |
|
287 |
= Q: How many Google Maps I can insert into a post? =
|
288 |
|
@@ -292,13 +371,17 @@ A: In the free version of plugin only one map with only one point associated in
|
|
292 |
|
293 |
A: Load the template in which you want to place the map in the text editor of your choice and place the following code in the position where you want to display the Google maps:
|
294 |
|
295 |
-
|
296 |
|
297 |
= Q: Is possible to load all points that belong to the posts with a tag assigned in a same Google Map? =
|
298 |
|
299 |
-
A: To display all points that belong to the posts with a specific tag assigned, for example the tag name "mytag", use the shortcode's attribute "tag", as follows:
|
|
|
|
|
|
|
|
|
300 |
|
301 |
-
|
302 |
|
303 |
= Q: How to know the ID of a category? =
|
304 |
|
@@ -308,31 +391,59 @@ Access to the categories through the menu option: "Posts/Categories". After acce
|
|
308 |
|
309 |
= Q: Is possible to load all points in a category in a same Google Map? =
|
310 |
|
311 |
-
A: To display all points that belong to a specific category, it is required to insert the following shortcode
|
|
|
|
|
|
|
|
|
312 |
|
313 |
-
|
314 |
|
315 |
= Q: How to exclude the points in a category? =
|
316 |
|
317 |
-
A: To exclude the points that belong to a specific category, or various categories, inserts the attribute excludecat in the shortcode
|
|
|
|
|
|
|
|
|
318 |
|
319 |
= Q: How to exclude the points in a post? =
|
320 |
|
321 |
-
A: To exclude the points that belong to a post, or various posts, inserts the attribute excludepos in the shortcode
|
|
|
|
|
|
|
|
|
322 |
|
323 |
= Q: How to exclude the points in posts with tag? =
|
324 |
|
325 |
-
A: To exclude the points that belong to the post with a specific tag, or various tags, inserts the attribute excludetag in the shortcode
|
|
|
|
|
|
|
|
|
326 |
|
327 |
= Q: Is possible to load all points in more than one category in a same Google Map? =
|
328 |
|
329 |
-
A: To display all points that belong to multiple categories, it is required separate the categories IDs with comma ","
|
|
|
|
|
|
|
|
|
330 |
|
331 |
-
|
332 |
|
333 |
= Q: Is possible to load all points in the website in a same Google Map? =
|
334 |
|
335 |
-
A: To display all points in the website use -1 as the category ID:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
= Q: If I link geolocation information to a post but do not insert a Google map in it, will the geolocation information be available? =
|
338 |
|
@@ -361,7 +472,9 @@ A: To use your own icons, you only should to upload the icons images to the foll
|
|
361 |
|
362 |
= Q: How can I use particular settings in a map? =
|
363 |
|
364 |
-
A: You may use a particular settings in a map, defining the options directly as attributes of shortcode:
|
|
|
|
|
365 |
|
366 |
If you are inserting the map in a particular page/post, you may check the field named "Use particular settings for this map", and then entering the particular values in the settings options.
|
367 |
|
@@ -376,7 +489,13 @@ A: Go to the settings page of plugin and check the box to display the "Get direc
|
|
376 |
|
377 |
= Q: Is possible to include multiple taxonomies in the maps' legends? =
|
378 |
|
379 |
-
A: In the shortcode can be defined the attribute "legend" for selecting the taxonomy to use in the legend of map:
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
|
381 |
= Q: How to open the point on Google Maps? =
|
382 |
|
@@ -417,7 +536,7 @@ A: Yes, it's possible to draw a route including points belonging to different po
|
|
417 |
|
418 |
A: Use the "defaultpost" attribute, in the map's shortcode, as follows:
|
419 |
|
420 |
-
[codepeople-post-map defaultpost="231"]
|
421 |
|
422 |
The number is the post's ID
|
423 |
|
@@ -429,7 +548,7 @@ The only way to define the map's height in percentages, is if the element that c
|
|
429 |
|
430 |
= Q: Can be inserted a link in the infowindow? =
|
431 |
|
432 |
-
A: It is possible insert links, and any other HTML element in the infowindow. You only should insert HTML tags directly in the point description. For example, to insert a link to our web page: <a href
|
433 |
|
434 |
= Q: After entering an address, and to press the verify button, the address is modified, and the pin is displayed in a different location of the map =
|
435 |
|
@@ -453,7 +572,7 @@ A: Yes, that is possible but only from the WordPress App, available for iPhone,
|
|
453 |
|
454 |
A: To insert a map in the results page with the points defined in the resulting posts and pages, you simply should identify the template file, in the active theme on your WordPress, that is used in the search page (usually it is called search.php), and inserts the map's shortcode directly in the file's content:
|
455 |
|
456 |
-
|
457 |
|
458 |
= Q: Can be searched in the website by the points information? =
|
459 |
|
@@ -475,14 +594,14 @@ A: The design of infowindows is defined through styles in the cpm-styles.css fil
|
|
475 |
|
476 |
A: Yes of course, if you want hide the local listings from Google Maps API, open the settings page of plugin, select the "Allow stylize the maps" attribute, and finally, paste the following code in the textarea:
|
477 |
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
|
487 |
= Q: Can be highlighted the post or page related with the point on map? =
|
488 |
|
@@ -517,6 +636,48 @@ Now the most important part create the shape's area. To create the shape's area
|
|
517 |
|
518 |
== Changelog ==
|
519 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
520 |
= 1.0.24 =
|
521 |
|
522 |
* Fixes an issue processing the maps settings.
|
3 |
Donate link: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
|
4 |
Tags:google maps,maps,marker,gmap,places,shortcode,map,categories,post map,point,location,address,images,geocoder,google,shape,list,grouping,cluster,infowindow,route,pin,streetview,post,posts,pages,widget,image,exif tag,plugin,sidebar,stylize,admin
|
5 |
Requires at least: 3.0.5
|
6 |
+
Tested up to: 5.4
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
15 |
Google Map features:
|
16 |
|
17 |
+
► Insert a Google map in the best position within your blog
|
18 |
+
► Deal with large volumes of dots or markers on the Google Maps
|
19 |
+
► Uses Google Maps to discover additional entries related to the post
|
20 |
+
► The location can be defined by physical address and point coordinates
|
21 |
+
► Map markers customization
|
22 |
+
► Allows to embed Google Maps in multiple languages
|
23 |
+
► Allows several Google Maps controls and configuration options
|
24 |
|
25 |
**Google Maps CP** allows to insert a Google Maps in a post or in any of the WordPress templates that display multiple posts.
|
26 |
|
84 |
|
85 |
**Demo of the Developer Version of Google Maps CP Plugin**
|
86 |
|
87 |
+
[https://demos.dwbooster.com/cp-google-maps/wp-login.php](https://demos.dwbooster.com/cp-google-maps/wp-login.php "Click to access the administration area demo")
|
88 |
|
89 |
+
[https://demos.dwbooster.com/cp-google-maps/](https://demos.dwbooster.com/cp-google-maps/ "Click to access the Public Page")
|
90 |
|
91 |
|
92 |
+
Note 1: To display all points that belong to a specific category in the same Google Map, it is required to insert the following shortcode `[codepeople-post-map cat="3"]`. The number 3 represent the category ID, replace this number by the corresponding category's ID. To insert the code directly in a template, the snippet of code would be:
|
93 |
|
94 |
+
<?php echo do_shortcode('[codepeople-post-map cat="3"]'); ?>
|
95 |
|
96 |
+
Note 2: To display all points that belong to more than one category in a same Google Map, separate the categories IDs with the comma symbol `[codepeople-post-map cat="3,5"]`. The numbers 3 y 5 are the categories IDs, replace these numbers by the corresponding categories IDs. To insert the code directly in a template, the snippet of code would be:
|
97 |
|
98 |
+
<?php echo do_shortcode('[codepeople-post-map cat="3,5"]'); ?>
|
99 |
|
100 |
+
Note 3: To display all points defined in the website in a same Google Map, use -1 as the category's ID:
|
101 |
|
102 |
+
[codepeople-post-map cat="-1"]
|
103 |
|
104 |
+
or
|
105 |
|
106 |
+
<?php echo do_shortcode('[codepeople-post-map cat="-1"]'); ?> for template.
|
107 |
|
108 |
+
Note 4: To display all points that belong to the posts with a specific tag assigned in a same Google Map, for example the tag name "mytag", use the shortcode's attribute "tag", as follows: `[codepeople-post-map tag="mytag"]`. To insert the code directly in a template, the snippet of code would be:
|
109 |
+
|
110 |
+
<?php echo do_shortcode('[codepeople-post-map tag="mytag"]'); ?>
|
111 |
+
|
112 |
+
Note 5: To display the points belonging to specific posts or pages in a same Google Map, enter their ids separated by comma through the "id" attribute in the shortcode as follows: `[codepeople-post-map id="123"]`. To insert the code directly in a template, the snippet of code would be:
|
113 |
+
|
114 |
+
<?php echo do_shortcode('[codepeople-post-map id="123"]'); ?>
|
115 |
|
116 |
The "id" attribute has preference over the rest of the filtering attributes.
|
117 |
|
118 |
If you prefer configure your map directly from the shortcode, then you must enter an attribute for each map feature to specify. For example:
|
119 |
|
120 |
+
[codepeople-post-map width="500" height="500"]
|
121 |
|
122 |
The complete list of allowed attributes are:
|
123 |
|
124 |
Very Important. Some of attributes are available only in the premium and developer versions of the plugin.
|
125 |
|
126 |
+
width: Values allowed, number or percentage. Defines the map's width:
|
127 |
+
|
128 |
+
[codepeople-post-map width="300"]
|
129 |
+
|
130 |
+
or
|
131 |
+
|
132 |
+
[codepeople-post-map width="100%"]
|
133 |
+
|
134 |
+
height: Values allowed, number or percentage (In the web's development, the height in percentage is effective only if the parent element has a height defined). Defines the map's height:
|
135 |
+
|
136 |
+
[codepeople-post-map height="300"]
|
137 |
+
|
138 |
+
align: Values allowed, left, right, center. Aligns the map's container to the left, right or center:
|
139 |
+
|
140 |
+
[codepeople-post-map align="center"]
|
141 |
+
|
142 |
+
dynamic_zoom: Values allowed, 1 or 0. Adjust the zoom of map dynamically to display all points on map at the same time:
|
143 |
+
|
144 |
+
[codepeople-post-map dynamic_zoom="1"]
|
145 |
+
|
146 |
+
zoom: Accepts a number to define the map's zoom. To apply a zoom to the map, the dynamic zoom should be 0:
|
147 |
+
|
148 |
+
[codepeople-post-map dynamic_zoom="0" zoom="5"]
|
149 |
+
|
150 |
+
type: Values allowed, SATELLITE, ROADMAP, TERRAIN and HYBRID. Select the type of map to display:
|
151 |
+
|
152 |
+
[codepeople-post-map type="ROADMAP"]
|
153 |
+
|
154 |
+
language: Values allowed, en for English, es for Spanish, pt for Portuguese, etc. (for the complete list, check the Google Maps documentation). Select a language to display on map:
|
155 |
+
|
156 |
+
[codepeople-post-map language="en"]
|
157 |
+
|
158 |
+
route: Values allowed, 0 or 1. Draw or not the route between points in a same post or page:
|
159 |
+
|
160 |
+
[codepeople-post-map route="1"]
|
161 |
|
162 |
+
mode: Values allowed, DRIVING, BICYCLING and WALKING. Define the type of route:
|
163 |
|
164 |
+
[codepeople-post-map route="1" mode="DRIVING"]
|
165 |
|
166 |
+
show_window: Values allowed, 0 or 1. To enable or disable the infowindows:
|
167 |
|
168 |
+
[codepeople-post-map show_window="1" ]
|
169 |
|
170 |
+
show_default: Values allowed, 0 or 1. Display or not an infowindow expanded by default:
|
171 |
|
172 |
+
[codepeople-post-map show_window="1" show_default="1"]
|
173 |
|
174 |
+
markerclusterer: Values allowed, 0 or 1. Displays a cluster with the number of points in an area:
|
175 |
|
176 |
+
[codepeople-post-map markerclusterer="1"]
|
177 |
|
178 |
+
mousewheel: Values allowed, 0 or 1. Enables the map's zoom with the mouse wheel:
|
179 |
|
180 |
+
[codepeople-post-map mousewheel="1"]
|
181 |
|
182 |
+
zoompancontrol: Values allowed, 0 or 1. Displays or hide the zoom controls in the Google Maps:
|
183 |
|
184 |
+
[codepeople-post-map zoompancontrol="1"]
|
185 |
|
186 |
+
typecontrol: Values allowed, 0 or 1. Displays or hide the type control in the Google Map:
|
187 |
|
188 |
+
[codepeople-post-map typecontrol="1"]
|
189 |
|
190 |
+
streetviewcontrol: Values allowed, 0 or 1. Displays or hide the street-view control in the Google Map:
|
191 |
|
192 |
+
[codepeople-post-map streetviewcontrol="1"]
|
193 |
|
194 |
+
defaultpost: Defines the post ID, for centring the map, and display by default the infowindow corresponding to the first point associated to this post:
|
195 |
|
196 |
+
[codepeople-post-map defaultpost="396"]
|
197 |
|
198 |
+
center: To define the center of the map, but if the infowindows are configured to be opened by default, the map will be centered in the point with the infowindow opened:
|
199 |
|
200 |
+
[codepeople-post-map center="40.7127837,-74.00594130000002"]
|
201 |
|
202 |
+
legend: Accepts a taxonomy name as value. Some common taxonomies names are: category and post_tag, for the categories and tags, respectively. Displays the legend with the list of elements that belong to the taxonomy and are assigned to the posts associated with the points:
|
203 |
|
204 |
+
[codepeople-post-map legend="category"]
|
205 |
|
206 |
+
legend_title: Text to be used as legend title:
|
207 |
|
208 |
+
[codepeople-post-map legend="category" legend_title="Select the categories to display on map"]
|
209 |
|
210 |
+
legend_class: Class name to be assigned to the legend. The legend design may be modified through CSS styles. Creates a class name, with the styles definition, and associates the new class name to the legend through the legend_class attribute:
|
211 |
|
212 |
+
[codepeople-post-map legend="category" legend_class="my-legend-class"]
|
213 |
+
|
214 |
+
tag: Tags slugs separated by ",". Displays on map the points whose posts have assigned the tags:
|
215 |
+
|
216 |
+
[codepeople-post-map tag="tag1,tag2,tag3"]
|
217 |
+
|
218 |
+
cat: Categories IDs separated by "," or -1. Displays on map the points whose posts belong to the categories. The special value -1, allows display on map all points defined in the website:
|
219 |
+
|
220 |
+
[codepeople-post-map cat="2,4,56"]
|
221 |
+
|
222 |
+
[codepeople-post-map cat="-1"]
|
223 |
+
|
224 |
+
excludecat: Categories IDs to exclude, separated by ",". From points to be displayed on map, the plugin excludes the points whose posts belong to the categories to exclude:
|
225 |
+
|
226 |
+
[codepeople-post-map tag="tag1,tag2" excludecat="4"]
|
227 |
+
|
228 |
+
excludepost: Posts IDs to exclude separated by ",":
|
229 |
+
|
230 |
+
[codepeople-post-map cat="-1" excludepost="235,260"]
|
231 |
+
|
232 |
+
excludetag: Tags IDs to exclude separated by ",":
|
233 |
+
|
234 |
+
[codepeople-post-map excludetag="2,13"]
|
235 |
+
|
236 |
+
taxonomy: The taxonomy is a special attribute that should be combined with other attributes, depending of taxonomies to use for points filtering. Suppose the website includes two new taxonomies: taxonomyA and taxonomyB, and the map should display all points that belong to the posts with the value T1 for taxonomyA, and T3,T4 for taxonomyB, the shortcode would be:
|
237 |
+
|
238 |
+
[codepeople-post-map taxonomy="taxonomyA,taxonomyB" taxonomyA="T1" taxonomyB="t2,t3"]
|
239 |
|
240 |
Note 5: The geolocation information is stored in image's metadata from mobiles or cameras with GPS devices.
|
241 |
|
243 |
|
244 |
Passing the parameter print=1, displays the map at beginning of page/post content.
|
245 |
|
246 |
+
Note 7: To display in the Google Map all points in posts with a specific taxonomy assigned, or multiple taxonomies, should be used the "taxonomy" attribute in the shortcode, with the list of all taxonomies separated by the comma symbol, for example: taxonomy="taxonomy1,taxonomy2", and a new attribute for each taxonomy with the values corresponding. For example if you want select the points that belong to the posts with the values: "value1" for "taxonomy1", the shortcode would be:
|
247 |
+
|
248 |
+
[codepeople-post-map taxonomy="taxonomy1" taxonomy1="value1"]
|
249 |
+
|
250 |
+
for multiple taxonomies:
|
251 |
+
|
252 |
+
[codepeople-post-map taxonomy="taxonomy1,taxonomy2" taxonomy1="value1" taxonomy2="value2,value3"].
|
253 |
+
|
254 |
+
post_type: In combination with other attributes like: cat, tag or taxonomy, it is possible to load on map only the points that belong to the post types in the list:
|
255 |
+
|
256 |
+
[codepeople-post-map cat="-1" post_type="post,page"]
|
257 |
+
|
258 |
+
excludepost_type: In combination with other attributes like: cat, tag or taxonomy, it is possible to load on map only the points that do not belong to the post types in the list:
|
259 |
|
260 |
+
[codepeople-post-map cat="-1" excludepost_type="post"]
|
261 |
|
262 |
+
kml: Absolute URL (http://...) to a KML file with the Keyhole Markup Language:
|
263 |
|
264 |
+
[codepeople-post-map kml="http://www.yourwebsite.com/your-file.kml"]
|
265 |
|
266 |
If you want more information about this plugin or another one don't doubt to visit my website:
|
267 |
|
360 |
= Q: Why the Google Map shortcode is not inserted on page content? =
|
361 |
|
362 |
A: There are some content editors, available as WordPress plugins, that provoke some compatibility issues with WordPress, in this case you should type the shortcode manually:
|
363 |
+
|
364 |
+
[codepeople-post-map]
|
365 |
|
366 |
= Q: How many Google Maps I can insert into a post? =
|
367 |
|
371 |
|
372 |
A: Load the template in which you want to place the map in the text editor of your choice and place the following code in the position where you want to display the Google maps:
|
373 |
|
374 |
+
<?php echo do_shortcode ('[codepeople-post-map]'); ?>
|
375 |
|
376 |
= Q: Is possible to load all points that belong to the posts with a tag assigned in a same Google Map? =
|
377 |
|
378 |
+
A: To display all points that belong to the posts with a specific tag assigned, for example the tag name "mytag", use the shortcode's attribute "tag", as follows:
|
379 |
+
|
380 |
+
[codepeople-post-map tag="mytag"]
|
381 |
+
|
382 |
+
To insert the code directly in a template, the snippet of code would be:
|
383 |
|
384 |
+
<?php echo do_shortcode('[codepeople-post-map tag="mytag"]'); ?>
|
385 |
|
386 |
= Q: How to know the ID of a category? =
|
387 |
|
391 |
|
392 |
= Q: Is possible to load all points in a category in a same Google Map? =
|
393 |
|
394 |
+
A: To display all points that belong to a specific category, it is required to insert the following shortcode
|
395 |
+
|
396 |
+
[codepeople-post-map cat="3"]
|
397 |
+
|
398 |
+
The number 3 represent the category ID, replace this number by the corresponding category's ID. To insert the code directly in a template, the snippet of code would be:
|
399 |
|
400 |
+
<?php echo do_shortcode ('[codepeople-post-map cat="3"]'); ?>
|
401 |
|
402 |
= Q: How to exclude the points in a category? =
|
403 |
|
404 |
+
A: To exclude the points that belong to a specific category, or various categories, inserts the attribute excludecat in the shortcode:
|
405 |
+
|
406 |
+
[codepeople-post-map excludecat="3,4"]
|
407 |
+
|
408 |
+
The number 3 and 4 represent the categories IDs.
|
409 |
|
410 |
= Q: How to exclude the points in a post? =
|
411 |
|
412 |
+
A: To exclude the points that belong to a post, or various posts, inserts the attribute excludepos in the shortcode:
|
413 |
+
|
414 |
+
[codepeople-post-map excludepost="3,4"]
|
415 |
+
|
416 |
+
The number 3 and 4 represent the posts IDs.
|
417 |
|
418 |
= Q: How to exclude the points in posts with tag? =
|
419 |
|
420 |
+
A: To exclude the points that belong to the post with a specific tag, or various tags, inserts the attribute excludetag in the shortcode:
|
421 |
+
|
422 |
+
[codepeople-post-map excludetag="3,4"]
|
423 |
+
|
424 |
+
The number 3 and 4 represent the tags IDs.
|
425 |
|
426 |
= Q: Is possible to load all points in more than one category in a same Google Map? =
|
427 |
|
428 |
+
A: To display all points that belong to multiple categories, it is required separate the categories IDs with comma ","
|
429 |
+
|
430 |
+
[codepeople-post-map cat="3,5"]
|
431 |
+
|
432 |
+
The numbers 3 and 5 are the categories IDs, replace these numbers with the corresponding categories IDs. To insert the code directly in a template, the snippet of code would be:
|
433 |
|
434 |
+
<?php echo do_shortcode ('[codepeople-post-map cat="3,5"]'); ?>
|
435 |
|
436 |
= Q: Is possible to load all points in the website in a same Google Map? =
|
437 |
|
438 |
+
A: To display all points in the website use -1 as the category ID:
|
439 |
+
|
440 |
+
[codepeople-post-map cat="-1"]
|
441 |
+
|
442 |
+
or
|
443 |
+
|
444 |
+
<?php echo do_shortcode ('[codepeople-post-map cat="-1"]'); ?>
|
445 |
+
|
446 |
+
for template.
|
447 |
|
448 |
= Q: If I link geolocation information to a post but do not insert a Google map in it, will the geolocation information be available? =
|
449 |
|
472 |
|
473 |
= Q: How can I use particular settings in a map? =
|
474 |
|
475 |
+
A: You may use a particular settings in a map, defining the options directly as attributes of shortcode:
|
476 |
+
|
477 |
+
[codepeople-post-map width="100%"]
|
478 |
|
479 |
If you are inserting the map in a particular page/post, you may check the field named "Use particular settings for this map", and then entering the particular values in the settings options.
|
480 |
|
489 |
|
490 |
= Q: Is possible to include multiple taxonomies in the maps' legends? =
|
491 |
|
492 |
+
A: In the shortcode can be defined the attribute "legend" for selecting the taxonomy to use in the legend of map:
|
493 |
+
|
494 |
+
[codepeople-post-map legend="category"]
|
495 |
+
|
496 |
+
but from the version 5.0.6 of the plugin it is possible to define in the legend multiple taxonomies separated by comma, to include all of them in the map's legend:
|
497 |
+
|
498 |
+
[codepeople-post-map legend="category,post_tag"]
|
499 |
|
500 |
= Q: How to open the point on Google Maps? =
|
501 |
|
536 |
|
537 |
A: Use the "defaultpost" attribute, in the map's shortcode, as follows:
|
538 |
|
539 |
+
[codepeople-post-map defaultpost="231"]
|
540 |
|
541 |
The number is the post's ID
|
542 |
|
548 |
|
549 |
= Q: Can be inserted a link in the infowindow? =
|
550 |
|
551 |
+
A: It is possible insert links, and any other HTML element in the infowindow. You only should insert HTML tags directly in the point description. For example, to insert a link to our web page: <a href="http://wordpress.dwbooster.com">Click Here</a>
|
552 |
|
553 |
= Q: After entering an address, and to press the verify button, the address is modified, and the pin is displayed in a different location of the map =
|
554 |
|
572 |
|
573 |
A: To insert a map in the results page with the points defined in the resulting posts and pages, you simply should identify the template file, in the active theme on your WordPress, that is used in the search page (usually it is called search.php), and inserts the map's shortcode directly in the file's content:
|
574 |
|
575 |
+
<?php echo do_shortcode( '[codepeople-post-map]' ); ?>
|
576 |
|
577 |
= Q: Can be searched in the website by the points information? =
|
578 |
|
594 |
|
595 |
A: Yes of course, if you want hide the local listings from Google Maps API, open the settings page of plugin, select the "Allow stylize the maps" attribute, and finally, paste the following code in the textarea:
|
596 |
|
597 |
+
[
|
598 |
+
{
|
599 |
+
featureType: "poi",
|
600 |
+
stylers: [
|
601 |
+
{ visibility: "off" }
|
602 |
+
]
|
603 |
+
}
|
604 |
+
]
|
605 |
|
606 |
= Q: Can be highlighted the post or page related with the point on map? =
|
607 |
|
636 |
|
637 |
== Changelog ==
|
638 |
|
639 |
+
= 1.0.32 =
|
640 |
+
|
641 |
+
* Modifies the Mouse Wheel behavior, to make it less intrusive.
|
642 |
+
|
643 |
+
= 1.0.31 =
|
644 |
+
|
645 |
+
* Fixes an encoding issue in some ampersand symbols on generated URLs.
|
646 |
+
|
647 |
+
= 1.0.30 =
|
648 |
+
|
649 |
+
* Assigns a class name to the points' thumbnails, to allow exclude them from the lazy loading of third party plugin that break the javascript blocks of code.
|
650 |
+
|
651 |
+
= 1.0.29 =
|
652 |
+
|
653 |
+
* Improves the detection of misconfigured Google Maps Projects.
|
654 |
+
|
655 |
+
= 1.0.28 =
|
656 |
+
|
657 |
+
* Includes some modifications in the infowindows styles.
|
658 |
+
* Fixes an issue to determine the featured images associated to the posts.
|
659 |
+
* Allows generating points from images when teh posts are published by email (Advanced and Developer versions of the plugin)
|
660 |
+
|
661 |
+
= 1.0.27 =
|
662 |
+
|
663 |
+
* Fixes an issue with the "cpm-complete-structured-query" filter.
|
664 |
+
|
665 |
+
= 1.0.26 =
|
666 |
+
|
667 |
+
* Includes new filters to allow the integration with third party plugins, or information stored in custom fields:
|
668 |
+
|
669 |
+
cpm-complete-structured-query
|
670 |
+
cpm-post-latitude
|
671 |
+
cpm-post-longitude
|
672 |
+
cpm-post-address
|
673 |
+
cpm-point-image
|
674 |
+
cpm-point-description
|
675 |
+
cpm-point-address
|
676 |
+
|
677 |
+
= 1.0.25 =
|
678 |
+
|
679 |
+
* Modifies the access to the demos.
|
680 |
+
|
681 |
= 1.0.24 =
|
682 |
|
683 |
* Fixes an issue processing the maps settings.
|
styles/cpm-styles.css
CHANGED
@@ -9,7 +9,7 @@ body .content .cpm-map img, .cpm-map img{ max-width: none !important; height: au
|
|
9 |
.cpm-map *{box-sizing:content-box;-moz-box-sizing:content-box;}
|
10 |
.cpm-mapicon { width:20px; height:34px; cursor:pointer;background:url(../images/icons/marker.png) no-repeat 0 0; }
|
11 |
.cpm-infowindow {margin:0; padding:0px; min-height:80px; font-size:11px; clear:both;}
|
12 |
-
.cpm-infowindow .cpm-content {
|
13 |
.cpm-infowindow .cpm-content .title {font-size:12px; line-height: 18px; font-weight:bold; color:black;}
|
14 |
.cpm-infowindow .cpm-content .address {font-weight:bold; font-size:9px;}
|
15 |
.cpm-infowindow .cpm-content .description {font-size:10px;}
|
9 |
.cpm-map *{box-sizing:content-box;-moz-box-sizing:content-box;}
|
10 |
.cpm-mapicon { width:20px; height:34px; cursor:pointer;background:url(../images/icons/marker.png) no-repeat 0 0; }
|
11 |
.cpm-infowindow {margin:0; padding:0px; min-height:80px; font-size:11px; clear:both;}
|
12 |
+
.cpm-infowindow .cpm-content {width:100%; color:black; padding:10px; box-sizing: border-box;}
|
13 |
.cpm-infowindow .cpm-content .title {font-size:12px; line-height: 18px; font-weight:bold; color:black;}
|
14 |
.cpm-infowindow .cpm-content .address {font-weight:bold; font-size:9px;}
|
15 |
.cpm-infowindow .cpm-content .description {font-size:10px;}
|