Version Description
- Modifies the Google Maps loading process to avoid conflicts with third-party themes.
Download this release
Release Info
Developer | codepeople |
Plugin | Google Maps CP |
Version | 1.0.43 |
Comparing to | |
See all releases |
Code changes from version 1.0.41 to 1.0.43
- codepeople-post-map.php +1 -1
- include/functions.php +49 -34
- js/cpm.admin.js +14 -1
- js/gutenberg.js +3 -1
- languages/codepeople-post-map-es_ES.mo +0 -0
- languages/codepeople-post-map-es_ES.po +138 -138
- languages/codepeople-post-map-fr_FR.mo +0 -0
- languages/codepeople-post-map-fr_FR.po +138 -138
- readme.txt +9 -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.43
|
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
|
include/functions.php
CHANGED
@@ -311,7 +311,7 @@ class CPM {
|
|
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('
|
315 |
</p>
|
316 |
<?php
|
317 |
if(!$single)
|
@@ -329,8 +329,10 @@ class CPM {
|
|
329 |
?>
|
330 |
<table class="form-table">
|
331 |
<?php
|
|
|
332 |
if( !$single )
|
333 |
{
|
|
|
334 |
?>
|
335 |
<tr valign="top">
|
336 |
<th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
|
@@ -355,27 +357,39 @@ class CPM {
|
|
355 |
if($single){
|
356 |
?>
|
357 |
<tr valign="top">
|
358 |
-
<th scope="row"
|
359 |
-
|
360 |
-
|
361 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
</tr>
|
363 |
<?php
|
364 |
}
|
365 |
?>
|
366 |
-
<tr valign="top">
|
367 |
<th scope="row"><label for="cpm_map_zoom"><?php _e('Map zoom:', 'codepeople-post-map')?></label></th>
|
368 |
<td>
|
369 |
<input type="text" size="4" name="cpm_map[zoom]" id="cpm_map_zoom" value="<?php esc_attr_e((isset($options['zoom'])) ? $options['zoom'] : '');?>" />
|
370 |
</td>
|
371 |
</tr>
|
372 |
-
<tr valign="top">
|
373 |
<th scope="row"><label for="cpm_map_dynamic_zoom"><?php _e('Dynamic zoom:', 'codepeople-post-map')?></label></th>
|
374 |
<td>
|
375 |
<input type="checkbox" name="cpm_map[dynamic_zoom]" id="cpm_map_dynamic_zoom" <?php echo ( ( isset($options['dynamic_zoom'] ) && $options['dynamic_zoom'] ) ? 'CHECKED' : '' ); ?> /> <?php _e( 'Allows to adjust the zoom dynamically to display all points on map', 'codepeople-post-map' ); ?>
|
376 |
</td>
|
377 |
</tr>
|
378 |
-
<tr valign="top">
|
379 |
<th scope="row"><label for="cpm_map_width"><?php _e('Map width:', 'codepeople-post-map'); ?></label></th>
|
380 |
<td>
|
381 |
<input type="text" size="4" name="cpm_map[width]" id="cpm_map_width" value="<?php esc_attr_e((isset($options['width'])) ? $options['width'] : '');?>" />
|
@@ -387,19 +401,19 @@ class CPM {
|
|
387 |
</div>
|
388 |
</td>
|
389 |
</tr>
|
390 |
-
<tr valign="top">
|
391 |
<th scope="row"><label for="cpm_map_height"><?php _e('Map height:', 'codepeople-post-map'); ?></label></th>
|
392 |
<td>
|
393 |
<input type="text" size="4" name="cpm_map[height]" id="cpm_map_height" value="<?php esc_attr_e((isset($options['height'])) ? $options['height'] : '');?>" />
|
394 |
</td>
|
395 |
</tr>
|
396 |
-
<tr valign="top">
|
397 |
<th scope="row"><label for="cpm_map_margin"><?php _e('Map margin:', 'codepeople-post-map'); ?></label></th>
|
398 |
<td>
|
399 |
<input type="text" size="4" name="cpm_map[margin]" id="cpm_map_margin" value="<?php esc_attr_e((isset($options['height'])) ? $options['margin'] : '');?>" />
|
400 |
</td>
|
401 |
</tr>
|
402 |
-
<tr valign="top">
|
403 |
<th scope="row"><label for="cpm_map_align"><?php _e('Map align:', 'codepeople-post-map'); ?></label></th>
|
404 |
<td>
|
405 |
<select id="cpm_map_align" name="cpm_map[align]">
|
@@ -409,7 +423,7 @@ class CPM {
|
|
409 |
</select>
|
410 |
</td>
|
411 |
</tr>
|
412 |
-
<tr valign="top">
|
413 |
<th scope="row"><label for="cpm_map_type"><?php _e('Map type:', 'codepeople-post-map'); ?></label></th>
|
414 |
<td>
|
415 |
<select name="cpm_map[type]" id="cpm_map_type" >
|
@@ -420,17 +434,17 @@ class CPM {
|
|
420 |
</select>
|
421 |
</td>
|
422 |
</tr>
|
423 |
-
<tr valign="top">
|
424 |
<th scope="row"><label for="cpm_map_language"><?php _e('Map language:', 'codepeople-post-map');?></th>
|
425 |
<td><?php $this->_deploy_languages($options); ?></td>
|
426 |
</tr>
|
427 |
-
<tr valign="top">
|
428 |
-
<th scope="row"><label for="
|
429 |
<td>
|
430 |
<input type="checkbox" name="cpm_map[drag_map]" id="cpm_drag_map" <?php echo ((!isset( $options['drag_map'] ) || $options['drag_map']) ? 'CHECKED' : '');?> />
|
431 |
</td>
|
432 |
</tr>
|
433 |
-
<tr valign="top">
|
434 |
<th scope="row"><label for="cpm_map_display"><?php _e('Display map in post/page:', 'codepeople-post-map'); ?></label></th>
|
435 |
<td>
|
436 |
<select name="cpm_map[display]" id="cpm_map_display" >
|
@@ -440,14 +454,14 @@ class CPM {
|
|
440 |
</td>
|
441 |
</tr>
|
442 |
|
443 |
-
<tr valign="top">
|
444 |
<th scope="row"><label for="cpm_show_window"><?php _e('Show info bubbles:', 'codepeople-post-map');?></th>
|
445 |
<td>
|
446 |
<input type="checkbox" id="cpm_show_window" name="cpm_map[show_window]" value="true" <?php echo ((isset($options['show_window']) && $options['show_window']) ? 'checked' : '');?>><span> <?php _e( 'Display the bubbles associated to the points', 'codepeople-post-map');?></span>
|
447 |
</td>
|
448 |
</tr>
|
449 |
|
450 |
-
<tr valign="top">
|
451 |
<th scope="row"><label for="cpm_show_default"><?php _e('Display a bubble by default:', 'codepeople-post-map');?></th>
|
452 |
<td>
|
453 |
<input type="checkbox" id="cpm_show_default" name="cpm_map[show_default]" value="true" <?php echo ((isset($options['show_default']) && $options['show_default']) ? 'checked' : '');?>><span> <?php _e( 'Display a bubble opened by default', 'codepeople-post-map' ); ?></span>
|
@@ -455,7 +469,8 @@ class CPM {
|
|
455 |
</tr>
|
456 |
|
457 |
<?php
|
458 |
-
if( !$single )
|
|
|
459 |
?>
|
460 |
<tr valign="top">
|
461 |
<th scope="row"><label for="cpm_tooltip"><?php _e('Display as marker tooltip:', 'codepeople-post-map');?></th>
|
@@ -531,7 +546,7 @@ class CPM {
|
|
531 |
<?php
|
532 |
}
|
533 |
?>
|
534 |
-
<tr valign="top">
|
535 |
<th scope="row"><label for="cpm_search_box" style="color:#CCCCCC;"><?php _e('Display a search box for places:', 'codepeople-post-map');?></th>
|
536 |
<td>
|
537 |
<input type="checkbox" disabled><span> <?php _e( "Includes an input box on the map for searching places", 'codepeople-post-map' ); ?></span><br />
|
@@ -539,7 +554,7 @@ class CPM {
|
|
539 |
</td>
|
540 |
</tr>
|
541 |
|
542 |
-
<tr valign="top">
|
543 |
<th scope="row"><label for="cpm_map_route" style="color:#CCCCCC;"><?php _e('Display route:', 'codepeople-post-map');?></th>
|
544 |
<td>
|
545 |
<input type="checkbox" DISABLED><span> <?php _e( 'Draws the route between the points in the same post', 'codepeople-post-map'); ?></span><br />
|
@@ -548,7 +563,7 @@ class CPM {
|
|
548 |
</td>
|
549 |
</tr>
|
550 |
|
551 |
-
<tr valign="top">
|
552 |
<th scope="row"><label for="cpm_travel_mode" style="color:#CCCCCC;"><?php _e('Travel mode:', 'codepeople-post-map');?></th>
|
553 |
<td>
|
554 |
<select disabled>
|
@@ -557,14 +572,14 @@ class CPM {
|
|
557 |
</td>
|
558 |
</tr>
|
559 |
|
560 |
-
<tr valign="top">
|
561 |
<th scope="row"><label for="cpm_map_traffic"><?php _e('Include traffic layer:', 'codepeople-post-map');?></th>
|
562 |
<td>
|
563 |
<input type="checkbox" name="cpm_map[trafficlayer]" <?php if( isset($options['trafficlayer']) && $options['trafficlayer'] ) print 'CHECKED'; ?>><span> <?php _e( 'Displays a layer over the map for traffic', 'codepeople-post-map'); ?></span>
|
564 |
</td>
|
565 |
</tr>
|
566 |
|
567 |
-
<tr valign="top">
|
568 |
<th scope="row"><label for="wpGoogleMaps_description"><?php _e('Options', 'codepeople-post-map'); ?>:</label></th>
|
569 |
<td>
|
570 |
<input type="checkbox" name="cpm_map[streetviewcontrol]" id="cpm_map_streetviewcontrol" value="true" <?php echo ((isset($options['streetviewcontrol']) && $options['streetviewcontrol']) ? 'checked' : '');?> />
|
@@ -579,17 +594,17 @@ class CPM {
|
|
579 |
<label for="cpm_map_typecontrol"> <?php _e('Enable map type controls (Map, Satellite, or Hybrid)', 'codepeople-post-map'); ?> </label><br />
|
580 |
</td>
|
581 |
</tr>
|
582 |
-
<tr valign="top">
|
583 |
<th scope="row"><label for="cpm_map_points"><?php _e('Enter the number of posts to display on the post/page map', 'codepeople-post-map'); ?>:</th>
|
584 |
<td><input type="text" name="cpm_map[points]" id="cpm_map_points" value="<?php esc_attr_e((isset($options['points'])) ? $options['points'] : '');?>" /></td>
|
585 |
</tr>
|
586 |
-
<tr>
|
587 |
<th scope="row"><label for="cpm_map_stylized" style="color:#CCCCCC;"><?php _e('Allow stylize the maps:', 'codepeople-post-map'); ?></label></th>
|
588 |
<td valign="top">
|
589 |
<input type="checkbox" DISABLED />
|
590 |
</td>
|
591 |
</tr>
|
592 |
-
<tr>
|
593 |
<th></th>
|
594 |
<td>
|
595 |
<span>
|
@@ -601,13 +616,13 @@ class CPM {
|
|
601 |
<span style="color:#FF0000;">This feature is available only in commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a></span>
|
602 |
</td>
|
603 |
</tr>
|
604 |
-
<tr>
|
605 |
<th scope="row"><label for="cpm_map_legend" style="color:#CCCCCC;"><?php _e("Display the map's legend:", 'codepeople-post-map');?></label></th>
|
606 |
<td valign="top">
|
607 |
<input type="checkbox" disabled readonly /> <span style="color:#FF0000;">This feature is available only in commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a></span>
|
608 |
</td>
|
609 |
</tr>
|
610 |
-
<tr>
|
611 |
<th scope="row"><label for="cpm_map_legend_taxonomy" style="color:#CCCCCC;"><?php _e('Select the taxonomy to display on legend:', 'codepeople-post-map'); ?></label></th>
|
612 |
<td valign="top">
|
613 |
<select disabled readonly>
|
@@ -615,13 +630,13 @@ class CPM {
|
|
615 |
</select>
|
616 |
</td>
|
617 |
</tr>
|
618 |
-
<tr>
|
619 |
<th scope="row"><label for="cpm_map_legend_title" style="color:#CCCCCC;"><?php _e('Enter a title for legend:', 'codepeople-post-map'); ?></label></th>
|
620 |
<td valign="top">
|
621 |
<input type="text" disabled readonly />
|
622 |
</td>
|
623 |
</tr>
|
624 |
-
<tr>
|
625 |
<th scope="row"><label for="cpm_map_legend_class" style="color:#CCCCCC;"><?php _e('Enter a classname to be applied to the legend:', 'codepeople-post-map'); ?></label></th>
|
626 |
<td valign="top">
|
627 |
<input type="text" disabled readonly />
|
@@ -755,7 +770,7 @@ class CPM {
|
|
755 |
</table>
|
756 |
</div>
|
757 |
<div style="border:1px solid #CCC; padding:10px; margin:10px 0;">
|
758 |
-
<p>
|
759 |
<?php
|
760 |
_e( 'To insert this map in a post/page, press the <strong>"insert the map tag"</strong> button and save the post/page modifications.', 'codepeople-post-map' );
|
761 |
?>
|
@@ -771,7 +786,7 @@ class CPM {
|
|
771 |
</div>
|
772 |
<table class="form-table">
|
773 |
<tr valign="top">
|
774 |
-
<td scope="row" valign="top" style="vertical-align:top;width:350px;">
|
775 |
<label><?php _e('If you want to display the map in page / post:', 'codepeople-post-map');?></label><br />
|
776 |
<input type="button" class="button-primary" name="cpm_map_shortcode" id="cpm_map_shortcode" value="<?php esc_attr_e(__('Insert the map tag', 'codepeople-post-map')); ?>" style="height:40px; padding-left:30px; padding-right:30px; font-size:1.5em;" /><br />
|
777 |
<span class="cpm_more_info_hndl cpm_blink_me" style="margin-left: 10px;"><a href="javascript:void(0);" onclick="cpm_display_more_info( this );">[ + more information]</a></span>
|
@@ -788,7 +803,7 @@ class CPM {
|
|
788 |
<a href="javascript:void(0)" onclick="cpm_hide_more_info( this );"><?php _e('[ + less information]', 'codepeople-post-map'); ?></a>
|
789 |
</div>
|
790 |
</td>
|
791 |
-
<td valign="top" style="vertical-align:top;">
|
792 |
<label style="color:#CCC;"><?php _e('To display the points that belong to any category','codepeople-post-map');?>:</label><br />
|
793 |
<select size="2" multiple="multiple" style="height:48px;width:100%;" disabled>
|
794 |
<option value="-1"><?php _e( 'All points on website', 'codepeople-post-map'); ?></option>
|
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('To test the premium version of CP Google Maps, please, 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 |
<?php
|
317 |
if(!$single)
|
329 |
?>
|
330 |
<table class="form-table">
|
331 |
<?php
|
332 |
+
$additional_tr_styles = '';
|
333 |
if( !$single )
|
334 |
{
|
335 |
+
$additional_tr_styles = 'display:block';
|
336 |
?>
|
337 |
<tr valign="top">
|
338 |
<th scope="row"><label><?php _e('I have an API key:', 'codepeople-post-map')?></label></th>
|
357 |
if($single){
|
358 |
?>
|
359 |
<tr valign="top">
|
360 |
+
<th scope="row" colspan="2">
|
361 |
+
<label for="cpm_map_single">
|
362 |
+
<?php _e('Use particular settings for this map:', 'codepeople-post-map')?>
|
363 |
+
<input type="checkbox" name="cpm_map[single]" id="cpm_map_single" <?php
|
364 |
+
if(isset($options['single']))
|
365 |
+
{
|
366 |
+
$additional_tr_styles = 'display:block;';
|
367 |
+
print 'CHECKED';
|
368 |
+
}
|
369 |
+
else
|
370 |
+
{
|
371 |
+
$additional_tr_styles = 'display:none;';
|
372 |
+
}
|
373 |
+
?> />
|
374 |
+
</label>
|
375 |
+
</th>
|
376 |
</tr>
|
377 |
<?php
|
378 |
}
|
379 |
?>
|
380 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
381 |
<th scope="row"><label for="cpm_map_zoom"><?php _e('Map zoom:', 'codepeople-post-map')?></label></th>
|
382 |
<td>
|
383 |
<input type="text" size="4" name="cpm_map[zoom]" id="cpm_map_zoom" value="<?php esc_attr_e((isset($options['zoom'])) ? $options['zoom'] : '');?>" />
|
384 |
</td>
|
385 |
</tr>
|
386 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
387 |
<th scope="row"><label for="cpm_map_dynamic_zoom"><?php _e('Dynamic zoom:', 'codepeople-post-map')?></label></th>
|
388 |
<td>
|
389 |
<input type="checkbox" name="cpm_map[dynamic_zoom]" id="cpm_map_dynamic_zoom" <?php echo ( ( isset($options['dynamic_zoom'] ) && $options['dynamic_zoom'] ) ? 'CHECKED' : '' ); ?> /> <?php _e( 'Allows to adjust the zoom dynamically to display all points on map', 'codepeople-post-map' ); ?>
|
390 |
</td>
|
391 |
</tr>
|
392 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
393 |
<th scope="row"><label for="cpm_map_width"><?php _e('Map width:', 'codepeople-post-map'); ?></label></th>
|
394 |
<td>
|
395 |
<input type="text" size="4" name="cpm_map[width]" id="cpm_map_width" value="<?php esc_attr_e((isset($options['width'])) ? $options['width'] : '');?>" />
|
401 |
</div>
|
402 |
</td>
|
403 |
</tr>
|
404 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
405 |
<th scope="row"><label for="cpm_map_height"><?php _e('Map height:', 'codepeople-post-map'); ?></label></th>
|
406 |
<td>
|
407 |
<input type="text" size="4" name="cpm_map[height]" id="cpm_map_height" value="<?php esc_attr_e((isset($options['height'])) ? $options['height'] : '');?>" />
|
408 |
</td>
|
409 |
</tr>
|
410 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
411 |
<th scope="row"><label for="cpm_map_margin"><?php _e('Map margin:', 'codepeople-post-map'); ?></label></th>
|
412 |
<td>
|
413 |
<input type="text" size="4" name="cpm_map[margin]" id="cpm_map_margin" value="<?php esc_attr_e((isset($options['height'])) ? $options['margin'] : '');?>" />
|
414 |
</td>
|
415 |
</tr>
|
416 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
417 |
<th scope="row"><label for="cpm_map_align"><?php _e('Map align:', 'codepeople-post-map'); ?></label></th>
|
418 |
<td>
|
419 |
<select id="cpm_map_align" name="cpm_map[align]">
|
423 |
</select>
|
424 |
</td>
|
425 |
</tr>
|
426 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
427 |
<th scope="row"><label for="cpm_map_type"><?php _e('Map type:', 'codepeople-post-map'); ?></label></th>
|
428 |
<td>
|
429 |
<select name="cpm_map[type]" id="cpm_map_type" >
|
434 |
</select>
|
435 |
</td>
|
436 |
</tr>
|
437 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
438 |
<th scope="row"><label for="cpm_map_language"><?php _e('Map language:', 'codepeople-post-map');?></th>
|
439 |
<td><?php $this->_deploy_languages($options); ?></td>
|
440 |
</tr>
|
441 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
442 |
+
<th scope="row"><label for="cpm_drag_map"><?php _e('Allow drag the map:', 'codepeople-post-map'); ?></label></th>
|
443 |
<td>
|
444 |
<input type="checkbox" name="cpm_map[drag_map]" id="cpm_drag_map" <?php echo ((!isset( $options['drag_map'] ) || $options['drag_map']) ? 'CHECKED' : '');?> />
|
445 |
</td>
|
446 |
</tr>
|
447 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
448 |
<th scope="row"><label for="cpm_map_display"><?php _e('Display map in post/page:', 'codepeople-post-map'); ?></label></th>
|
449 |
<td>
|
450 |
<select name="cpm_map[display]" id="cpm_map_display" >
|
454 |
</td>
|
455 |
</tr>
|
456 |
|
457 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
458 |
<th scope="row"><label for="cpm_show_window"><?php _e('Show info bubbles:', 'codepeople-post-map');?></th>
|
459 |
<td>
|
460 |
<input type="checkbox" id="cpm_show_window" name="cpm_map[show_window]" value="true" <?php echo ((isset($options['show_window']) && $options['show_window']) ? 'checked' : '');?>><span> <?php _e( 'Display the bubbles associated to the points', 'codepeople-post-map');?></span>
|
461 |
</td>
|
462 |
</tr>
|
463 |
|
464 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
465 |
<th scope="row"><label for="cpm_show_default"><?php _e('Display a bubble by default:', 'codepeople-post-map');?></th>
|
466 |
<td>
|
467 |
<input type="checkbox" id="cpm_show_default" name="cpm_map[show_default]" value="true" <?php echo ((isset($options['show_default']) && $options['show_default']) ? 'checked' : '');?>><span> <?php _e( 'Display a bubble opened by default', 'codepeople-post-map' ); ?></span>
|
469 |
</tr>
|
470 |
|
471 |
<?php
|
472 |
+
if( !$single )
|
473 |
+
{
|
474 |
?>
|
475 |
<tr valign="top">
|
476 |
<th scope="row"><label for="cpm_tooltip"><?php _e('Display as marker tooltip:', 'codepeople-post-map');?></th>
|
546 |
<?php
|
547 |
}
|
548 |
?>
|
549 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
550 |
<th scope="row"><label for="cpm_search_box" style="color:#CCCCCC;"><?php _e('Display a search box for places:', 'codepeople-post-map');?></th>
|
551 |
<td>
|
552 |
<input type="checkbox" disabled><span> <?php _e( "Includes an input box on the map for searching places", 'codepeople-post-map' ); ?></span><br />
|
554 |
</td>
|
555 |
</tr>
|
556 |
|
557 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
558 |
<th scope="row"><label for="cpm_map_route" style="color:#CCCCCC;"><?php _e('Display route:', 'codepeople-post-map');?></th>
|
559 |
<td>
|
560 |
<input type="checkbox" DISABLED><span> <?php _e( 'Draws the route between the points in the same post', 'codepeople-post-map'); ?></span><br />
|
563 |
</td>
|
564 |
</tr>
|
565 |
|
566 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
567 |
<th scope="row"><label for="cpm_travel_mode" style="color:#CCCCCC;"><?php _e('Travel mode:', 'codepeople-post-map');?></th>
|
568 |
<td>
|
569 |
<select disabled>
|
572 |
</td>
|
573 |
</tr>
|
574 |
|
575 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
576 |
<th scope="row"><label for="cpm_map_traffic"><?php _e('Include traffic layer:', 'codepeople-post-map');?></th>
|
577 |
<td>
|
578 |
<input type="checkbox" name="cpm_map[trafficlayer]" <?php if( isset($options['trafficlayer']) && $options['trafficlayer'] ) print 'CHECKED'; ?>><span> <?php _e( 'Displays a layer over the map for traffic', 'codepeople-post-map'); ?></span>
|
579 |
</td>
|
580 |
</tr>
|
581 |
|
582 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
583 |
<th scope="row"><label for="wpGoogleMaps_description"><?php _e('Options', 'codepeople-post-map'); ?>:</label></th>
|
584 |
<td>
|
585 |
<input type="checkbox" name="cpm_map[streetviewcontrol]" id="cpm_map_streetviewcontrol" value="true" <?php echo ((isset($options['streetviewcontrol']) && $options['streetviewcontrol']) ? 'checked' : '');?> />
|
594 |
<label for="cpm_map_typecontrol"> <?php _e('Enable map type controls (Map, Satellite, or Hybrid)', 'codepeople-post-map'); ?> </label><br />
|
595 |
</td>
|
596 |
</tr>
|
597 |
+
<tr valign="top" class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
598 |
<th scope="row"><label for="cpm_map_points"><?php _e('Enter the number of posts to display on the post/page map', 'codepeople-post-map'); ?>:</th>
|
599 |
<td><input type="text" name="cpm_map[points]" id="cpm_map_points" value="<?php esc_attr_e((isset($options['points'])) ? $options['points'] : '');?>" /></td>
|
600 |
</tr>
|
601 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
602 |
<th scope="row"><label for="cpm_map_stylized" style="color:#CCCCCC;"><?php _e('Allow stylize the maps:', 'codepeople-post-map'); ?></label></th>
|
603 |
<td valign="top">
|
604 |
<input type="checkbox" DISABLED />
|
605 |
</td>
|
606 |
</tr>
|
607 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
608 |
<th></th>
|
609 |
<td>
|
610 |
<span>
|
616 |
<span style="color:#FF0000;">This feature is available only in commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a></span>
|
617 |
</td>
|
618 |
</tr>
|
619 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
620 |
<th scope="row"><label for="cpm_map_legend" style="color:#CCCCCC;"><?php _e("Display the map's legend:", 'codepeople-post-map');?></label></th>
|
621 |
<td valign="top">
|
622 |
<input type="checkbox" disabled readonly /> <span style="color:#FF0000;">This feature is available only in commercial version of plugin. <a href="http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download">Click Here</a></span>
|
623 |
</td>
|
624 |
</tr>
|
625 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
626 |
<th scope="row"><label for="cpm_map_legend_taxonomy" style="color:#CCCCCC;"><?php _e('Select the taxonomy to display on legend:', 'codepeople-post-map'); ?></label></th>
|
627 |
<td valign="top">
|
628 |
<select disabled readonly>
|
630 |
</select>
|
631 |
</td>
|
632 |
</tr>
|
633 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
634 |
<th scope="row"><label for="cpm_map_legend_title" style="color:#CCCCCC;"><?php _e('Enter a title for legend:', 'codepeople-post-map'); ?></label></th>
|
635 |
<td valign="top">
|
636 |
<input type="text" disabled readonly />
|
637 |
</td>
|
638 |
</tr>
|
639 |
+
<tr class="cpm-map-settings" style="<?php print $additional_tr_styles; ?>">
|
640 |
<th scope="row"><label for="cpm_map_legend_class" style="color:#CCCCCC;"><?php _e('Enter a classname to be applied to the legend:', 'codepeople-post-map'); ?></label></th>
|
641 |
<td valign="top">
|
642 |
<input type="text" disabled readonly />
|
770 |
</table>
|
771 |
</div>
|
772 |
<div style="border:1px solid #CCC; padding:10px; margin:10px 0;">
|
773 |
+
<p class="cpm-classic-editor">
|
774 |
<?php
|
775 |
_e( 'To insert this map in a post/page, press the <strong>"insert the map tag"</strong> button and save the post/page modifications.', 'codepeople-post-map' );
|
776 |
?>
|
786 |
</div>
|
787 |
<table class="form-table">
|
788 |
<tr valign="top">
|
789 |
+
<td scope="row" valign="top" style="vertical-align:top;width:350px;" class="cpm-classic-editor">
|
790 |
<label><?php _e('If you want to display the map in page / post:', 'codepeople-post-map');?></label><br />
|
791 |
<input type="button" class="button-primary" name="cpm_map_shortcode" id="cpm_map_shortcode" value="<?php esc_attr_e(__('Insert the map tag', 'codepeople-post-map')); ?>" style="height:40px; padding-left:30px; padding-right:30px; font-size:1.5em;" /><br />
|
792 |
<span class="cpm_more_info_hndl cpm_blink_me" style="margin-left: 10px;"><a href="javascript:void(0);" onclick="cpm_display_more_info( this );">[ + more information]</a></span>
|
803 |
<a href="javascript:void(0)" onclick="cpm_hide_more_info( this );"><?php _e('[ + less information]', 'codepeople-post-map'); ?></a>
|
804 |
</div>
|
805 |
</td>
|
806 |
+
<td valign="top" class="cpm-gutenberg-editor" style="vertical-align:top;">
|
807 |
<label style="color:#CCC;"><?php _e('To display the points that belong to any category','codepeople-post-map');?>:</label><br />
|
808 |
<select size="2" multiple="multiple" style="height:48px;width:100%;" disabled>
|
809 |
<option value="-1"><?php _e( 'All points on website', 'codepeople-post-map'); ?></option>
|
js/cpm.admin.js
CHANGED
@@ -234,7 +234,14 @@
|
|
234 |
|
235 |
// Create the script tag and load the maps api
|
236 |
if($('.cpm_map_container').length){
|
237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
238 |
}
|
239 |
|
240 |
$('#cpm_map_single').each(function(){
|
@@ -244,5 +251,11 @@
|
|
244 |
enable_disable_fields(f,!f[0].checked);
|
245 |
});
|
246 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
});
|
248 |
})(jQuery);
|
234 |
|
235 |
// Create the script tag and load the maps api
|
236 |
if($('.cpm_map_container').length){
|
237 |
+
if(typeof google != 'undefined' && google.maps)
|
238 |
+
{
|
239 |
+
cpm_set_map_flag();
|
240 |
+
}
|
241 |
+
else
|
242 |
+
{
|
243 |
+
$('<script type="text/javascript" src="'+(( typeof window.location.protocol != 'undefined' ) ? window.location.protocol : 'http:' )+'//maps.google.com/maps/api/js?'+_api_key+'sensor=false&callback=cpm_set_map_flag"></script>').appendTo('body');
|
244 |
+
}
|
245 |
}
|
246 |
|
247 |
$('#cpm_map_single').each(function(){
|
251 |
enable_disable_fields(f,!f[0].checked);
|
252 |
});
|
253 |
});
|
254 |
+
|
255 |
+
// Show/hide map settings on single pages.
|
256 |
+
$('#cpm_map_single').change(function(){
|
257 |
+
$('.cpm-map-settings')[this.checked ? 'show' : 'hide']();
|
258 |
+
});
|
259 |
+
|
260 |
});
|
261 |
})(jQuery);
|
js/gutenberg.js
CHANGED
@@ -4,7 +4,9 @@ jQuery(function(){
|
|
4 |
|
5 |
/* Hide the button required by the classic editor */
|
6 |
jQuery(function(){
|
7 |
-
jQuery('
|
|
|
|
|
8 |
});
|
9 |
|
10 |
/* Plugin Category */
|
4 |
|
5 |
/* Hide the button required by the classic editor */
|
6 |
jQuery(function(){
|
7 |
+
jQuery('.cpm-classic-editor').hide();
|
8 |
+
jQuery('.cpm-gutenberg-editor').css({display:'block',width:'100%', padding:0});
|
9 |
+
jQuery('.cpm-gutenberg-editor select').css({height:'100px'});
|
10 |
});
|
11 |
|
12 |
/* Plugin Category */
|
languages/codepeople-post-map-es_ES.mo
CHANGED
Binary file
|
languages/codepeople-post-map-es_ES.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
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
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -247,7 +247,7 @@ msgstr "Impulsado por"
|
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuración del Mapa"
|
249 |
|
250 |
-
#: ../include/functions.php:313 ../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."
|
@@ -266,7 +266,7 @@ msgstr ""
|
|
266 |
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
-
"
|
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/\" "
|
@@ -277,190 +277,190 @@ msgstr ""
|
|
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:
|
281 |
msgid "Video Tutorial"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ../include/functions.php:
|
285 |
msgid "I have an API key:"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: ../include/functions.php:
|
289 |
msgid "Enter your API Key"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: ../include/functions.php:
|
293 |
msgid "Please, visit the following link to get the API Key for your website:"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ../include/functions.php:
|
297 |
msgid "With the Google project, activate at least the following APIs"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: ../include/functions.php:
|
301 |
msgid ""
|
302 |
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ../include/functions.php:
|
306 |
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ../include/functions.php:
|
310 |
msgid "Use particular settings for this map:"
|
311 |
msgstr "Usar ajustes particulares para este mapa :"
|
312 |
|
313 |
-
#: ../include/functions.php:
|
314 |
msgid "Map zoom:"
|
315 |
msgstr "Zoom :"
|
316 |
|
317 |
-
#: ../include/functions.php:
|
318 |
msgid "Dynamic zoom:"
|
319 |
msgstr "Zoom dinámico:"
|
320 |
|
321 |
-
#: ../include/functions.php:
|
322 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
323 |
msgstr ""
|
324 |
"Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
|
325 |
"el mapa"
|
326 |
|
327 |
-
#: ../include/functions.php:
|
328 |
msgid "Map width:"
|
329 |
msgstr "Ancho del mapa:"
|
330 |
|
331 |
-
#: ../include/functions.php:
|
332 |
msgid "Map height:"
|
333 |
msgstr "Altura del mapa :"
|
334 |
|
335 |
-
#: ../include/functions.php:
|
336 |
msgid "Map margin:"
|
337 |
msgstr "Margen del mapa :"
|
338 |
|
339 |
-
#: ../include/functions.php:
|
340 |
msgid "Map align:"
|
341 |
msgstr "Alinear el mapa:"
|
342 |
|
343 |
-
#: ../include/functions.php:
|
344 |
msgid "left"
|
345 |
msgstr "izquierda"
|
346 |
|
347 |
-
#: ../include/functions.php:
|
348 |
msgid "center"
|
349 |
msgstr "centro"
|
350 |
|
351 |
-
#: ../include/functions.php:
|
352 |
msgid "right"
|
353 |
msgstr "derecho"
|
354 |
|
355 |
-
#: ../include/functions.php:
|
356 |
msgid "Map type:"
|
357 |
msgstr "Tipo de mapa :"
|
358 |
|
359 |
-
#: ../include/functions.php:
|
360 |
msgid "ROADMAP - Displays a normal street map"
|
361 |
msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
|
362 |
|
363 |
-
#: ../include/functions.php:
|
364 |
msgid "SATELLITE - Displays satellite images"
|
365 |
msgstr "SATÉLITE - muestra imágenes de satélite"
|
366 |
|
367 |
-
#: ../include/functions.php:
|
368 |
msgid ""
|
369 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
370 |
msgstr ""
|
371 |
"TERRENO - Muestra los mapas con las características físicas, tales como el "
|
372 |
"terreno y la vegetación"
|
373 |
|
374 |
-
#: ../include/functions.php:
|
375 |
msgid ""
|
376 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
377 |
msgstr ""
|
378 |
"HYBRID - Muestra una capa transparente de las principales calles en imágenes "
|
379 |
"de satélite"
|
380 |
|
381 |
-
#: ../include/functions.php:
|
382 |
msgid "Map language:"
|
383 |
msgstr "Idioma del mapa:"
|
384 |
|
385 |
-
#: ../include/functions.php:
|
386 |
msgid "Allow drag the map:"
|
387 |
msgstr "Permitir desplazar los mapas :"
|
388 |
|
389 |
-
#: ../include/functions.php:
|
390 |
msgid "Display map in post/page:"
|
391 |
msgstr "Visualizar mapa en post / página:"
|
392 |
|
393 |
-
#: ../include/functions.php:
|
394 |
msgid "as icon"
|
395 |
msgstr "como icono"
|
396 |
|
397 |
-
#: ../include/functions.php:
|
398 |
msgid "as full map"
|
399 |
msgstr "mapa como completo"
|
400 |
|
401 |
-
#: ../include/functions.php:
|
402 |
msgid "Show info bubbles:"
|
403 |
msgstr "Mostrar información de burbujas :"
|
404 |
|
405 |
-
#: ../include/functions.php:
|
406 |
msgid "Display the bubbles associated to the points"
|
407 |
msgstr "Mostrar las burbujas asociadas a los puntos"
|
408 |
|
409 |
-
#: ../include/functions.php:
|
410 |
msgid "Display a bubble by default:"
|
411 |
msgstr "Mostrar una burbuja por defecto:"
|
412 |
|
413 |
-
#: ../include/functions.php:
|
414 |
msgid "Display a bubble opened by default"
|
415 |
msgstr "Mostrar una burbuja abierta por defecto"
|
416 |
|
417 |
-
#: ../include/functions.php:
|
418 |
#, fuzzy
|
419 |
#| msgid "Display a link to Google Maps:"
|
420 |
msgid "Display as marker tooltip:"
|
421 |
msgstr "Mostrar un enlace a Google Maps :"
|
422 |
|
423 |
-
#: ../include/functions.php:
|
424 |
#, fuzzy
|
425 |
#| msgid "Location name:"
|
426 |
msgid "Point location name"
|
427 |
msgstr "Nombre de la ubicación :"
|
428 |
|
429 |
-
#: ../include/functions.php:
|
430 |
msgid "Point address"
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: ../include/functions.php:
|
434 |
msgid "None"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: ../include/functions.php:
|
438 |
#, fuzzy
|
439 |
#| msgid "Display a bubble by default:"
|
440 |
msgid "Display Featured Image by default:"
|
441 |
msgstr "Mostrar una burbuja por defecto:"
|
442 |
|
443 |
-
#: ../include/functions.php:
|
444 |
msgid ""
|
445 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
446 |
"points don't have associated an image"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: ../include/functions.php:
|
450 |
msgid "Display the get directions link:"
|
451 |
msgstr "Mostrar el enlace CÓMO LLEGAR :"
|
452 |
|
453 |
-
#: ../include/functions.php:
|
454 |
msgid "Display a link at bottom of infowindow to get directions"
|
455 |
msgstr ""
|
456 |
"Mostar un enlace al final de la ventana de información para obtener la "
|
457 |
"dirección"
|
458 |
|
459 |
-
#: ../include/functions.php:
|
460 |
-
#: ../include/functions.php:
|
461 |
-
#: ../include/functions.php:
|
462 |
-
#: ../include/functions.php:
|
463 |
-
#: ../include/functions.php:
|
464 |
#, fuzzy
|
465 |
#| msgid ""
|
466 |
#| "Multiple points in the same Post/Page are available only in the <a href="
|
@@ -475,135 +475,135 @@ msgstr ""
|
|
475 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
476 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
477 |
|
478 |
-
#: ../include/functions.php:
|
479 |
msgid "Display a link to Google Maps:"
|
480 |
msgstr "Mostrar un enlace a Google Maps :"
|
481 |
|
482 |
-
#: ../include/functions.php:
|
483 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
484 |
msgstr ""
|
485 |
"Mostar un enlace al final de la ventana de información para mostrar en "
|
486 |
"Google Maps"
|
487 |
|
488 |
-
#: ../include/functions.php:
|
489 |
msgid "Display a link to street view:"
|
490 |
msgstr "Mostrar un enlace a la vista de la calle:"
|
491 |
|
492 |
-
#: ../include/functions.php:
|
493 |
msgid ""
|
494 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
495 |
msgstr ""
|
496 |
"Mostar un enlace al final de la ventana de información para cargar en el "
|
497 |
"Street View"
|
498 |
|
499 |
-
#: ../include/functions.php:
|
500 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
501 |
msgstr ""
|
502 |
"Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
|
503 |
|
504 |
-
#: ../include/functions.php:
|
505 |
msgid "Displays the number of points in the cluster"
|
506 |
msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster"
|
507 |
|
508 |
-
#: ../include/functions.php:
|
509 |
msgid "Display the user's location:"
|
510 |
msgstr "Muestra la ubicación del usuario :"
|
511 |
|
512 |
-
#: ../include/functions.php:
|
513 |
msgid "Display an icon with the user's location on map"
|
514 |
msgstr "Muestra un icono con la ubicación del usuario"
|
515 |
|
516 |
-
#: ../include/functions.php:
|
517 |
#, fuzzy
|
518 |
#| msgid "Display the user's location:"
|
519 |
msgid "Refresh the user's location every:"
|
520 |
msgstr "Muestra la ubicación del usuario :"
|
521 |
|
522 |
-
#: ../include/functions.php:
|
523 |
msgid "milliseconds"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ../include/functions.php:
|
527 |
msgid "Title of user's location:"
|
528 |
msgstr "Título de la ubicación del usuario :"
|
529 |
|
530 |
-
#: ../include/functions.php:
|
531 |
msgid "Title of user's location"
|
532 |
msgstr "Título de la ubicación del usuario"
|
533 |
|
534 |
-
#: ../include/functions.php:
|
535 |
msgid "Display a search box for places:"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: ../include/functions.php:
|
539 |
msgid "Includes an input box on the map for searching places"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ../include/functions.php:
|
543 |
msgid "Display route:"
|
544 |
msgstr "Dibujar ruta:"
|
545 |
|
546 |
-
#: ../include/functions.php:
|
547 |
msgid "Draws the route between the points in the same post"
|
548 |
msgstr "Dibujar las rutas entre los puntos en un mismo post"
|
549 |
|
550 |
-
#: ../include/functions.php:
|
551 |
msgid ""
|
552 |
"Connect the points with polylines, even if there is not a route between "
|
553 |
"points"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../include/functions.php:
|
557 |
msgid "Travel mode:"
|
558 |
msgstr "Modo de viajar :"
|
559 |
|
560 |
-
#: ../include/functions.php:
|
561 |
msgid "Include traffic layer:"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: ../include/functions.php:
|
565 |
msgid "Displays a layer over the map for traffic"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: ../include/functions.php:
|
569 |
msgid "Options"
|
570 |
msgstr "Opciones"
|
571 |
|
572 |
-
#: ../include/functions.php:
|
573 |
msgid "Display the street view control"
|
574 |
msgstr "Mostrar el control de vista de la calle"
|
575 |
|
576 |
-
#: ../include/functions.php:
|
577 |
msgid "Enable mouse wheel zoom"
|
578 |
msgstr "Habilitar ratón con rueda de zoom"
|
579 |
|
580 |
-
#: ../include/functions.php:
|
581 |
#, fuzzy
|
582 |
#| msgid "Enable zoom/pan controls"
|
583 |
msgid "Enable zoom controls"
|
584 |
msgstr "Activar controles de zoom / pan"
|
585 |
|
586 |
-
#: ../include/functions.php:
|
587 |
#, fuzzy
|
588 |
#| msgid "Enable zoom/pan controls"
|
589 |
msgid "Enable fullscreen control"
|
590 |
msgstr "Activar controles de zoom / pan"
|
591 |
|
592 |
-
#: ../include/functions.php:
|
593 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
594 |
msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
|
595 |
|
596 |
-
#: ../include/functions.php:
|
597 |
#, fuzzy
|
598 |
#| msgid "Enter the number of posts to display on the map"
|
599 |
msgid "Enter the number of posts to display on the post/page map"
|
600 |
msgstr "Entre el número de posts a visualizar en el mapa"
|
601 |
|
602 |
-
#: ../include/functions.php:
|
603 |
msgid "Allow stylize the maps:"
|
604 |
msgstr "Permitir estilizar los mapas :"
|
605 |
|
606 |
-
#: ../include/functions.php:
|
607 |
msgid ""
|
608 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
609 |
"structure with the map's styles"
|
@@ -611,27 +611,27 @@ msgstr ""
|
|
611 |
"Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
|
612 |
"crear una estructura JSON con estilos del mapa"
|
613 |
|
614 |
-
#: ../include/functions.php:
|
615 |
msgid "Display the map's legend:"
|
616 |
msgstr "Mostrar la leyenda del mapa:"
|
617 |
|
618 |
-
#: ../include/functions.php:
|
619 |
msgid "Select the taxonomy to display on legend:"
|
620 |
msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
|
621 |
|
622 |
-
#: ../include/functions.php:
|
623 |
msgid "Select a taxonomy"
|
624 |
msgstr "Seleccionar una taxonomía"
|
625 |
|
626 |
-
#: ../include/functions.php:
|
627 |
msgid "Enter a title for legend:"
|
628 |
msgstr "Introduzca un título para la leyenda :"
|
629 |
|
630 |
-
#: ../include/functions.php:
|
631 |
msgid "Enter a classname to be applied to the legend:"
|
632 |
msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
|
633 |
|
634 |
-
#: ../include/functions.php:
|
635 |
msgid ""
|
636 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
637 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
@@ -641,11 +641,11 @@ msgstr ""
|
|
641 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
642 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
643 |
|
644 |
-
#: ../include/functions.php:
|
645 |
msgid "To insert a map in the post follow the steps below"
|
646 |
msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
|
647 |
|
648 |
-
#: ../include/functions.php:
|
649 |
msgid ""
|
650 |
"Enter the point's information (the latitude and longitude are required, but "
|
651 |
"are obtained pressing the \"verify\" button after type the address"
|
@@ -654,7 +654,7 @@ msgstr ""
|
|
654 |
"son obtenidos pulsando el botón \"Verificar\", después de escribir la "
|
655 |
"dirección)"
|
656 |
|
657 |
-
#: ../include/functions.php:
|
658 |
msgid ""
|
659 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
660 |
"\" button"
|
@@ -662,7 +662,7 @@ msgstr ""
|
|
662 |
"Inserte el shortcode en el contenido del post, presionando el botón "
|
663 |
"\"inserte la etiqueta del mapa\""
|
664 |
|
665 |
-
#: ../include/functions.php:
|
666 |
#, fuzzy
|
667 |
#| msgid ""
|
668 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
@@ -675,18 +675,18 @@ msgstr ""
|
|
675 |
"Si desea especificar una confguración para este mapa en particular, marque "
|
676 |
"la opción \"Usar ajustes particulares para este mapa\""
|
677 |
|
678 |
-
#: ../include/functions.php:
|
679 |
msgid ""
|
680 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
681 |
msgstr ""
|
682 |
"No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
|
683 |
"del mapa"
|
684 |
|
685 |
-
#: ../include/functions.php:
|
686 |
msgid "Map points"
|
687 |
msgstr "Puntos de Ruta"
|
688 |
|
689 |
-
#: ../include/functions.php:
|
690 |
msgid ""
|
691 |
"Multiple points in the same Post/Page are available only in the <a href="
|
692 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -696,41 +696,41 @@ msgstr ""
|
|
696 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
697 |
"\"_blank\"> CodePeople Post Ubicación </a>."
|
698 |
|
699 |
-
#: ../include/functions.php:
|
700 |
msgid "Map point description"
|
701 |
msgstr "Mapa Descripción del punto"
|
702 |
|
703 |
-
#: ../include/functions.php:
|
704 |
msgid "Location name:"
|
705 |
msgstr "Nombre de la ubicación :"
|
706 |
|
707 |
-
#: ../include/functions.php:
|
708 |
msgid "Location description:"
|
709 |
msgstr "Descripción de la ubicación :"
|
710 |
|
711 |
-
#: ../include/functions.php:
|
712 |
#, fuzzy
|
713 |
#| msgid "Select an images to attach to the point: "
|
714 |
msgid "Select an image to attach to the point: "
|
715 |
msgstr "Seleccionar una imágenes para adjuntar al punto:"
|
716 |
|
717 |
-
#: ../include/functions.php:
|
718 |
msgid "Address:"
|
719 |
msgstr "Dirección:"
|
720 |
|
721 |
-
#: ../include/functions.php:
|
722 |
msgid "Latitude:"
|
723 |
msgstr "Latitud:"
|
724 |
|
725 |
-
#: ../include/functions.php:
|
726 |
msgid "Longitude:"
|
727 |
msgstr "Longitud :"
|
728 |
|
729 |
-
#: ../include/functions.php:
|
730 |
msgid "Verify"
|
731 |
msgstr "Verificar"
|
732 |
|
733 |
-
#: ../include/functions.php:
|
734 |
msgid ""
|
735 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
736 |
"point address."
|
@@ -738,12 +738,12 @@ msgstr ""
|
|
738 |
"Verificar esta latitud y longitud usando geocodificación . Esto podría "
|
739 |
"sobrescribir la dirección del punto ."
|
740 |
|
741 |
-
#: ../include/functions.php:
|
742 |
msgid "Required: Press the button \"verify\" after complete the address."
|
743 |
msgstr ""
|
744 |
"Deseados: pulse el botón \" verifique \"después de completar la dirección."
|
745 |
|
746 |
-
#: ../include/functions.php:
|
747 |
msgid ""
|
748 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
749 |
"strong> button and save the post/page modifications."
|
@@ -752,19 +752,19 @@ msgstr ""
|
|
752 |
"insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
|
753 |
"post / página."
|
754 |
|
755 |
-
#: ../include/functions.php:
|
756 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
757 |
msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
|
758 |
|
759 |
-
#: ../include/functions.php:
|
760 |
msgid "If you want to display the map in page / post:"
|
761 |
msgstr "Si usted quiere mostrar el mapa en la página / post:"
|
762 |
|
763 |
-
#: ../include/functions.php:
|
764 |
msgid "Insert the map tag"
|
765 |
msgstr "Inserte la etiqueta del mapa"
|
766 |
|
767 |
-
#: ../include/functions.php:
|
768 |
msgid ""
|
769 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
770 |
"zoom and the other maps attributes:</p>\n"
|
@@ -784,23 +784,23 @@ msgid ""
|
|
784 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../include/functions.php:
|
788 |
msgid "[ + less information]"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: ../include/functions.php:
|
792 |
msgid "To display the points that belong to any category"
|
793 |
msgstr "Mostrar los puntos que pertenecen a una categoría"
|
794 |
|
795 |
-
#: ../include/functions.php:
|
796 |
msgid "All points on website"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: ../include/functions.php:
|
800 |
msgid "Settings Updated"
|
801 |
msgstr "Configuración de Actualización"
|
802 |
|
803 |
-
#: ../include/functions.php:
|
804 |
msgid ""
|
805 |
"Generate points dynamically from geolocation information included on images, "
|
806 |
"when images are uploaded to WordPress:"
|
@@ -808,7 +808,7 @@ msgstr ""
|
|
808 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
809 |
"incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
|
810 |
|
811 |
-
#: ../include/functions.php:
|
812 |
msgid ""
|
813 |
"The geolocation information is added to the images from your mobiles or "
|
814 |
"cameras, if they have associated GPS devices"
|
@@ -816,11 +816,11 @@ msgstr ""
|
|
816 |
"La información de geolocalización se añade a las imágenes desde sus "
|
817 |
"teléfonos móviles o cámaras, si han asociado dispositivos GPS"
|
818 |
|
819 |
-
#: ../include/functions.php:
|
820 |
msgid "Process All Previous Images"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: ../include/functions.php:
|
824 |
msgid ""
|
825 |
"Process all images in the library, and generates new points in the parents "
|
826 |
"pages, with the geocode information in the images metadata. A post/page is "
|
@@ -828,24 +828,24 @@ msgid ""
|
|
828 |
"post/page."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../include/functions.php:
|
832 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: ../include/functions.php:
|
836 |
-
#: ../include/functions.php:
|
837 |
-
#: ../include/functions.php:
|
838 |
msgid "Click Here"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: ../include/functions.php:
|
842 |
msgid ""
|
843 |
"Generate points dynamically from geolocation information included on posts:"
|
844 |
msgstr ""
|
845 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
846 |
"incluida en los mensajes :"
|
847 |
|
848 |
-
#: ../include/functions.php:
|
849 |
msgid ""
|
850 |
"The geolocation information is added to the post from WordPress app in your "
|
851 |
"mobile"
|
@@ -853,78 +853,78 @@ msgstr ""
|
|
853 |
"La información de geolocalización se añade al post de WordPress aplicación "
|
854 |
"en tu móvil"
|
855 |
|
856 |
-
#: ../include/functions.php:
|
857 |
msgid "Use points information in search results:"
|
858 |
msgstr "Utilizar la información puntos en los resultados de búsqueda :"
|
859 |
|
860 |
-
#: ../include/functions.php:
|
861 |
msgid ""
|
862 |
"The search in the maps data is available only in commercial version of "
|
863 |
"plugin."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: ../include/functions.php:
|
867 |
msgid "Highlight post when mouse move over related point on map:"
|
868 |
msgstr ""
|
869 |
"Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
|
870 |
|
871 |
-
#: ../include/functions.php:
|
872 |
msgid "The post highlight is available only in commercial version of plugin."
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: ../include/functions.php:
|
876 |
msgid "Highlight class:"
|
877 |
msgstr "Clase Highlight :"
|
878 |
|
879 |
-
#: ../include/functions.php:
|
880 |
msgid "The highlight class is available only in commercial version of plugin."
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: ../include/functions.php:
|
884 |
msgid "Allow to associate a map to the post types:"
|
885 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
886 |
|
887 |
-
#: ../include/functions.php:
|
888 |
msgid "Posts and Pages are selected by default"
|
889 |
msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
|
890 |
|
891 |
-
#: ../include/functions.php:
|
892 |
msgid ""
|
893 |
"Associate the maps to custom post types is available only in commercial "
|
894 |
"version of plugin."
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: ../include/functions.php:
|
898 |
msgid "Draws Routes"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: ../include/functions.php:
|
902 |
#, fuzzy
|
903 |
#| msgid "Allow to associate a map to the post types:"
|
904 |
msgid "Associate maps to custom post types"
|
905 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
906 |
|
907 |
-
#: ../include/functions.php:
|
908 |
msgid "Display a map for each post in pages with multiple posts"
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: ../include/functions.php:
|
912 |
msgid "Troubleshoot Section"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: ../include/functions.php:
|
916 |
msgid "Load required resources (javascript files) in footer"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: ../include/functions.php:
|
920 |
msgid "Update Settings"
|
921 |
msgstr "Configuración de la actualización"
|
922 |
|
923 |
-
#: ../include/functions.php:
|
924 |
msgid "Help"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: ../include/functions.php:
|
928 |
msgid "Request custom changes"
|
929 |
msgstr "Solicitar cambios de encargo"
|
930 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
+
"POT-Creation-Date: 2022-03-29 15:23+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-03-29 15:23+0200\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 3.0.1\n"
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuración del Mapa"
|
249 |
|
250 |
+
#: ../include/functions.php:313 ../include/functions.php:681
|
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."
|
266 |
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
+
"To test the premium version of CP Google Maps, please, 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/\" "
|
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:321
|
281 |
msgid "Video Tutorial"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ../include/functions.php:338
|
285 |
msgid "I have an API key:"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: ../include/functions.php:340
|
289 |
msgid "Enter your API Key"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: ../include/functions.php:343
|
293 |
msgid "Please, visit the following link to get the API Key for your website:"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ../include/functions.php:347
|
297 |
msgid "With the Google project, activate at least the following APIs"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: ../include/functions.php:350
|
301 |
msgid ""
|
302 |
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ../include/functions.php:351
|
306 |
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ../include/functions.php:362
|
310 |
msgid "Use particular settings for this map:"
|
311 |
msgstr "Usar ajustes particulares para este mapa :"
|
312 |
|
313 |
+
#: ../include/functions.php:381
|
314 |
msgid "Map zoom:"
|
315 |
msgstr "Zoom :"
|
316 |
|
317 |
+
#: ../include/functions.php:387
|
318 |
msgid "Dynamic zoom:"
|
319 |
msgstr "Zoom dinámico:"
|
320 |
|
321 |
+
#: ../include/functions.php:389
|
322 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
323 |
msgstr ""
|
324 |
"Permite ajustar el zoom de forma dinámica para mostrar todos los puntos en "
|
325 |
"el mapa"
|
326 |
|
327 |
+
#: ../include/functions.php:393
|
328 |
msgid "Map width:"
|
329 |
msgstr "Ancho del mapa:"
|
330 |
|
331 |
+
#: ../include/functions.php:405
|
332 |
msgid "Map height:"
|
333 |
msgstr "Altura del mapa :"
|
334 |
|
335 |
+
#: ../include/functions.php:411
|
336 |
msgid "Map margin:"
|
337 |
msgstr "Margen del mapa :"
|
338 |
|
339 |
+
#: ../include/functions.php:417
|
340 |
msgid "Map align:"
|
341 |
msgstr "Alinear el mapa:"
|
342 |
|
343 |
+
#: ../include/functions.php:420
|
344 |
msgid "left"
|
345 |
msgstr "izquierda"
|
346 |
|
347 |
+
#: ../include/functions.php:421
|
348 |
msgid "center"
|
349 |
msgstr "centro"
|
350 |
|
351 |
+
#: ../include/functions.php:422
|
352 |
msgid "right"
|
353 |
msgstr "derecho"
|
354 |
|
355 |
+
#: ../include/functions.php:427
|
356 |
msgid "Map type:"
|
357 |
msgstr "Tipo de mapa :"
|
358 |
|
359 |
+
#: ../include/functions.php:430
|
360 |
msgid "ROADMAP - Displays a normal street map"
|
361 |
msgstr "HOJA DE RUTA - Muestra un mapa normal de la calle"
|
362 |
|
363 |
+
#: ../include/functions.php:431
|
364 |
msgid "SATELLITE - Displays satellite images"
|
365 |
msgstr "SATÉLITE - muestra imágenes de satélite"
|
366 |
|
367 |
+
#: ../include/functions.php:432
|
368 |
msgid ""
|
369 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
370 |
msgstr ""
|
371 |
"TERRENO - Muestra los mapas con las características físicas, tales como el "
|
372 |
"terreno y la vegetación"
|
373 |
|
374 |
+
#: ../include/functions.php:433
|
375 |
msgid ""
|
376 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
377 |
msgstr ""
|
378 |
"HYBRID - Muestra una capa transparente de las principales calles en imágenes "
|
379 |
"de satélite"
|
380 |
|
381 |
+
#: ../include/functions.php:438
|
382 |
msgid "Map language:"
|
383 |
msgstr "Idioma del mapa:"
|
384 |
|
385 |
+
#: ../include/functions.php:442
|
386 |
msgid "Allow drag the map:"
|
387 |
msgstr "Permitir desplazar los mapas :"
|
388 |
|
389 |
+
#: ../include/functions.php:448
|
390 |
msgid "Display map in post/page:"
|
391 |
msgstr "Visualizar mapa en post / página:"
|
392 |
|
393 |
+
#: ../include/functions.php:451
|
394 |
msgid "as icon"
|
395 |
msgstr "como icono"
|
396 |
|
397 |
+
#: ../include/functions.php:452
|
398 |
msgid "as full map"
|
399 |
msgstr "mapa como completo"
|
400 |
|
401 |
+
#: ../include/functions.php:458
|
402 |
msgid "Show info bubbles:"
|
403 |
msgstr "Mostrar información de burbujas :"
|
404 |
|
405 |
+
#: ../include/functions.php:460
|
406 |
msgid "Display the bubbles associated to the points"
|
407 |
msgstr "Mostrar las burbujas asociadas a los puntos"
|
408 |
|
409 |
+
#: ../include/functions.php:465
|
410 |
msgid "Display a bubble by default:"
|
411 |
msgstr "Mostrar una burbuja por defecto:"
|
412 |
|
413 |
+
#: ../include/functions.php:467
|
414 |
msgid "Display a bubble opened by default"
|
415 |
msgstr "Mostrar una burbuja abierta por defecto"
|
416 |
|
417 |
+
#: ../include/functions.php:476
|
418 |
#, fuzzy
|
419 |
#| msgid "Display a link to Google Maps:"
|
420 |
msgid "Display as marker tooltip:"
|
421 |
msgstr "Mostrar un enlace a Google Maps :"
|
422 |
|
423 |
+
#: ../include/functions.php:478
|
424 |
#, fuzzy
|
425 |
#| msgid "Location name:"
|
426 |
msgid "Point location name"
|
427 |
msgstr "Nombre de la ubicación :"
|
428 |
|
429 |
+
#: ../include/functions.php:479
|
430 |
msgid "Point address"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: ../include/functions.php:480
|
434 |
msgid "None"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: ../include/functions.php:485
|
438 |
#, fuzzy
|
439 |
#| msgid "Display a bubble by default:"
|
440 |
msgid "Display Featured Image by default:"
|
441 |
msgstr "Mostrar una burbuja por defecto:"
|
442 |
|
443 |
+
#: ../include/functions.php:487
|
444 |
msgid ""
|
445 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
446 |
"points don't have associated an image"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: ../include/functions.php:492
|
450 |
msgid "Display the get directions link:"
|
451 |
msgstr "Mostrar el enlace CÓMO LLEGAR :"
|
452 |
|
453 |
+
#: ../include/functions.php:494
|
454 |
msgid "Display a link at bottom of infowindow to get directions"
|
455 |
msgstr ""
|
456 |
"Mostar un enlace al final de la ventana de información para obtener la "
|
457 |
"dirección"
|
458 |
|
459 |
+
#: ../include/functions.php:495 ../include/functions.php:503
|
460 |
+
#: ../include/functions.php:511 ../include/functions.php:519
|
461 |
+
#: ../include/functions.php:527 ../include/functions.php:535
|
462 |
+
#: ../include/functions.php:543 ../include/functions.php:553
|
463 |
+
#: ../include/functions.php:784 ../include/functions.php:819
|
464 |
#, fuzzy
|
465 |
#| msgid ""
|
466 |
#| "Multiple points in the same Post/Page are available only in the <a href="
|
475 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
476 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
477 |
|
478 |
+
#: ../include/functions.php:500
|
479 |
msgid "Display a link to Google Maps:"
|
480 |
msgstr "Mostrar un enlace a Google Maps :"
|
481 |
|
482 |
+
#: ../include/functions.php:502
|
483 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
484 |
msgstr ""
|
485 |
"Mostar un enlace al final de la ventana de información para mostrar en "
|
486 |
"Google Maps"
|
487 |
|
488 |
+
#: ../include/functions.php:508
|
489 |
msgid "Display a link to street view:"
|
490 |
msgstr "Mostrar un enlace a la vista de la calle:"
|
491 |
|
492 |
+
#: ../include/functions.php:510
|
493 |
msgid ""
|
494 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
495 |
msgstr ""
|
496 |
"Mostar un enlace al final de la ventana de información para cargar en el "
|
497 |
"Street View"
|
498 |
|
499 |
+
#: ../include/functions.php:516
|
500 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
501 |
msgstr ""
|
502 |
"Mostrar un conjunto de puntos en la misma zona , al igual que un clúster:"
|
503 |
|
504 |
+
#: ../include/functions.php:518
|
505 |
msgid "Displays the number of points in the cluster"
|
506 |
msgstr "Mostrar un conjunto de puntos en la misma zona ,en forma de clúster"
|
507 |
|
508 |
+
#: ../include/functions.php:524
|
509 |
msgid "Display the user's location:"
|
510 |
msgstr "Muestra la ubicación del usuario :"
|
511 |
|
512 |
+
#: ../include/functions.php:526
|
513 |
msgid "Display an icon with the user's location on map"
|
514 |
msgstr "Muestra un icono con la ubicación del usuario"
|
515 |
|
516 |
+
#: ../include/functions.php:532
|
517 |
#, fuzzy
|
518 |
#| msgid "Display the user's location:"
|
519 |
msgid "Refresh the user's location every:"
|
520 |
msgstr "Muestra la ubicación del usuario :"
|
521 |
|
522 |
+
#: ../include/functions.php:534
|
523 |
msgid "milliseconds"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: ../include/functions.php:540
|
527 |
msgid "Title of user's location:"
|
528 |
msgstr "Título de la ubicación del usuario :"
|
529 |
|
530 |
+
#: ../include/functions.php:542
|
531 |
msgid "Title of user's location"
|
532 |
msgstr "Título de la ubicación del usuario"
|
533 |
|
534 |
+
#: ../include/functions.php:550
|
535 |
msgid "Display a search box for places:"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: ../include/functions.php:552
|
539 |
msgid "Includes an input box on the map for searching places"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ../include/functions.php:558
|
543 |
msgid "Display route:"
|
544 |
msgstr "Dibujar ruta:"
|
545 |
|
546 |
+
#: ../include/functions.php:560
|
547 |
msgid "Draws the route between the points in the same post"
|
548 |
msgstr "Dibujar las rutas entre los puntos en un mismo post"
|
549 |
|
550 |
+
#: ../include/functions.php:561
|
551 |
msgid ""
|
552 |
"Connect the points with polylines, even if there is not a route between "
|
553 |
"points"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../include/functions.php:567
|
557 |
msgid "Travel mode:"
|
558 |
msgstr "Modo de viajar :"
|
559 |
|
560 |
+
#: ../include/functions.php:576
|
561 |
msgid "Include traffic layer:"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: ../include/functions.php:578
|
565 |
msgid "Displays a layer over the map for traffic"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: ../include/functions.php:583
|
569 |
msgid "Options"
|
570 |
msgstr "Opciones"
|
571 |
|
572 |
+
#: ../include/functions.php:586
|
573 |
msgid "Display the street view control"
|
574 |
msgstr "Mostrar el control de vista de la calle"
|
575 |
|
576 |
+
#: ../include/functions.php:588
|
577 |
msgid "Enable mouse wheel zoom"
|
578 |
msgstr "Habilitar ratón con rueda de zoom"
|
579 |
|
580 |
+
#: ../include/functions.php:590
|
581 |
#, fuzzy
|
582 |
#| msgid "Enable zoom/pan controls"
|
583 |
msgid "Enable zoom controls"
|
584 |
msgstr "Activar controles de zoom / pan"
|
585 |
|
586 |
+
#: ../include/functions.php:592
|
587 |
#, fuzzy
|
588 |
#| msgid "Enable zoom/pan controls"
|
589 |
msgid "Enable fullscreen control"
|
590 |
msgstr "Activar controles de zoom / pan"
|
591 |
|
592 |
+
#: ../include/functions.php:594
|
593 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
594 |
msgstr "Activar los controles de tipo de mapa (Mapa , Satélite o híbridos )"
|
595 |
|
596 |
+
#: ../include/functions.php:598
|
597 |
#, fuzzy
|
598 |
#| msgid "Enter the number of posts to display on the map"
|
599 |
msgid "Enter the number of posts to display on the post/page map"
|
600 |
msgstr "Entre el número de posts a visualizar en el mapa"
|
601 |
|
602 |
+
#: ../include/functions.php:602
|
603 |
msgid "Allow stylize the maps:"
|
604 |
msgstr "Permitir estilizar los mapas :"
|
605 |
|
606 |
+
#: ../include/functions.php:612
|
607 |
msgid ""
|
608 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
609 |
"structure with the map's styles"
|
611 |
"Si usted quiere cambiar los estilos de los mapas , asegúrese de saber cómo "
|
612 |
"crear una estructura JSON con estilos del mapa"
|
613 |
|
614 |
+
#: ../include/functions.php:620
|
615 |
msgid "Display the map's legend:"
|
616 |
msgstr "Mostrar la leyenda del mapa:"
|
617 |
|
618 |
+
#: ../include/functions.php:626
|
619 |
msgid "Select the taxonomy to display on legend:"
|
620 |
msgstr "Seleccione la taxonomía para mostrar en la leyenda :"
|
621 |
|
622 |
+
#: ../include/functions.php:629
|
623 |
msgid "Select a taxonomy"
|
624 |
msgstr "Seleccionar una taxonomía"
|
625 |
|
626 |
+
#: ../include/functions.php:634
|
627 |
msgid "Enter a title for legend:"
|
628 |
msgstr "Introduzca un título para la leyenda :"
|
629 |
|
630 |
+
#: ../include/functions.php:640
|
631 |
msgid "Enter a classname to be applied to the legend:"
|
632 |
msgstr "Introduzca un nombre de clase que se aplicará a la leyenda :"
|
633 |
|
634 |
+
#: ../include/functions.php:680 ../include/functions.php:1068
|
635 |
msgid ""
|
636 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
637 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
641 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
642 |
"\"_blank\"> CodePeople Post Ubicación </a>"
|
643 |
|
644 |
+
#: ../include/functions.php:683
|
645 |
msgid "To insert a map in the post follow the steps below"
|
646 |
msgstr "Para insertar un mapa en el post, siga los siguientes pasos"
|
647 |
|
648 |
+
#: ../include/functions.php:686
|
649 |
msgid ""
|
650 |
"Enter the point's information (the latitude and longitude are required, but "
|
651 |
"are obtained pressing the \"verify\" button after type the address"
|
654 |
"son obtenidos pulsando el botón \"Verificar\", después de escribir la "
|
655 |
"dirección)"
|
656 |
|
657 |
+
#: ../include/functions.php:687
|
658 |
msgid ""
|
659 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
660 |
"\" button"
|
662 |
"Inserte el shortcode en el contenido del post, presionando el botón "
|
663 |
"\"inserte la etiqueta del mapa\""
|
664 |
|
665 |
+
#: ../include/functions.php:688
|
666 |
#, fuzzy
|
667 |
#| msgid ""
|
668 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
675 |
"Si desea especificar una confguración para este mapa en particular, marque "
|
676 |
"la opción \"Usar ajustes particulares para este mapa\""
|
677 |
|
678 |
+
#: ../include/functions.php:689
|
679 |
msgid ""
|
680 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
681 |
msgstr ""
|
682 |
"No olvide presionar el botón \"Actualizar\" para salvar los datos del post y "
|
683 |
"del mapa"
|
684 |
|
685 |
+
#: ../include/functions.php:693
|
686 |
msgid "Map points"
|
687 |
msgstr "Puntos de Ruta"
|
688 |
|
689 |
+
#: ../include/functions.php:695
|
690 |
msgid ""
|
691 |
"Multiple points in the same Post/Page are available only in the <a href="
|
692 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
696 |
"wordpress.dwbooster.com/content - tools/codepeople post - map\" target="
|
697 |
"\"_blank\"> CodePeople Post Ubicación </a>."
|
698 |
|
699 |
+
#: ../include/functions.php:699
|
700 |
msgid "Map point description"
|
701 |
msgstr "Mapa Descripción del punto"
|
702 |
|
703 |
+
#: ../include/functions.php:702
|
704 |
msgid "Location name:"
|
705 |
msgstr "Nombre de la ubicación :"
|
706 |
|
707 |
+
#: ../include/functions.php:708
|
708 |
msgid "Location description:"
|
709 |
msgstr "Descripción de la ubicación :"
|
710 |
|
711 |
+
#: ../include/functions.php:717
|
712 |
#, fuzzy
|
713 |
#| msgid "Select an images to attach to the point: "
|
714 |
msgid "Select an image to attach to the point: "
|
715 |
msgstr "Seleccionar una imágenes para adjuntar al punto:"
|
716 |
|
717 |
+
#: ../include/functions.php:732
|
718 |
msgid "Address:"
|
719 |
msgstr "Dirección:"
|
720 |
|
721 |
+
#: ../include/functions.php:738
|
722 |
msgid "Latitude:"
|
723 |
msgstr "Latitud:"
|
724 |
|
725 |
+
#: ../include/functions.php:744
|
726 |
msgid "Longitude:"
|
727 |
msgstr "Longitud :"
|
728 |
|
729 |
+
#: ../include/functions.php:750
|
730 |
msgid "Verify"
|
731 |
msgstr "Verificar"
|
732 |
|
733 |
+
#: ../include/functions.php:752
|
734 |
msgid ""
|
735 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
736 |
"point address."
|
738 |
"Verificar esta latitud y longitud usando geocodificación . Esto podría "
|
739 |
"sobrescribir la dirección del punto ."
|
740 |
|
741 |
+
#: ../include/functions.php:752
|
742 |
msgid "Required: Press the button \"verify\" after complete the address."
|
743 |
msgstr ""
|
744 |
"Deseados: pulse el botón \" verifique \"después de completar la dirección."
|
745 |
|
746 |
+
#: ../include/functions.php:775
|
747 |
msgid ""
|
748 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
749 |
"strong> button and save the post/page modifications."
|
752 |
"insertar el mapa de etiquetas \" </ strong> y guardar las modificaciones del "
|
753 |
"post / página."
|
754 |
|
755 |
+
#: ../include/functions.php:782
|
756 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
757 |
msgstr "¿Quieres mostrar una <strong> forma </strong> en el mapa ?"
|
758 |
|
759 |
+
#: ../include/functions.php:790
|
760 |
msgid "If you want to display the map in page / post:"
|
761 |
msgstr "Si usted quiere mostrar el mapa en la página / post:"
|
762 |
|
763 |
+
#: ../include/functions.php:791
|
764 |
msgid "Insert the map tag"
|
765 |
msgstr "Inserte la etiqueta del mapa"
|
766 |
|
767 |
+
#: ../include/functions.php:794
|
768 |
msgid ""
|
769 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
770 |
"zoom and the other maps attributes:</p>\n"
|
784 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../include/functions.php:803
|
788 |
msgid "[ + less information]"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: ../include/functions.php:807
|
792 |
msgid "To display the points that belong to any category"
|
793 |
msgstr "Mostrar los puntos que pertenecen a una categoría"
|
794 |
|
795 |
+
#: ../include/functions.php:809
|
796 |
msgid "All points on website"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: ../include/functions.php:956
|
800 |
msgid "Settings Updated"
|
801 |
msgstr "Configuración de Actualización"
|
802 |
|
803 |
+
#: ../include/functions.php:969
|
804 |
msgid ""
|
805 |
"Generate points dynamically from geolocation information included on images, "
|
806 |
"when images are uploaded to WordPress:"
|
808 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
809 |
"incluida en las imágenes, cuando las imágenes se cargan en WordPress:"
|
810 |
|
811 |
+
#: ../include/functions.php:972
|
812 |
msgid ""
|
813 |
"The geolocation information is added to the images from your mobiles or "
|
814 |
"cameras, if they have associated GPS devices"
|
816 |
"La información de geolocalización se añade a las imágenes desde sus "
|
817 |
"teléfonos móviles o cámaras, si han asociado dispositivos GPS"
|
818 |
|
819 |
+
#: ../include/functions.php:974
|
820 |
msgid "Process All Previous Images"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: ../include/functions.php:975
|
824 |
msgid ""
|
825 |
"Process all images in the library, and generates new points in the parents "
|
826 |
"pages, with the geocode information in the images metadata. A post/page is "
|
828 |
"post/page."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../include/functions.php:976 ../include/functions.php:986
|
832 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: ../include/functions.php:976 ../include/functions.php:986
|
836 |
+
#: ../include/functions.php:993 ../include/functions.php:999
|
837 |
+
#: ../include/functions.php:1005 ../include/functions.php:1025
|
838 |
msgid "Click Here"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: ../include/functions.php:981
|
842 |
msgid ""
|
843 |
"Generate points dynamically from geolocation information included on posts:"
|
844 |
msgstr ""
|
845 |
"Generar puntos de forma dinámica a partir de información de geolocalización "
|
846 |
"incluida en los mensajes :"
|
847 |
|
848 |
+
#: ../include/functions.php:984
|
849 |
msgid ""
|
850 |
"The geolocation information is added to the post from WordPress app in your "
|
851 |
"mobile"
|
853 |
"La información de geolocalización se añade al post de WordPress aplicación "
|
854 |
"en tu móvil"
|
855 |
|
856 |
+
#: ../include/functions.php:991
|
857 |
msgid "Use points information in search results:"
|
858 |
msgstr "Utilizar la información puntos en los resultados de búsqueda :"
|
859 |
|
860 |
+
#: ../include/functions.php:993
|
861 |
msgid ""
|
862 |
"The search in the maps data is available only in commercial version of "
|
863 |
"plugin."
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: ../include/functions.php:997
|
867 |
msgid "Highlight post when mouse move over related point on map:"
|
868 |
msgstr ""
|
869 |
"Post Resaltar cuando mueva el ratón sobre el punto relacionado en el mapa :"
|
870 |
|
871 |
+
#: ../include/functions.php:999
|
872 |
msgid "The post highlight is available only in commercial version of plugin."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: ../include/functions.php:1003
|
876 |
msgid "Highlight class:"
|
877 |
msgstr "Clase Highlight :"
|
878 |
|
879 |
+
#: ../include/functions.php:1005
|
880 |
msgid "The highlight class is available only in commercial version of plugin."
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: ../include/functions.php:1009
|
884 |
msgid "Allow to associate a map to the post types:"
|
885 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
886 |
|
887 |
+
#: ../include/functions.php:1022
|
888 |
msgid "Posts and Pages are selected by default"
|
889 |
msgstr "Mensajes y páginas se seleccionan de forma predeterminada"
|
890 |
|
891 |
+
#: ../include/functions.php:1025
|
892 |
msgid ""
|
893 |
"Associate the maps to custom post types is available only in commercial "
|
894 |
"version of plugin."
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: ../include/functions.php:1035
|
898 |
msgid "Draws Routes"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: ../include/functions.php:1041
|
902 |
#, fuzzy
|
903 |
#| msgid "Allow to associate a map to the post types:"
|
904 |
msgid "Associate maps to custom post types"
|
905 |
msgstr "Permitir a asociar el mapa de los tipos de posts:"
|
906 |
|
907 |
+
#: ../include/functions.php:1047
|
908 |
msgid "Display a map for each post in pages with multiple posts"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: ../include/functions.php:1052
|
912 |
msgid "Troubleshoot Section"
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: ../include/functions.php:1057
|
916 |
msgid "Load required resources (javascript files) in footer"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: ../include/functions.php:1069
|
920 |
msgid "Update Settings"
|
921 |
msgstr "Configuración de la actualización"
|
922 |
|
923 |
+
#: ../include/functions.php:1547
|
924 |
msgid "Help"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: ../include/functions.php:1549
|
928 |
msgid "Request custom changes"
|
929 |
msgstr "Solicitar cambios de encargo"
|
930 |
|
languages/codepeople-post-map-fr_FR.mo
CHANGED
Binary file
|
languages/codepeople-post-map-fr_FR.po
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
-
"POT-Creation-Date:
|
5 |
-
"PO-Revision-Date:
|
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
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
@@ -247,7 +247,7 @@ msgstr "Alimenté par"
|
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuration des cartes"
|
249 |
|
250 |
-
#: ../include/functions.php:313 ../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."
|
@@ -266,7 +266,7 @@ msgstr ""
|
|
266 |
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
-
"
|
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/\" "
|
@@ -279,187 +279,187 @@ msgstr ""
|
|
279 |
"com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
|
280 |
"au CP Google Maps</a>"
|
281 |
|
282 |
-
#: ../include/functions.php:
|
283 |
msgid "Video Tutorial"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: ../include/functions.php:
|
287 |
msgid "I have an API key:"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ../include/functions.php:
|
291 |
msgid "Enter your API Key"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: ../include/functions.php:
|
295 |
msgid "Please, visit the following link to get the API Key for your website:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: ../include/functions.php:
|
299 |
msgid "With the Google project, activate at least the following APIs"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: ../include/functions.php:
|
303 |
msgid ""
|
304 |
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../include/functions.php:
|
308 |
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: ../include/functions.php:
|
312 |
msgid "Use particular settings for this map:"
|
313 |
msgstr "Utiliser des paramètres particuliers pour cette carte:"
|
314 |
|
315 |
-
#: ../include/functions.php:
|
316 |
msgid "Map zoom:"
|
317 |
msgstr "Zoom"
|
318 |
|
319 |
-
#: ../include/functions.php:
|
320 |
msgid "Dynamic zoom:"
|
321 |
msgstr "Zoom dynamique:"
|
322 |
|
323 |
-
#: ../include/functions.php:
|
324 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
325 |
msgstr ""
|
326 |
"Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
|
327 |
|
328 |
-
#: ../include/functions.php:
|
329 |
msgid "Map width:"
|
330 |
msgstr "Largeur de la carte:"
|
331 |
|
332 |
-
#: ../include/functions.php:
|
333 |
msgid "Map height:"
|
334 |
msgstr "Hauteur de la carte:"
|
335 |
|
336 |
-
#: ../include/functions.php:
|
337 |
msgid "Map margin:"
|
338 |
msgstr "Marge de la carte:"
|
339 |
|
340 |
-
#: ../include/functions.php:
|
341 |
msgid "Map align:"
|
342 |
msgstr "Alignement de la Carte:"
|
343 |
|
344 |
-
#: ../include/functions.php:
|
345 |
msgid "left"
|
346 |
msgstr "gauche"
|
347 |
|
348 |
-
#: ../include/functions.php:
|
349 |
msgid "center"
|
350 |
msgstr "centre"
|
351 |
|
352 |
-
#: ../include/functions.php:
|
353 |
msgid "right"
|
354 |
msgstr "droit"
|
355 |
|
356 |
-
#: ../include/functions.php:
|
357 |
msgid "Map type:"
|
358 |
msgstr "Type de Carte:"
|
359 |
|
360 |
-
#: ../include/functions.php:
|
361 |
msgid "ROADMAP - Displays a normal street map"
|
362 |
msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
|
363 |
|
364 |
-
#: ../include/functions.php:
|
365 |
msgid "SATELLITE - Displays satellite images"
|
366 |
msgstr "SATELLITE - affiche des images satellite"
|
367 |
|
368 |
-
#: ../include/functions.php:
|
369 |
msgid ""
|
370 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
371 |
msgstr ""
|
372 |
"TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
|
373 |
"terrain et la végétation"
|
374 |
|
375 |
-
#: ../include/functions.php:
|
376 |
msgid ""
|
377 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
378 |
msgstr ""
|
379 |
"HYBRIDE - Affiche une couche transparente de rues principales sur les images "
|
380 |
"satellites"
|
381 |
|
382 |
-
#: ../include/functions.php:
|
383 |
msgid "Map language:"
|
384 |
msgstr "Langue de la carte:"
|
385 |
|
386 |
-
#: ../include/functions.php:
|
387 |
msgid "Allow drag the map:"
|
388 |
msgstr "Autoriser traînée la carte"
|
389 |
|
390 |
-
#: ../include/functions.php:
|
391 |
msgid "Display map in post/page:"
|
392 |
msgstr "Afficher la carte sur l'article/la page:"
|
393 |
|
394 |
-
#: ../include/functions.php:
|
395 |
msgid "as icon"
|
396 |
msgstr "en icône"
|
397 |
|
398 |
-
#: ../include/functions.php:
|
399 |
msgid "as full map"
|
400 |
msgstr "en carte"
|
401 |
|
402 |
-
#: ../include/functions.php:
|
403 |
msgid "Show info bubbles:"
|
404 |
msgstr "Afficher les infos bulles:"
|
405 |
|
406 |
-
#: ../include/functions.php:
|
407 |
msgid "Display the bubbles associated to the points"
|
408 |
msgstr "Afficher les bulles associées aux points"
|
409 |
|
410 |
-
#: ../include/functions.php:
|
411 |
msgid "Display a bubble by default:"
|
412 |
msgstr "Afficher une bulle par défaut:"
|
413 |
|
414 |
-
#: ../include/functions.php:
|
415 |
msgid "Display a bubble opened by default"
|
416 |
msgstr "Afficher une bulle ouverte par défaut"
|
417 |
|
418 |
-
#: ../include/functions.php:
|
419 |
#, fuzzy
|
420 |
#| msgid "Display a link to Google Maps:"
|
421 |
msgid "Display as marker tooltip:"
|
422 |
msgstr "Afficher un lien vers Google Maps:"
|
423 |
|
424 |
-
#: ../include/functions.php:
|
425 |
#, fuzzy
|
426 |
#| msgid "Location name:"
|
427 |
msgid "Point location name"
|
428 |
msgstr "Nom du lieu:"
|
429 |
|
430 |
-
#: ../include/functions.php:
|
431 |
msgid "Point address"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: ../include/functions.php:
|
435 |
msgid "None"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: ../include/functions.php:
|
439 |
#, fuzzy
|
440 |
#| msgid "Display a bubble by default:"
|
441 |
msgid "Display Featured Image by default:"
|
442 |
msgstr "Afficher une bulle par défaut:"
|
443 |
|
444 |
-
#: ../include/functions.php:
|
445 |
msgid ""
|
446 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
447 |
"points don't have associated an image"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: ../include/functions.php:
|
451 |
msgid "Display the get directions link:"
|
452 |
msgstr "Afficher le lien de directions:"
|
453 |
|
454 |
-
#: ../include/functions.php:
|
455 |
msgid "Display a link at bottom of infowindow to get directions"
|
456 |
msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
|
457 |
|
458 |
-
#: ../include/functions.php:
|
459 |
-
#: ../include/functions.php:
|
460 |
-
#: ../include/functions.php:
|
461 |
-
#: ../include/functions.php:
|
462 |
-
#: ../include/functions.php:
|
463 |
msgid ""
|
464 |
"The feature is available only for the commercial version of plugin. <a href="
|
465 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -469,133 +469,133 @@ msgstr ""
|
|
469 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
470 |
"\" target = \"_blank\">Cliquez ici</a>."
|
471 |
|
472 |
-
#: ../include/functions.php:
|
473 |
msgid "Display a link to Google Maps:"
|
474 |
msgstr "Afficher un lien vers Google Maps:"
|
475 |
|
476 |
-
#: ../include/functions.php:
|
477 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
478 |
msgstr ""
|
479 |
"Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
|
480 |
|
481 |
-
#: ../include/functions.php:
|
482 |
msgid "Display a link to street view:"
|
483 |
msgstr "Afficher un lien vers Vue de la rue (Street View):"
|
484 |
|
485 |
-
#: ../include/functions.php:
|
486 |
msgid ""
|
487 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
488 |
msgstr ""
|
489 |
"Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
|
490 |
"correspondante"
|
491 |
|
492 |
-
#: ../include/functions.php:
|
493 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
494 |
msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
|
495 |
|
496 |
-
#: ../include/functions.php:
|
497 |
msgid "Displays the number of points in the cluster"
|
498 |
msgstr "Affiche le nombre de points dans le regroupement"
|
499 |
|
500 |
-
#: ../include/functions.php:
|
501 |
msgid "Display the user's location:"
|
502 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
503 |
|
504 |
-
#: ../include/functions.php:
|
505 |
msgid "Display an icon with the user's location on map"
|
506 |
msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
|
507 |
|
508 |
-
#: ../include/functions.php:
|
509 |
#, fuzzy
|
510 |
#| msgid "Display the user's location:"
|
511 |
msgid "Refresh the user's location every:"
|
512 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
513 |
|
514 |
-
#: ../include/functions.php:
|
515 |
msgid "milliseconds"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ../include/functions.php:
|
519 |
msgid "Title of user's location:"
|
520 |
msgstr "Titre de l'emplacement de l'utilisateur:"
|
521 |
|
522 |
-
#: ../include/functions.php:
|
523 |
msgid "Title of user's location"
|
524 |
msgstr "Titre de l'emplacement de l'utilisateur"
|
525 |
|
526 |
-
#: ../include/functions.php:
|
527 |
msgid "Display a search box for places:"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: ../include/functions.php:
|
531 |
msgid "Includes an input box on the map for searching places"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: ../include/functions.php:
|
535 |
msgid "Display route:"
|
536 |
msgstr "Afficher l'itinéraire:"
|
537 |
|
538 |
-
#: ../include/functions.php:
|
539 |
msgid "Draws the route between the points in the same post"
|
540 |
msgstr "Dessine le trajet entre les points dans le même article"
|
541 |
|
542 |
-
#: ../include/functions.php:
|
543 |
msgid ""
|
544 |
"Connect the points with polylines, even if there is not a route between "
|
545 |
"points"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ../include/functions.php:
|
549 |
msgid "Travel mode:"
|
550 |
msgstr "Mode de transport:"
|
551 |
|
552 |
-
#: ../include/functions.php:
|
553 |
msgid "Include traffic layer:"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: ../include/functions.php:
|
557 |
msgid "Displays a layer over the map for traffic"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: ../include/functions.php:
|
561 |
msgid "Options"
|
562 |
msgstr "Options"
|
563 |
|
564 |
-
#: ../include/functions.php:
|
565 |
msgid "Display the street view control"
|
566 |
msgstr "Afficher le moyen de contrôle de la vue de la rue"
|
567 |
|
568 |
-
#: ../include/functions.php:
|
569 |
msgid "Enable mouse wheel zoom"
|
570 |
msgstr "Activer zoom molette de la souris"
|
571 |
|
572 |
-
#: ../include/functions.php:
|
573 |
#, fuzzy
|
574 |
#| msgid "Enable zoom/pan controls"
|
575 |
msgid "Enable zoom controls"
|
576 |
msgstr "Activer le contrôle zoom/panoramique"
|
577 |
|
578 |
-
#: ../include/functions.php:
|
579 |
#, fuzzy
|
580 |
#| msgid "Enable zoom/pan controls"
|
581 |
msgid "Enable fullscreen control"
|
582 |
msgstr "Activer le contrôle zoom/panoramique"
|
583 |
|
584 |
-
#: ../include/functions.php:
|
585 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
586 |
msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
|
587 |
|
588 |
-
#: ../include/functions.php:
|
589 |
#, fuzzy
|
590 |
#| msgid "Enter the number of posts to display on the map"
|
591 |
msgid "Enter the number of posts to display on the post/page map"
|
592 |
msgstr "Entrez le nombre d'articles à afficher sur la carte"
|
593 |
|
594 |
-
#: ../include/functions.php:
|
595 |
msgid "Allow stylize the maps:"
|
596 |
msgstr "Autoriser de modifier le style des cartes:"
|
597 |
|
598 |
-
#: ../include/functions.php:
|
599 |
msgid ""
|
600 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
601 |
"structure with the map's styles"
|
@@ -603,27 +603,27 @@ msgstr ""
|
|
603 |
"Si vous voulez changer les styles des cartes , assurez-vous de savoir "
|
604 |
"comment créer une structure JSON avec les styles de la carte"
|
605 |
|
606 |
-
#: ../include/functions.php:
|
607 |
msgid "Display the map's legend:"
|
608 |
msgstr "Afficher la légende de la carte:"
|
609 |
|
610 |
-
#: ../include/functions.php:
|
611 |
msgid "Select the taxonomy to display on legend:"
|
612 |
msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
|
613 |
|
614 |
-
#: ../include/functions.php:
|
615 |
msgid "Select a taxonomy"
|
616 |
msgstr "Sélectionnez une taxonomie"
|
617 |
|
618 |
-
#: ../include/functions.php:
|
619 |
msgid "Enter a title for legend:"
|
620 |
msgstr "Entrez un titre pour la légende:"
|
621 |
|
622 |
-
#: ../include/functions.php:
|
623 |
msgid "Enter a classname to be applied to the legend:"
|
624 |
msgstr "Entrez un nom de classe à appliquer à la légende:"
|
625 |
|
626 |
-
#: ../include/functions.php:
|
627 |
msgid ""
|
628 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
629 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
@@ -633,11 +633,11 @@ msgstr ""
|
|
633 |
"dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
|
634 |
"CodePeople Post Map"
|
635 |
|
636 |
-
#: ../include/functions.php:
|
637 |
msgid "To insert a map in the post follow the steps below"
|
638 |
msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
|
639 |
|
640 |
-
#: ../include/functions.php:
|
641 |
msgid ""
|
642 |
"Enter the point's information (the latitude and longitude are required, but "
|
643 |
"are obtained pressing the \"verify\" button after type the address"
|
@@ -646,7 +646,7 @@ msgstr ""
|
|
646 |
"obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
|
647 |
"après avoir entré l'adresse)"
|
648 |
|
649 |
-
#: ../include/functions.php:
|
650 |
msgid ""
|
651 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
652 |
"\" button"
|
@@ -654,7 +654,7 @@ msgstr ""
|
|
654 |
"Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
|
655 |
"Shortcode de la carte\""
|
656 |
|
657 |
-
#: ../include/functions.php:
|
658 |
#, fuzzy
|
659 |
#| msgid ""
|
660 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
@@ -668,18 +668,18 @@ msgstr ""
|
|
668 |
"cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
|
669 |
"et modifiez les paramètres de cette carte"
|
670 |
|
671 |
-
#: ../include/functions.php:
|
672 |
msgid ""
|
673 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
674 |
msgstr ""
|
675 |
"N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
|
676 |
"données de l'article et la carte."
|
677 |
|
678 |
-
#: ../include/functions.php:
|
679 |
msgid "Map points"
|
680 |
msgstr "Points de la carte"
|
681 |
|
682 |
-
#: ../include/functions.php:
|
683 |
msgid ""
|
684 |
"Multiple points in the same Post/Page are available only in the <a href="
|
685 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
@@ -689,41 +689,41 @@ msgstr ""
|
|
689 |
"la <a href = \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
|
690 |
"map#download\" target = \"_blank\">version commerciale</a>."
|
691 |
|
692 |
-
#: ../include/functions.php:
|
693 |
msgid "Map point description"
|
694 |
msgstr "Description d'un point sur la carte"
|
695 |
|
696 |
-
#: ../include/functions.php:
|
697 |
msgid "Location name:"
|
698 |
msgstr "Nom du lieu:"
|
699 |
|
700 |
-
#: ../include/functions.php:
|
701 |
msgid "Location description:"
|
702 |
msgstr "Description du lieu:"
|
703 |
|
704 |
-
#: ../include/functions.php:
|
705 |
#, fuzzy
|
706 |
#| msgid "Select an images to attach to the point: "
|
707 |
msgid "Select an image to attach to the point: "
|
708 |
msgstr "Sélectionnez une image à associer au point:"
|
709 |
|
710 |
-
#: ../include/functions.php:
|
711 |
msgid "Address:"
|
712 |
msgstr "Adresse (inclure le pays):"
|
713 |
|
714 |
-
#: ../include/functions.php:
|
715 |
msgid "Latitude:"
|
716 |
msgstr "Latitude:"
|
717 |
|
718 |
-
#: ../include/functions.php:
|
719 |
msgid "Longitude:"
|
720 |
msgstr "Longitude:"
|
721 |
|
722 |
-
#: ../include/functions.php:
|
723 |
msgid "Verify"
|
724 |
msgstr "Vérifier"
|
725 |
|
726 |
-
#: ../include/functions.php:
|
727 |
msgid ""
|
728 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
729 |
"point address."
|
@@ -731,12 +731,12 @@ msgstr ""
|
|
731 |
"Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
|
732 |
"pourrait écraser l'adresse de point."
|
733 |
|
734 |
-
#: ../include/functions.php:
|
735 |
msgid "Required: Press the button \"verify\" after complete the address."
|
736 |
msgstr ""
|
737 |
"Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
|
738 |
|
739 |
-
#: ../include/functions.php:
|
740 |
msgid ""
|
741 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
742 |
"strong> button and save the post/page modifications."
|
@@ -745,19 +745,19 @@ msgstr ""
|
|
745 |
">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
|
746 |
"publication/page modifications."
|
747 |
|
748 |
-
#: ../include/functions.php:
|
749 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
750 |
msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
|
751 |
|
752 |
-
#: ../include/functions.php:
|
753 |
msgid "If you want to display the map in page / post:"
|
754 |
msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
|
755 |
|
756 |
-
#: ../include/functions.php:
|
757 |
msgid "Insert the map tag"
|
758 |
msgstr "Insérer le Shortcode de la carte"
|
759 |
|
760 |
-
#: ../include/functions.php:
|
761 |
msgid ""
|
762 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
763 |
"zoom and the other maps attributes:</p>\n"
|
@@ -777,25 +777,25 @@ msgid ""
|
|
777 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: ../include/functions.php:
|
781 |
#, fuzzy
|
782 |
#| msgid "[ + more information]"
|
783 |
msgid "[ + less information]"
|
784 |
msgstr "[en savoir plus]"
|
785 |
|
786 |
-
#: ../include/functions.php:
|
787 |
msgid "To display the points that belong to any category"
|
788 |
msgstr "Pour afficher les points qui appartiennent à une catégorie"
|
789 |
|
790 |
-
#: ../include/functions.php:
|
791 |
msgid "All points on website"
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: ../include/functions.php:
|
795 |
msgid "Settings Updated"
|
796 |
msgstr "Paramètres Mise à jour"
|
797 |
|
798 |
-
#: ../include/functions.php:
|
799 |
msgid ""
|
800 |
"Generate points dynamically from geolocation information included on images, "
|
801 |
"when images are uploaded to WordPress:"
|
@@ -804,7 +804,7 @@ msgstr ""
|
|
804 |
"géolocalisation inclus sur les images , lorsque les images sont téléchargées "
|
805 |
"sur WordPress:"
|
806 |
|
807 |
-
#: ../include/functions.php:
|
808 |
msgid ""
|
809 |
"The geolocation information is added to the images from your mobiles or "
|
810 |
"cameras, if they have associated GPS devices"
|
@@ -812,11 +812,11 @@ msgstr ""
|
|
812 |
"Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
|
813 |
"de caméras , se ils ont associé les appareils GPS"
|
814 |
|
815 |
-
#: ../include/functions.php:
|
816 |
msgid "Process All Previous Images"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: ../include/functions.php:
|
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,24 +824,24 @@ msgid ""
|
|
824 |
"post/page."
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: ../include/functions.php:
|
828 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: ../include/functions.php:
|
832 |
-
#: ../include/functions.php:
|
833 |
-
#: ../include/functions.php:
|
834 |
msgid "Click Here"
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: ../include/functions.php:
|
838 |
msgid ""
|
839 |
"Generate points dynamically from geolocation information included on posts:"
|
840 |
msgstr ""
|
841 |
"Générer des points dynamiquement à partir des informations de "
|
842 |
"géolocalisation inclus dans les messages:"
|
843 |
|
844 |
-
#: ../include/functions.php:
|
845 |
msgid ""
|
846 |
"The geolocation information is added to the post from WordPress app in your "
|
847 |
"mobile"
|
@@ -849,79 +849,79 @@ msgstr ""
|
|
849 |
"Les informations de géolocalisation est ajouté au article de WordPress dans "
|
850 |
"votre application mobile"
|
851 |
|
852 |
-
#: ../include/functions.php:
|
853 |
msgid "Use points information in search results:"
|
854 |
msgstr "Utilisez des points d'information dans les résultats de recherche:"
|
855 |
|
856 |
-
#: ../include/functions.php:
|
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:
|
863 |
msgid "Highlight post when mouse move over related point on map:"
|
864 |
msgstr ""
|
865 |
"Mettre en évidence l'article lorsque la souris survole le point concerné sur "
|
866 |
"la carte:"
|
867 |
|
868 |
-
#: ../include/functions.php:
|
869 |
msgid "The post highlight is available only in commercial version of plugin."
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../include/functions.php:
|
873 |
msgid "Highlight class:"
|
874 |
msgstr "Classe pour surligner et mettre en évidence"
|
875 |
|
876 |
-
#: ../include/functions.php:
|
877 |
msgid "The highlight class is available only in commercial version of plugin."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../include/functions.php:
|
881 |
msgid "Allow to associate a map to the post types:"
|
882 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
883 |
|
884 |
-
#: ../include/functions.php:
|
885 |
msgid "Posts and Pages are selected by default"
|
886 |
msgstr "Articles et Pages sont sélectionnés par défaut"
|
887 |
|
888 |
-
#: ../include/functions.php:
|
889 |
msgid ""
|
890 |
"Associate the maps to custom post types is available only in commercial "
|
891 |
"version of plugin."
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: ../include/functions.php:
|
895 |
msgid "Draws Routes"
|
896 |
msgstr ""
|
897 |
|
898 |
-
#: ../include/functions.php:
|
899 |
#, fuzzy
|
900 |
#| msgid "Allow to associate a map to the post types:"
|
901 |
msgid "Associate maps to custom post types"
|
902 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
903 |
|
904 |
-
#: ../include/functions.php:
|
905 |
msgid "Display a map for each post in pages with multiple posts"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: ../include/functions.php:
|
909 |
msgid "Troubleshoot Section"
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: ../include/functions.php:
|
913 |
msgid "Load required resources (javascript files) in footer"
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: ../include/functions.php:
|
917 |
msgid "Update Settings"
|
918 |
msgstr "Mise à Jour"
|
919 |
|
920 |
-
#: ../include/functions.php:
|
921 |
msgid "Help"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#: ../include/functions.php:
|
925 |
msgid "Request custom changes"
|
926 |
msgstr "Demande de Modifications personnalisées"
|
927 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: codepeople-post-map\n"
|
4 |
+
"POT-Creation-Date: 2022-03-29 15:23+0200\n"
|
5 |
+
"PO-Revision-Date: 2022-03-29 15:23+0200\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 3.0.1\n"
|
13 |
"X-Poedit-KeywordsList: __;gettext;gettext_noop;_e\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
247 |
msgid "Maps Configuration"
|
248 |
msgstr "Configuration des cartes"
|
249 |
|
250 |
+
#: ../include/functions.php:313 ../include/functions.php:681
|
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."
|
266 |
#| "factor.com/cp-google-maps/\" target=\"_blank\">Public page: Click to "
|
267 |
#| "access the CP Google Maps</a>"
|
268 |
msgid ""
|
269 |
+
"To test the premium version of CP Google Maps, please, 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/\" "
|
279 |
"com/cp-google-maps/\" target=\"_blank\">Page publique: Cliquez pour accéder "
|
280 |
"au CP Google Maps</a>"
|
281 |
|
282 |
+
#: ../include/functions.php:321
|
283 |
msgid "Video Tutorial"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: ../include/functions.php:338
|
287 |
msgid "I have an API key:"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ../include/functions.php:340
|
291 |
msgid "Enter your API Key"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: ../include/functions.php:343
|
295 |
msgid "Please, visit the following link to get the API Key for your website:"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: ../include/functions.php:347
|
299 |
msgid "With the Google project, activate at least the following APIs"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: ../include/functions.php:350
|
303 |
msgid ""
|
304 |
"Required if the <i>\"Display a search box for places\"</i> option is enabled"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../include/functions.php:351
|
308 |
msgid "Required if the <i>\"Display route\"</i> option is enabled"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: ../include/functions.php:362
|
312 |
msgid "Use particular settings for this map:"
|
313 |
msgstr "Utiliser des paramètres particuliers pour cette carte:"
|
314 |
|
315 |
+
#: ../include/functions.php:381
|
316 |
msgid "Map zoom:"
|
317 |
msgstr "Zoom"
|
318 |
|
319 |
+
#: ../include/functions.php:387
|
320 |
msgid "Dynamic zoom:"
|
321 |
msgstr "Zoom dynamique:"
|
322 |
|
323 |
+
#: ../include/functions.php:389
|
324 |
msgid "Allows to adjust the zoom dynamically to display all points on map"
|
325 |
msgstr ""
|
326 |
"Permet de régler le zoom dynamique pour afficher tous les points sur la carte"
|
327 |
|
328 |
+
#: ../include/functions.php:393
|
329 |
msgid "Map width:"
|
330 |
msgstr "Largeur de la carte:"
|
331 |
|
332 |
+
#: ../include/functions.php:405
|
333 |
msgid "Map height:"
|
334 |
msgstr "Hauteur de la carte:"
|
335 |
|
336 |
+
#: ../include/functions.php:411
|
337 |
msgid "Map margin:"
|
338 |
msgstr "Marge de la carte:"
|
339 |
|
340 |
+
#: ../include/functions.php:417
|
341 |
msgid "Map align:"
|
342 |
msgstr "Alignement de la Carte:"
|
343 |
|
344 |
+
#: ../include/functions.php:420
|
345 |
msgid "left"
|
346 |
msgstr "gauche"
|
347 |
|
348 |
+
#: ../include/functions.php:421
|
349 |
msgid "center"
|
350 |
msgstr "centre"
|
351 |
|
352 |
+
#: ../include/functions.php:422
|
353 |
msgid "right"
|
354 |
msgstr "droit"
|
355 |
|
356 |
+
#: ../include/functions.php:427
|
357 |
msgid "Map type:"
|
358 |
msgstr "Type de Carte:"
|
359 |
|
360 |
+
#: ../include/functions.php:430
|
361 |
msgid "ROADMAP - Displays a normal street map"
|
362 |
msgstr "FEUILLE DE ROUTE - Affiche un plan normal"
|
363 |
|
364 |
+
#: ../include/functions.php:431
|
365 |
msgid "SATELLITE - Displays satellite images"
|
366 |
msgstr "SATELLITE - affiche des images satellite"
|
367 |
|
368 |
+
#: ../include/functions.php:432
|
369 |
msgid ""
|
370 |
"TERRAIN - Displays maps with physical features such as terrain and vegetation"
|
371 |
msgstr ""
|
372 |
"TERRAIN - d'afficher les cartes avec des caractéristiques physiques comme le "
|
373 |
"terrain et la végétation"
|
374 |
|
375 |
+
#: ../include/functions.php:433
|
376 |
msgid ""
|
377 |
"HYBRID - Displays a transparent layer of major streets on satellite images"
|
378 |
msgstr ""
|
379 |
"HYBRIDE - Affiche une couche transparente de rues principales sur les images "
|
380 |
"satellites"
|
381 |
|
382 |
+
#: ../include/functions.php:438
|
383 |
msgid "Map language:"
|
384 |
msgstr "Langue de la carte:"
|
385 |
|
386 |
+
#: ../include/functions.php:442
|
387 |
msgid "Allow drag the map:"
|
388 |
msgstr "Autoriser traînée la carte"
|
389 |
|
390 |
+
#: ../include/functions.php:448
|
391 |
msgid "Display map in post/page:"
|
392 |
msgstr "Afficher la carte sur l'article/la page:"
|
393 |
|
394 |
+
#: ../include/functions.php:451
|
395 |
msgid "as icon"
|
396 |
msgstr "en icône"
|
397 |
|
398 |
+
#: ../include/functions.php:452
|
399 |
msgid "as full map"
|
400 |
msgstr "en carte"
|
401 |
|
402 |
+
#: ../include/functions.php:458
|
403 |
msgid "Show info bubbles:"
|
404 |
msgstr "Afficher les infos bulles:"
|
405 |
|
406 |
+
#: ../include/functions.php:460
|
407 |
msgid "Display the bubbles associated to the points"
|
408 |
msgstr "Afficher les bulles associées aux points"
|
409 |
|
410 |
+
#: ../include/functions.php:465
|
411 |
msgid "Display a bubble by default:"
|
412 |
msgstr "Afficher une bulle par défaut:"
|
413 |
|
414 |
+
#: ../include/functions.php:467
|
415 |
msgid "Display a bubble opened by default"
|
416 |
msgstr "Afficher une bulle ouverte par défaut"
|
417 |
|
418 |
+
#: ../include/functions.php:476
|
419 |
#, fuzzy
|
420 |
#| msgid "Display a link to Google Maps:"
|
421 |
msgid "Display as marker tooltip:"
|
422 |
msgstr "Afficher un lien vers Google Maps:"
|
423 |
|
424 |
+
#: ../include/functions.php:478
|
425 |
#, fuzzy
|
426 |
#| msgid "Location name:"
|
427 |
msgid "Point location name"
|
428 |
msgstr "Nom du lieu:"
|
429 |
|
430 |
+
#: ../include/functions.php:479
|
431 |
msgid "Point address"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: ../include/functions.php:480
|
435 |
msgid "None"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: ../include/functions.php:485
|
439 |
#, fuzzy
|
440 |
#| msgid "Display a bubble by default:"
|
441 |
msgid "Display Featured Image by default:"
|
442 |
msgstr "Afficher une bulle par défaut:"
|
443 |
|
444 |
+
#: ../include/functions.php:487
|
445 |
msgid ""
|
446 |
"Displays the Featured Image in posts and pages in the infowindows, if the "
|
447 |
"points don't have associated an image"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: ../include/functions.php:492
|
451 |
msgid "Display the get directions link:"
|
452 |
msgstr "Afficher le lien de directions:"
|
453 |
|
454 |
+
#: ../include/functions.php:494
|
455 |
msgid "Display a link at bottom of infowindow to get directions"
|
456 |
msgstr "Afficher un lien en bas de la fenêtre d'infos pour l'adresse"
|
457 |
|
458 |
+
#: ../include/functions.php:495 ../include/functions.php:503
|
459 |
+
#: ../include/functions.php:511 ../include/functions.php:519
|
460 |
+
#: ../include/functions.php:527 ../include/functions.php:535
|
461 |
+
#: ../include/functions.php:543 ../include/functions.php:553
|
462 |
+
#: ../include/functions.php:784 ../include/functions.php:819
|
463 |
msgid ""
|
464 |
"The feature is available only for the commercial version of plugin. <a href="
|
465 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
469 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
470 |
"\" target = \"_blank\">Cliquez ici</a>."
|
471 |
|
472 |
+
#: ../include/functions.php:500
|
473 |
msgid "Display a link to Google Maps:"
|
474 |
msgstr "Afficher un lien vers Google Maps:"
|
475 |
|
476 |
+
#: ../include/functions.php:502
|
477 |
msgid "Display a link at bottom of infowindow to display on Google Maps"
|
478 |
msgstr ""
|
479 |
"Afficher un lien en bas de la fenêtre d'infos à afficher sur Google Maps"
|
480 |
|
481 |
+
#: ../include/functions.php:508
|
482 |
msgid "Display a link to street view:"
|
483 |
msgstr "Afficher un lien vers Vue de la rue (Street View):"
|
484 |
|
485 |
+
#: ../include/functions.php:510
|
486 |
msgid ""
|
487 |
"Display a link at bottom of infowindow to load the corresponding street view"
|
488 |
msgstr ""
|
489 |
"Afficher un lien en bas de la fenêtre d'infos pour charger la vue sur la rue "
|
490 |
"correspondante"
|
491 |
|
492 |
+
#: ../include/functions.php:516
|
493 |
msgid "Display a bundle of points in the same area, like a cluster:"
|
494 |
msgstr "Afficher un faisceau de points dans la même zone, en groupe:"
|
495 |
|
496 |
+
#: ../include/functions.php:518
|
497 |
msgid "Displays the number of points in the cluster"
|
498 |
msgstr "Affiche le nombre de points dans le regroupement"
|
499 |
|
500 |
+
#: ../include/functions.php:524
|
501 |
msgid "Display the user's location:"
|
502 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
503 |
|
504 |
+
#: ../include/functions.php:526
|
505 |
msgid "Display an icon with the user's location on map"
|
506 |
msgstr "Afficher une icône avec l'emplacement de l'utilisateur sur la carte"
|
507 |
|
508 |
+
#: ../include/functions.php:532
|
509 |
#, fuzzy
|
510 |
#| msgid "Display the user's location:"
|
511 |
msgid "Refresh the user's location every:"
|
512 |
msgstr "Afficher l'emplacement de l'utilisateur:"
|
513 |
|
514 |
+
#: ../include/functions.php:534
|
515 |
msgid "milliseconds"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ../include/functions.php:540
|
519 |
msgid "Title of user's location:"
|
520 |
msgstr "Titre de l'emplacement de l'utilisateur:"
|
521 |
|
522 |
+
#: ../include/functions.php:542
|
523 |
msgid "Title of user's location"
|
524 |
msgstr "Titre de l'emplacement de l'utilisateur"
|
525 |
|
526 |
+
#: ../include/functions.php:550
|
527 |
msgid "Display a search box for places:"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: ../include/functions.php:552
|
531 |
msgid "Includes an input box on the map for searching places"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: ../include/functions.php:558
|
535 |
msgid "Display route:"
|
536 |
msgstr "Afficher l'itinéraire:"
|
537 |
|
538 |
+
#: ../include/functions.php:560
|
539 |
msgid "Draws the route between the points in the same post"
|
540 |
msgstr "Dessine le trajet entre les points dans le même article"
|
541 |
|
542 |
+
#: ../include/functions.php:561
|
543 |
msgid ""
|
544 |
"Connect the points with polylines, even if there is not a route between "
|
545 |
"points"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ../include/functions.php:567
|
549 |
msgid "Travel mode:"
|
550 |
msgstr "Mode de transport:"
|
551 |
|
552 |
+
#: ../include/functions.php:576
|
553 |
msgid "Include traffic layer:"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: ../include/functions.php:578
|
557 |
msgid "Displays a layer over the map for traffic"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: ../include/functions.php:583
|
561 |
msgid "Options"
|
562 |
msgstr "Options"
|
563 |
|
564 |
+
#: ../include/functions.php:586
|
565 |
msgid "Display the street view control"
|
566 |
msgstr "Afficher le moyen de contrôle de la vue de la rue"
|
567 |
|
568 |
+
#: ../include/functions.php:588
|
569 |
msgid "Enable mouse wheel zoom"
|
570 |
msgstr "Activer zoom molette de la souris"
|
571 |
|
572 |
+
#: ../include/functions.php:590
|
573 |
#, fuzzy
|
574 |
#| msgid "Enable zoom/pan controls"
|
575 |
msgid "Enable zoom controls"
|
576 |
msgstr "Activer le contrôle zoom/panoramique"
|
577 |
|
578 |
+
#: ../include/functions.php:592
|
579 |
#, fuzzy
|
580 |
#| msgid "Enable zoom/pan controls"
|
581 |
msgid "Enable fullscreen control"
|
582 |
msgstr "Activer le contrôle zoom/panoramique"
|
583 |
|
584 |
+
#: ../include/functions.php:594
|
585 |
msgid "Enable map type controls (Map, Satellite, or Hybrid)"
|
586 |
msgstr "Activer le contrôle de type de carte (carte, satellite ou hybride)"
|
587 |
|
588 |
+
#: ../include/functions.php:598
|
589 |
#, fuzzy
|
590 |
#| msgid "Enter the number of posts to display on the map"
|
591 |
msgid "Enter the number of posts to display on the post/page map"
|
592 |
msgstr "Entrez le nombre d'articles à afficher sur la carte"
|
593 |
|
594 |
+
#: ../include/functions.php:602
|
595 |
msgid "Allow stylize the maps:"
|
596 |
msgstr "Autoriser de modifier le style des cartes:"
|
597 |
|
598 |
+
#: ../include/functions.php:612
|
599 |
msgid ""
|
600 |
"If you want change the maps' styles, be sure to know how to create a JSON "
|
601 |
"structure with the map's styles"
|
603 |
"Si vous voulez changer les styles des cartes , assurez-vous de savoir "
|
604 |
"comment créer une structure JSON avec les styles de la carte"
|
605 |
|
606 |
+
#: ../include/functions.php:620
|
607 |
msgid "Display the map's legend:"
|
608 |
msgstr "Afficher la légende de la carte:"
|
609 |
|
610 |
+
#: ../include/functions.php:626
|
611 |
msgid "Select the taxonomy to display on legend:"
|
612 |
msgstr "Sélectionnez la taxonomie pour afficher sur la légende:"
|
613 |
|
614 |
+
#: ../include/functions.php:629
|
615 |
msgid "Select a taxonomy"
|
616 |
msgstr "Sélectionnez une taxonomie"
|
617 |
|
618 |
+
#: ../include/functions.php:634
|
619 |
msgid "Enter a title for legend:"
|
620 |
msgstr "Entrez un titre pour la légende:"
|
621 |
|
622 |
+
#: ../include/functions.php:640
|
623 |
msgid "Enter a classname to be applied to the legend:"
|
624 |
msgstr "Entrez un nom de classe à appliquer à la légende:"
|
625 |
|
626 |
+
#: ../include/functions.php:680 ../include/functions.php:1068
|
627 |
msgid ""
|
628 |
"For more information go to the <a href=\"http://wordpress.dwbooster.com/"
|
629 |
"content-tools/codepeople-post-map\" target=\"_blank\">CodePeople Post Map</"
|
633 |
"dwbooster.com/content-tools/codepeople post-map\" target=\"_blank\"> "
|
634 |
"CodePeople Post Map"
|
635 |
|
636 |
+
#: ../include/functions.php:683
|
637 |
msgid "To insert a map in the post follow the steps below"
|
638 |
msgstr "Pour insérer une carte dans l'article, suivez les étapes ci-dessous"
|
639 |
|
640 |
+
#: ../include/functions.php:686
|
641 |
msgid ""
|
642 |
"Enter the point's information (the latitude and longitude are required, but "
|
643 |
"are obtained pressing the \"verify\" button after type the address"
|
646 |
"obligatoires , mais on les obtient en appuyant sur le bouton \"vérifier\" "
|
647 |
"après avoir entré l'adresse)"
|
648 |
|
649 |
+
#: ../include/functions.php:687
|
650 |
msgid ""
|
651 |
"Insert the shortcode in the post's content pressing the \"insert the map tag"
|
652 |
"\" button"
|
654 |
"Insérer le code dans le contenu du message en appuyant sur le \"insérer le "
|
655 |
"Shortcode de la carte\""
|
656 |
|
657 |
+
#: ../include/functions.php:688
|
658 |
#, fuzzy
|
659 |
#| msgid ""
|
660 |
#| "If you want to use specific settings just for this map, press the \"Show/"
|
668 |
"cochez la case \"Utiliser les paramètres particuliers pour cette carte:\" , "
|
669 |
"et modifiez les paramètres de cette carte"
|
670 |
|
671 |
+
#: ../include/functions.php:689
|
672 |
msgid ""
|
673 |
"Don't forget to press the \"Update\" button for save the post and map data"
|
674 |
msgstr ""
|
675 |
"N'oubliez pas d'appuyer sur le bouton \"mise à jour\" pour enregistrer les "
|
676 |
"données de l'article et la carte."
|
677 |
|
678 |
+
#: ../include/functions.php:693
|
679 |
msgid "Map points"
|
680 |
msgstr "Points de la carte"
|
681 |
|
682 |
+
#: ../include/functions.php:695
|
683 |
msgid ""
|
684 |
"Multiple points in the same Post/Page are available only in the <a href="
|
685 |
"\"http://wordpress.dwbooster.com/content-tools/codepeople-post-map#download"
|
689 |
"la <a href = \"http://wordpress.dwbooster.com/content-tools/codepeople-post-"
|
690 |
"map#download\" target = \"_blank\">version commerciale</a>."
|
691 |
|
692 |
+
#: ../include/functions.php:699
|
693 |
msgid "Map point description"
|
694 |
msgstr "Description d'un point sur la carte"
|
695 |
|
696 |
+
#: ../include/functions.php:702
|
697 |
msgid "Location name:"
|
698 |
msgstr "Nom du lieu:"
|
699 |
|
700 |
+
#: ../include/functions.php:708
|
701 |
msgid "Location description:"
|
702 |
msgstr "Description du lieu:"
|
703 |
|
704 |
+
#: ../include/functions.php:717
|
705 |
#, fuzzy
|
706 |
#| msgid "Select an images to attach to the point: "
|
707 |
msgid "Select an image to attach to the point: "
|
708 |
msgstr "Sélectionnez une image à associer au point:"
|
709 |
|
710 |
+
#: ../include/functions.php:732
|
711 |
msgid "Address:"
|
712 |
msgstr "Adresse (inclure le pays):"
|
713 |
|
714 |
+
#: ../include/functions.php:738
|
715 |
msgid "Latitude:"
|
716 |
msgstr "Latitude:"
|
717 |
|
718 |
+
#: ../include/functions.php:744
|
719 |
msgid "Longitude:"
|
720 |
msgstr "Longitude:"
|
721 |
|
722 |
+
#: ../include/functions.php:750
|
723 |
msgid "Verify"
|
724 |
msgstr "Vérifier"
|
725 |
|
726 |
+
#: ../include/functions.php:752
|
727 |
msgid ""
|
728 |
"Verify this latitude and longitude using Geocoding. This could overwrite the "
|
729 |
"point address."
|
731 |
"Vérifiez cette latitude et la longitude en utilisant le Géocodage . Cela "
|
732 |
"pourrait écraser l'adresse de point."
|
733 |
|
734 |
+
#: ../include/functions.php:752
|
735 |
msgid "Required: Press the button \"verify\" after complete the address."
|
736 |
msgstr ""
|
737 |
"Obligatoire: Appuyez sur le bouton \"Vérifier\" après l'adresse complète."
|
738 |
|
739 |
+
#: ../include/functions.php:775
|
740 |
msgid ""
|
741 |
"To insert this map in a post/page, press the <strong>\"insert the map tag\"</"
|
742 |
"strong> button and save the post/page modifications."
|
745 |
">\" insérer le Shortcode de la carte\" </strong> et enregistrer la "
|
746 |
"publication/page modifications."
|
747 |
|
748 |
+
#: ../include/functions.php:782
|
749 |
msgid "Do you want display a <strong>shape</strong> on map?"
|
750 |
msgstr "Vous voulez afficher une <strong>forme</strong> sur la carte?"
|
751 |
|
752 |
+
#: ../include/functions.php:790
|
753 |
msgid "If you want to display the map in page / post:"
|
754 |
msgstr "Si vous voulez afficher la carte dans la page ou l'article:"
|
755 |
|
756 |
+
#: ../include/functions.php:791
|
757 |
msgid "Insert the map tag"
|
758 |
msgstr "Insérer le Shortcode de la carte"
|
759 |
|
760 |
+
#: ../include/functions.php:794
|
761 |
msgid ""
|
762 |
"<p>It is possible to use attributes in the shortcode, like: width, height, "
|
763 |
"zoom and the other maps attributes:</p>\n"
|
777 |
"\t\t\t\t\t\t\t<p><strong>[codepeople-post-map tag=\"mytag\"]</strong></p>"
|
778 |
msgstr ""
|
779 |
|
780 |
+
#: ../include/functions.php:803
|
781 |
#, fuzzy
|
782 |
#| msgid "[ + more information]"
|
783 |
msgid "[ + less information]"
|
784 |
msgstr "[en savoir plus]"
|
785 |
|
786 |
+
#: ../include/functions.php:807
|
787 |
msgid "To display the points that belong to any category"
|
788 |
msgstr "Pour afficher les points qui appartiennent à une catégorie"
|
789 |
|
790 |
+
#: ../include/functions.php:809
|
791 |
msgid "All points on website"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: ../include/functions.php:956
|
795 |
msgid "Settings Updated"
|
796 |
msgstr "Paramètres Mise à jour"
|
797 |
|
798 |
+
#: ../include/functions.php:969
|
799 |
msgid ""
|
800 |
"Generate points dynamically from geolocation information included on images, "
|
801 |
"when images are uploaded to WordPress:"
|
804 |
"géolocalisation inclus sur les images , lorsque les images sont téléchargées "
|
805 |
"sur WordPress:"
|
806 |
|
807 |
+
#: ../include/functions.php:972
|
808 |
msgid ""
|
809 |
"The geolocation information is added to the images from your mobiles or "
|
810 |
"cameras, if they have associated GPS devices"
|
812 |
"Les informations de géolocalisation est ajouté aux images de vos mobiles ou "
|
813 |
"de caméras , se ils ont associé les appareils GPS"
|
814 |
|
815 |
+
#: ../include/functions.php:974
|
816 |
msgid "Process All Previous Images"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: ../include/functions.php:975
|
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:976 ../include/functions.php:986
|
828 |
msgid "The free version of CodePeople Post Map allows only one map by webpage."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: ../include/functions.php:976 ../include/functions.php:986
|
832 |
+
#: ../include/functions.php:993 ../include/functions.php:999
|
833 |
+
#: ../include/functions.php:1005 ../include/functions.php:1025
|
834 |
msgid "Click Here"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: ../include/functions.php:981
|
838 |
msgid ""
|
839 |
"Generate points dynamically from geolocation information included on posts:"
|
840 |
msgstr ""
|
841 |
"Générer des points dynamiquement à partir des informations de "
|
842 |
"géolocalisation inclus dans les messages:"
|
843 |
|
844 |
+
#: ../include/functions.php:984
|
845 |
msgid ""
|
846 |
"The geolocation information is added to the post from WordPress app in your "
|
847 |
"mobile"
|
849 |
"Les informations de géolocalisation est ajouté au article de WordPress dans "
|
850 |
"votre application mobile"
|
851 |
|
852 |
+
#: ../include/functions.php:991
|
853 |
msgid "Use points information in search results:"
|
854 |
msgstr "Utilisez des points d'information dans les résultats de recherche:"
|
855 |
|
856 |
+
#: ../include/functions.php:993
|
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:997
|
863 |
msgid "Highlight post when mouse move over related point on map:"
|
864 |
msgstr ""
|
865 |
"Mettre en évidence l'article lorsque la souris survole le point concerné sur "
|
866 |
"la carte:"
|
867 |
|
868 |
+
#: ../include/functions.php:999
|
869 |
msgid "The post highlight is available only in commercial version of plugin."
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../include/functions.php:1003
|
873 |
msgid "Highlight class:"
|
874 |
msgstr "Classe pour surligner et mettre en évidence"
|
875 |
|
876 |
+
#: ../include/functions.php:1005
|
877 |
msgid "The highlight class is available only in commercial version of plugin."
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../include/functions.php:1009
|
881 |
msgid "Allow to associate a map to the post types:"
|
882 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
883 |
|
884 |
+
#: ../include/functions.php:1022
|
885 |
msgid "Posts and Pages are selected by default"
|
886 |
msgstr "Articles et Pages sont sélectionnés par défaut"
|
887 |
|
888 |
+
#: ../include/functions.php:1025
|
889 |
msgid ""
|
890 |
"Associate the maps to custom post types is available only in commercial "
|
891 |
"version of plugin."
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: ../include/functions.php:1035
|
895 |
msgid "Draws Routes"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: ../include/functions.php:1041
|
899 |
#, fuzzy
|
900 |
#| msgid "Allow to associate a map to the post types:"
|
901 |
msgid "Associate maps to custom post types"
|
902 |
msgstr "Permettre d'associer une carte pour les types d'article:"
|
903 |
|
904 |
+
#: ../include/functions.php:1047
|
905 |
msgid "Display a map for each post in pages with multiple posts"
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: ../include/functions.php:1052
|
909 |
msgid "Troubleshoot Section"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: ../include/functions.php:1057
|
913 |
msgid "Load required resources (javascript files) in footer"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: ../include/functions.php:1069
|
917 |
msgid "Update Settings"
|
918 |
msgstr "Mise à Jour"
|
919 |
|
920 |
+
#: ../include/functions.php:1547
|
921 |
msgid "Help"
|
922 |
msgstr ""
|
923 |
|
924 |
+
#: ../include/functions.php:1549
|
925 |
msgid "Request custom changes"
|
926 |
msgstr "Demande de Modifications personnalisées"
|
927 |
|
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:
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -636,6 +636,14 @@ Now the most important part create the shape's area. To create the shape's area
|
|
636 |
|
637 |
== Changelog ==
|
638 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
= 1.0.41 =
|
640 |
|
641 |
* Fixes a conflict with third-party plugins.
|
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: 6.0
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
636 |
|
637 |
== Changelog ==
|
638 |
|
639 |
+
= 1.0.43 =
|
640 |
+
|
641 |
+
* Modifies the Google Maps loading process to avoid conflicts with third-party themes.
|
642 |
+
|
643 |
+
= 1.0.42 =
|
644 |
+
|
645 |
+
* Modifies the plugin configuration making it easier to use.
|
646 |
+
|
647 |
= 1.0.41 =
|
648 |
|
649 |
* Fixes a conflict with third-party plugins.
|